:root {
    /* Primary Colors */
    --primary-dark: #8B0000;
    /* Dark Red - Secondary Accent */
    --primary-red: #DC143C;
    /* Crimson Red - Main CTA/Highlight */
    --primary-gold: #FFD700;
    /* Gold - Premium Highlights */

    /* Secondary Colors */
    --secondary-black: #1A1A1A;
    /* Deep Black - Main Text/Headers */
    --secondary-white: #FFFFFF;
    /* White - Primary Background */
    --secondary-gray: #666666;
    /* Medium Gray - Secondary Text */

    /* Tertiary Colors */
    --accent-orange: #DC143C;
    /* Red - Unified Accent */
    --accent-bronze: #8B0000;
    /* Dark Red - Secondary Accent */

    /* Utility Colors */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --background-light: #FFFFFF;
    --border-color: #E0E0E0;

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-secondary: 'Georgia', serif;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* ========================================
   HEADER STYLES
   ======================================== */

header {
    background-color: var(--secondary-white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

/* Header Container */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 100%;
    height: auto;
}

/* ========================================
   HAMBURGER MENU
   ======================================== */

.hamburger-menu {
    display: none;
    align-items: center;
    z-index: 1001;
}

.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    width: auto;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
}

.hamburger-toggle span {
    width: 26px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: block;
    transform-origin: center;
}

.hamburger-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ========================================
   LOGO SECTION
   ======================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    text-decoration: none;
    color: inherit;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.logo a:hover {
    opacity: 0.8;
}

.logo img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-black);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--secondary-gray);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-black);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    transition: width 0.3s ease;
}

.nav-list a:hover::before,
.nav-list a.active::before {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-red);
}

/* ========================================
   HEADER ICONS
   ======================================== */

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

/* Search Wrapper */
.search-wrapper {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--secondary-black);
    transition: all 0.3s ease;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.search-toggle:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.search-modal {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 14px;
    margin-top: 12px;
    min-width: 380px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 999;
    display: none;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.search-container {
    display: flex;
    gap: 10px;
    align-items: center;
    background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 100%);
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-container:focus-within {
    background: white;
    border-color: var(--primary-red);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.08);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    color: var(--secondary-black);
}

.search-input::placeholder {
    color: #BDBDBD;
    font-weight: 500;
}

.search-input:focus {
    outline: none;
    color: var(--secondary-black);
}

.search-submit,
.search-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--secondary-gray);
    transition: all 0.3s ease;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border-radius: 6px;
}

.search-submit:hover {
    background: rgba(220, 20, 60, 0.08);
    color: var(--primary-red);
    transform: translateX(2px);
}

.search-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--secondary-black);
}

.search-results-container {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    min-width: 380px;
    max-height: 420px;
    overflow-y: auto;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 998;
    margin-top: 102px;
    
}

.search-results-container.active {
    display: block;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    padding: 14px 15px;
    border-bottom: 1px solid #F0F0F0;
    cursor: pointer;
    transition: all 0.25s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    background: white;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #FAFAFA;
    padding-left: 20px;
    border-left: 3px solid var(--primary-red);
}

/* Icon Links */
.icon-link {
    position: relative;
    font-size: 1.1rem;
    color: var(--secondary-black);
    transition: all 0.3s ease;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.icon-link:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

/* Badge for Cart and Wishlist */
.cart-badge,
.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

/* ========================================
   USER PROFILE SECTION
   ======================================== */

.user-profile-wrapper {
    position: relative;
}

.user-profile-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.user-profile-btn:hover {
    background-color: #F5F5F5;
}

.user-avatar {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.user-indicator {
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* User Dropdown Menu */
.user-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 280px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.user-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.user-info {
    margin: 0;
}

.user-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-black);
    margin: 0;
}

.user-email {
    font-size: 0.8rem;
    color: var(--secondary-gray);
    margin: 4px 0 0 0;
}

.dropdown-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 0;
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--secondary-black);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: #F5F5F5;
    padding-left: 20px;
    color: var(--primary-red);
}

.dropdown-item i:first-child {
    width: 20px;
    text-align: center;
    color: var(--primary-red);
}

.item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-label {
    font-weight: 600;
    display: block;
}

.item-desc {
    font-size: 0.75rem;
    color: var(--secondary-gray);
    display: block;
}

.dropdown-item i:last-child {
    color: var(--secondary-gray);
    font-size: 0.85rem;
}

.dropdown-item.logout-item {
    color: #E74C3C;
}

.dropdown-item.logout-item:hover {
    background-color: #FFEBEE;
    color: #C0392B;
}

.dropdown-item.logout-item i:first-child {
    color: #E74C3C;
}

/* ========================================
   SEARCH OVERLAY
   ======================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   MOBILE NAVIGATION
   ======================================== */

.mobile-nav {
    position: fixed;
    left: -100%;
    top: 0;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 70px;
}

.mobile-nav.active {
    left: 0;
}

/* Prevent scrolling when mobile nav is open */
body:has(.mobile-nav.active) {
    overflow: hidden;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li {
    margin: 0;
}

.mobile-nav-list a {
    display: block;
    padding: 15px 20px;
    color: var(--secondary-black);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    background-color: #F5F5F5;
    color: var(--primary-red);
    padding-left: 25px;
    border-left: 3px solid var(--primary-red);
}

/* ========================================
   MOBILE SIDEBAR EXTRAS
   ======================================== */

.mobile-nav-divider {
    height: 1px;
    background-color: var(--border-color);
    margin: 10px 0;
}

.mobile-nav-icon-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: var(--secondary-black);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
}

.mobile-nav-icon-link:hover {
    background-color: #F5F5F5;
    color: var(--primary-red);
    padding-left: 25px;
}

.mobile-nav-icon-link i {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
}

.mobile-nav-badge {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    margin-left: auto;
}

.mobile-nav-user-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--secondary-black);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-align: left;
}

.mobile-nav-user-btn:hover {
    background-color: #F5F5F5;
    color: var(--primary-red);
    padding-left: 25px;
}

.mobile-nav-user-btn i:first-child {
    color: var(--primary-red);
    font-size: 1.2rem;
    width: 20px;
}

.mobile-nav-user-btn i:last-child {
    margin-left: auto;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mobile-nav-user-btn.active i:last-child {
    transform: rotate(90deg);
}

.mobile-user-dropdown {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #F9F9F9;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-user-dropdown.active {
    display: block;
    max-height: 300px;
}

.mobile-user-dropdown li {
    margin: 0;
}

.mobile-user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 40px;
    color: var(--secondary-black);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border-left: 3px solid transparent;
}

.mobile-user-dropdown a:hover {
    background-color: white;
    color: var(--primary-red);
    border-left-color: var(--primary-red);
    padding-left: 45px;
}

.mobile-user-dropdown a i {
    color: var(--primary-red);
    width: 16px;
    font-size: 1rem;
}

.mobile-user-dropdown a.logout-link {
    border-top: 1px solid var(--border-color);
}

.mobile-user-dropdown a.logout-link:hover {
    color: #E74C3C;
}

.mobile-user-dropdown a.logout-link i {
    color: #E74C3C;
}

/* ========================================
   HERO SECTION - CLEAN PROFESSIONAL
   ======================================== */

.hero {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #FAFBFF 0%, #FFFFFF 50%, #FFF8F8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(220, 20, 60, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 1px solid rgba(220, 20, 60, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    width: fit-content;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.08);
}

.hero-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-heading .highlight {
    color: var(--primary-red);
    position: relative;
}

.hero-heading .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(220, 20, 60, 0.12);
    border-radius: 4px;
    z-index: -1;
}

.hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-top: 8px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.35);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.45);
    color: white;
    text-decoration: none;
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(4px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    text-decoration: none;
}

.hero-features {
    display: flex;
    gap: 32px;
    margin-top: 16px;
    padding-top: 24px;
    border-top: 1px solid #EEE;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #444;
    font-weight: 500;
}

.feature i {
    color: var(--primary-red);
    font-size: 1.1rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid white;
}

.hero-image-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 500px;
}

.stats-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 18px 28px;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #F0F0F0;
}

.stats-card .stat {
    text-align: center;
}

.stats-card .stat strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-red);
}

.stats-card .stat span {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background: #E5E5E5;
}

/* ========================================
   RESPONSIVE DESIGN - HERO SECTION
   ======================================== */

@media (max-width: 1024px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-heading {
        font-size: 2.6rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        max-width: 450px;
        margin: 0 auto;
    }

    .stats-card {
        bottom: -15px;
    }
}

/* MOBILE - Background Image Hero */
@media (max-width: 768px) {
    .hero {
        padding: 0;
        background: none;
        display: flex;
        align-items: flex-end;
        position: relative;
        overflow: visible;
    }

    .hero::before {
        display: none;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    /* Image as background on mobile */
    .hero-visual {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        max-width: none;
        z-index: 1;
        margin: 0;
    }

    .hero-image-box {
        border-radius: 0;
        border: none;
        box-shadow: none;
        height: 100%;
        width: 100%;
    }

    .hero-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        max-height: none;
        position: absolute;
        top: 0;
        left: 0;
    }

    /* Dark overlay for readability */
    .hero-image-box::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(0, 0, 0, 0.1) 100%
        );
    }

    /* Content overlay on mobile */
    .hero-content {
        position: relative;
        z-index: 10;
        padding: 100px 24px 40px;
        align-items: flex-start;
        text-align: left;
        gap: 18px;
    }

    .hero-tag {
        background: rgba(255, 255, 255, 0.95);
        font-size: 0.8rem;
        padding: 8px 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .hero-heading {
        font-size: 2.2rem;
        color: white;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        line-height: 1.2;
    }

    .hero-heading .highlight {
        color: #FF6B6B;
    }

    .hero-heading .highlight::after {
        display: none;
    }

    .hero-text {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.6;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: row;
        gap: 12px;
        margin-top: 8px;
        width: 100%;
    }

    .cta-primary {
        padding: 14px 24px;
        font-size: 0.95rem;
        border-radius: 10px;
        flex: 1;
        justify-content: center;
    }

    .cta-secondary {
        padding: 14px 24px;
        font-size: 0.95rem;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.95);
        border-color: transparent;
        flex: 1;
        justify-content: center;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
        padding-top: 20px;
        margin-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.85rem;
        gap: 8px;
    }

    .feature i {
        color: #FF6B6B;
    }

    /* Stats card on mobile */
    .stats-card {
        position: relative;
        bottom: 0;
        left: 0;
        transform: none;
        margin: 20px 24px 30px;
        padding: 16px 24px;
        gap: 20px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 12px;
        display: none;
    }

    .stats-card .stat strong {
        font-size: 1.3rem;
    }

    .stats-card .stat span {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 90px 20px 30px;
        gap: 16px;
    }

    .hero-heading {
        font-size: 1.9rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
    }

    .hero-features {
        gap: 12px;
        flex-wrap: nowrap;
    }

    .feature {
        font-size: 0.8rem;
    }

    .stats-card {
        margin: 16px 20px 24px;
        padding: 14px 20px;
        gap: 16px;
    }

    .stats-card .stat strong {
        font-size: 1.1rem;
    }

    .stat-divider {
        height: 25px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }
    
    .header-icons {
        gap: 15px;
    }
    
    .search-modal {
        min-width: 340px;
    }
    
    .search-results-container {
        min-width: 340px;
        margin-top: 102px;
    }

    /* Hero Section - Tablet */
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-section {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .header-nav {
        display: none;
    }
    
    .header-icons {
        margin-left: 10px;
    }
    
    .search-modal {
        min-width: 320px;
        right: -40px;
    }
    
    .search-results-container {
        min-width: 320px;
        right: -40px;
    }
    
    .brand-tagline{
        display: none;
    }
    
    .logo img {
        height: 40px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .search-input {
        font-size: 0.9rem;
    }
    
    /* Hide wishlist and user icons on mobile */
    .wishlist-mobile-hidden,
    .user-mobile-hidden {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 10px 15px;
    }
    
    .header-icons {
        gap: 10px;
    }
    
    .search-modal {
        min-width: calc(100vw - 50px);
        padding: 12px;
    }
    
    .search-container {
        padding: 10px 12px;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 6px 4px;
    }
    
    .search-submit,
    .search-close {
        padding: 6px 8px;
        font-size: 0.9rem;
    }
    
    .search-results-container {
        min-width: calc(100vw - 50px);
        max-height: 210px;
        margin-top: 90px;
    }
    
    .search-result-item {
        padding: 12px 12px;
        font-size: 0.9rem;
    }
    
    .user-dropdown-menu {
        min-width: calc(100vw - 50px);
        right: -20px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .brand-name {
        font-size: 0.95rem;
    }
}

/* ========================================
   ABOUT US SECTION - PROFESSIONAL & MODERN
   ======================================== */

.about {
    padding: 120px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 50%, #FFF5F8 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 1px solid rgba(220, 20, 60, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    width: fit-content;
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.08);
}

.about-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.about-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.8px;
}

.about-heading .highlight-text {
    color: var(--primary-red);
    position: relative;
}

.about-heading .highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 3px;
    z-index: -1;
}

.about-text-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

/* Highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 16px 0;
    padding: 24px;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.02) 0%, rgba(220, 20, 60, 0.01) 100%);
    border-radius: 16px;
    border: 1px solid rgba(220, 20, 60, 0.08);
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.highlight-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.highlight-details p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Button */
.about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.35);
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 12px;
}

.about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.45);
    color: white;
    text-decoration: none;
}

.about-cta i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.about-cta:hover i {
    transform: translateX(4px);
}

/* About Visual */
.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
}

.image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.year-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 24px 28px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 2px solid var(--primary-red);
    animation: float-up 3s ease-in-out infinite;
}

@keyframes float-up {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-red);
}

.badge-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   RESPONSIVE - ABOUT SECTION
   ======================================== */

@media (max-width: 1024px) {
    .about {
        padding: 100px 20px 60px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .about-content {
        align-items: center;
    }

    .about-heading {
        font-size: 2.6rem;
    }

    .about-text {
        max-width: 100%;
    }

    .about-highlights {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .highlight-item {
        flex-direction: column;
        align-items: center;
        flex: 0 1 calc(50% - 10px);
    }

    .about-visual {
        max-width: 450px;
        margin: 0 auto;
    }

    .year-badge {
        bottom: -15px;
        right: -15px;
    }

    .about-cta {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .about {
        padding: 80px 20px 50px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about-content {
        gap: 20px;
    }

    .about-heading {
        font-size: 2rem;
        line-height: 1.25;
    }

    .about-tag {
        font-size: 0.85rem;
        padding: 8px 16px;
        justify-items: left;
    }

    .about-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .about-highlights {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin: 12px 0;
    }

    .highlight-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 14px;
    }

    .highlight-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .highlight-details h4 {
        font-size: 0.9rem;
    }

    .highlight-details p {
        font-size: 0.8rem;
    }

    /* Hide image on tablet */
    .about-visual {
        display: none;
    }

    .about-cta {
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 70px 16px 35px;
    }

    .about-heading {
        font-size: 1.65rem;
        letter-spacing: -0.4px;
        line-height: 1.25;
    }

    .about-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .about-text {
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .about-text-group {
        gap: 12px;
    }

    .about-highlights {
        flex-direction: column;
        gap: 14px;
        padding: 16px;
        margin: 10px 0;
    }

    .highlight-item {
        gap: 12px;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .highlight-details h4 {
        font-size: 0.8rem;
    }

    .highlight-details p {
        font-size: 0.75rem;
    }

    /* Hide image on mobile */
    .about-visual {
        display: none;
    }

    .about-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.95rem;
        margin-top: 6px;
    }
}

/* ========================================
   CATEGORY SECTION - PROFESSIONAL & MODERN
   ======================================== */

.category {
    padding: 50px 20px;
    background: linear-gradient(135deg, #FAFBFF 0%, #FFFFFF 50%, #FFF8F8 100%);
    position: relative;
    overflow: hidden;
}

.category::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.category::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #FFF5F5 0%, #FFFFFF 100%);
    border: 1px solid rgba(220, 20, 60, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.08);
    margin-bottom: 20px;
}

.section-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.section-heading {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.8px;
    margin: 0 0 16px 0;
}

.section-heading .highlight-section {
    color: var(--primary-red);
    position: relative;
}

.section-heading .highlight-section::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 3px;
    z-index: -1;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 20, 60, 0.08);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.2);
}

/* Category Image */
.category-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    /*background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);*/
    background: white;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

/* Category Overlay */
.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.85) 0%, rgba(139, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: var(--primary-red);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.category-btn i {
    transition: transform 0.3s ease;
    font-size: 0.85rem;
}

.category-btn:hover i {
    transform: translateX(4px);
}

/* Check All Categories Button */
.check-all-container {
    text-align: center;
    margin-top: 50px;
}

.check-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.35);
    transition: all 0.3s ease;
}

.check-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.45);
    color: white;
    text-decoration: none;
}

.check-all-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.check-all-btn:hover i {
    transform: translateX(4px);
}

/* Category Info */
.category-info {
    padding: 24px;
    text-align: center;
}

.category-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.category-count {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
    font-weight: 500;
}

/* No Categories Message */
.no-categories {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1rem;
    color: #999;
}

/* ========================================
   RESPONSIVE - CATEGORY SECTION
   ======================================== */

@media (max-width: 1024px) {
    .category {
        padding: 100px 20px 60px;
    }

    .section-heading {
        font-size: 2.6rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .category-image-wrapper {
        height: 250px;
    }

    .category-info {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .category {
        padding: 90px 20px 50px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-heading {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .category-image-wrapper {
        height: 200px;
    }

    .category-info {
        padding: 16px;
    }

    .category-title {
        font-size: 1rem;
    }

    .category-count {
        font-size: 0.8rem;
    }

    .check-all-container {
        margin-top: 40px;
    }

    .check-all-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .category {
        padding: 80px 16px 40px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 16px;
    }

    .section-heading {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-image-wrapper {
        height: 180px;
    }

    .category-info {
        padding: 14px;
    }

    .category-title {
        font-size: 0.95rem;
    }

    .category-count {
        font-size: 0.75rem;
    }

    .category-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .check-all-container {
        margin-top: 30px;
    }

    .check-all-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   FEATURED PRODUCTS SECTION - PROFESSIONAL & MODERN
   ======================================== */

.featured-products {
    padding: 50px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 50%, #FFF5F8 100%);
    position: relative;
    overflow: hidden;
}

.featured-products::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-products::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 50px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 20, 60, 0.08);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.2);
}

/* Product Image Wrapper */
.product-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    /*background: linear-gradient(135deg, #F5F5F5 0%, #FAFAFA 100%);*/
    background: white;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
}

/* Product Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.85) 0%, rgba(139, 0, 0, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.product-btn-view,
.product-btn-cart,
.product-btn-wishlist {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: white;
    color: var(--primary-red);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.product-btn-view:hover,
.product-btn-cart:hover,
.product-btn-wishlist:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.product-btn-wishlist:hover {
    color: #FF6B6B;
}

/* Product Info */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    display: flex;
    gap: 4px;
}

.stars i {
    font-size: 0.85rem;
    color: #FFB800;
}

.stars .far {
    color: #E0E0E0;
}

.rating-text {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #EEE;
    margin-top: auto;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-red);
}

.product-stock {
    font-size: 0.75rem;
    color: #27AE60;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(39, 174, 96, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

/* View All Button Container */
.view-all-container {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.35);
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(220, 20, 60, 0.45);
    color: white;
    text-decoration: none;
}

.view-all-btn i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    font-size: 1.1rem;
    color: #999;
}

/* ========================================
   RESPONSIVE - FEATURED PRODUCTS
   ======================================== */

@media (max-width: 1024px) {
    .featured-products {
        padding: 100px 20px 60px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
        margin-bottom: 40px;
    }

    .product-image-wrapper {
        height: 250px;
    }

    /* Hide 5th and 6th products on tablet */
    .product-card:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 768px) {
    .featured-products {
        padding: 90px 20px 50px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-heading {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 35px;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .product-info {
        padding: 16px;
        gap: 10px;
    }

    .product-title {
        font-size: 0.95rem;
        min-height: 2.5em;
    }

    .product-badge {
        padding: 4px 10px;
        font-size: 0.7rem;
    }

    .product-actions {
        gap: 12px;
    }

    .product-btn-view,
    .product-btn-cart,
    .product-btn-wishlist {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    /* Show only 4 products on mobile (2x2) */
    .product-card:nth-child(n+5) {
        display: none;
    }
}

@media (max-width: 480px) {
    .featured-products {
        padding: 80px 16px 40px;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .section-heading {
        font-size: 1.8rem;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 30px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-info {
        padding: 12px;
        gap: 8px;
    }

    .product-title {
        font-size: 0.85rem;
        min-height: auto;
        -webkit-line-clamp: 1;
    }

    .product-rating {
        gap: 6px;
    }

    .stars i {
        font-size: 0.75rem;
    }

    .rating-text {
        font-size: 0.7rem;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .product-stock {
        font-size: 0.65rem;
    }

    .product-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
        top: 10px;
        right: 10px;
    }

    .product-actions {
        gap: 10px;
    }

    .product-btn-view,
    .product-btn-cart,
    .product-btn-wishlist {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .view-all-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-us {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FAFBFF 0%, #FFFFFF 50%, #FFF5F7 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Why Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
}

/* Why Card */
.why-card {
    background: white;
    border-radius: 16px;
    padding: 50px 32px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #B01030 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.15);
}

.why-card:hover::before {
    transform: scaleX(1);
}

/* Icon Wrapper */
.why-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
}

.why-card:hover .why-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.3);
}

/* Why Title */
.why-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Why Text */
.why-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   WHY CHOOSE US - RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .why-choose-us {
        padding: 80px 20px 50px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .why-card {
        padding: 40px 28px;
    }

    .why-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 24px;
    }

    .why-title {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .why-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 70px 16px 40px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .section-heading {
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-top: 50px;
    }

    .why-card {
        padding: 28px 18px;
    }

    .why-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .why-title {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .why-text {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 60px 16px 35px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .section-heading {
        font-size: 1.7rem;
        letter-spacing: -0.3px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 40px;
    }

    .why-card {
        padding: 28px 20px;
    }

    .why-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .why-title {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .why-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFBFF 50%, #FFF5F8 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content {
    margin-top: 70px;
}

/* Contact Info Cards Grid */
.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

/* Contact Card */
.contact-card {
    background: white;
    border-radius: 16px;
    padding: 50px 32px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(220, 20, 60, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #B01030 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(220, 20, 60, 0.15);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

/* Contact Icon Wrapper */
.contact-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.2);
}

.contact-card:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.3);
}

/* Contact Title */
.contact-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.4;
}

/* Contact Text */
.contact-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact Link */
.contact-link {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid var(--primary-red);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.contact-link:hover {
    background: var(--primary-red);
    color: white;
    transform: translateX(4px);
}

/* Social Media Section */
.contact-social {
    text-align: center;
    padding-top: 60px;
    border-top: 2px solid rgba(220, 20, 60, 0.1);
}

.social-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.2);
}

.social-icon:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 12px 30px rgba(220, 20, 60, 0.4);
}

/* ========================================
   CONTACT SECTION - RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .contact {
        padding: 80px 20px 50px;
    }

    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 60px;
    }

    .contact-card {
        padding: 40px 28px;
    }

    .contact-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 24px;
    }

    .contact-title {
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .contact-text {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .contact-link {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 70px 16px 40px;
    }

    .section-header {
        margin-bottom: 45px;
    }

    .section-tag {
        font-size: 0.8rem;
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .section-heading {
        font-size: 2rem;
        letter-spacing: -0.5px;
        margin-bottom: 12px;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 50px;
    }

    .contact-card {
        padding: 28px 18px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 14px;
    }

    .contact-title {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .contact-text {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 14px;
    }

    .contact-link {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .contact-social {
        padding-top: 40px;
    }

    .social-title {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }

    .social-links {
        gap: 16px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 16px 35px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .section-heading {
        font-size: 1.7rem;
        letter-spacing: -0.3px;
        margin-bottom: 10px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .contact-info {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-bottom: 35px;
    }

    .contact-card {
        padding: 22px 16px;
    }

    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact-title {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }

    .contact-text {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .contact-link {
        font-size: 0.75rem;
        padding: 7px 12px;
    }

    .contact-social {
        padding-top: 30px;
    }

    .social-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .social-links {
        gap: 12px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

footer.footer {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    color: #FFFFFF;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

footer.footer::after {
    content: '';
    position: absolute;
    bottom: -5%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.footer-container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Content Grid */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;    
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

/* Footer Column */
.footer-column {
    display: flex;
    flex-direction: column;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-brand-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.footer-brand-tagline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.8rem;
    color: #DC143C;
    margin: 0;
    font-weight: 600;
}

.footer-description {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    line-height: 1.6;
    margin: 0;
}

/* Footer Column Title */
.footer-column-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin: 0 0 24px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-red);
    display: inline-block;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    color: #CCCCCC;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-red);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact a {
    color: #CCCCCC;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-contact a:hover {
    color: var(--primary-red);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(220, 20, 60, 0.2);
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social-icon:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #999999;
    margin: 0;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-credit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #999999;
    margin: 0;
}

.footer-credit a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-credit a:hover {
    color: #FF6B7A;
    text-decoration: underline;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    color: #999999;
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom-links a:hover {
    color: var(--primary-red);
}

/* ========================================
   FOOTER - RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    footer.footer {
        padding: 60px 20px 0;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-column-title {
        font-size: 1rem;
        margin: 0 0 20px 0;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 14px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    footer.footer {
        padding: 50px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .footer-brand {
        margin-bottom: 16px;
    }

    .footer-logo {
        width: 45px;
        height: 45px;
    }

    .footer-brand-name {
        font-size: 1rem;
    }

    .footer-column-title {
        font-size: 0.95rem;
        margin: 0 0 16px 0;
        padding-bottom: 10px;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 12px;
        gap: 10px;
    }

    .footer-social {
        gap: 12px;
    }

    .footer-social-icon {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-bottom-left {
        gap: 6px;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-credit {
        font-size: 0.8rem;
    }

    .footer-bottom-links {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-bottom-links a {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    footer.footer {
        padding: 40px 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }

    .footer-brand {
        margin-bottom: 12px;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
    }

    .footer-brand-name {
        font-size: 0.95rem;
    }

    .footer-brand-tagline {
        font-size: 0.75rem;
    }

    .footer-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .footer-column-title {
        font-size: 0.9rem;
        margin: 0 0 12px 0;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-contact li {
        font-size: 0.8rem;
        margin-bottom: 10px;
        gap: 8px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social-icon {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-left {
        gap: 5px;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .footer-credit {
        font-size: 0.75rem;
    }

    .footer-bottom-links {
        gap: 15px;
        font-size: 0.75rem;
    }

    .footer-bottom-links a {
        font-size: 0.75rem;
    }
}

/* ========================================
   FLOATING BUTTONS
   ======================================== */

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #1FAD51 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #B01030 100%);
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
}

.back-to-top-btn:active {
    transform: scale(0.95);
}

/* Floating Buttons - Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-btn,
    .back-to-top-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
        bottom: 20px;
    }

    .whatsapp-btn {
        left: 20px;
    }

    .back-to-top-btn {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn,
    .back-to-top-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-btn {
        left: 15px;
    }

    .back-to-top-btn {
        right: 15px;
    }

    .whatsapp-btn:hover,
    .back-to-top-btn:hover {
        transform: scale(1.1) translateY(-3px);
    }
}

/* ========================================
   LOGIN PAGE STYLES
   ======================================== */

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 20px;
    margin-top: 20px;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

/* Login Info Section */
.login-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-info-content {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-brand-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.login-brand-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.login-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.25);
}

.feature-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 14px;
    color: var(--secondary-gray);
    line-height: 1.5;
}

/* Login Form Wrapper */
.login-form-wrapper {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.login-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.login-form-subtitle {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Form Group */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.form-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 12px 16px 12px 48px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 14px;
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-red);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.input-icon {
    position: absolute;
    left: 14px;
    color: var(--secondary-gray);
    font-size: 18px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input:focus ~ .input-icon {
    color: var(--primary-red);
}

.password-toggle {
    position: absolute;
    right: 14px;
    background: none;
    border: none;
    color: var(--secondary-gray);
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: var(--primary-red);
}

.form-error {
    display: block;
    font-size: 12px;
    color: #e74c3c;
    margin-top: 6px;
    min-height: 16px;
}

/* Login Options */
.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    user-select: none;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-red);
}

.checkbox-label {
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.checkbox-label:hover {
    color: var(--primary-red);
}

.forgot-password-link {
    font-size: 14px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-danger {
    background-color: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* Login Button */
.btn-login {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-login:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login:hover:before {
    left: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.35);
}

.btn-login:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

.btn-login i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: translateX(2px);
}

/* Login Divider */
.login-divider {
    text-align: center;
    margin: 28px 0;
    position: relative;
    font-size: 14px;
    color: var(--secondary-gray);
}

.login-divider:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.login-divider span {
    background: white;
    padding: 0 12px;
    position: relative;
}

/* Create Account Button */
.btn-create-account {
    width: 100%;
    height: 48px;
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-create-account:hover {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    transform: translateY(-2px);
}

.btn-create-account:active {
    transform: translateY(0);
}

.btn-create-account i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-create-account:hover i {
    transform: rotate(90deg);
}

/* Login Footer Links */
.login-footer-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 13px;
}

.login-footer-links a {
    color: var(--secondary-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer-links a:hover {
    color: var(--primary-red);
}

.link-divider {
    color: var(--border-color);
    margin: 0 8px;
}

/* ========================================
   LOGIN PAGE - RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .login-info {
        order: 2;
    }

    .login-form-wrapper {
        order: 1;
    }

    .login-brand-title {
        font-size: 32px;
    }

    .login-features {
        gap: 16px;
    }

    .login-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .login-section {
        padding: 20px;
        margin-top: 10px;
        min-height: auto;
    }

    .login-container {
        gap: 30px;
    }

    .login-info-content {
        text-align: center;
    }

    .login-brand-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .login-brand-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .feature-item {
        justify-content: center;
    }

    .login-form-container {
        padding: 28px;
    }

    .login-form-title {
        font-size: 24px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-input {
        height: 44px;
        font-size: 16px;
    }

    .password-toggle {
        right: 12px;
    }

    .input-icon {
        left: 12px;
    }

    .btn-login,
    .btn-create-account {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .login-section {
        padding: 16px;
    }

    .login-container {
        gap: 20px;
    }

    .login-info-content {
        margin-bottom: 20px;
    }

    .login-brand-title {
        font-size: 24px;
    }

    .login-brand-subtitle {
        font-size: 14px;
    }

    .login-features {
        gap: 12px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .feature-text h3 {
        font-size: 14px;
    }

    .feature-text p {
        font-size: 12px;
    }

    .login-form-container {
        padding: 24px;
        border-radius: 12px;
    }

    .login-form-title {
        font-size: 20px;
    }

    .login-form-subtitle {
        font-size: 13px;
    }

    .form-input {
        height: 42px;
        padding: 10px 12px 10px 42px;
        font-size: 16px;
    }

    .login-options {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .btn-login,
    .btn-create-account {
        height: 42px;
        font-size: 13px;
    }

    .btn-login i,
    .btn-create-account i {
        font-size: 14px;
    }

    .login-divider {
        margin: 20px 0;
    }

    .login-footer-links {
        font-size: 12px;
        margin-top: 16px;
        padding-top: 16px;
    }
}

/* ========================================
   FORGOT PASSWORD PAGE STYLES
   ======================================== */

.forgot-password-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 20px;
    margin-top: 20px;
}

.forgot-password-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

/* Forgot Password Info Section */
.forgot-password-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.forgot-password-info-content {
    animation: slideInLeft 0.6s ease-out;
}

.forgot-brand-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.forgot-brand-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.password-reset-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.15);
}

.step-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-text p {
    font-size: 14px;
    color: var(--secondary-gray);
    line-height: 1.5;
}

/* Forgot Password Form */
.forgot-password-form-wrapper {
    animation: slideInRight 0.6s ease-out;
}

.forgot-password-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.forgot-password-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.forgot-password-form-subtitle {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.forgot-password-form {
    margin-bottom: 28px;
}

/* Reset Button */
.btn-reset {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.35);
}

.btn-reset:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

/* Forgot Password Footer */
.forgot-password-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.forgot-password-footer p {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 10px;
}

.back-to-login-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-to-login-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Success Alert */
.alert-success {
    background-color: #f0fdf4;
    color: #15803d;
    border: 1px solid #86efac;
}

/* ========================================
   FORGOT PASSWORD - RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .forgot-password-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .forgot-password-info {
        order: 2;
    }

    .forgot-password-form-wrapper {
        order: 1;
    }

    .forgot-brand-title {
        font-size: 32px;
    }

    .password-reset-steps {
        gap: 16px;
    }

    .forgot-password-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .forgot-password-section {
        padding: 20px;
        margin-top: 10px;
        min-height: auto;
    }

    .forgot-password-container {
        gap: 30px;
    }

    .forgot-password-info-content {
        text-align: center;
    }

    .forgot-brand-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .forgot-brand-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .step-item {
        justify-content: center;
    }

    .forgot-password-form-container {
        padding: 28px;
    }

    .forgot-password-form-title {
        font-size: 24px;
    }

    .btn-reset {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .forgot-password-section {
        padding: 16px;
    }

    .forgot-password-container {
        gap: 20px;
    }

    .forgot-password-info-content {
        margin-bottom: 20px;
    }

    .forgot-brand-title {
        font-size: 24px;
    }

    .forgot-brand-subtitle {
        font-size: 14px;
    }

    .password-reset-steps {
        gap: 12px;
    }

    .step-number {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .step-text h3 {
        font-size: 14px;
    }

    .step-text p {
        font-size: 12px;
    }

    .forgot-password-form-container {
        padding: 24px;
        border-radius: 12px;
    }

    .forgot-password-form-title {
        font-size: 20px;
    }

    .forgot-password-form-subtitle {
        font-size: 13px;
    }

    .btn-reset {
        height: 42px;
        font-size: 13px;
    }
}

/* ========================================
   REGISTRATION PAGE STYLES
   ======================================== */

.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 20px;
    margin-top: 20px;
}

.register-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    align-items: start;
}

/* Register Info Section */
.register-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.register-info-content {
    animation: slideInLeft 0.6s ease-out;
}

.register-brand-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.register-brand-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.register-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 20, 60, 0.25);
}

.benefit-text h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 14px;
    color: var(--secondary-gray);
    line-height: 1.5;
}

/* Register Form Wrapper */
.register-form-wrapper {
    animation: slideInRight 0.6s ease-out;
}

.register-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    max-height: 90vh;
    overflow-y: auto;
}

.register-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.register-form-subtitle {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.register-form {
    margin-bottom: 28px;
}

/* Form Row for Two Columns */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-col {
    margin-bottom: 0 !important;
}

/* Form Section Header */
.form-section-header {
    margin: 24px 0 16px 0;
    padding: 12px 0;
    border-top: 1px solid var(--border-color);
}

.form-section-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.form-section-header i {
    font-size: 18px;
}

/* Validation Status */
.validation-status {
    position: absolute;
    right: 14px;
    font-size: 16px;
}

/* Form Hint */
.form-hint {
    display: block;
    font-size: 12px;
    color: #15803d;
    margin-top: 4px;
    font-weight: 500;
}

/* Password Strength */
.password-strength {
    display: block;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.strength-weak {
    color: #dc2626;
}

.strength-fair {
    color: #f59e0b;
}

.strength-good {
    color: #3b82f6;
}

.strength-strong {
    color: #15803d;
}

.strength-very-strong {
    color: #059669;
}

/* Terms Checkbox */
.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 24px 0;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.terms-checkbox .checkbox-input {
    margin-top: 4px;
    flex-shrink: 0;
}

.terms-checkbox .checkbox-label {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.terms-checkbox a {
    color: var(--primary-red);
    text-decoration: none;
    transition: all 0.3s ease;
}

.terms-checkbox a:hover {
    text-decoration: underline;
    color: var(--primary-dark);
}

/* Register Button */
.btn-register {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.35);
}

.btn-register:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

.btn-register:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Register Footer */
.register-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.register-footer p {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 10px;
}

.login-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.login-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* ========================================
   REGISTRATION - RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .register-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .register-info {
        order: 2;
    }

    .register-form-wrapper {
        order: 1;
    }

    .register-brand-title {
        font-size: 32px;
    }

    .register-benefits {
        gap: 16px;
    }

    .register-form-container {
        padding: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .register-section {
        padding: 20px;
        margin-top: 10px;
    }

    .register-container {
        gap: 30px;
    }

    .register-info-content {
        text-align: center;
    }

    .register-brand-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .register-brand-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .benefit-item {
        justify-content: center;
    }

    .register-form-container {
        padding: 28px;
        max-height: none;
        overflow-y: visible;
    }

    .register-form-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .btn-register {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .register-section {
        padding: 16px;
    }

    .register-container {
        gap: 20px;
    }

    .register-info-content {
        margin-bottom: 20px;
    }

    .register-brand-title {
        font-size: 24px;
    }

    .register-brand-subtitle {
        font-size: 14px;
    }

    .register-benefits {
        gap: 12px;
    }

    .benefit-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .benefit-text h3 {
        font-size: 14px;
    }

    .benefit-text p {
        font-size: 12px;
    }

    .register-form-container {
        padding: 24px;
        border-radius: 12px;
    }

    .register-form-title {
        font-size: 20px;
    }

    .register-form-subtitle {
        font-size: 13px;
    }

    .form-input {
        padding: 10px 12px 10px 42px;
        font-size: 16px;
    }

    .form-section-header {
        margin: 20px 0 12px 0;
    }

    .form-section-header h3 {
        font-size: 14px;
    }

    .form-row {
        gap: 12px;
    }

    .terms-checkbox {
        margin: 20px 0;
        padding: 10px;
    }

    .terms-checkbox .checkbox-label {
        font-size: 12px;
    }

    .btn-register {
        height: 42px;
        font-size: 13px;
    }

    .register-footer {
        font-size: 12px;
        margin-top: 16px;
        padding-top: 16px;
    }
}

/* ========================================
   RESET PASSWORD PAGE STYLES
   ======================================== */

.reset-password-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    padding: 20px;
    margin-top: 20px;
}

.reset-password-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    align-items: center;
}

/* Reset Password Info */
.reset-password-info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-password-info-content {
    animation: slideInLeft 0.6s ease-out;
}

.reset-brand-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.reset-brand-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.password-requirements {
    background: #f9f9f9;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.password-requirements h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--secondary-gray);
}

.requirements-list i {
    color: var(--primary-red);
    font-size: 16px;
}

/* Reset Password Form */
.reset-password-form-wrapper {
    animation: slideInRight 0.6s ease-out;
}

.reset-password-form-container {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.reset-password-form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.reset-password-form-subtitle {
    font-size: 14px;
    color: var(--secondary-gray);
    margin-bottom: 32px;
    line-height: 1.6;
}

.reset-password-form {
    margin-bottom: 28px;
}

/* Reset Password Button */
.btn-reset-password {
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(220, 20, 60, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-reset-password:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 20, 60, 0.35);
}

.btn-reset-password:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

/* Reset Password Footer */
.reset-password-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.reset-password-footer .back-to-login-link {
    font-size: 14px;
}

/* ========================================
   RESET PASSWORD - RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 992px) {
    .reset-password-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reset-password-info {
        order: 2;
    }

    .reset-password-form-wrapper {
        order: 1;
    }

    .reset-brand-title {
        font-size: 32px;
    }

    .reset-password-form-container {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .reset-password-section {
        padding: 20px;
        margin-top: 10px;
        min-height: auto;
    }

    .reset-password-container {
        gap: 30px;
    }

    .reset-password-info-content {
        text-align: center;
    }

    .reset-brand-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .reset-brand-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .password-requirements {
        padding: 20px;
    }

    .password-requirements h3 {
        font-size: 14px;
    }

    .requirements-list li {
        font-size: 13px;
        padding: 6px 0;
    }

    .reset-password-form-container {
        padding: 28px;
    }

    .reset-password-form-title {
        font-size: 24px;
    }

    .btn-reset-password {
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .reset-password-section {
        padding: 16px;
    }

    .reset-password-container {
        gap: 20px;
    }

    .reset-password-info-content {
        margin-bottom: 20px;
    }

    .reset-brand-title {
        font-size: 24px;
    }

    .reset-brand-subtitle {
        font-size: 14px;
    }

    .password-requirements {
        padding: 16px;
        border-left-width: 3px;
    }

    .password-requirements h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .requirements-list li {
        font-size: 12px;
        padding: 5px 0;
    }

    .reset-password-form-container {
        padding: 24px;
        border-radius: 12px;
    }

    .reset-password-form-title {
        font-size: 20px;
    }

    .reset-password-form-subtitle {
        font-size: 13px;
    }

    .btn-reset-password {
        height: 42px;
        font-size: 13px;
    }
}