/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #333333;
    --secondary-color: #666666;
    --accent-color: #000000;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #f5f5f5;
    --border-color: #e0e0e0;
    --hover-color: #000000;
    --success-color: #28a745;
    --error-color: #dc3545;
    --background: #FFFFFF;
    --light-bg: #fafafa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    position: relative;
}

body > * {
    position: relative;
    z-index: 1;
}

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
    background: var(--white);
}

.page-transition {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Prevent flash of unstyled content */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.container {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ========== HEADER (main nav only; promo bar hidden) ========== */

/* Promo bar hidden so it does not show when opening the website */
.promo-bar {
    display: none !important;
}

/* Top bar (kept for reference if re-enabled): dark grey — left link | center promo | right pause */
.promo-bar.promo-bar--visible {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin: 0;
    border: none;
    box-sizing: border-box;
    z-index: 1002;
}

.promo-bar-left a {
    color: #fff;
    font-size: 0.8rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.promo-bar-left a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.promo-bar-messages {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    position: relative;
}

.promo-bar-text,
.promo-bar-message {
    margin: 0;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
}

.promo-bar-message {
    position: absolute;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.promo-bar-message.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.promo-bar-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.promo-bar-pause {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-bar-pause:hover {
    opacity: 0.85;
}

/* Main nav: white — at top (promo bar hidden) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 68px;
    margin: 0;
    border-top: none;
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    padding: 0 28px;
    box-sizing: border-box;
    z-index: 1000;
}

body:not(.page-home) .navbar { top: 0; }

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-mobile-left { display: none; }

.nav-logo-wrap { flex-shrink: 0; margin-left: -1.5rem; }

.logo-link {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.logo-link:hover { color: #1a1a1a; text-decoration: none; opacity: 0.85; }

.logo-text {
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu-drawer {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-menu a:hover { color: #333; }

.nav-item-has-mega { position: relative; }
.nav-item-has-mega > a { padding: 0.25rem 0; }

.nav-mega-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    padding-top: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 999;
}

.nav-item-has-mega:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-mega-inner {
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem 2rem;
    min-width: 300px;
}

.nav-mega-column { display: flex; flex-direction: column; gap: 0.4rem; }

.nav-mega-heading {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 0.25rem;
}

.nav-mega-column a {
    font-size: 0.85rem;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-mega-column a:hover { color: #666; }

.nav-menu-footer { display: none; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

/* Desktop/laptop only: search icon in nav (hidden on mobile; mobile uses mobile-search-bar) */
.nav-actions .nav-btn-search {
    display: none;
}
@media (min-width: 769px) {
    .nav-actions .nav-btn-search {
        display: inline-flex !important;
    }
}

.nav-btn-round,
.nav-actions a.nav-btn-user,
.nav-actions button.nav-btn-user,
.nav-btn-wishlist,
.nav-btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    transition: color 0.2s, opacity 0.2s;
}

.nav-btn-round:hover,
.nav-btn-wishlist:hover,
.nav-btn-cart:hover,
.nav-actions a.nav-btn-user:hover {
    color: #333;
    opacity: 0.85;
}

/* Align profile icon with wishlist/cart (no extra margin so it doesn’t sit lower when logged in) */
.nav-actions a.nav-btn-user,
.nav-actions button.nav-btn-user {
    margin-top: 0;
}

/* Login icon (when not logged in): outline-only person icon, no fill */
.nav-actions #loginBtn.nav-btn-user,
.nav-actions a#loginBtn.nav-btn-round.nav-btn-user {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    background: transparent;
    border: none;
    text-decoration: none;
}
.nav-actions #loginBtn svg {
    width: 20px;
    height: 20px;
    fill: none !important;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-btn-round svg,
.nav-heart-icon,
.nav-cart-icon,
.nav-actions .nav-btn-user svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.nav-cart-icon, .nav-heart-icon { display: block; }

.nav-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 2px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.nav-search-bar {
    display: none;
    width: 100%;
    flex-basis: 100%;
    order: 10;
    padding: 0.35rem 1rem 0.5rem;
    margin: 0;
    border-top: 1px solid #e8e8e8;
    background: #fff;
}

body.search-open .nav-search-bar,
.navbar.search-open .nav-search-bar { display: flex; }

body.search-open .navbar,
.navbar.search-open { height: auto; min-height: 68px; }

body.search-open .nav-container,
.navbar.search-open .nav-container { flex-wrap: wrap; }

.nav-search-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 0 0.5rem 0 1rem;
    min-height: 48px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nav-search-bar-inner:focus-within {
    border-color: #c4c4c4;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.nav-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    padding: 0.75rem 0.5rem 0.75rem 0;
    font-size: 0.9375rem;
    color: #1a1a1a;
    font-family: inherit;
}

.nav-search-input::placeholder {
    color: #9ca3af;
}

.nav-search-input:focus {
    outline: none;
}

.nav-search-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    margin: 0 -0.25rem 0 0;
    border: none;
    background: transparent;
    color: #1a1a1a;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-search-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #000;
}

.nav-search-close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

.mobile-search-bar { display: none; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 1.5px;
    background: #1a1a1a;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-btn-logout {
    font-size: 0.9rem;
    width: auto;
    height: 40px;
    padding: 0 1.25rem;
    border-radius: 4px;
    background: #f5f5f5;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.nav-btn-admin {
    font-size: 0.9rem;
    width: auto;
    height: 40px;
    padding: 0 1.25rem;
    border-radius: 4px;
    background: #1a1a1a;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Mobile: header sticks flush to top (no gap) */
@media (max-width: 768px) {
    .promo-bar {
        height: 36px;
        padding: 0 12px;
        margin: 0;
    }
    .promo-bar-messages { min-height: 36px; }
    .promo-bar-text, .promo-bar-message { font-size: 0.75rem; }
    .navbar {
        top: 0;
        height: 56px;
        padding: 0 12px;
        margin: 0;
        border-top: none;
    }
    body:not(.page-home) .navbar { top: 0; }
    .nav-container { gap: 0.5rem; padding: 0 8px; }
    .nav-mobile-left {
        display: flex;
        order: 0;
        flex-shrink: 0;
    }
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        position: relative;
        z-index: 1001;
        cursor: pointer;
    }
    .nav-logo-wrap {
        flex: 1;
        order: 1;
        justify-content: flex-start;
        min-width: 0;
        margin-left: -0.5rem;
        margin-right: 0;
        padding-left: 0.25rem;
        padding-right: 1rem;
        overflow: hidden;
    }
    .nav-logo-wrap .logo-link { font-size: 0.875rem; }
    .nav-logo-wrap .logo-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .nav-menu-drawer {
        position: fixed;
        top: 56px;
        left: -100%;
        width: 100%;
        max-width: 100vw;
        height: calc(100vh - 56px);
        background: #fff;
        z-index: 998;
        overflow-y: auto;
        overflow-x: hidden;
        transition: left 0.3s ease;
        flex: none;
        display: flex;
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav-menu-drawer.active {
        left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-y: auto !important;
    }
    .nav-menu-drawer .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-menu-drawer .nav-menu li { border-bottom: 1px solid #eee; }
    .nav-menu-drawer .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 0.95rem;
    }
    .nav-mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        padding: 0.5rem 0 0.5rem 1rem;
        background: #f9f9f9;
        margin-top: 0.25rem;
    }
    .nav-mega-inner { min-width: 0; padding: 0.75rem; }
    .nav-actions {
        order: 2;
        flex-shrink: 0;
        gap: 0.25rem;
        margin-left: 1rem;
    }
    .nav-actions .nav-btn-user,
    .nav-actions #loginBtn,
    .nav-actions #logoutBtn,
    .nav-actions .user-info { display: none !important; }
    .nav-actions .nav-btn-search {
        display: inline-flex !important;
        margin-left: 0.5rem;
        min-width: 44px;
        min-height: 44px;
    }
    .nav-actions .nav-btn-wishlist,
    .nav-actions .nav-btn-cart { display: inline-flex !important; }
    .mobile-search-bar {
        display: block;
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        z-index: 997;
        background: #fff;
        margin: 0;
        padding: 0.4rem 1rem 0.5rem;
        border-top: none;
        border-bottom: 1px solid #e8e8e8;
    }
    .mobile-search-wrap {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: #f5f5f5;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        padding: 0 0.75rem;
        min-height: 44px;
    }
    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    .mobile-search-input::placeholder { color: #888; }
    .mobile-search-btn {
        padding: 0.5rem;
        border: none;
        background: transparent;
        color: #1a1a1a;
        cursor: pointer;
    }
    body:not(.page-home) .mobile-search-bar { top: 56px; }
}

/* User Info Display */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, #F8E8F5, #FFF0F5);
    border-radius: 30px;
    font-size: 0.9rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
    box-shadow: 0 2px 10px rgba(255, 107, 157, 0.15);
    flex-shrink: 0;
    white-space: nowrap;
    max-width: 250px;
}

.user-info .profile-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
    overflow: hidden;
}

.profile-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-info .user-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    overflow: hidden;
}

.user-info .user-name {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
}

.user-info .user-points {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.85rem;
}

.user-info span {
    color: var(--dark);
}

.user-info {
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.25);
    border-color: rgba(255, 107, 157, 0.4);
}

/* Profile Modal */
.profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.profile-modal.active {
    display: flex;
}

.profile-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 240, 245, 0.98));
    padding: 2.5rem;
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.3);
    border: 2px solid rgba(255, 107, 157, 0.2);
    position: relative;
}

.profile-modal-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.profile-modal-header h2 {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.close-profile-modal {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.close-profile-modal:hover {
    transform: scale(1.1) rotate(90deg);
}

.profile-picture-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-picture-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.profile-picture-display {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 107, 157, 0.3);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.profile-picture-edit-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    border: 3px solid white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.profile-picture-edit-btn:hover {
    transform: scale(1.1);
}

.profile-picture-input {
    display: none;
}

.profile-info-section {
    margin-bottom: 2rem;
}

.profile-info-item {
    margin-bottom: 1.5rem;
}

.profile-info-item label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-info-item input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.profile-info-item input:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.profile-points-section {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(199, 125, 255, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 107, 157, 0.2);
}

.points-display {
    text-align: center;
}

.points-display .points-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0;
}

.points-display .points-label {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.points-history {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 107, 157, 0.2);
}

.points-history h3 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.points-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.points-history-item .points-amount {
    font-weight: 600;
    color: var(--primary-pink);
}

.profile-modal-buttons {
    display: flex;
    gap: 1rem;
}

.profile-modal-buttons button {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-profile-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.save-profile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

.cancel-profile-btn {
    background: #e0e0e0;
    color: var(--dark);
}

.cancel-profile-btn:hover {
    background: #d0d0d0;
}

/* My Account modal – Fashionphile-style (clean, minimal, tier + points) */
.account-modal-content {
    background: #fff;
    max-width: 440px;
    border-radius: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
    border: 1px solid #e5e5e5;
}

.account-modal-header {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.account-modal-header h2 {
    background: none;
    -webkit-text-fill-color: #1a1a1a;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.account-modal .close-profile-modal {
    background: #1a1a1a;
    top: 0;
    right: 0;
}

.account-modal .close-profile-modal:hover {
    background: #333;
}

.account-tier-section {
    margin-bottom: 1.5rem;
}

.account-tier-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.35rem;
}

.account-tier-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid currentColor;
}

.account-tier-bronze {
    color: #8b6914;
    border-color: #b8860b;
    background: #faf6eb;
}

.account-tier-silver {
    color: #5c5c5c;
    border-color: #8c8c8c;
    background: #f5f5f5;
}

.account-tier-gold {
    color: #8b6914;
    border-color: #c9a227;
    background: #fdf9ed;
}

.account-points-section {
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.account-points-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.25rem;
}

.account-points-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.account-points-hint {
    font-size: 0.8rem;
    color: #666;
    margin: 0.5rem 0 0;
}

.account-details-section {
    margin-bottom: 1.5rem;
}

.account-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #666;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.account-details-section .profile-info-item {
    margin-bottom: 1rem;
}

.account-details-section .profile-info-item label {
    color: #1a1a1a;
    font-size: 0.8rem;
    font-weight: 500;
}

.account-details-section .profile-info-item input {
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
}

.account-details-section .profile-info-item input:focus {
    border-color: #1a1a1a;
    outline: none;
}

.account-input-readonly {
    background: #f5f5f5 !important;
    color: #666;
}

.account-points-history {
    margin-bottom: 1.5rem;
}

.account-points-history .account-section-title {
    margin-bottom: 0.5rem;
}

.account-points-list {
    max-height: 180px;
    overflow-y: auto;
}

.account-points-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.account-points-item:last-child {
    border-bottom: none;
}

.points-history-reason {
    display: block;
    color: #1a1a1a;
    font-weight: 500;
}

.points-history-date {
    font-size: 0.8rem;
    color: #666;
}

.account-points-item .points-amount {
    color: #1a1a1a;
    font-weight: 600;
}

.account-points-empty {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 1rem 0;
    margin: 0;
}

.account-actions {
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
}

.account-link-order-history {
    display: block;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.95rem;
}

.account-link-order-history:hover {
    color: #333;
}

.account-modal-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.account-modal-buttons .cancel-profile-btn,
.account-modal-buttons .save-profile-btn {
    flex: 1;
    padding: 0.65rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
}

.account-modal-buttons .cancel-profile-btn {
    background: #fff;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.account-modal-buttons .cancel-profile-btn:hover {
    background: #f5f5f5;
}

.account-modal-buttons .save-profile-btn {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
}

.account-modal-buttons .save-profile-btn:hover {
    background: #333;
}

.account-logout-btn {
    display: block;
    width: 100%;
    padding: 0.65rem;
    background: transparent;
    color: #666;
    border: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.account-logout-btn:hover {
    color: #1a1a1a;
}

/* Legacy Support */
.cart-icon {
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    width: 45px;
    height: 45px;
    background: var(--primary-pink);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.cart-icon:hover {
    transform: scale(1.1);
    background: var(--coral);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--primary-pink);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Section – background matches bag image backgrounds (no visible border) */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 2rem;
    overflow: hidden;
    background: #fafafa;
}
/* Home: hero directly above banner carousel – minimal gap */
.hero + .valentine-banner {
    margin-top: 0;
}

/* Wallets page: compact hero so banner sits close to "Stylish Wallets" */
.hero--wallets {
    min-height: 0;
    padding: 120px 20px 1.5rem;
}
.hero--wallets + .taper-banner {
    margin-top: 0;
}

/* Fragrances page: compact hero, wallpaper background, less space above banner */
.hero--fragrances {
    min-height: 0;
    padding: 88px 20px 0.25rem;
    background-color: #faf5f8;
    background-image: url('images/fragrances/beija-flor-elasti-cream-1.jpg'), url('images/fragrances/sol-de-janeiro-bum-bum-jet-set-1.jpg');
    background-size: 50% 100%, 50% 100%;
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
}
.hero--fragrances::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(250,245,248,0.9) 100%);
    z-index: 0;
    pointer-events: none;
}
.hero--fragrances .hero-content {
    z-index: 1;
}
.hero--fragrances .hero-title {
    color: var(--text-dark);
    text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}
.hero--fragrances .hero-subtitle {
    color: var(--text-dark);
    text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.hero--fragrances + .taper-banner {
    margin-top: 0;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: #fafafa;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.5);
    z-index: 1;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: 1px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-pink), var(--secondary-pink));
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--purple), var(--lavender));
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--coral), var(--peach));
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Valentine's Day Banner */
.valentine-banner {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    overflow: hidden;
}

/* Hero banner carousel (multiple banners from images/banner) */
.valentine-banner--carousel .valentine-banner-carousel {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
}
.valentine-banner--carousel .valentine-banner-slides {
    position: relative;
    width: 100%;
    min-height: 320px;
}
.valentine-banner--carousel .valentine-banner-slide {
    position: absolute;
    inset: 0;
    min-height: 320px;
    opacity: 0;
    visibility: hidden;
    transition: none;
}
.valentine-banner--carousel .valentine-banner-slide.active {
    position: relative;
    min-height: 320px;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.valentine-banner--carousel .valentine-banner-slide .valentine-banner-video-wrap,
.valentine-banner--carousel .valentine-banner-slide .valentine-banner-image-wrap {
    position: absolute;
    inset: 0;
    min-height: 320px;
}
.valentine-banner--carousel .valentine-banner-slide .valentine-banner-video {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}
.valentine-banner--carousel .valentine-banner-dots {
    display: none;
}
.valentine-banner--carousel .valentine-banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.valentine-banner--carousel .valentine-banner-dot:hover {
    background: rgba(255,255,255,0.4);
}
.valentine-banner--carousel .valentine-banner-dot.active {
    background: rgba(255,255,255,0.95);
    transform: scale(1.15);
}

/* Mobile: show full banner (no cropping) so "Shop now" and all content are visible on phone */
@media (max-width: 768px) {
    .valentine-banner--carousel .valentine-banner-carousel,
    .valentine-banner--carousel .valentine-banner-slides {
        min-height: 56vw;
        max-height: 85vh;
    }
    .valentine-banner--carousel .valentine-banner-slide,
    .valentine-banner--carousel .valentine-banner-slide.active {
        min-height: 56vw;
        max-height: 85vh;
    }
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-video-wrap,
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-image-wrap {
        min-height: 56vw;
        max-height: 85vh;
    }
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-video {
        object-fit: contain;
        object-position: center;
        min-height: 56vw;
        max-height: 85vh;
    }
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-image-wrap {
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
    }
}
@media (max-width: 480px) {
    .valentine-banner--carousel .valentine-banner-carousel,
    .valentine-banner--carousel .valentine-banner-slides,
    .valentine-banner--carousel .valentine-banner-slide,
    .valentine-banner--carousel .valentine-banner-slide.active,
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-video-wrap,
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-image-wrap {
        min-height: 52vw;
        max-height: 80vh;
    }
    .valentine-banner--carousel .valentine-banner-slide .valentine-banner-video {
        min-height: 52vw;
        max-height: 80vh;
    }
}

.valentine-banner:not(.valentine-banner--video):not(.valentine-banner--carousel) {
    background: linear-gradient(180deg, #8b1538 0%, #6b0f2a 50%, #5a0c24 100%);
}
/* Carousel: no red background so banner images/videos show as-is */
.valentine-banner--carousel {
    background: transparent;
}
.valentine-banner--carousel .valentine-banner-video-overlay {
    background: none;
}

/* Video or image background layer */
.valentine-banner-video-wrap,
.valentine-banner-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
}

.valentine-banner-image-wrap {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.valentine-banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    display: block;
}

.valentine-banner-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(139, 21, 56, 0.4) 0%, rgba(107, 15, 42, 0.5) 50%, rgba(90, 12, 36, 0.55) 100%);
    z-index: 1;
}

/* Entrance animation: content starts off-screen */
.valentine-banner .valentine-banner-happy,
.valentine-banner .valentine-banner-script,
.valentine-banner .valentine-banner-sale-row,
.valentine-banner .valentine-banner-brand,
.valentine-banner .valentine-banner-cta {
    opacity: 0;
    transform: translateY(28px);
    transition: none;
}

.valentine-banner .valentine-heart--large,
.valentine-banner .valentine-heart--small {
    opacity: 0;
    transform: scale(0.85);
    transition: none;
}

.valentine-banner.valentine-banner-visible .valentine-banner-happy {
    animation: valentineFadeUp 0.55s ease-out forwards;
}

.valentine-banner.valentine-banner-visible .valentine-banner-script {
    animation: valentineFadeUp 0.55s ease-out 0.08s forwards;
}

.valentine-banner.valentine-banner-visible .valentine-banner-sale-row {
    animation: valentineFadeUp 0.55s ease-out 0.16s forwards;
}

.valentine-banner.valentine-banner-visible .valentine-banner-brand {
    animation: valentineFadeUp 0.55s ease-out 0.24s forwards;
}

.valentine-banner.valentine-banner-visible .valentine-banner-cta {
    animation: valentineFadeUp 0.55s ease-out 0.32s forwards;
}

.valentine-banner.valentine-banner-visible .valentine-heart--large {
    animation: valentineHeartIn 0.6s ease-out 0.2s forwards, valentineHeartFloat 4s ease-in-out 0.9s infinite;
}

.valentine-banner.valentine-banner-visible .valentine-heart--small {
    animation: valentineHeartIn 0.6s ease-out 0.35s forwards, valentineHeartFloat 3.5s ease-in-out 1.1s infinite;
}

@keyframes valentineFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes valentineHeartIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes valentineHeartFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.valentine-banner-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 2;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.07);
    pointer-events: none;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.valentine-banner.valentine-banner-visible .valentine-banner-bg-pattern {
    opacity: 1;
}

.valentine-banner-bg-pattern::before {
    content: "Valentine's";
    position: absolute;
    left: 5%;
    top: 20%;
}

.valentine-banner-bg-pattern::after {
    content: "Valentine's";
    position: absolute;
    right: 15%;
    bottom: 15%;
}

.valentine-banner-blurs {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 120px 120px at 15% 30%, rgba(255, 100, 120, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 80px 80px at 70% 60%, rgba(255, 150, 160, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 100px 100px at 85% 20%, rgba(255, 120, 140, 0.2) 0%, transparent 50%);
}

.valentine-banner-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
}

.valentine-banner-content {
    flex: 1;
    max-width: 520px;
}

.valentine-banner-happy {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.35em;
    margin-bottom: 0.25rem;
}

.valentine-banner-script {
    display: block;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.valentine-banner-sale-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.valentine-banner-super {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.valentine-banner-day-sale {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.valentine-banner-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.5rem 0 1.25rem;
}

.valentine-banner-cta {
    display: inline-block;
    padding: 0.6rem 1.75rem;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 999px;
    transition: background 0.2s, color 0.2s;
}

.valentine-banner-cta:hover {
    background: #fff;
    color: #6b0f2a;
}

.valentine-banner-hearts {
    position: relative;
    flex-shrink: 0;
    width: 220px;
    height: 200px;
}

.valentine-heart {
    position: absolute;
    background: linear-gradient(145deg, #c41e3a 0%, #8b1538 40%, #6b0f2a 100%);
    border: 4px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow:
        inset 8px 8px 20px rgba(255, 255, 255, 0.35),
        inset -4px -4px 12px rgba(0, 0, 0, 0.2),
        0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Heart shape via clip-path */
.valentine-heart {
    width: 90px;
    height: 84px;
    border-radius: 0;
    clip-path: path('M45 78C20 52 0 32 0 18C0 6 8 0 18 0C28 0 36 8 40 18C44 8 52 0 62 0C72 0 90 6 90 18C90 32 70 52 45 78Z');
    -webkit-clip-path: path('M45 78C20 52 0 32 0 18C0 6 8 0 18 0C28 0 36 8 40 18C44 8 52 0 62 0C72 0 90 6 90 18C90 32 70 52 45 78Z');
}

.valentine-heart--large {
    bottom: 10%;
    right: 5%;
    width: 140px;
    height: 130px;
    clip-path: path('M70 122C31 81 0 47 0 26C0 9 12 0 26 0C41 0 56 14 60 26C64 14 79 0 94 0C108 0 140 9 140 26C140 47 109 81 70 122Z');
    -webkit-clip-path: path('M70 122C31 81 0 47 0 26C0 9 12 0 26 0C41 0 56 14 60 26C64 14 79 0 94 0C108 0 140 9 140 26C140 47 109 81 70 122Z');
}

.valentine-heart--small {
    bottom: 35%;
    right: 25%;
    width: 90px;
    height: 84px;
    clip-path: path('M45 78C20 52 0 32 0 18C0 6 8 0 18 0C28 0 36 8 40 18C44 8 52 0 62 0C72 0 90 6 90 18C90 32 70 52 45 78Z');
    -webkit-clip-path: path('M45 78C20 52 0 32 0 18C0 6 8 0 18 0C28 0 36 8 40 18C44 8 52 0 62 0C72 0 90 6 90 18C90 32 70 52 45 78Z');
}

@media (max-width: 768px) {
    .valentine-banner {
        min-height: 280px;
        padding: 2rem 1rem;
    }
    /* Video-only home banner: fit mobile with aspect ratio, no padding */
    .valentine-banner.valentine-banner--video {
        padding: 0;
        min-height: 180px;
        aspect-ratio: 16 / 9;
        max-height: 45vh;
    }
    .valentine-banner.valentine-banner--video .valentine-banner-video-wrap {
        min-height: 100%;
    }
    .valentine-banner.valentine-banner--video .valentine-banner-video {
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .valentine-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .valentine-banner-content {
        text-align: center;
    }
    .valentine-banner-sale-row {
        justify-content: center;
    }
    .valentine-banner-hearts {
        width: 160px;
        height: 140px;
    }
    .valentine-heart--large {
        width: 100px;
        height: 93px;
        right: 50%;
        transform: translateX(55%);
        clip-path: path('M50 87C22 58 0 33 0 18C0 6 8 0 18 0C29 0 41 12 45 18C49 12 61 0 72 0C82 0 100 6 100 18C100 33 78 58 50 87Z');
        -webkit-clip-path: path('M50 87C22 58 0 33 0 18C0 6 8 0 18 0C29 0 41 12 45 18C49 12 61 0 72 0C82 0 100 6 100 18C100 33 78 58 50 87Z');
    }
    .valentine-heart--small {
        width: 70px;
        height: 65px;
        right: 50%;
        bottom: 25%;
        transform: translateX(-30%);
        clip-path: path('M35 61C17 43 0 24 0 14C0 5 6 0 14 0C22 0 32 9 35 14C38 9 48 0 56 0C64 0 70 5 70 14C70 24 53 43 35 61Z');
        -webkit-clip-path: path('M35 61C17 43 0 24 0 14C0 5 6 0 14 0C22 0 32 9 35 14C38 9 48 0 56 0C64 0 70 5 70 14C70 24 53 43 35 61Z');
    }
}

@media (max-width: 480px) {
    .valentine-banner.valentine-banner--video {
        max-height: 38vh;
        aspect-ratio: 2 / 1;
    }
}

/* Shop by Brand Section – single row left to right: Chanel, Hermes, LV, Jewelry, Watches, Gucci */
.shop-by-brand-section {
    padding: 2rem 24px 72px;
    background: #fafafa;
}
.valentine-banner--carousel + .shop-by-brand-section {
    padding-top: 2rem;
}

.shop-by-brand-section .section-title {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.shop-by-brand-section .section-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 0.9375rem;
    color: #666;
    font-weight: 400;
}

.shop-by-brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.brand-card-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f0eeeb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-card-label {
    display: block;
    padding: 1rem 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 4px;
    letter-spacing: 0.03em;
}

@media (max-width: 1024px) {
    .shop-by-brand-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .shop-by-brand-section {
        padding: 48px 16px 56px;
    }

    .shop-by-brand-section .section-title {
        font-size: 1.5rem;
    }

    .shop-by-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }

    .brand-card {
        border-radius: 12px;
    }

    .brand-card-label {
        font-size: 0.875rem;
        padding: 0.875rem 0.75rem;
    }
}

/* Legacy: Featured Offers (kept for any dynamic content) */
.featured-offers-section {
    padding: 60px 20px;
    background: var(--white);
}

.offers-banner {
    text-align: center;
    margin-bottom: 3rem;
}

.offers-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: none;
    width: 100%;
    margin: 0;
}

.featured-product-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-product-image {
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #dc3545;
    color: var(--white);
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.featured-product-name {
    padding: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.featured-product-price {
    padding: 0 1rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #dc3545;
}

.featured-product-price .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border: 1px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s;
}

.view-all-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Animated Scrolling Section */
.animated-scroll-section {
    padding: 80px 0;
    background: var(--light-gray);
    overflow: hidden;
    position: relative;
}

.scroll-container {
    width: 100%;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scrollRight 40s linear infinite;
    white-space: nowrap;
    will-change: transform;
}

.scroll-text {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    flex-shrink: 0;
}

.scroll-products {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-shrink: 0;
}

.scroll-product-item {
    width: 200px;
    height: 200px;
    background: var(--white);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.scroll-product-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.animated-scroll-section:hover .scroll-content {
    animation-play-state: paused;
}

.brand-banner-section:hover .brand-banner-content {
    animation-play-state: paused;
}

/* Brand Banner Section (Product Showcase) */
.brand-banner-section {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.brand-banner-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.brand-banner-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: scrollBanner 15s linear infinite;
    white-space: nowrap;
    will-change: transform;
    padding: 1rem 0;
}

.banner-product-card {
    width: 200px;
    background: var(--white);
    border: 1px solid var(--border-color);
    flex-shrink: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-product-image-wrapper {
    width: 100%;
    height: 220px;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-product-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc3545;
    color: var(--white);
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.banner-product-info {
    padding: 0.75rem;
}

.banner-product-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.banner-product-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #dc3545;
}

.banner-product-price .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.8rem;
    margin-left: 0.4rem;
}

@keyframes scrollBanner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Chat with us button */
.chat-with-us-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.chat-bubble {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    white-space: nowrap;
}

.chat-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.chat-bubble span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.chat-icon {
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.chat-with-us-btn:hover .chat-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* Responsive adjustments for scrolling section */
@media (max-width: 768px) {
    .scroll-text {
        font-size: 2.5rem;
    }
    
    .scroll-product-item {
        width: 150px;
        height: 150px;
    }
    
    .offers-title {
        font-size: 2rem;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .banner-product-card {
        width: 160px;
    }
    
    .banner-product-image-wrapper {
        height: 180px;
    }
    
    .banner-product-name {
        font-size: 0.75rem;
    }
    
    .banner-product-price {
        font-size: 0.85rem;
    }
    
    .banner-product-badge {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .brand-banner-content {
        gap: 0.75rem;
    }
    
    .brand-banner-section {
        padding: 30px 0;
    }
    
    .chat-with-us-btn {
        bottom: 20px;
        left: 20px;
    }
    
    .chat-bubble {
        padding: 0.6rem 1.2rem;
    }
    
    .chat-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

/* Products Section */
.products-section {
    padding: 80px 20px;
    background: var(--white);
}
/* Fragrances page: minimal space between taper banner and "Our Fragrance Collection" */
.products-section--fragrances {
    padding-top: 0.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ========== Taper Banners (between hero and products) ========== */
.taper-banner {
    position: relative;
    width: 100%;
    min-height: 300px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* Video background for taper banner (e.g. wallets page) */
.taper-banner--video .taper-banner__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.taper-banner--video .taper-banner__video {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: contain;
    object-position: center;
    display: block;
}
.taper-banner--video .taper-banner__inner.taper-banner__inner--no-bg {
    background: none;
    position: relative;
    z-index: 1;
}

.taper-banner__inner {
    position: relative;
    width: 100%;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    box-sizing: border-box;
    animation: taperBannerReveal 1s ease-out;
}

/* Overlay (optional per-banner tint) */
.taper-banner__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.taper-banner__overlay--warm {
    background: linear-gradient(120deg, rgba(180,90,80,0.25) 0%, rgba(0,0,0,0.2) 50%, rgba(120,60,50,0.3) 100%);
    animation: taperOverlayShimmer 8s ease-in-out infinite;
}
.taper-banner__overlay--cool {
    background: linear-gradient(240deg, rgba(60,80,120,0.2) 0%, rgba(0,0,0,0.35) 50%, rgba(40,70,100,0.25) 100%);
    animation: taperOverlayPulse 6s ease-in-out infinite;
}
.taper-banner__overlay--rose {
    background: linear-gradient(160deg, rgba(200,100,120,0.3) 0%, rgba(0,0,0,0.2) 50%, rgba(180,80,100,0.35) 100%);
    animation: taperOverlayShimmer 7s ease-in-out infinite;
}

.taper-banner__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Taper shapes: each page has a unique angled shape */
.taper-banner--accessories .taper-banner__inner {
    clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 8%, 100% 92%, 0 100%);
}
.taper-banner--accessories .taper-banner__content {
    animation: taperContentSlideLeft 1s ease-out 0.2s both;
}

.taper-banner--wallets .taper-banner__inner {
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
    -webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 90%);
}
.taper-banner--wallets .taper-banner__content {
    animation: taperContentZoom 1s ease-out 0.2s both;
}

.taper-banner--lipcare .taper-banner__inner {
    clip-path: polygon(0 5%, 100% 12%, 100% 88%, 0 95%);
    -webkit-clip-path: polygon(0 5%, 100% 12%, 100% 88%, 0 95%);
}
.taper-banner--lipcare .taper-banner__content {
    animation: taperContentSlideUp 1s ease-out 0.2s both;
}

/* ========== Lip Care "Pamper Your Lips" promo banner ========== */
.lipcare-promo-banner {
    width: 100%;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 50%, #f4a0c0 100%);
    position: relative;
    overflow: hidden;
}
.lipcare-promo-banner--image {
    background: none;
    padding: 0;
    display: block;
}
.lipcare-promo-banner--image::before,
.lipcare-promo-banner--image::after {
    display: none;
}
.lipcare-promo-banner__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    vertical-align: middle;
}
.lipcare-promo-banner::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(142, 69, 133, 0.35);
    border-radius: 50%;
    pointer-events: none;
}
.lipcare-promo-banner::after {
    content: '';
    position: absolute;
    bottom: 25%;
    right: 12%;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(142, 69, 133, 0.25);
    border-radius: 50%;
    pointer-events: none;
}
.lipcare-promo-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 0;
    position: relative;
    z-index: 1;
}
.lipcare-promo-banner__content {
    padding-bottom: 1.25rem;
}
.lipcare-promo-banner__headline {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    color: #424242;
    margin: 0 0 0.1em 0;
    line-height: 1.1;
}
.lipcare-promo-banner__title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #424242;
    margin: 0 0 0.35em 0;
    letter-spacing: 0.02em;
}
.lipcare-promo-banner__tagline {
    font-size: clamp(0.7rem, 2vw, 0.85rem);
    font-weight: 400;
    color: #757575;
    letter-spacing: 0.2em;
    margin: 0;
}
.lipcare-promo-banner__offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.6);
    border-top: 1px solid rgba(142, 69, 133, 0.2);
    padding: 0.85rem 1.25rem;
    gap: 1rem;
}
.lipcare-promo-banner__offer-left {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.lipcare-promo-banner__offer-label {
    font-size: 0.75rem;
    color: #616161;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.lipcare-promo-banner__offer-discount {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c2185b;
}
.lipcare-promo-banner__offer-right {
    text-align: right;
}
.lipcare-promo-banner__offer-only {
    display: block;
    font-size: 0.7rem;
    color: #757575;
    letter-spacing: 0.1em;
}
.lipcare-promo-banner__offer-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: #424242;
}
@media (max-width: 768px) {
    .lipcare-promo-banner__inner { padding: 1.75rem 1rem 0; }
    .lipcare-promo-banner__offer { flex-direction: column; align-items: flex-start; padding: 0.75rem 1rem; }
    .lipcare-promo-banner__offer-right { text-align: left; }
}

.taper-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 560px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.taper-banner__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
    opacity: 0;
    animation: taperBannerTitle 0.9s ease 0.3s forwards;
}

.taper-banner__tagline {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    font-weight: 400;
    margin: 0;
    opacity: 0;
    animation: taperBannerTagline 0.8s ease 0.5s forwards;
}

@keyframes taperBannerReveal {
    from {
        opacity: 0;
        transform: scale(1.08);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes taperBannerTitle {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes taperBannerTagline {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Per-banner content entrance */
@keyframes taperContentSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes taperContentZoom {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes taperContentSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Overlay ambient animations */
@keyframes taperOverlayShimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}
@keyframes taperOverlayPulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

/* Hover: subtle zoom and smooth transition */
.taper-banner:hover .taper-banner__inner {
    transform: scale(1.03);
    transition: transform 0.6s ease;
}
.taper-banner .taper-banner__inner {
    transition: transform 0.6s ease;
}

@media (max-width: 768px) {
    .taper-banner { min-height: 240px; }
    .taper-banner__inner { min-height: 240px; padding: 2rem 1.25rem; }
    .taper-banner--accessories .taper-banner__inner { clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%); }
    .taper-banner--wallets .taper-banner__inner { clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%); -webkit-clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%); }
    .taper-banner--lipcare .taper-banner__inner { clip-path: polygon(0 3%, 100% 8%, 100% 92%, 0 97%); -webkit-clip-path: polygon(0 3%, 100% 8%, 100% 92%, 0 97%); }
    /* Video-only wallets banner: full width, tall enough to be fully visible on phone */
    .taper-banner.taper-banner--video {
        min-height: 280px;
        aspect-ratio: 4 / 3;
        max-height: none;
        width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    .taper-banner.taper-banner--video .taper-banner__video-wrap {
        inset: 0;
    }
    .taper-banner.taper-banner--video .taper-banner__video {
        min-height: 100%;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 480px) {
    .taper-banner.taper-banner--video {
        min-height: 260px;
        aspect-ratio: 3 / 4;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-pink), var(--purple), var(--coral), var(--primary-pink));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-card::after {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.product-image {
    width: 100%;
    height: 350px;
    background: #fff;
    border-radius: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    border: none;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-image img:not(.product-img-hover) {
    border-radius: 0;
    transition: opacity 0.35s ease;
}
/* On product hover: hide main image so alternate image(s) show clearly */
.product-card:hover .product-image img:not(.product-img-hover) {
    opacity: 0;
}
/* Wallet page: no hover effect – keep main image visible and no scale on hover */
.product-card--no-hover:hover .product-image img:not(.product-img-hover) {
    opacity: 1;
}
.product-card--no-hover:hover .product-image img {
    transform: none;
}

/* Hover image overlay: second/third picture (e.g. "miu miu 2.jpg", "miu miu 3.jpg") shows on product hover */
.product-image .product-img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
}
.product-card:hover .product-image .product-img-hover {
    opacity: 1;
}
/* When multiple hover images (2, 3, 4): stagger so later images appear on top */
.product-card:hover .product-image .product-img-hover:nth-of-type(3) {
    transition-delay: 0.4s;
    z-index: 2;
}
.product-card:hover .product-image .product-img-hover:nth-of-type(4) {
    transition-delay: 0.7s;
    z-index: 3;
}

.category-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    margin: 0.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    border: 1px solid var(--accent-color);
    font-weight: 400;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    width: fit-content;
    min-width: 200px;
}

.category-link:hover {
    background: transparent;
    color: var(--accent-color);
}

.product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1rem 1rem 0.5rem;
    line-height: 1.3;
}

.product-description {
    display: none;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #dc3545;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.product-price .original-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.9rem;
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin: 0 1rem 1rem;
}

.add-to-cart-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart-btn:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1rem;
}

.feature p {
    color: var(--text-light);
    font-weight: 300;
    font-size: 0.9rem;
}

/* Shopping Cart */
.cart-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.3s ease;
}

.cart-overlay.active {
    right: 0;
}

.cart-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 24px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cart-header {
    padding: 1.5rem 1.5rem 1.25rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-header h2 {
    color: #1a1a1a;
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.02em;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0.25rem;
    transition: color 0.2s, background 0.2s;
    border-radius: 4px;
}

.close-cart:hover {
    color: #1a1a1a;
    background: #f0f0f0;
}

.cart-your-items {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.cart-section-title {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    margin: 0;
    padding: 1rem 1.5rem 0.5rem;
    border-bottom: 1px solid #eee;
}

.cart-items {
    flex: 1;
    padding: 1rem 1.5rem;
    overflow-y: auto;
    min-height: 0;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
}

.cart-item-image {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    color: var(--primary-pink);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quantity-btn {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.quantity-btn:hover {
    background: #333;
    color: #fff;
}

.remove-item {
    margin-left: auto;
    background: #b71c1c;
    color: #fff;
    border: 1px solid #8e0000;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}
.remove-item:hover {
    background: #c62828;
    border-color: #b71c1c;
}
.remove-item:active {
    background: #8e0000;
}

.empty-cart {
    text-align: center;
    padding: 2rem;
    color: #666;
}

.cart-footer {
    padding: 1.5rem 1.5rem 1.75rem;
    border-top: 1px solid #eee;
    flex-shrink: 0;
    background: #fff;
}

.delivery-fee-info {
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.delivery-fee-info small {
    color: #6b6b6b;
    font-size: 0.8rem;
}

.cart-total {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 1rem 1.25rem;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
a.checkout-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
}

.checkout-btn:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* You May Also Like – Fashionphile-style (cart & checkout) */
.you-may-also-like {
    padding: 1.5rem 1rem;
    border-top: 2px solid #e0e0e0;
    background: #f8f8f8;
    margin-top: 0;
    flex-shrink: 0;
}

.ymal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-transform: none;
    letter-spacing: 0.02em;
    margin: 0 0 1rem 0;
}

.ymal-carousel-wrap {
    position: relative;
    margin: 0 -0.5rem;
}

.ymal-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0.5rem 0.5rem;
}

.ymal-carousel::-webkit-scrollbar {
    display: none;
}

.ymal-card {
    flex: 0 0 140px;
    min-width: 140px;
    text-decoration: none;
    color: #1a1a1a;
    display: block;
    transition: opacity 0.2s;
}

.ymal-card:hover {
    opacity: 0.9;
}

.ymal-card-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    border: 1px solid #e8e8e8;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.ymal-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ymal-card-wishlist {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: auto;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    color: #1a1a1a;
}

.ymal-card-wishlist svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
}

.ymal-card-brand {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.ymal-card-name {
    font-size: 0.8rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.ymal-card-condition {
    font-size: 0.7rem;
    color: #6b6b6b;
    margin-bottom: 0.35rem;
}

.ymal-card-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.ymal-card > span {
    display: block;
}

.ymal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.2s;
}

.ymal-nav-btn--right {
    right: 0.5rem;
}

.ymal-nav-btn--left {
    left: 0.5rem;
}

.ymal-nav-btn:hover {
    background: #333;
    transform: translateY(-50%) scale(1.05);
}

.ymal-nav-btn:focus {
    outline: 2px solid #1a1a1a;
    outline-offset: 2px;
}

/* Cart sidebar: chosen items + recommended at bottom */
.you-may-also-like--cart {
    background: #f5f5f5;
    border-top: 2px solid #e0e0e0;
    padding: 1.25rem 1rem 1.5rem;
    transition: opacity 0.2s ease, max-height 0.3s ease;
}

.you-may-also-like--cart.is-dismissed {
    display: none;
}

.ymal-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.ymal-dismiss-btn {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    padding: 0;
    border: 1px solid #ccc;
    background: #fff;
    color: #666;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ymal-dismiss-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.you-may-also-like--cart .ymal-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}

.you-may-also-like--cart .ymal-carousel-wrap {
    margin: 0 -0.25rem;
}

.you-may-also-like--cart .ymal-carousel {
    padding-right: 2.5rem;
}

.you-may-also-like--cart .ymal-card {
    flex: 0 0 120px;
    min-width: 120px;
}

/* Cart YMAL card: wrapper div with link + Add to Cart button */
.ymal-card--cart {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #1a1a1a;
}

.ymal-card--cart .ymal-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s;
}

.ymal-card--cart .ymal-card-link:hover {
    opacity: 0.85;
}

.ymal-card-add-btn {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.45rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
}

.ymal-card-add-btn:hover {
    background: #fff;
    color: #1a1a1a;
}

.you-may-also-like--cart .ymal-card-brand,
.you-may-also-like--cart .ymal-card-name {
    font-size: 0.7rem;
}

.you-may-also-like--cart .ymal-card-condition {
    font-size: 0.65rem;
}

.you-may-also-like--cart .ymal-card-price {
    font-size: 0.8rem;
}

.you-may-also-like--cart .ymal-nav-btn--left {
    display: none;
}

/* Checkout modal: full-width carousel, left + right arrows */
.you-may-also-like--checkout .ymal-carousel-wrap {
    margin: 0 -1rem;
}

.you-may-also-like--checkout .ymal-carousel {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.you-may-also-like--checkout .ymal-card {
    flex: 0 0 160px;
    min-width: 160px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

/* Order/checkout modal stays on top of cart overlay */
#orderModal.active {
    z-index: 3000;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.modal-header {
    padding: 2rem;
    border-bottom: 2px solid var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--dark);
}

.close-modal {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--primary-pink);
}

/* Checkout modal header and footer (Fashionphile-style) */
.checkout-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}
.checkout-modal-logo {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.checkout-modal-logo:hover {
    color: var(--primary-pink, #c9a86c);
}
.checkout-modal-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1a1a1a;
}
.checkout-modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #eee;
    background: #fafafa;
    font-size: 0.85rem;
}
.checkout-modal-footer a {
    color: #555;
    text-decoration: none;
}
.checkout-modal-footer a:hover {
    text-decoration: underline;
    color: #1a1a1a;
}
.checkout-footer-copy {
    color: #999;
    margin-left: auto;
}
.modal-content--checkout .modal-header {
    padding: 1rem 2rem;
}
.modal-content--checkout .order-form {
    padding: 1rem 2rem 2rem;
}
.you-may-also-like--checkout {
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid #eee;
}

.order-form {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--light-bg);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-pink);
}

.order-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.order-summary h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

/* M-Pesa Payment Section */
.mpesa-payment-section {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid #2196F3;
}

/* Manual Payment Section (M-Pesa transaction ID + receipt email) */
.manual-payment-section {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid #FF9800;
}

/* M-Pesa Phone Prompt Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(76, 175, 80, 0.5);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.mpesa-phone-prompt,
.mpesa-stk-prompt {
    animation: pulse 2s infinite;
}

.mpesa-phone-prompt:hover,
.mpesa-stk-prompt:hover {
    animation: none;
    transform: scale(1.02);
}

.mpesa-info-box {
    background: white;
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mpesa-info-box h4 {
    color: #1976D2;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.mpesa-info-box p {
    color: #666;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.mpesa-info-box ol {
    color: #555;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.mpesa-info-box ol li {
    margin-bottom: 0.5rem;
}

.mpesa-info-box strong {
    color: #1976D2;
    font-weight: 600;
}

/* Notification Button */
.nav-btn-notifications {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #FF9800, #FF6B00) !important;
    position: relative;
    overflow: visible;
}

.nav-btn-notifications:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.5);
}

.nav-btn-notifications .nav-badge {
    /* Same circular black badge style as wishlist/cart */
}

/* In-App Notifications */
.in-app-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 5000;
    min-width: 300px;
    max-width: 400px;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-pink);
}

.in-app-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.in-app-notification-success {
    border-left-color: #4CAF50;
}

.in-app-notification-error {
    border-left-color: #F44336;
}

.in-app-notification-warning {
    border-left-color: #FF9800;
}

.in-app-notification-order {
    border-left-color: var(--primary-pink);
}

.notification-content {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notification-message {
    flex: 1;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.5;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.notification-close:hover {
    background: #f5f5f5;
    color: var(--dark);
}

.submit-order-btn {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-order-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background: var(--light-gray);
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-section > p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-dark);
    font-weight: 300;
    font-size: 0.9rem;
}

/* Location Section – Get in Touch (classic, refined) */
.location-section {
    padding: 5rem 1.5rem;
    background: #fafafa;
    text-align: center;
}

.location-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.location-section-subtitle {
    font-size: 0.9375rem;
    color: #6b6b6b;
    margin: 0 0 3rem 0;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.location-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 820px;
    margin: 0 auto 3.5rem;
}

.location-card {
    background: #fff;
    padding: 2.25rem 1.75rem;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-card:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.location-card-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1.25rem;
    color: #1a1a1a;
}

.location-card-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.location-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #1a1a1a;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.location-card-link {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.location-card-link:hover {
    border-bottom-color: #1a1a1a;
    color: #1a1a1a;
}

/* Full width from edge to edge */
.location-store-block {
    width: 100%;
    max-width: none;
    margin: 0;
    margin-top: 0;
    background: #fff;
    border-radius: 0;
    border: none;
    border-top: 1px solid #e8e8e8;
    box-shadow: none;
    overflow: hidden;
    text-align: left;
}

.location-store-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    justify-content: center;
    align-items: start;
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #f5f5f5;
}

/* Shop image: square, no stretch */
.location-store-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.location-store-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
    pointer-events: none;
}

.location-store-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Map: square, no stretch */
.location-store-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.location-store-map-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    background: #e8e8e8;
}

.location-store-map-wrap .location-map-pin {
    position: relative;
    margin-top: calc(100% + 0.75rem);
    z-index: 1;
}

.location-map-pin {
    align-self: flex-start;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.location-map-pin:hover {
    border-color: #1a1a1a;
    background: #fafafa;
}

.location-map-pin svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.location-store-details {
    padding: 1.75rem 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-store-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #1a1a1a;
    margin: 0 0 0.75rem 0;
}

.location-store-address,
.location-store-phone {
    display: block;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    margin-bottom: 0.5rem;
    transition: border-color 0.2s ease;
}

.location-store-address:hover,
.location-store-phone:hover {
    border-bottom-color: #1a1a1a;
}

.location-store-services {
    font-size: 0.875rem;
    color: #6b6b6b;
    margin: 1rem 0 1.25rem 0;
    letter-spacing: 0.02em;
}

.location-view-more {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    color: #1a1a1a;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.location-view-more:hover {
    background: #fafafa;
    border-color: #1a1a1a;
}

@media (max-width: 768px) {
    .location-section {
        padding: 3.5rem 1rem;
    }
    .location-section-subtitle {
        margin-bottom: 2rem;
    }
    .location-contact-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    .location-card {
        padding: 1.75rem 1.25rem;
    }
    .location-card-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 1rem;
    }
    .location-store-visual {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .location-store-image-wrap {
        border-right: none;
        border-bottom: 1px solid #e8e8e8;
    }
    /* Keep shop image square: no min/max height so aspect-ratio 1/1 is preserved */
    .location-store-map-wrap {
        width: 100%;
        min-width: 0;
    }
    /* Keep map square: iframe fills the 1:1 wrap, no fixed height */
    .location-map-pin {
        align-self: flex-start;
    }
}

/* Footer – Fashionphile-style: dark grey, multi-section */
.footer {
    background: #2d2d2d;
    color: #e0e0e0;
    padding: 0;
    text-align: left;
    position: relative;
}

.footer .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-left h3,
.footer-col h3 {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.footer-newsletter {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-newsletter input {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 1.125rem;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.9375rem;
    border-right: none;
    border-radius: 6px 0 0 6px;
    transition: border-color 0.2s, background 0.2s;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.1);
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,0.5);
}

.footer-newsletter button {
    padding: 0.875rem 1.25rem;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-left: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.2s;
}

.footer-newsletter button:hover {
    background: #333;
}

.footer-newsletter button svg {
    width: 20px;
    height: 20px;
}

.footer-social-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-social-row a {
    color: #e0e0e0;
    text-decoration: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, transform 0.2s;
}

.footer-social-row a:hover {
    color: #fff;
    transform: scale(1.05);
}

.footer-social-row a i {
    font-size: 1.25rem;
}

/* Download the App block – dark style: left-aligned, black buttons, white border */
.footer-app-block {
    text-align: left;
    padding: 1.25rem 0 0;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-app-block h3 {
    margin: 0 0 1rem 0;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.footer-app-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-app-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem 0.5rem 0.6rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    transition: opacity 0.2s, border-color 0.2s;
    min-height: 40px;
    box-sizing: border-box;
}

.footer-app-buttons a:hover {
    opacity: 0.95;
    border-color: rgba(255,255,255,0.5);
}

.footer-app-btn-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-app-btn-icon i {
    font-size: 1.4rem;
    color: #fff;
}

.footer-app-btn-icon svg {
    width: 22px;
    height: 22px;
}

.footer-app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.footer-app-btn-text span:first-child {
    font-size: 0.6rem;
    font-weight: 400;
}

.footer-app-btn-text span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
}

.footer-app-disclaimer {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.5rem;
    margin-top: 0;
}

.footer-bottom-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.footer-copyright {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #fff;
}

/* Need Help? floating widget */
.footer-help-widget {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: box-shadow 0.2s, transform 0.2s;
}

.footer-help-widget:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.footer-help-widget svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-help-widget button,
.footer-help-widget[type="button"] {
    background: none;
    border: none;
    color: inherit;
    font: inherit;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Help Chat Box – offline chat panel (Fashionphile-style) */
.help-chat-box {
    position: fixed;
    bottom: 5rem;
    right: 1.5rem;
    width: 380px;
    max-width: calc(100vw - 2rem);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
    flex-direction: column;
    overflow: hidden;
    font-family: inherit;
}

.help-chat-box.is-open {
    display: flex;
}

.help-chat-header {
    background: #757575;
    color: #e8e8e8;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.help-chat-header-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.help-chat-header-title strong {
    color: #fff;
}

.help-chat-header .help-chat-close {
    background: none;
    border: none;
    color: inherit;
    padding: 0.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.help-chat-header .help-chat-close:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.help-chat-header .help-chat-close svg {
    width: 18px;
    height: 18px;
}

.help-chat-body {
    padding: 1rem;
    background: #fff;
}

.help-chat-msg-bubble {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 0.75rem;
}

.help-chat-msg-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: #000;
}

.help-chat-msg-brand svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.help-chat-msg-text {
    font-size: 0.875rem;
    color: #333;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.help-chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-chat-buttons a,
.help-chat-buttons button {
    display: block;
    width: 100%;
    padding: 0.65rem 1rem;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}

.help-chat-buttons a:hover,
.help-chat-buttons button:hover {
    background: #1a1a1a;
    color: #fff;
}

.help-chat-footer {
    padding: 0 1rem 0.75rem;
    font-size: 0.75rem;
    color: #999;
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer .footer-inner {
        padding: 2rem 1rem 1.5rem;
    }
    .footer-top {
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-newsletter {
        max-width: 100%;
    }
    .footer-help-widget {
        bottom: 1rem;
        right: 1rem;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .help-chat-box {
        bottom: 4rem;
        right: 1rem;
        left: 1rem;
        width: auto;
        max-width: none;
    }
}

/* Legacy footer .container single-row (if used elsewhere) */
.footer .container {
    display: block;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon i {
    font-size: 1.8rem;
    color: white;
}

.whatsapp-icon {
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.instagram-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
}

.social-icon:hover {
    transform: scale(1.1);
}

.whatsapp-icon:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.instagram-icon:hover {
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation - White header with rounded corners */
    
    body::before {
        display: none !important;
    }

    .navbar {
        background: #fff;
        border-radius: 0;
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-container {
        padding: 0 1rem;
        flex-wrap: nowrap;
        gap: 0.5rem;
        align-items: center;
        min-height: 52px;
    }

    /* Nav menu in header row: take no space (only when direct child – e.g. wallets page). Drawer’s ul is inside .nav-menu-drawer so not affected. */
    .nav-container > .nav-menu {
        flex: 0 0 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .logo {
        order: 1;
        flex: 1;
        min-width: 0;
    }

    .logo h1,
    .logo-link {
        font-size: 0.875rem;
        font-weight: 600;
        color: #1a1a1a;
        margin: 0;
        line-height: 1.2;
        letter-spacing: 0.06em;
    }

    .logo-img {
        height: 2.5rem;
        max-height: 44px;
        min-height: 36px;
    }

    .logo-text {
        font-size: 0.875rem;
    }
    
    .nav-actions {
        order: 2;
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        order: 3;
        display: flex;
        position: relative;
        top: 0;
        right: 0;
        padding: 0.5rem;
        cursor: pointer;
        z-index: 999;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 1.5px;
        background: #2c2c2c;
    }

    .nav-menu-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 96px;
        left: -100%;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 96px);
        max-height: calc(100vh - 96px);
        background: #fff;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 1003;
        transition: left 0.3s ease;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu-drawer.active {
        left: 0;
    }

    .nav-menu-drawer .nav-menu,
    .nav-menu-drawer.active .nav-menu {
        flex: 1;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 1rem 0;
        margin: 0;
        gap: 0;
        list-style: none;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        overflow-y: auto !important;
        overflow-x: visible !important;
        border: none;
        background: transparent;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu-drawer .nav-menu li,
    .nav-menu-drawer.active .nav-menu li {
        display: list-item !important;
        visibility: visible !important;
    }

    /* Mega menus: hidden in mobile drawer (no hover) */
    .nav-mega-menu {
        display: none !important;
    }

    .nav-menu-drawer .nav-menu a,
    .nav-menu-drawer.active .nav-menu a {
        display: block !important;
        visibility: visible !important;
    }

    .nav-menu.active {
        left: 0;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }

    .nav-container .nav-menu-drawer.active {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        overflow-y: auto !important;
        left: 0 !important;
    }

    .nav-menu.active,
    .nav-container .nav-menu.active {
        width: 100% !important;
        min-width: 100% !important;
        max-width: none !important;
        overflow-y: auto !important;
        left: 0 !important;
        z-index: 1003;
    }

    /* Prevent body scroll when mobile menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        color: #2c2c2c;
        font-weight: 500;
        letter-spacing: 0.04em;
    }

    .nav-menu a:hover {
        color: #1a1a1a;
        background: rgba(0, 0, 0, 0.02);
    }

    .nav-menu-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1.25rem 1rem 1.5rem;
        margin-top: auto;
        border-top: 1px solid #e5e5e5;
        background: #fff;
    }

    /* Find a Location – prominent dark button, always first, centered */
    .nav-menu-find-location {
        order: -1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.875rem 1.25rem;
        min-height: 48px;
        font-size: 0.9375rem;
        font-weight: 600;
        color: #fff;
        background: #1a1a1a;
        border: none;
        border-radius: 6px;
        text-decoration: none;
        width: 100%;
        max-width: 280px;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
        margin-bottom: 1rem;
        transition: background 0.2s ease;
    }

    .nav-menu-find-location:hover {
        background: #333;
        color: #fff;
    }

    .nav-menu-find-location svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    /* Profile / Sign in – centered below location, icon + text */
    .nav-menu-signin,
    .nav-menu-signup {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.625rem;
        padding: 0.75rem 0;
        margin-bottom: 0.5rem;
        min-height: 44px;
        font-size: 0.9375rem;
        font-weight: 500;
        color: #1a1a1a;
        text-decoration: none;
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
        touch-action: manipulation;
        transition: color 0.2s ease;
    }

    .nav-menu-signin:hover,
    .nav-menu-signup:hover {
        color: #333;
    }

    .nav-menu-signin svg,
    .nav-menu-signup svg {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
    }

    /* Log out – centered below profile, plain text */
    .nav-menu-logout {
        display: none;
        align-items: center;
        justify-content: center;
        padding: 0.75rem 0;
        min-height: 44px;
        font-size: 0.9375rem;
        font-weight: 500;
        color: #1a1a1a;
        background: none;
        border: none;
        cursor: pointer;
        width: 100%;
        text-align: center;
        font-family: inherit;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.08);
        touch-action: manipulation;
        transition: color 0.2s ease;
    }

    .nav-menu-logout:hover {
        color: #333;
    }

    .nav-actions {
        gap: 0.4rem;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .user-info {
        max-width: 100%;
        padding: 0.75rem 1rem;
        gap: 0.5rem;
        order: -1;
        width: 100%;
        margin-bottom: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .user-info .profile-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .user-info .user-name {
        font-size: 0.85rem;
        max-width: none;
        color: #2c2c2c;
    }

    .user-info .user-points {
        font-size: 0.75rem;
        color: #6b6560;
    }

    /* ============================================================
       MOBILE HEADER – Clean layout
       Row 1: Hamburger (left) | centered Logo | Search | Heart | Bag (right)
       Row 2: Full-width search bar
       ============================================================ */

    .navbar {
        background: #fff;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .nav-container {
        position: relative;
        flex-wrap: nowrap;
        align-items: center;
        gap: 0.5rem;
        min-height: 56px;
        padding: 0 1rem;
    }

    .nav-sell-btn {
        display: none !important;
    }

    /* Left: Hamburger only */
    .nav-mobile-left {
        display: flex;
        order: 1;
        align-items: center;
        gap: 0;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
        background: transparent;
        border: none;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 999;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 1.5px;
        background: #2c2c2c;
    }

    /* Logo left-aligned (next to hamburger) | Right: Wishlist, Cart */
    .nav-logo-wrap {
        display: flex !important;
        flex: 1 1 0%;
        min-width: 0;
        order: 2;
        justify-content: flex-start !important;
        align-items: center;
        margin-left: -0.5rem;
        margin-right: 0;
        padding-left: 0.5rem;
        padding-right: 1rem;
        overflow: hidden;
    }

    .nav-container .nav-menu-drawer {
        order: 3;
        flex: 0 0 0 !important;
        width: 0 !important;
        min-width: 0 !important;
        max-width: 0 !important;
        overflow: hidden !important;
    }

    /* Logo inside nav-brand-actions – left only, never shrink so icons don’t overlap */
    .nav-logo-wrap .logo {
        flex-shrink: 0;
        max-width: calc(100vw - 280px);
    }

    .nav-logo-wrap .logo-link {
        overflow: hidden;
        min-width: 0;
        display: inline-flex;
        align-items: center;
        font-size: 0.875rem;
    }

    .nav-logo-wrap .logo-text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.875rem;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        order: 4;
        flex: 0 0 auto;
        flex-shrink: 0;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-left: 1rem;
    }

    /* Hide desktop-only elements on mobile */
    .nav-actions .user-info,
    .nav-actions .nav-btn-user,
    .nav-actions .nav-btn-login,
    .nav-actions .nav-btn-signup,
    .nav-actions #logoutBtn,
    .nav-actions .nav-btn-notifications {
        display: none !important;
    }

    .nav-actions .nav-btn-wishlist,
    .nav-actions .nav-btn-cart {
        display: inline-flex !important;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        align-items: center;
        justify-content: center;
    }

    /* Mobile: show search icon with clear gap from logo */
    .nav-actions .nav-btn-search {
        display: inline-flex !important;
        min-width: 44px;
        min-height: 44px;
        flex-shrink: 0;
        margin-left: 1.25rem;
    }

    /* Mobile: same icon size for even row, minimal style */
    .nav-btn-round {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #1a1a1a;
        align-items: center;
        justify-content: center;
    }

    .nav-btn-user,
    .nav-btn-wishlist,
    .nav-btn-cart {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .nav-btn-wishlist:hover,
    .nav-btn-cart:hover {
        transform: none;
        box-shadow: none;
        background: transparent !important;
        color: #333;
        opacity: 0.85;
    }

    .nav-btn-wishlist .nav-badge,
    .nav-btn-cart .nav-badge {
        font-size: 0.6rem;
        min-width: 16px;
        height: 16px;
        padding: 0;
        border-radius: 50%;
        top: -2px;
        right: -2px;
        background: #1a1a1a;
        color: #fff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    /* Row 2 – Search bar: hidden on mobile (search only on laptop/desktop) */
    .mobile-search-bar {
        display: none !important;
    }

    .mobile-search-wrap {
        display: flex;
        align-items: center;
        width: 100%;
        background: #f5f5f5;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 6px;
        padding: 0 1rem;
        min-height: 44px;
    }

    .mobile-search-input {
        flex: 1;
        border: none;
        background: transparent;
        padding: 0.75rem 0.5rem 0.75rem 0;
        font-size: 0.9375rem;
        color: #1a1a1a;
        min-width: 0;
    }

    .mobile-search-input::placeholder {
        color: #888;
    }

    .mobile-search-input:focus {
        outline: none;
    }

    .mobile-search-btn {
        flex-shrink: 0;
        padding: 0 0.75rem;
        min-width: 48px;
        min-height: 44px;
        background: transparent;
        border: none;
        border-left: 1px solid rgba(0, 0, 0, 0.08);
        cursor: pointer;
        color: #1a1a1a;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s, color 0.2s;
    }

    .mobile-search-btn:hover {
        background: rgba(0, 0, 0, 0.04);
        color: #333;
    }

    .mobile-search-btn:active {
        background: rgba(0, 0, 0, 0.06);
    }

    .mobile-search-btn svg {
        width: 20px;
        height: 20px;
        stroke-width: 1.5;
    }

    /* Sub-pages: drawer and search bar below nav (header flush to top) */
    body:not(.page-home) .mobile-search-bar {
        top: 56px;
    }

    body:not(.page-home) .nav-menu-drawer {
        top: 56px;
        height: calc(100vh - 56px);
        z-index: 998;
        overflow-y: auto;
    }

    .hero {
        padding-top: 80px;
    }
    .hero--wallets {
        padding-top: 80px;
        padding-bottom: 1rem;
    }

    .nav-btn-logout {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        height: 40px;
        min-width: 80px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-btn-admin {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
        height: 40px;
        min-width: 90px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .logo h1,
    .logo-link {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 3.25rem;
        max-height: 60px;
        min-height: 48px;
    }

    .logo-text {
        font-size: 1.9rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cart-sidebar {
        width: 100%;
    }

    .footer .container {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 1rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .social-icon i {
        font-size: 1.5rem;
    }

    /* Products section: search & filter – luxury mobile */
    .search-filter-bar {
        padding: 1.25rem 1rem;
        background: #f7f5f2;
        border: none;
        border-radius: 10px;
        margin-bottom: 1.5rem;
    }

    .search-box {
        flex-direction: column;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .search-input {
        width: 100%;
        padding: 0.85rem 1rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        background: #fff;
        font-size: 0.9rem;
        color: #1a1a1a;
    }

    .search-input::placeholder {
        color: #6b6560;
    }

    .search-input:focus {
        border-color: #a89f96;
        outline: none;
    }

    .search-btn {
        width: 100%;
        padding: 0.85rem 1.5rem;
        background: #2c2c2c;
        color: #fff;
        border: none;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .search-btn:hover {
        background: #1a1a1a;
        color: #fff;
    }

    .filter-buttons {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 999px;
        color: #2c2c2c;
        font-weight: 500;
        letter-spacing: 0.04em;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: #2c2c2c;
        color: #fff;
        border-color: #2c2c2c;
    }

    /* View Wallets / Accessories / Lip Care – mobile */
    .products-section div[style*="flex-direction: column"] {
        gap: 0.75rem !important;
        margin-bottom: 1.5rem !important;
        margin-top: 1.5rem !important;
    }

    .category-link {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0.85rem 1.25rem;
        margin: 0;
        background: #fff;
        color: #2c2c2c;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-align: center;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

    .category-link:hover {
        background: #f7f5f2;
        border-color: #a89f96;
        color: #1a1a1a;
    }

    .track-container {
        margin-top: 100px;
        padding: 0 15px;
    }

    .track-header h1 {
        font-size: 2rem;
    }

    .track-input-group {
        flex-direction: column;
    }

    .track-btn {
        width: 100%;
    }

    .rider-header {
        padding: 1.5rem 1rem;
    }

    .rider-header-content {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .rider-actions {
        width: 100%;
    }

    .rider-btn {
        width: 100%;
    }

    .dispatched-orders {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .order-card-rider {
        padding: 1.5rem;
    }

    .map-container {
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .search-filter-bar {
        padding: 1rem 0.75rem;
    }

    .search-input,
    .search-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .filter-btn {
        padding: 0.45rem 0.85rem;
        font-size: 0.75rem;
    }

    .category-link {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card img {
        height: 200px;
    }

    .track-header h1 {
        font-size: 1.5rem;
    }

    .track-form,
    .order-details {
        padding: 1.5rem;
    }

    .rider-header {
        padding: 1rem;
    }

    .rider-info h2 {
        font-size: 1.3rem;
    }

    .map-container {
        height: 300px !important;
    }

    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-btn {
        width: 100%;
        margin-top: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 240, 245, 0.5) 100%);
    z-index: 1;
}

/* Search and Filter Bar */
.search-filter-bar {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0;
    border: 1px solid var(--border-color);
}

.search-box {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.3s;
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.search-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.search-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0;
    color: var(--text-dark);
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

/* Bags page – Fashionphile-style: title, horizontal scroll types, sidebar + grid */
.bags-page .bags-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.bags-page-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

/* Horizontally scrollable bag types + arrow */
.bag-types-scroll-wrap {
    position: relative;
    margin-bottom: 2rem;
}

.bag-types-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
}

.bag-types-scroll::-webkit-scrollbar {
    display: none;
}

.bag-type-card {
    flex: 0 0 auto;
    width: 180px;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.bag-type-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.bag-type-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.bag-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bag-type-label {
    display: block;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
}

.bag-type-arrow {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
}

.bag-types-scroll-prev {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.bag-types-scroll-prev:hover {
    background: #f5f5f5;
}

.bag-types-scroll-next {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.bag-types-scroll-next:hover {
    background: #f5f5f5;
}

/* Two-column: sidebar + main */
.bags-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

.bags-sidebar {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0;
    background: #fff;
    padding: 1.25rem;
}

.bags-sidebar-header {
    margin-bottom: 1.25rem;
}

.bags-sidebar-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.bags-sidebar-count {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1rem 0;
}

.bags-save-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.bags-save-search:hover {
    background: #333;
}

/* Collapsible filter groups */
.bags-filter-group {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    margin-top: 1rem;
}

.bags-filter-group:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.bags-filter-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 0 0 0.5rem 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    text-align: left;
}

.bags-filter-chevron {
    font-size: 0.7rem;
    transition: transform 0.2s;
}

.bags-filter-group.collapsed .bags-filter-chevron {
    transform: rotate(-90deg);
}

.bags-filter-group-content {
    overflow: hidden;
    max-height: 800px;
    transition: max-height 0.25s ease;
}

.bags-filter-group.collapsed .bags-filter-group-content {
    max-height: 0 !important;
    padding-top: 0;
    margin-top: 0;
}

.bags-filter-search {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.bags-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.bags-filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
}

.bags-filter-check input {
    margin: 0;
}

.bags-filter-count {
    color: #888;
    font-size: 0.8125rem;
}

.bags-show-more {
    background: none;
    border: none;
    padding: 0.5rem 0 0 0;
    font-size: 0.875rem;
    color: #c00;
    cursor: pointer;
    text-align: left;
}

.bags-price-range {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.75rem;
}

.bags-price-range input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 0.875rem;
}

.bags-apply-price {
    padding: 0.5rem 1rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 0.8125rem;
    cursor: pointer;
}

.bags-apply-price:hover {
    background: #333;
}

/* Main content: sort + grid */
.bags-main {
    min-width: 0;
}

.bags-toolbar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.bags-sort-label {
    font-size: 0.875rem;
    color: #666;
}

.bags-sort-select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    font-size: 0.875rem;
    background: #fff;
    color: #1a1a1a;
}

.bags-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .bags-layout {
        grid-template-columns: 1fr;
    }

    .bags-sidebar {
        position: static;
    }

    .bags-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .bags-page-title {
        font-size: 1.75rem;
    }

    .bag-type-card {
        width: 160px;
    }

    .bag-types-scroll-prev,
    .bag-types-scroll-next {
        display: none;
    }

    /* Mobile: hide sidebar by default; show via Filter button as slide-out */
    .bags-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        z-index: 1005;
        transform: translateX(-100%);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow-y: auto;
        background: #fff;
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding-top: 3.5rem;
    }

    body.bags-filter-open .bags-sidebar {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .bags-sidebar-close {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        color: #1a1a1a;
        cursor: pointer;
        z-index: 2;
    }

    .bags-filter-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1004;
    }

    body.bags-filter-open .bags-filter-backdrop {
        display: block;
    }

    /* Mobile toolbar: Filter | Sort | count | Save Search */
    .bags-mobile-toolbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .bags-mobile-filter-btn,
    .bags-mobile-sort-wrap {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 0.85rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #1a1a1a;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 4px;
        cursor: pointer;
    }

    .bags-mobile-filter-btn svg,
    .bags-mobile-sort-wrap svg {
        flex-shrink: 0;
    }

    .bags-mobile-sort-select {
        border: none;
        background: transparent;
        font-size: inherit;
        font-weight: inherit;
        color: inherit;
        cursor: pointer;
        padding: 0;
        margin: 0;
        min-width: 0;
        -webkit-appearance: none;
        appearance: none;
    }

    .bags-mobile-sort-wrap .bags-mobile-sort-select {
        padding-right: 0.25rem;
    }

    .bags-mobile-count {
        font-size: 0.875rem;
        color: #666;
        margin-right: auto;
    }

    .bags-save-search-mobile {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
        font-weight: 600;
        color: #fff;
        background: #1a1a1a;
        border: none;
        border-radius: 999px;
        cursor: pointer;
    }

    .bags-save-search-mobile:hover {
        background: #333;
    }

    .bags-toolbar {
        display: none;
    }

    .bags-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Desktop only: hide mobile toolbar and sidebar close (so mobile media query can show them) */
@media (min-width: 769px) {
    .bags-mobile-toolbar {
        display: none !important;
    }

    .bags-sidebar-close {
        display: none !important;
    }

    .bags-filter-backdrop {
        display: none !important;
    }
}

/* Shared: scrollable filter sidebar for Wallets, Accessories, Lip Care */
.page-filter-sidebar {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 1.25rem;
}

.page-filter-sidebar .page-filter-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.page-filter-sidebar .page-filter-count {
    font-size: 0.875rem;
    color: #666;
    margin: 0 0 1rem 0;
}

.page-filter-group {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
    margin-top: 1rem;
}

.page-filter-group:first-child {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.page-filter-group-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
}

.page-filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-filter-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
}

.page-filter-check input { margin: 0; }

.page-filter-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .page-filter-layout {
        grid-template-columns: 1fr;
    }
    .page-filter-sidebar {
        position: static;
    }
}

/* Mobile: hide page filter sidebar by default; show via Filter button (wallets, accessories, lip-care) */
@media (max-width: 768px) {
    .page-filter-layout {
        display: block;
    }

    .page-filter-mobile-toolbar {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .page-filter-mobile-filter-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 0.85rem;
        font-size: 0.875rem;
        font-weight: 500;
        color: #1a1a1a;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.12);
        border-radius: 4px;
        cursor: pointer;
    }

    .page-filter-mobile-count {
        font-size: 0.875rem;
        color: #666;
        margin-right: auto;
    }

    .page-filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        z-index: 1005;
        transform: translateX(-100%);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        overflow-y: auto;
        background: #fff;
        border: none;
        box-shadow: none;
        padding: 1.25rem 3rem 1.25rem 1.25rem;
    }

    body.page-filter-open .page-filter-sidebar {
        transform: translateX(0);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    }

    .page-filter-sidebar-close {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border: none;
        background: transparent;
        color: #1a1a1a;
        cursor: pointer;
        z-index: 2;
    }

    .page-filter-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1004;
    }

    body.page-filter-open .page-filter-backdrop {
        display: block;
    }
}

/* Desktop only: hide page-filter mobile toolbar and close/backdrop */
@media (min-width: 769px) {
    .page-filter-mobile-toolbar {
        display: none !important;
    }

    .page-filter-sidebar-close {
        display: none !important;
    }

    .page-filter-backdrop {
        display: none !important;
    }
}

/* Video Section */
/* Reels Section */
.reels-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFF0F5 100%);
}

.reels-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.5rem;
    margin-top: 2rem;
    max-width: none;
    width: 100%;
    padding: 0 24px;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.reel-card {
    position: relative;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.reel-card:hover {
    transform: scale(1.02);
    opacity: 0.9;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 1rem;
    color: white;
    opacity: 0;
    transition: opacity 0.2s;
    font-size: 0.85rem;
    z-index: 2;
}

/* Instagram-style side actions */
.reel-side-actions {
    position: absolute;
    right: 10px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    z-index: 3;
}

.reel-side-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.reel-side-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.reel-like-btn {
    background: rgba(255, 255, 255, 0.95);
}

.reel-like-btn.liked {
    background: rgba(255, 107, 157, 0.9);
    animation: likePulse 0.5s ease;
}

@keyframes likePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.reel-share-btn {
    background: rgba(199, 125, 255, 0.9);
}

.reel-buy-side-btn {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(199, 125, 255, 0.9));
    font-size: 1.2rem;
}

.reel-likes-count {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-top: -0.5rem;
}

.reel-card:hover .reel-overlay {
    opacity: 1;
}

.reel-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: white;
    opacity: 0.9;
    transition: opacity 0.2s;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.reel-card.playing .reel-play-icon {
    opacity: 0;
}

.reel-card.playing .reel-overlay {
    opacity: 1;
}

.reel-title {
    font-weight: 600;
    font-size: 0.7rem;
    margin-bottom: 0.2rem;
}

.reel-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.3rem;
    font-size: 0.7rem;
}

.reel-action {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    cursor: pointer;
    transition: transform 0.2s;
    padding: 0.3rem 0.6rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
}

.reel-action:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.reel-buy-action {
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(199, 125, 255, 0.9)) !important;
    color: white !important;
}

.reel-buy-action:hover {
    background: linear-gradient(135deg, rgba(255, 107, 157, 1), rgba(199, 125, 255, 1)) !important;
}

.reel-price {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0.3rem 0;
}

/* Product Video Support */
.product-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.product-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.product-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    cursor: pointer;
}

.product-image:hover .product-video-overlay {
    opacity: 1;
}

.product-video-icon {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-reel-btn {
    display: none !important;
}

.reel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.reel-modal.active {
    display: flex;
}

.reel-modal-content {
    position: relative;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.reel-modal-video-container {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    position: relative;
}

.reel-modal-info {
    padding: 1.5rem;
    background: white;
    max-height: 40vh;
    overflow-y: auto;
}

.reel-modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reel-product-info {
    text-align: center;
}

.reel-product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reel-product-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.reel-product-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
}

.reel-modal-likes-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 240, 245, 0.5), rgba(248, 232, 245, 0.5));
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 157, 0.2);
}

.reel-modal-like-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reel-modal-like-btn:hover {
    transform: scale(1.1);
}

.reel-modal-like-btn.liked {
    background: linear-gradient(135deg, var(--primary-pink), var(--coral));
    animation: likePulse 0.5s ease;
}

.reel-modal-likes-count {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.reel-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.reel-buy-btn,
.reel-send-friend-btn,
.reel-share-btn {
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.reel-buy-btn {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
}

.reel-buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.5);
}

.reel-send-friend-btn {
    background: linear-gradient(135deg, var(--coral), var(--primary-pink));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 148, 0.4);
}

.reel-send-friend-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 148, 0.5);
}

.reel-share-btn {
    background: linear-gradient(135deg, var(--purple), var(--lavender));
    color: white;
    box-shadow: 0 4px 15px rgba(199, 125, 255, 0.4);
}

.reel-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 125, 255, 0.5);
}

.reel-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.reel-modal-close:hover {
    background: rgba(0, 0, 0, 0.8);
}

.reel-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.reel-modal-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.reel-modal-prev {
    left: 15px;
}

.reel-modal-next {
    right: 15px;
}

/* Friend Selection Modal */
.friend-selection-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.friend-selection-modal.active {
    display: flex;
}

.friend-selection-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.friend-selection-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.friend-selection-header h2 {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-friend-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    transition: color 0.3s;
}

.close-friend-modal:hover {
    color: var(--primary-pink);
}

.friends-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .reels-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .reel-modal-content {
        max-width: 100%;
    }

    .reel-modal-info {
        max-height: 30vh;
    }
}

.video-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #FFF0F5 100%);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.3);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background: var(--light-bg);
    overflow: hidden;
}

.product-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.video-wrapper:hover .video-play-overlay {
    opacity: 1;
}

.play-button {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}

.video-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    color: var(--dark);
    font-size: 1.3rem;
}

.video-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-dark);
    font-style: normal;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 0;
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.testimonial-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 20px;
    background: var(--light-gray);
    color: var(--text-dark);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-dark);
}

.newsletter-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-dark);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-btn {
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.newsletter-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border-radius: 0;
    margin-bottom: 1rem;
    box-shadow: none;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-color);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 400;
    color: var(--text-dark);
    transition: background 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background: white;
    border-radius: 20px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quick-view-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-close:hover {
    background: var(--primary-pink);
    color: white;
    transform: scale(1.1);
}

.product-image-large {
    position: sticky;
    top: 0;
}

.product-image-large img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-details-large {
    padding: 1rem 0;
}

@media (max-width: 768px) {
    .quick-view-content > div {
        grid-template-columns: 1fr !important;
    }
    
    .product-image-large {
        position: relative;
    }
}

/* Social Share Buttons */
.social-share {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.4rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: visible;
    padding: 0;
}

.share-btn svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.share-btn svg {
    width: 24px;
    height: 24px;
    z-index: 1;
    position: relative;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.share-btn:hover::before,
.share-btn:active::before {
    width: 100%;
    height: 100%;
}

.share-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.share-btn:active {
    transform: scale(1.05);
}

.share-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.share-whatsapp {
    background: #25D366;
    color: white;
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

/* Product Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-pink);
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s;
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    bottom: 1.5rem;
}

.quick-view-btn:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateX(-50%) scale(1.05);
}

/* Mobile styles for share buttons */
@media (max-width: 768px) {
    .social-share {
        gap: 0.75rem;
        justify-content: center;
        margin-top: 1.5rem;
    }
    
    .share-btn {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    
    .share-btn:active {
        transform: scale(0.95);
    }
    
    /* Ensure video icon is hidden on mobile */
    .product-reel-btn {
        display: none !important;
    }
    
    /* Ensure track order button has no animation on mobile */
    .track-order-btn {
        animation: none !important;
    }
}

@media (max-width: 480px) {
    .social-share {
        gap: 0.6rem;
    }
    
    .share-btn {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    /* Ensure video icon is hidden on mobile */
    .product-reel-btn {
        display: none !important;
    }
    
    /* Ensure track order button has no animation on mobile */
    .track-order-btn {
        animation: none !important;
    }
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .video-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
}

/* Flash Sale Banner – hidden on site load (removed per request) */
.flash-sale-banner {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--text-dark);
    color: var(--white);
    padding: 1rem;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.flash-sale-banner.hidden {
    opacity: 0;
    transform: translateY(-100%);
    pointer-events: none;
}

.flash-sale-content {
    max-width: none;
    width: 100%;
    margin: 0;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.sale-icon {
    font-size: 1.5rem;
    animation: bounce 1s infinite;
}

.sale-text {
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    flex: 1;
}

.close-sale {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.close-sale:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Wishlist Icon - Legacy Support */
.wishlist-icon {
    font-size: 1.2rem;
    cursor: pointer;
    position: relative;
    width: 45px;
    height: 45px;
    background: var(--primary-pink);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.wishlist-icon:hover {
    transform: scale(1.1);
    background: var(--coral);
}

.wishlist-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--primary-pink);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    border: 2px solid var(--primary-pink);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Wishlist Sidebar */
.wishlist-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.3s ease;
}

.wishlist-overlay.active {
    right: 0;
}

.wishlist-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: white;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.wishlist-header {
    padding: 2rem;
    border-bottom: 2px solid var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg), #FFF0F5);
}

.wishlist-header h2 {
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.close-wishlist {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark);
    transition: color 0.3s;
}

.close-wishlist:hover {
    color: var(--primary-pink);
}

.wishlist-items {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.wishlist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s;
}

.wishlist-item:hover {
    transform: translateX(-5px);
}

.wishlist-item-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--secondary-pink), var(--lavender));
    border-radius: 10px;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.wishlist-item-price {
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wishlist-item-actions {
    display: flex;
    gap: 0.5rem;
}

.wishlist-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.add-to-cart-wishlist {
    background: linear-gradient(135deg, var(--primary-pink), var(--purple));
    color: white;
}

.remove-wishlist {
    background: var(--coral);
    color: white;
}

.empty-wishlist {
    text-align: center;
    padding: 2rem;
    color: #666;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background: #dc3545;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: #dc3545;
}

.badge-new {
    background: var(--text-dark);
}

.badge-hot {
    background: #dc3545;
}

/* Product Rating */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #FFD700;
    font-size: 1rem;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

/* Wishlist Heart Button */
.wishlist-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 0;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-heart:hover {
    background: var(--light-gray);
    border-color: var(--accent-color);
}

.wishlist-heart.active {
    background: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Delivery Fee Info */
.delivery-fee-info {
    padding: 0.5rem;
    background: var(--light-bg);
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Track Order Float Button (hidden on home page) */
.page-home .track-order-float {
    display: none !important;
}
.track-order-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.track-order-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 0;
    border: 1px solid var(--accent-color);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s;
    animation: none !important;
    transform: none !important;
}

.track-order-btn:hover {
    background: transparent;
    color: var(--accent-color);
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5000;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary-pink);
    animation: confettiFall linear forwards;
}

.confetti:nth-child(2n) {
    background: var(--purple);
}

.confetti:nth-child(3n) {
    background: var(--coral);
}

.confetti:nth-child(4n) {
    background: var(--lavender);
}

@keyframes confettiFall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Floating Hearts */
.floating-hearts {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100;
}

.heart {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-pink);
    animation: floatHeart 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes floatHeart {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
    }
}

/* Sparkle Effect */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Product Card Enhanced */
.product-card {
    position: relative;
    overflow: visible;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-pink), var(--purple), var(--coral), var(--lavender));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 0.3;
    animation: borderGlow 2s infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

/* Admin Dashboard Link (in footer) */
.admin-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.admin-link:hover {
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--white);
    border: 1px solid var(--accent-color);
    border-radius: 0;
    font-size: 20px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: transparent;
    color: var(--accent-color);
}

.back-to-top:active {
    transform: translateY(-2px);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Order History Styles – visible and well styled on every page after login */
#orderHistoryContent {
    display: block;
}

#orderHistoryList.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.account-history-empty {
    padding: 2.5rem 1.5rem !important;
    text-align: center;
    color: #555;
    font-size: 1rem;
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border-radius: 16px;
    border: 1px solid rgba(236, 72, 153, 0.2);
}

.account-history-empty a {
    color: var(--primary-pink);
    font-weight: 600;
    text-decoration: none;
}

.account-history-empty a:hover {
    text-decoration: underline;
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.order-history-card,
.order-card {
    background: white;
    border-radius: 16px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.order-history-card:hover,
.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
}

.order-history-header,
.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-info h3 {
    color: var(--primary-pink, #ec4899);
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.order-date, .order-customer, .order-phone, .order-address, .order-payment {
    margin: 0.35rem 0;
    color: #555;
    font-size: 0.925rem;
    line-height: 1.45;
}

.order-status {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

.status-processing {
    background: #cffafe;
    color: #0e7490;
}

.status-delivered {
    background: #d1fae5;
    color: #065f46;
}

.status-cancelled {
    background: #fee2e2;
    color: #991b1b;
}

.order-history-items,
.order-items {
    margin: 1.25rem 0;
}

.order-history-items h4,
.order-items h4 {
    margin-bottom: 0.75rem;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 600;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    font-size: 0.95rem;
}

.order-item-row.total-row {
    border-bottom: none;
    font-size: 1.05rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
}

.order-item-row .paid {
    color: #28a745;
}

.order-item-row .unpaid {
    color: #dc3545;
}

/* Order history – Google Maps block */
.order-history-map-wrap {
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
}

.order-history-map-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.order-history-map-link {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.order-history-map-link:hover {
    text-decoration: underline;
}

.order-history-map-iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.order-history-actions,
.order-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.order-track-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-pink, #ec4899), #c77dff);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.2s;
}

.order-track-btn:hover {
    opacity: 0.95;
    transform: scale(1.02);
    color: #fff;
}

.order-track-btn .order-action-icon,
.order-track-btn .order-action-icon i {
    color: #111 !important;
}

/* Order history page – wider content, visible header */
.order-history-page .order-history-inner {
    max-width: 680px;
}

.order-history-header-block {
    margin-bottom: 1.5rem;
}

.order-history-page .account-page-title {
    font-size: 1.85rem;
    margin-bottom: 0.5rem;
}

.order-history-page .account-page-subtitle {
    margin-bottom: 1.75rem;
    font-size: 1rem;
    color: #555;
}

/* Map Picker Styles */
#mapPickerContainer {
    position: relative;
    margin-bottom: 0.75rem;
}

#mapPicker {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Shop location pin on map (Westlands Market, Shop B15) */
.map-shop-pin {
    background: none !important;
    border: none !important;
}

#checkoutMapPicker .map-shop-pin {
    background: none !important;
    border: none !important;
}

#useMapPickerBtn,
#useTextAddressBtn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#useMapPickerBtn:hover,
#useTextAddressBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

#useMapPickerBtn:active,
#useTextAddressBtn:active {
    transform: translateY(0);
}

/* STK Push Modal Styles */
#stkPushModal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    min-height: 100vh !important;
    background: rgba(0, 0, 0, 0.85) !important;
    display: none !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 99999 !important;
    -webkit-backdrop-filter: blur(5px) !important;
    backdrop-filter: blur(5px) !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 10px !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}

#stkPushModal.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Force display when active - mobile priority */
#stkPushModal.active,
#stkPushModal[style*="display: flex"],
#stkPushModal[style*="display:flex"] {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#stkPushModal .modal-content {
    animation: slideUp 0.3s ease;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

#mpesaPinInput {
    font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
    .order-card {
        padding: 1.5rem;
    }
    
    .order-header {
        flex-direction: column;
    }
    
    .order-status {
        align-self: flex-start;
    }
    
    #mapPicker {
        height: 250px !important;
    }
    
    #useMapPickerBtn,
    #useTextAddressBtn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    #stkPushModal {
        padding: 10px !important;
        z-index: 9999 !important;
    }
    
    #stkPushModal .modal-content {
        max-width: 95% !important;
        width: 95% !important;
        margin: 0 !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    #stkPushModal .modal-header h2 {
        font-size: 1.2rem !important;
    }
    
    #stkPhonePrompt,
    #stkPinEntry,
    #stkProcessing,
    #stkSuccess {
        padding: 1rem !important;
    }
}

/* ========== Luxury borderless product display (index, wallets, accessories) ========== */
.products-section {
    background: #fff;
}
.products-grid {
    gap: 1.5rem;
}
.product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    overflow: hidden;
}
.product-card::before,
.product-card::after {
    display: none !important;
    content: none !important;
}
.product-card:hover {
    transform: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}
.product-card .product-image {
    background: #fff !important;
    border: none !important;
}
.product-card .product-image img {
    transition: transform 0.35s ease;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 0 !important;
}
.product-card:hover .product-image img {
    transform: scale(1.03);
}
/* Featured products (index) — same borderless look */
.featured-products-grid {
    gap: 1.5rem;
}
.featured-product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
.featured-product-card:hover {
    transform: none !important;
    box-shadow: none !important;
}
.featured-product-card .product-image,
.featured-product-card img {
    background: #fff !important;
    border: none !important;
}
.featured-product-card:hover img {
    transform: scale(1.03);
}
.featured-product-card img {
    transition: transform 0.35s ease;
}

/* Luxury-style bag cards: brand, condition, likes bubble */
.product-card-body {
    padding: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.product-brand {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #1a1a1a;
}
.product-card .product-name {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: 0;
}
.product-condition {
    font-size: 0.8rem;
    color: #6b6560;
    margin: 0 0 0.25rem 0;
}
.product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
.product-price .original-price {
    font-size: 0.9rem;
    color: #6b6560;
    text-decoration: line-through;
}
.product-price-current {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}
.product-price-off {
    font-size: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}
.product-likes {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    color: #1a1a1a;
}
.product-card .wishlist-heart {
    left: 12px;
    right: auto;
}

/* ========== Taupe editorial banners (between product rows) ========== */
.products-grid .editorial-banner {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 3rem 2rem;
    background: #a89f96;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.products-grid .editorial-banner.editorial-banner-visible {
    opacity: 1;
    transform: translateY(0);
}

.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-headline {
    animation: editorialFadeUp 0.6s ease-out forwards;
}

.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-title {
    animation: editorialFadeUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-body {
    animation: editorialFadeUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-cta {
    animation: editorialFadeUp 0.6s ease-out 0.35s forwards;
    opacity: 0;
}

.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-imagery img {
    animation: editorialFadeIn 0.6s ease-out forwards;
}

.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-imagery-left img:nth-child(1) { animation-delay: 0.1s; opacity: 0; }
.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-imagery-left img:nth-child(2) { animation-delay: 0.2s; opacity: 0; }
.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-imagery-right img:nth-child(1) { animation-delay: 0.15s; opacity: 0; }
.products-grid .editorial-banner.editorial-banner-visible .editorial-banner-imagery-right img:nth-child(2) { animation-delay: 0.25s; opacity: 0; }

@keyframes editorialFadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes editorialFadeIn {
    from { opacity: 0; }
    to { opacity: 0.95; }
}

/* Standalone taupe editorial banner (on login, signup, order-history, track-order, product-detail) */
.taupe-editorial-section {
    width: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}
.taupe-editorial-section .editorial-banner {
    grid-column: unset;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Video taupe banner */
.products-grid .editorial-banner--video,
.taupe-editorial-section .editorial-banner--video {
    padding: 0;
    background: transparent;
}

/* Image banner from folder (e.g. wallets-banner.jpg) */
.products-grid .editorial-banner--image,
.taupe-editorial-section .editorial-banner--image {
    padding: 0;
    min-height: 0;
    background: transparent;
}
.editorial-banner--image .editorial-banner-image-link {
    display: block;
    width: 100%;
    line-height: 0;
}
.editorial-banner--image .editorial-banner-image-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    vertical-align: middle;
}

.editorial-banner-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.editorial-banner-bg-image {
    background-repeat: no-repeat;
    background-color: #8B1538;
}

.editorial-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-banner-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(168, 159, 150, 0.82);
    z-index: 1;
}

.editorial-banner--video .editorial-banner-inner {
    position: relative;
    z-index: 2;
}

.editorial-banner-inner--center {
    justify-content: center;
}

.editorial-banner-inner--center .editorial-banner-content {
    text-align: center;
    max-width: 560px;
}

.editorial-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: none;
    width: 100%;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.editorial-banner-imagery {
    flex: 0 0 22%;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.editorial-banner-imagery img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    opacity: 0.95;
}

/* Animated product imagery (wallets, lip care banners) */
.editorial-banner--animated-imagery {
    background: #a89f96;
}
.editorial-banner--animated-imagery .editorial-banner-imagery img.editorial-banner-img-animate {
    animation: editorialImgFloat 4s ease-in-out infinite;
    opacity: 0;
}
.editorial-banner--animated-imagery.editorial-banner-visible .editorial-banner-imagery img.editorial-banner-img-animate {
    animation: editorialImgReveal 0.7s ease-out forwards, editorialImgFloat 4s ease-in-out 0.7s infinite;
}
@keyframes editorialImgReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 0.95;
        transform: translateY(0) scale(1);
    }
}
@keyframes editorialImgFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.editorial-banner-imagery-left {
    align-items: flex-end;
}

.editorial-banner-imagery-right {
    align-items: flex-start;
}

.editorial-banner-content {
    flex: 1;
    max-width: 520px;
    text-align: left;
    padding: 0 1rem;
}

.editorial-banner-headline {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.25rem;
}

.editorial-banner-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #fff;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.editorial-banner-body {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 1.5rem;
}

.editorial-banner-cta {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 6px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.editorial-banner-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .editorial-banner-inner {
        flex-direction: column;
        text-align: center;
    }
    .editorial-banner-content {
        text-align: center;
        max-width: 100%;
    }
    .editorial-banner-imagery {
        flex: none;
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }
    .editorial-banner-imagery-left,
    .editorial-banner-imagery-right {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .products-grid .editorial-banner {
        min-height: 280px;
        padding: 2rem 1rem;
        overflow: hidden;
        width: 100%;
        box-sizing: border-box;
    }
    .products-grid .editorial-banner .editorial-banner-inner {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
    .products-grid .editorial-banner .editorial-banner-content {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    /* Keep imagery visible on phone (Lip Care, Wallets, Accessories): images on top row */
    .products-grid .editorial-banner:not(.editorial-banner--video) .editorial-banner-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto 1fr;
        gap: 1rem;
        text-align: center;
    }
    .products-grid .editorial-banner:not(.editorial-banner--video) .editorial-banner-imagery-left {
        grid-column: 1;
        grid-row: 1;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    .products-grid .editorial-banner:not(.editorial-banner--video) .editorial-banner-imagery-right {
        grid-column: 2;
        grid-row: 1;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    .products-grid .editorial-banner:not(.editorial-banner--video) .editorial-banner-content {
        grid-column: 1 / -1;
        grid-row: 2;
        text-align: center;
        max-width: 100%;
    }
    .products-grid .editorial-banner:not(.editorial-banner--video) .editorial-banner-imagery img {
        width: auto;
        max-height: 72px;
        max-width: 60px;
        object-fit: cover;
        border-radius: 6px;
    }
}

/* ========== Mobile: luxury product cards & editorial banners ========== */
@media (max-width: 768px) {
    .products-section {
        overflow-x: hidden;
        width: 100%;
    }
    .products-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 100%;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    .products-grid .editorial-banner {
        overflow: hidden;
    }
    .products-grid .editorial-banner .editorial-banner-inner {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    .product-card {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }
    .product-card .product-image {
        height: auto !important;
        min-height: 180px;
        aspect-ratio: 3 / 4;
    }
    .product-card .product-image img {
        height: 100% !important;
        min-height: 180px;
        object-fit: contain !important;
        object-position: center !important;
    }
    .product-card-body {
        padding: 0.75rem 0 0 !important;
        gap: 0.2rem;
    }
    .product-brand {
        font-size: 0.65rem;
        letter-spacing: 0.03em;
    }
    .product-card .product-name {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    .product-condition {
        font-size: 0.7rem;
    }
    .product-price-current,
    .product-card .product-price {
        font-size: 0.9rem;
    }
    .product-price .original-price {
        font-size: 0.8rem;
    }
    .product-price-off {
        font-size: 0.7rem;
    }
    .product-likes {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
    .product-card .wishlist-heart {
        left: 8px;
        top: 8px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .product-card .add-to-cart-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    .editorial-banner-headline {
        font-size: 0.75rem;
    }
    .editorial-banner-title {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
    .editorial-banner-body {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    .editorial-banner-cta {
        padding: 0.55rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        overflow-x: hidden;
        width: 100%;
    }
    .products-grid {
        gap: 0.75rem;
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    .products-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    .product-card .product-image,
    .product-card .product-image img {
        min-height: 160px !important;
    }
    .product-brand {
        font-size: 0.6rem;
    }
    .product-card .product-name {
        font-size: 0.75rem;
    }
    .product-condition {
        font-size: 0.65rem;
    }
    .product-price-current {
        font-size: 0.85rem;
    }
    .product-likes {
        padding: 3px 6px;
        font-size: 0.65rem;
    }
    .products-grid .editorial-banner {
        min-height: 240px;
        padding: 1.5rem 1rem;
        overflow: hidden;
    }
    .products-grid .editorial-banner .editorial-banner-inner {
        padding: 0 0.75rem;
    }
    .editorial-banner-title {
        font-size: 1.25rem;
    }
    .editorial-banner-body {
        font-size: 0.8rem;
    }
    .editorial-banner-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    /* Keep discount/circle badges inside card on small screens */
    .banner-product-badge,
    .product-badge {
        max-width: 80%;
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}

/* About page */
.about-page-main {
    padding: 3rem 0 4rem;
}
.about-page-main .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.about-block {
    margin-bottom: 3.5rem;
}
.about-block:last-child {
    margin-bottom: 0;
}
.about-page-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}
.about-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: #333;
    margin-bottom: 1rem;
}
.about-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0.75rem;
}
.about-block p:last-child {
    margin-bottom: 0;
}

/* About Legacy – shop image left, text right (Fashionphile-style) */
.about-legacy-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-legacy-image-wrap {
    position: relative;
    overflow: hidden;
    background: #f0f0f0;
}

.about-legacy-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 320px;
    filter: grayscale(100%);
}

.about-legacy-content {
    min-width: 0;
}

.about-legacy-content .about-page-title {
    margin-top: 0;
}

.about-legacy-disclaimer {
    font-size: 0.875rem !important;
    color: #6b6b6b !important;
    margin-top: 1.5rem !important;
    padding-top: 1rem !important;
    border-top: 1px solid #e8e8e8 !important;
}

@media (max-width: 768px) {
    .about-legacy-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-legacy-image {
        min-height: 260px;
    }
}

.about-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}
@media (max-width: 640px) {
    .about-vision-grid {
        grid-template-columns: 1fr;
    }
}
.about-vision-card {
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
}
.about-vision-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}
.about-vision-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}
.about-promise-intro {
    margin-bottom: 1.5rem;
}
.about-promise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-promise-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    line-height: 1.65;
    color: #444;
}
.about-promise-list li:last-child {
    border-bottom: none;
}
.about-promise-list strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #1a1a1a;
}
.about-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.about-values-list li {
    padding: 0.6rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
}
.about-values-list strong {
    color: #1a1a1a;
    margin-right: 0.35rem;
}

/* ========== SIGNUP PAGE (Fashionphile-style two-column) ========== */
.signup-page-wrap {
    display: flex;
    min-height: calc(100vh - 68px);
    margin-top: 68px;
    background: #fff;
}
.signup-form-col {
    flex: 0 0 58%;
    max-width: 58%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 4rem;
    background: #fff;
}
.signup-form-inner {
    width: 100%;
    max-width: 420px;
}
.signup-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.signup-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 400;
}
.signup-social-btns {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.signup-social-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.signup-social-btn:hover {
    background: #f5f5f5;
}
.signup-social-btn svg {
    flex-shrink: 0;
}
.signup-social-fb svg {
    color: #1877f2;
}
.signup-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: #999;
    font-size: 0.875rem;
}
.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0;
}
.signup-divider span {
    padding: 0 1rem;
}
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.signup-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.signup-label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
}
.signup-label input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}
.signup-label input:focus {
    outline: none;
    border-color: #1a1a1a;
}
.signup-label input::placeholder {
    color: #999;
}
.signup-label-password .signup-password-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.signup-label-password .signup-password-wrap input {
    padding-right: 2.75rem;
}
.signup-password-toggle {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 0;
    border-radius: 4px;
}
.signup-password-toggle:hover {
    color: #1a1a1a;
}
.signup-password-toggle .signup-eye-closed {
    display: none;
}
.signup-password-toggle[aria-pressed="true"] .signup-eye-open {
    display: none;
}
.signup-password-toggle[aria-pressed="true"] .signup-eye-closed {
    display: block;
}
.signup-continue-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s;
}
.signup-continue-btn:hover {
    background: #000;
}
.signup-continue-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.signup-auth-links {
    margin-top: 1.5rem;
    text-align: center;
}
.signup-auth-links p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}
.signup-auth-links a {
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: none;
}
.signup-auth-links a:hover {
    text-decoration: underline;
}
.signup-back-link {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
}
.signup-back-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}
.signup-image-col {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
    background: #f5f5f5;
}
.signup-image-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.signup-help-widget {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: #333;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
}
.signup-help-widget:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-1px);
}
.signup-google-wrap {
    margin-top: 1rem;
}
@media (max-width: 900px) {
    .signup-page-wrap {
        flex-direction: column;
    }
    .signup-form-col,
    .signup-image-col {
        flex: 1 1 auto;
        max-width: 100%;
    }
    .signup-form-col {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    .signup-image-col {
        min-height: 280px;
    }
    .signup-form-row {
        grid-template-columns: 1fr;
    }
}

/* ========== MY ACCOUNT PAGE (full page, Fashionphile-style) ========== */
.page-account .account-page {
    min-height: calc(100vh - 140px);
    margin-top: 68px;
    padding: 2.5rem 1.5rem 4rem;
    background: #fff;
}
.account-page-inner {
    max-width: 560px;
    margin: 0 auto;
}
.account-page-title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.account-page-subtitle {
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 2rem;
}
.account-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}
.account-section:last-of-type {
    border-bottom: none;
}
.account-tier-points {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}
.account-tier-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.account-tier-bronze {
    background: #cd7f32;
    color: #fff;
}
.account-tier-silver {
    background: #c0c0c0;
    color: #1a1a1a;
}
.account-tier-gold {
    background: linear-gradient(135deg, #d4af37, #f4e4bc);
    color: #1a1a1a;
}
.account-points-block {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.account-points-label {
    font-size: 0.9375rem;
    color: #666;
}
.account-points-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}
.account-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}
.account-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.account-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1a1a1a;
}
.account-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}
.account-input:focus {
    outline: none;
    border-color: #1a1a1a;
}
.account-input-readonly {
    background: #f5f5f5;
    color: #666;
}
.account-points-history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.account-history-empty {
    font-size: 0.9375rem;
    color: #666;
    padding: 1rem 0;
}
.account-history-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fafafa;
    border-radius: 4px;
    font-size: 0.9375rem;
}
.account-history-reason {
    color: #1a1a1a;
    font-weight: 500;
}
.account-history-date {
    color: #666;
    font-size: 0.875rem;
}
.account-history-pts {
    font-weight: 600;
    color: #1a1a1a;
}
.account-actions .account-link {
    display: inline-block;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 0.9375rem;
}
.account-actions .account-link:hover {
    opacity: 0.8;
}
.account-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.account-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}
.account-btn-save,
.account-btn-primary {
    background: #1a1a1a;
    color: #fff;
}
.account-btn-save:hover,
.account-btn-primary:hover {
    background: #000;
}
.account-btn-outline {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}
.account-btn-outline:hover {
    background: #f5f5f5;
}
.account-login-prompt {
    text-align: center;
    padding: 3rem 1.5rem;
}
.account-login-prompt p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1rem;
}
.account-login-prompt .account-btn-primary {
    display: inline-block;
    text-decoration: none;
}
@media (max-width: 768px) {
    .page-account .account-page {
        margin-top: 96px;
        padding: 1.5rem 1rem 3rem;
    }
    .account-tier-points {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Mobile header: force gap and smaller logo so "SLAY STATION" fits */
@media (max-width: 768px) {
    .navbar .nav-container .nav-logo-wrap {
        padding-right: 1.25rem !important;
        overflow: hidden !important;
    }
    .navbar .nav-container .nav-logo-wrap .logo-link,
    .navbar .nav-container .nav-logo-wrap .logo-text {
        font-size: 0.875rem !important;
    }
    .navbar .nav-container .nav-actions {
        margin-left: 1.25rem !important;
    }
    .navbar .nav-container .nav-actions .nav-btn-search {
        margin-left: 0.5rem !important;
    }
}

/* ========== Checkout page (checkout.html) ========== */
.checkout-page { max-width: 1200px; margin: 0 auto; padding: 24px 16px 48px; }
.checkout-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--border-color, #e0e0e0); }
.checkout-header .logo a { font-weight: 700; font-size: 1.25rem; color: var(--text-dark); text-decoration: none; }
.checkout-back { color: var(--text-light); text-decoration: none; font-size: 0.95rem; }
.checkout-back:hover { text-decoration: underline; }
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr; } }
.checkout-form-section { margin-bottom: 28px; }
.checkout-form-section h2 { font-size: 1.1rem; font-weight: 600; margin-bottom: 14px; color: var(--text-dark); }
.checkout-form .form-group { margin-bottom: 16px; }
.checkout-form label { display: block; font-weight: 500; margin-bottom: 6px; font-size: 0.9rem; }
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form input[type="password"],
.checkout-form select,
.checkout-form textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; }
.checkout-form .form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .checkout-form .form-row-two { grid-template-columns: 1fr; } }
.checkout-summary { position: sticky; top: 100px; background: var(--light-bg, #fafafa); border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; }
body.page-checkout .checkout-summary { top: calc(68px + 12px); }
@media (max-width: 768px) {
    body.page-checkout .checkout-summary { top: calc(56px + 12px); }
}
.checkout-summary h2 { font-size: 1.1rem; margin-bottom: 16px; }
.checkout-summary-items { max-height: 240px; overflow-y: auto; margin-bottom: 16px; }
.checkout-summary-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 0.9rem; }
.checkout-summary-item img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; }
.checkout-summary-items .cart-item { margin-bottom: 0.5rem; padding: 0.75rem; background: #f8f8f8; border: 1px solid #eee; border-radius: 8px; }
.checkout-summary-items .cart-item-image { width: 72px; height: 72px; flex-shrink: 0; background: #f0f0f0; border-radius: 8px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.checkout-summary-items .cart-item-image img { width: 100%; height: 100%; object-fit: contain; }
.checkout-summary-items .cart-item-name { font-weight: 600; margin-bottom: 0.25rem; font-size: 0.9rem; }
.checkout-summary-items .cart-item-price { color: var(--primary-pink, #e91e8c); font-weight: 600; font-size: 0.9rem; }
.checkout-summary-items .remove-from-cart-btn { margin-top: 0.5rem; padding: 4px 10px; font-size: 0.8rem; background: #fff; border: 1px solid #ddd; color: #666; border-radius: 6px; cursor: pointer; }
.checkout-summary-items .remove-from-cart-btn:hover { background: #fee; border-color: #fcc; color: #c00; }
.checkout-summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.95rem; }
.checkout-summary-total { font-weight: 700; font-size: 1.15rem; padding-top: 12px; margin-top: 12px; border-top: 2px solid #ddd; }
.checkout-map-wrap { margin-top: 10px; margin-bottom: 10px; }
#checkoutMapPicker { height: 280px; width: 100%; border-radius: 10px; border: 1px solid var(--border-color); }
.checkout-delivery-msg { padding: 12px; border-radius: 8px; font-size: 0.9rem; margin-top: 10px; }
.checkout-delivery-msg.nairobi { background: #E3F2FD; color: #1565C0; border-left: 4px solid #1976D2; }
.checkout-delivery-msg.other { background: #FFF3E0; color: #E65100; border-left: 4px solid #FF9800; }
.payment-option { display: flex; align-items: center; gap: 10px; padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; margin-bottom: 10px; cursor: pointer; }
.payment-option:hover { border-color: #999; }
.payment-option.selected { border-color: #000; background: #f9f9f9; }
.payment-option input { margin: 0; }
.card-fields { margin-top: 16px; padding: 16px; background: #f9f9f9; border-radius: 8px; border: 1px solid #eee; }
.card-fields .form-row-two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-logos { display: flex; gap: 8px; margin-top: 8px; }
.card-logos img { height: 24px; }
.input-with-icon { position: relative; }
.input-with-icon .icon-right { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #666; cursor: help; }
.btn-place-order { width: 100%; padding: 14px 24px; background: #1a1a1a; color: #fff; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; margin-top: 20px; }
.btn-place-order:hover { background: #333; }
.btn-place-order:disabled { opacity: 0.6; cursor: not-allowed; }
.location-suggestions { position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px; max-height: 220px; overflow-y: auto; background: #fff; border: 1px solid var(--border-color, #e0e0e0); border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); z-index: 10; }
.location-suggestions .location-suggestion { padding: 10px 12px; cursor: pointer; font-size: 0.95rem; border-bottom: 1px solid #f0f0f0; }
.location-suggestions .location-suggestion:last-child { border-bottom: none; }
.location-suggestions .location-suggestion:hover { background: #f5f5f5; }
.location-suggestions .location-suggestion-tip { cursor: default; }
.location-suggestions .location-suggestion-tip:hover { background: #fff; }
.location-suggestions .location-suggestion-use-custom { color: var(--primary-pink, #e91e8c); }
.checkout-summary-item { position: relative; }
.checkout-summary-item .remove-from-cart-btn { margin-left: auto; padding: 4px 10px; font-size: 0.8rem; background: #fff; border: 1px solid #ddd; color: #666; border-radius: 6px; cursor: pointer; white-space: nowrap; }
.checkout-summary-item .remove-from-cart-btn:hover { background: #fee; border-color: #fcc; color: #c00; }
.empty-checkout { text-align: center; padding: 48px 24px; }
.empty-checkout a { color: #1976D2; text-decoration: none; font-weight: 600; }
body.page-checkout { padding-top: 0; }
/* Promo bar is hidden site-wide; keep nav flush to top so it truly sticks while scrolling */
body.page-checkout .navbar {
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
body.page-checkout .checkout-page { padding-top: calc(68px + 1.5rem); }
/* Keep top header stack fixed on auth + checkout pages */
body.page-login .promo-bar {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
}
body.page-signup .promo-bar,
body.page-checkout .promo-bar {
    display: none !important;
}
body.page-login .navbar,
body.page-signup .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
}
body.page-signup .auth-container {
    padding-top: 100px;
}
body.page-checkout .checkout-header {
    position: sticky;
    top: 68px;
    z-index: 990;
    background: #fff;
    margin-top: -0.5rem;
    padding-top: 0.75rem;
    box-shadow: 0 8px 12px -10px rgba(0, 0, 0, 0.12);
}
body.page-checkout .nav-container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
/* Desktop / tablet: dropdown under bar */
body.page-checkout .nav-menu-drawer { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-top: 1px solid #e8e8e8; display: none; padding: 1rem; max-height: min(70vh, 420px); overflow-y: auto; -webkit-overflow-scrolling: touch; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08); z-index: 1003; }
body.page-checkout .nav-menu-drawer.active { display: block; }
body.page-checkout .nav-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
body.page-checkout .nav-menu a { color: #1a1a1a; text-decoration: none; font-size: 0.95rem; }
body.page-checkout .nav-menu a:hover { text-decoration: underline; }
body.page-checkout .nav-actions { display: flex; align-items: center; gap: 0.75rem; }
body.page-checkout .checkout-back-link { display: inline-flex; align-items: center; padding: 0.5rem 1rem !important; font-size: 0.9rem !important; color: #1a1a1a !important; text-decoration: none !important; border: 1px solid #e0e0e0; border-radius: 8px; }
body.page-checkout .checkout-back-link:hover { background: #f5f5f5; text-decoration: none !important; }
@media (min-width: 769px) {
    body.page-checkout .nav-mobile-left { display: none; }
    body.page-checkout .nav-menu-drawer { position: static; display: block !important; border: none; padding: 0; background: transparent; max-height: none; overflow: visible; box-shadow: none; z-index: auto; }
    body.page-checkout .nav-menu { justify-content: center; }
}
@media (max-width: 768px) {
    body.page-checkout .checkout-page { padding-top: calc(56px + 1.25rem); }
    body.page-checkout .checkout-header { top: 56px; }
    /* Override absolute dropdown: full-height sliding drawer so entire menu is visible + scrollable */
    body.page-checkout .nav-container .nav-menu-drawer {
        position: fixed !important;
        top: 56px !important;
        left: -100% !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        height: calc(100vh - 56px) !important;
        max-height: calc(100dvh - 56px) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 0.75rem 0 2rem !important;
        margin: 0 !important;
        background: #fff !important;
        border-top: 1px solid #e8e8e8 !important;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12) !important;
        z-index: 1003 !important;
        transition: left 0.3s ease !important;
    }
    body.page-checkout .nav-container .nav-menu-drawer.active {
        display: flex !important;
        left: 0 !important;
    }
    body.page-checkout .nav-menu-drawer .nav-menu {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0 !important;
        width: 100% !important;
        flex: 1 1 auto !important;
        min-height: min-content !important;
    }
    body.page-checkout .nav-menu-drawer .nav-menu li {
        border-bottom: 1px solid #eee;
        width: 100% !important;
    }
    body.page-checkout .nav-menu-drawer .nav-menu li:last-child { border-bottom: none; }
    body.page-checkout .nav-menu-drawer .nav-menu a {
        display: block !important;
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    body.page-checkout .mobile-menu-toggle {
        z-index: 1004 !important;
        position: relative;
        min-width: 48px !important;
        min-height: 48px !important;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        background: #fafafa !important;
    }
    body.page-checkout .mobile-menu-toggle:active { background: #f0f0f0 !important; }
}
#checkoutEmpty { display: none; }
#checkoutEmpty.checkout-empty-visible { display: block; }
#checkoutContent.checkout-content-hidden { display: none !important; }
body.page-checkout .checkout-page-title { margin: 0; font-size: 1.5rem; }
body.page-checkout .location-input-wrap { position: relative; }
#coLocationSuggestions { display: none; }
#coLocationTip { display: none; margin: 6px 0 0; font-size: 0.8rem; color: #666; }
body.page-checkout .checkout-map-hint { font-size: 0.85rem; color: #666; margin-bottom: 8px; }
#coAddress { display: none; }
body.page-checkout .checkout-mpesa-note { margin: 0.5rem 0 1rem 0; padding: 1rem; background: #E3F2FD; border-radius: 10px; border-left: 4px solid #2196F3; font-size: 0.9rem; color: #1565C0; }
#cardFields { display: none; }
body.page-checkout .card-logos img { height: 20px; }

/* ========== Checkout: M-Pesa order success modal ========== */
.order-success-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    overflow-y: auto;
    background: rgba(26, 10, 20, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    box-sizing: border-box;
}
.order-success-modal {
    width: 100%;
    max-width: 420px;
    max-height: min(92vh, 720px);
    overflow-y: auto;
    border-radius: 20px;
    background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
    box-shadow: 0 24px 64px rgba(194, 24, 91, 0.18), 0 0 0 1px rgba(233, 30, 99, 0.08);
}
.order-success-modal-inner {
    padding: 1.75rem 1.5rem 1.5rem;
}
.order-success-hero {
    text-align: center;
    margin-bottom: 1.25rem;
}
.order-success-check {
    width: 56px;
    height: 56px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #43a047, #2e7d32);
    color: #fff;
    font-size: 1.75rem;
    line-height: 56px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(46, 125, 50, 0.35);
}
.order-success-title {
    margin: 0;
    font-size: 1.45rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}
.order-success-sub {
    margin: 0.4rem 0 0;
    font-size: 0.92rem;
    color: #666;
    line-height: 1.45;
}
.order-success-banner {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: linear-gradient(120deg, #fce4ec 0%, #f8bbd9 100%);
    border: 1px solid rgba(233, 30, 99, 0.25);
    margin-bottom: 1.1rem;
}
.order-success-banner p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: #880e4f;
    line-height: 1.4;
}
.order-success-banner-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}
.order-success-meta {
    margin-bottom: 1.1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0e6ea;
}
.order-success-meta-label {
    margin: 0 0 0.2rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    font-weight: 600;
}
.order-success-meta-value {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.35;
}
.order-success-meta-note {
    margin: 0;
    font-size: 0.82rem;
    color: #777;
    line-height: 1.4;
}
.order-success-mpesa-card {
    background: #f7f9fc;
    border: 1px solid #e3e8ef;
    border-radius: 14px;
    padding: 1.1rem 1rem 1rem;
    margin-bottom: 1.1rem;
}
.order-success-mpesa-title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1565c0;
}
.order-success-till-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}
.order-success-till-label {
    font-size: 0.8rem;
    color: #666;
}
.order-success-till-num {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0d47a1;
    font-variant-numeric: tabular-nums;
}
.order-success-ref-label {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    color: #666;
}
.order-success-ref-pill {
    font-family: ui-monospace, 'Cascadia Code', monospace;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
    background: #fff;
    border: 2px dashed #e91e63;
    border-radius: 10px;
    color: #ad1457;
    word-break: break-all;
    margin-bottom: 0.85rem;
}
.order-success-input-label {
    display: block;
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #444;
}
.order-success-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.65rem 0.85rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    margin-bottom: 0.65rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.order-success-input:focus {
    outline: none;
    border-color: #2196f3;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}
.order-success-btn-primary {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #1976d2, #1565c0);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(21, 101, 192, 0.3);
}
.order-success-btn-primary:hover:not(:disabled) {
    filter: brightness(1.05);
}
.order-success-btn-primary:disabled {
    opacity: 0.75;
    cursor: default;
}
.order-success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.order-success-btn-secondary {
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
}
.order-success-btn-secondary:hover {
    background: #fafafa;
}
.order-success-btn-outline {
    padding: 0.65rem 1rem;
    border-radius: 10px;
    border: 2px solid #1a1a1a;
    background: transparent;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1a1a1a;
    cursor: pointer;
}
.order-success-btn-outline:hover {
    background: #1a1a1a;
    color: #fff;
}
.order-success-btn-whatsapp {
    display: block;
    text-align: center;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}
.order-success-btn-whatsapp:hover {
    filter: brightness(1.06);
}
@media (max-width: 400px) {
    .order-success-modal-inner { padding: 1.35rem 1.1rem 1.1rem; }
    .order-success-title { font-size: 1.25rem; }
}