/* --- Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

button,
a,
[onclick],
.cart-icon,
.user-icon,
.menu-toggle,
.product-img-container,
.thumb-img,
.remove-item {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background-color: #f9f9f9;
    overflow-x: hidden;
    color: #333;
    scroll-behavior: smooth;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.shop-container,
.checkout-body,
.product-page,
.profile-body,
.about-hero {
    flex: 1;
    min-height: 70vh;
}

.footer {
    margin-top: auto;
}

/* --- Navbar --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 2%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

/* Home page transparent navbar */
.navbar.transparent {
    background: transparent !important;
    box-shadow: none !important;
    position: fixed !important;
    width: 100% !important;
}

.navbar.scrolled {
    background: #000 !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5) !important;
    position: fixed !important;
    width: 100% !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-text {
    display: none;
}

.mobile-logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: 0;
}

.desktop-nav {
    display: flex;
    list-style: none;
    gap: 40px;
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0.85;
    text-transform: uppercase;
}

.desktop-nav a:hover {
    opacity: 1;
}

.desktop-nav a.active {
    color: #fff;
    font-weight: 800;
    opacity: 1;
    border-bottom: 2px solid #fff;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: #fff !important;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 5000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px 25px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    left: 0;
}

@media (max-width: 768px) {
    .mobile-menu {
        left: -320px;
        top: 0;
        bottom: 0;
        width: 300px;
        height: 100vh;
        border-radius: 0;
        padding: 40px 25px 50px;
        box-shadow: 15px 0 40px rgba(0, 0, 0, 0.15);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .mobile-menu.active {
        left: 0;
    }

    .mobile-menu-header {
        margin-bottom: 30px;
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 20px;
    }

    .mobile-nav-links li {
        margin-bottom: 15px;
        border-bottom: 1px solid #f9f9f9;
        padding-bottom: 15px;
    }

    .mobile-nav-links a {
        font-size: 18px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 700;
        color: #111;
    }
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mobile-menu-header i {
    font-size: 18px;
    cursor: pointer;
    color: #333;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-menu-header i:hover {
    background: #ff4757;
    color: #fff;
    transform: rotate(90deg);
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 25px;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 4500;
    display: none;
}

.mobile-overlay.active {
    display: block;
}

.cart-icon {
    font-size: 26px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
    color: #fff !important;
}

.cart-icon i {
    color: #fff !important;
}

.cart-icon:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.user-icon {
    cursor: pointer;
    font-size: 12px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-left: 10px;
}

.user-icon:hover {
    opacity: 0.8;
}

.user-icon i.auth-icon-gem {
    color: #ff33a1;
    transition: 0.3s;
}

.user-icon i.gem-gold {
    color: #ffd700 !important;
}

.user-name-label {
    display: none;
}

.user-icon .user-initial-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s;
}

.user-icon i {
    color: #fff;
    font-size: 26px;
    transition: 0.3s;
}

.user-name-label {
    font-size: 9px;
    font-weight: 700;
    color: #fff;
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#cart-count {
    background: #ff4757;
    color: #fff;
    border-radius: 50%;
    padding: 1px 5px;
    font-size: 9px;
    position: absolute;
    top: -8px;
    right: -8px;
    border: 2px solid #000;
}

/* User Dropdown */
.user-dropdown {
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 220px;
    display: none;
    z-index: 1001;
    text-align: left;
    overflow: hidden;
    border: 1px solid #eee;
    transform-origin: top right;
    animation: dropIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Bridge to prevent closing when moving mouse to dropdown */
.user-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 768px) {
    .user-dropdown {
        position: fixed;
        top: auto;
        bottom: -100%;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 25px 25px 0 0;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
        transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
        /* We'll use bottom to hide/show */
        padding-bottom: 30px;
        transform: none;
        animation: none;
    }

    .user-dropdown.show {
        bottom: 0;
    }
}

.user-dropdown-header {
    background: #fcfcfc;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}

.user-hi {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.user-email {
    font-size: 12px;
    color: #888;
    margin: 0;
    display: block;
    word-break: break-all;
    font-weight: 500;
}

.user-dropdown-item {
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
    transition: 0.2s;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    cursor: pointer;
}

.user-dropdown-item i {
    font-size: 18px;
    color: #444;
    width: 20px;
}

.user-dropdown-item:last-child {
    border: none;
    color: #ff4757;
}

.user-dropdown-item.logout {
    color: #ff4757;
}

.user-dropdown-item.logout i {
    color: #ff4757;
}

.user-dropdown-item:hover {
    background: #fafafa;
    padding-left: 24px;
}

.user-dropdown-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* --- Shop Layout (Sidebar Hidden on PC & Mobile) --- */
.shop-container {
    padding: 30px 5%;
    display: block;
}

.sidebar {
    position: fixed;
    left: -320px;
    top: 0;
    height: 100vh;
    width: 300px;
    background: #fff;
    padding: 30px 25px;
    z-index: 4000;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.sidebar.active {
    left: 0;
}

/* Sidebar එක පෙන්වීමට */

.sidebar-close-mobile {
    display: flex;
    justify-content: flex-end;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    margin-bottom: 20px;
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
}

.sidebar-top h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

#clear-filters {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-bottom: 15px;
    font-size: 13px;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
}

.filter-content label {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    cursor: pointer;
    color: #444;
}

.filter-content input[type="checkbox"] {
    accent-color: #000;
    width: 17px;
    height: 17px;
    margin-right: 12px;
    cursor: pointer;
}

input[type="range"] {
    width: 100%;
    accent-color: #000;
    cursor: pointer;
}

#price-label {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
    color: #333;
}

/* --- Shop Main --- */
.shop-main {
    width: 100%;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.header-controls {
    display: flex;
    gap: 12px;
    align-items: center;
}

.filter-toggle-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.filter-toggle-btn:hover {
    background: transparent;
    color: #000;
}

.sort-dropdown {
    padding: 10px 15px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

/* --- Product Grid --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1100px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

.product-card {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    /* Removed border */
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-8px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    /* Slightly less round than card */
    background: #fdfdfd;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.8s ease;
}

.img-hover {
    opacity: 0;
}

.product-card:hover .img-main {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1.05);
}

.product-info-glass {
    padding: 15px 0 5px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.product-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.price-regular {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.2px;
}

.price-sale {
    font-size: 1.25rem;
    font-weight: 900;
    color: #e63946;
    letter-spacing: -0.2px;
}

.price-original {
    font-size: 0.9rem;
    font-weight: 500;
    color: #a8a8a8;
    text-decoration: line-through;
    margin-left: 2px;
}

/* --- MODAL (GALLERY FIX) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #fff;
    margin: 5vh auto;
    padding: 25px;
    width: 95%;
    max-width: 700px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    z-index: 10;
}

.modal-body {
    display: flex !important;
    /* Side-by-side Layout */
    gap: 25px;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 10px;
}

.modal-img-section {
    flex: 1;
    min-width: 280px;
}

#modal-img-src {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    transition: opacity 0.3s;
}

.thumbnail-container {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.thumb-img {
    width: 55px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.thumb-img.active {
    border-color: #000;
    transform: scale(1.05);
}

.modal-info {
    flex: 1.2;
    min-width: 280px;
    text-align: left;
}

.modal-info h2 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 800;
    color: #111;
}

.modal-price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #ff4757;
    margin-bottom: 15px;
}

.description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Size Selector */
.size-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.size-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.size-btn.selected {
    background: #000;
    color: #fff;
    border-color: #000;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 8px;
}

.qty-controls button {
    width: 35px;
    height: 35px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
}

.add-to-cart {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

/* --- CART & CHECKOUT --- */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 360px;
    height: 100%;
    background: #fff;
    z-index: 2000;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.cart-item img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    display: block;
    text-align: center;
}

.checkout-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    display: none;
}

.cart-overlay.show {
    display: block;
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar {
        position: relative;
        justify-content: flex-end;
    }

    .navbar .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .navbar .nav-icons {
        margin-left: auto;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .modal-body {
        flex-direction: column;
    }

    /* Mobile එකේදී එක යට එක */
    .modal-img-section,
    .modal-info {
        min-width: 100%;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .shop-container {
        padding: 20px 10px;
    }

    .product-card {
        padding: 10px;
        border-radius: 10px;
    }

    .product-img-container {
        aspect-ratio: 3/4;
        height: auto;
        border-radius: 8px;
    }

    .product-card h3 {
        font-size: 14px;
        min-height: 2.8em;
        /* Slightly more for mobile fonts */
    }

    .price-regular,
    .price-sale {
        font-size: 1rem;
    }

    .price-original {
        font-size: 0.8rem;
    }

    .select-opt-btn {
        padding: 10px;
        font-size: 11px;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-img {
        height: 38px;
        width: 38px;
    }
}

/* --- Enhanced Footer --- */
.footer {
    background: #0a0a0a;
    color: #fff;
    padding: 50px 5% 25px;
    margin-top: 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

.footer-logo:hover .footer-logo-img {
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(10deg);
}

.footer-logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #fff;
}

.footer-tagline {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    max-width: 200px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #aaa;
    font-size: 14px;
    transition: 0.2s;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact p i {
    margin-right: 8px;
    color: #666;
    width: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: 0.3s;
    text-decoration: none;
    font-size: 14px;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 600px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 35px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-tagline {
        max-width: 100%;
        margin-top: 5px;
    }

    .footer-links ul li {
        display: inline-block;
        margin: 0 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }
}

/* --- Lookbook Video Section --- */
.lookbook-section {
    padding: 60px 0 40px;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.lookbook-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding: 0 5%;
}

.lookbook-header h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lookbook-header p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.video-scroll-container {
    display: flex;
    gap: 40px;
    padding-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.video-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.video-card {
    min-width: 280px;
    width: 280px;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: #fff;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.video-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-subtitle {
    font-size: 13px;
    opacity: 0.85;
    font-weight: 600;
}

.video-badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card:hover .play-icon {
    opacity: 1;
}

@media (max-width: 768px) {
    .lookbook-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .lookbook-header h2 {
        font-size: 24px;
    }

    .video-scroll-container {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-left: 5%;
        padding-right: 5%;
        gap: 15px;
        scroll-snap-type: x mandatory;
    }

    .video-scroll-container::after {
        content: '';
        display: block;
        min-width: 5vw;
    }

    .video-card {
        min-width: 75vw;
        /* More natural width so they look like beautiful story cards */
        width: 75vw;
        height: 450px;
        scroll-snap-align: center;
    }

    .video-overlay {
        padding: 25px 20px 20px;
    }

    .video-title {
        font-size: 18px;
    }

    .video-subtitle {
        font-size: 13px;
    }

    .video-badge-new {
        font-size: 10px;
        padding: 5px 10px;
    }

    .logo-img {
        height: 45px !important;
        width: auto !important;
    }

    .navbar {
        padding: 20px 4% !important;
        justify-content: flex-end !important;
    }

    .nav-icons {
        gap: 10px !important;
    }

    .cart-icon {
        font-size: 18px !important;
    }

    .user-icon i {
        font-size: 20px !important;
    }

    .user-icon .user-initial-avatar {
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
    }

    .user-icon {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }
}

/* ACCEPT Text Color Animation */
@keyframes acceptColorCycle {
    0% {
        color: #ffffff;
    }

    50% {
        color: #ff0000;
    }

    100% {
        color: #ffffff;
    }
}

.accept-link-anim {
    animation: acceptColorCycle 2s infinite ease-in-out !important;
    font-weight: 800 !important;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
    text-decoration: none !important;
}

/* --- Animations --- */
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite linear;
}