@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* Global Variables & General Reset */
:root {
    --luxury-bg: #fbfbfa;
    --luxury-white: #ffffff;
    --luxury-charcoal: #111111;
    --luxury-grey-dark: #333333;
    --luxury-grey-light: #f5f5f5;
    --luxury-grey-border: #eaeaea;
    --luxury-gold: #c5a880;
    --luxury-gold-dark: #a98d65;
    --luxury-gold-light: #f4efe6;
    --luxury-red: #d9534f;
    --luxury-red-light: #fdf2f2;
    --luxury-green: #2ecc71;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    background-color: var(--luxury-bg);
    color: var(--luxury-charcoal);
    font-family: var(--font-body);
    font-weight: 300;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .luxury-title {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--luxury-charcoal);
    letter-spacing: 0.03em;
}

a {
    color: var(--luxury-charcoal);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--luxury-gold);
}

/* Premium Header & Navigation */
.navbar-luxury {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--luxury-grey-border);
    padding: 1.2rem 2rem;
    transition: var(--transition-smooth);
    z-index: 1020;
}

.navbar-brand-luxury {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--luxury-charcoal) !important;
}

.nav-link-luxury {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--luxury-charcoal) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link-luxury::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: var(--luxury-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link-luxury:hover::after, .nav-link-luxury.active::after {
    transform: scaleX(1);
}

.header-icon {
    font-size: 1.25rem;
    position: relative;
    padding: 0.5rem;
    cursor: pointer;
}

.cart-badge-luxury {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--luxury-gold);
    color: var(--luxury-charcoal);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    padding: 0.2rem 0.45rem;
    transform: translate(20%, -10%);
}

/* Show Dropdowns on Hover for Desktop Screens */
@media (min-width: 992px) {
    .navbar-luxury .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Luxury Hero Banner Carousel */
.carousel-luxury {
    height: 80vh;
    background-color: #000000;
}

.carousel-luxury .carousel-item {
    height: 80vh;
}

.carousel-luxury img {
    object-fit: cover;
    height: 80vh;
    filter: brightness(0.75);
}

.carousel-caption-luxury {
    bottom: 25%;
    text-align: left;
    max-width: 600px;
    left: 10%;
    z-index: 10;
}

.carousel-caption-luxury h1 {
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.carousel-caption-luxury p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Category Grid & Cards */
.category-card {
    position: relative;
    overflow: hidden;
    height: 350px;
    margin-bottom: 1.5rem;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card:hover .category-card-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 60%);
}

.category-card-title {
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.category-card-btn {
    color: #ffffff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-bottom: 1px solid #ffffff;
    align-self: flex-start;
    padding-bottom: 0.2rem;
}

/* Premium Buttons */
.btn-luxury {
    background-color: var(--luxury-charcoal);
    color: #ffffff;
    border: 1px solid var(--luxury-charcoal);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-luxury:hover, .btn-luxury:focus {
    background-color: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--luxury-charcoal);
    box-shadow: none;
}

.btn-luxury-outline {
    background-color: transparent;
    color: var(--luxury-charcoal);
    border: 1px solid var(--luxury-charcoal);
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.btn-luxury-outline:hover {
    background-color: var(--luxury-charcoal);
    color: #ffffff;
}

/* Product Cards */
.product-card {
    background: var(--luxury-white);
    border: none;
    border-radius: 0;
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--luxury-gold);
    color: var(--luxury-charcoal);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    letter-spacing: 0.1em;
}

.product-quick-view {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    text-align: center;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.product-image-wrapper:hover .product-quick-view {
    transform: translateY(0);
}

.product-card-info {
    padding: 1.2rem 0;
}

.product-card-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.product-card-title a {
    color: var(--luxury-charcoal);
}

.product-card-price {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--luxury-charcoal);
}

.product-card-price-sale {
    color: var(--luxury-red);
    font-weight: 600;
    margin-right: 0.5rem;
}

.product-card-price-compare {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85rem;
}

/* Product Detail Page Custom Styles */
/* Product Detail Page Custom Styles */
.product-gallery-wrapper {
    display: flex;
    flex-direction: row; /* 缩略图在左，主图在右 */
    position: relative;
    padding-left: 96px; /* 为左侧绝对定位的缩略图预留 80px 宽度 + 16px 间距 */
    width: 100%;
}

.product-gallery-main {
    flex: 1;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--luxury-grey-border);
    position: relative; /* 为圆点定位提供基准 */
}

/* 轮播图主体容器（支持原生的吸附滑动） */
.product-gallery-slides {
    width: 100%;
    height: 100%;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* 隐藏 Firefox 滚动条 */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.product-gallery-slides::-webkit-scrollbar {
    display: none; /* 隐藏 Chrome/Safari 滚动条 */
}

.product-gallery-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.product-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumbs-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
}

.product-gallery-thumbs {
    display: flex;
    flex-direction: column; /* 电脑端垂直一列排列 */
    width: 100%;
    height: 100%; /* 充满父容器高度，使第一张缩略图的顶部和主图绝对齐平 */
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: none; /* 彻底隐藏 Firefox 滚动条 */
    -ms-overflow-style: none; /* 彻底隐藏 IE 滚动条 */
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none; /* 彻底隐藏 Chrome/Safari 滚动条 */
}

/* 渐变微型滚动指示箭头 - 绝对定位悬浮 */
.thumb-scroll-btn {
    position: absolute;
    left: 0;
    right: 0;
    height: 32px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--luxury-gold, #b89c5f);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0;
    pointer-events: none;
    font-size: 1.1rem;
    z-index: 6;
}

.thumb-scroll-btn.btn-up {
    top: 0; /* 悬浮于最顶部 */
}

.thumb-scroll-btn.btn-down {
    bottom: 0; /* 悬浮于最底部 */
    background: transparent;
}

.product-gallery-thumbs-wrapper.can-scroll-up .btn-up {
    opacity: 1;
    pointer-events: auto;
}

.product-gallery-thumbs-wrapper.can-scroll-down .btn-down {
    opacity: 1;
    pointer-events: auto;
}

.thumb-scroll-btn:hover {
    color: #000;
    transform: scale(1.2);
}

.product-gallery-thumb-container {
    width: 100%;
}

.product-gallery-thumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--luxury-grey-border);
    transition: var(--transition-smooth);
    opacity: 0.6;
    width: 100%;
}

.product-gallery-thumb.active, .product-gallery-thumb:hover {
    opacity: 1;
    border-color: var(--luxury-gold);
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 移动端圆点指示器 */
.product-gallery-pagination {
    display: none; /* 默认在桌面隐藏 */
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    gap: 8px;
    z-index: 10;
}

.pagination-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.25s ease;
}

.pagination-dot.active {
    background-color: var(--luxury-gold, #b89c5f);
    transform: scale(1.25);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.35);
}

/* 移动端响应式布局 */
@media (max-width: 767.98px) {
    .product-gallery-wrapper {
        flex-direction: column; /* 垂直排布 */
        gap: 0; /* 消除大间距 */
        padding-left: 0; /* 移动端撤销绝对定位占位 */
    }
    
    .product-gallery-thumbs {
        display: none !important; /* 彻底隐藏移动端缩略图，避免空间占用 */
    }
    
    .product-gallery-pagination {
        display: flex; /* 在移动端展示轮播小圆点 */
    }
}

/* Variant Swatches Selection */
.swatch-color-label {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 0 0 1px #ccc;
}

.swatch-color-input:checked + .swatch-color-label {
    border-color: var(--luxury-gold);
    transform: scale(1.15);
    box-shadow: 0 0 0 2px var(--luxury-gold);
}

.swatch-size-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--luxury-grey-border);
    background-color: var(--luxury-white);
    color: var(--luxury-charcoal);
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
}

.swatch-size-btn:hover {
    border-color: var(--luxury-charcoal);
}

.swatch-size-input:checked + .swatch-size-btn {
    background-color: var(--luxury-charcoal);
    color: #ffffff;
    border-color: var(--luxury-charcoal);
}

/* Luxury Strikethrough for Sold Out Sizes */
.swatch-size-btn.disabled-out {
    color: #aaa;
    background-color: #fafafa;
    border-color: #eaeaea;
    cursor: not-allowed;
    background-image: linear-gradient(to top left, transparent 47%, #ccc 49%, #ccc 51%, transparent 53%);
}

.swatch-size-btn.disabled-out:hover {
    border-color: #eaeaea;
}

/* Slide-out Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--luxury-white);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    backdrop-filter: blur(2px);
    z-index: 1040;
    display: none;
}

.cart-drawer-overlay.open {
    display: block;
}

.cart-drawer-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--luxury-grey-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--luxury-grey-border);
    background-color: var(--luxury-bg);
}

.cart-drawer-item {
    display: flex;
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--luxury-grey-border);
}

.cart-drawer-item-img {
    width: 70px;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-right: 1rem;
}

.cart-drawer-item-details h6 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.cart-drawer-item-meta {
    font-size: 0.75rem;
    color: #777;
    margin-bottom: 0.4rem;
}

/* Accordion Custom Styling for Left Filters */
.filter-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--luxury-grey-border);
}

.filter-accordion .accordion-button {
    background-color: transparent;
    color: var(--luxury-charcoal);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 1.2rem 0;
    box-shadow: none !important;
}

.filter-accordion .accordion-button::after {
    background-size: 0.8rem;
}

.filter-accordion .accordion-body {
    padding: 0 0 1.2rem 0;
}

/* Modern Admin Section */
.admin-sidebar {
    background-color: var(--luxury-charcoal);
    color: #ffffff;
    min-height: 100vh;
    padding: 2rem 1.5rem;
}

.admin-sidebar h5 {
    color: var(--luxury-gold);
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.admin-sidebar-group-title {
    color: var(--luxury-gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.8rem 1rem 0.2rem 1rem;
    margin-top: 0.6rem;
    opacity: 0.85;
}

.admin-nav-link {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    margin-bottom: 0.25rem;
}

.admin-nav-link:hover, .admin-nav-link.active {
    background-color: rgba(255,255,255,0.08);
    color: #ffffff;
}

.admin-card {
    background-color: var(--luxury-white);
    border: 1px solid var(--luxury-grey-border);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.admin-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.admin-table th {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05rem;
    background-color: var(--luxury-grey-light);
    border-bottom: 2px solid var(--luxury-grey-border);
}

.admin-table td {
    vertical-align: middle;
    font-size: 0.85rem;
}

/* Status Badges */
.badge-status {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: capitalize;
}

.badge-pending {
    background-color: #f1f2f6;
    color: #57606f;
}

.badge-paid {
    background-color: var(--luxury-gold-light);
    color: var(--luxury-gold-dark);
}

.badge-processing {
    background-color: #e3f2fd;
    color: #1e88e5;
}

.badge-shipped {
    background-color: #ede7f6;
    color: #5e35b1;
}

.badge-completed {
    background-color: #e8f5e9;
    color: var(--luxury-green);
}

.badge-refunded {
    background-color: var(--luxury-red-light);
    color: var(--luxury-red);
}

.badge-cancelled {
    background-color: #ffebee;
    color: #c62828;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Double-row Header Layout Custom Styles */
.header-luxury {
    background-color: var(--luxury-white);
    border-bottom: 1px solid var(--luxury-grey-border);
}

.search-group-luxury {
    border-radius: 0;
    overflow: hidden;
}

.search-group-luxury .form-control {
    border: 1px solid var(--luxury-grey-border) !important;
    border-right: none !important;
    box-shadow: none !important;
    font-size: 0.85rem;
}

.search-group-luxury .form-control:focus {
    border-color: var(--luxury-charcoal) !important;
    background-color: var(--luxury-white) !important;
}

.search-group-luxury .btn {
    border-radius: 0;
    border: 1px solid var(--luxury-charcoal);
    background-color: var(--luxury-charcoal);
    color: var(--luxury-white);
}

.search-group-luxury .btn:hover {
    background-color: var(--luxury-gold);
    border-color: var(--luxury-gold);
    color: var(--luxury-charcoal);
}

/* Bottom Nav bar styling */
.main-nav-luxury {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.dropdown-hover-luxury:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* PromoGrid spacing and image aspect-ratio optimization */
.promo-section-luxury {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.promo-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* Premium Mega Menu Styling */
.mega-dropdown-menu-luxury {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--luxury-grey-border);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1000;
}

@media (min-width: 992px) {
    /* Trigger visibility on parent hover */
    .dropdown-hover-luxury:hover .mega-dropdown-menu-luxury {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.mega-title-link {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--luxury-charcoal) !important;
    transition: var(--transition-smooth);
}
.mega-title-link:hover {
    color: var(--luxury-gold) !important;
}

.mega-item-link {
    color: #6c757d !important;
    font-size: 0.8rem;
    display: inline-block;
    transition: var(--transition-smooth);
}
.mega-item-link:hover {
    color: var(--luxury-gold) !important;
    transform: translateX(4px);
}

.mega-promo-card {
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.mega-promo-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.transition-scale {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mega-promo-card:hover .transition-scale {
    transform: scale(1.04);
}

.hover-gold:hover {
    color: var(--luxury-gold) !important;
}

/* Premium Mobile Drawer Styles */
.mobile-nav-drawer-luxury {
    width: 320px !important;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px);
    border-right: 1px solid var(--luxury-grey-border) !important;
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.05) !important;
}

.mobile-nav-drawer-luxury .btn-close {
    font-size: 0.8rem;
    padding: 0.5rem;
    transition: var(--transition-smooth);
}
.mobile-nav-drawer-luxury .btn-close:hover {
    transform: rotate(90deg);
}

.mobile-main-link {
    font-family: var(--font-body);
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em;
    color: var(--luxury-charcoal) !important;
}

/* Accordion Icons with Transition */
.toggle-mobile-submenu i {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.toggle-mobile-submenu[aria-expanded="true"] i {
    transform: rotate(90deg);
}
.toggle-mobile-submenu[aria-expanded="true"] i::before {
    content: "\f2ee" !important; /* Bootstrap icon bi-dash-lg */
}

/* Mobile Submenu & Categories Layout */
.mobile-submenu-collapse {
    transition: var(--transition-smooth);
}

.mobile-child-link {
    font-family: var(--font-body);
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em;
    color: var(--luxury-charcoal) !important;
}

.mobile-subchild-list {
    margin-left: 0.2rem;
}
.mobile-item-link {
    font-family: var(--font-body);
    font-size: 0.75rem !important;
    color: #777777 !important;
    transition: var(--transition-smooth);
}
.mobile-item-link:hover {
    color: var(--luxury-gold) !important;
    transform: translateX(3px);
}

/* Mobile Brand Banner Card styles */
.mobile-promo-banner {
    transition: var(--transition-smooth);
}
.mobile-promo-banner img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-promo-banner:hover img {
    transform: scale(1.05);
}
.mobile-promo-banner h6 {
    letter-spacing: 0.05em;
    font-size: 0.85rem !important;
    font-weight: 500;
}

/* Premium Social Login Buttons */
.social-btn {
    border: 1px solid var(--luxury-grey-border) !important;
    color: var(--luxury-charcoal) !important;
    font-family: var(--font-body);
    font-size: 0.85rem !important;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth) !important;
}

.social-btn:hover {
    background-color: var(--luxury-gold-light) !important;
    border-color: var(--luxury-gold) !important;
    color: var(--luxury-gold-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(197, 168, 128, 0.15);
}

.social-btn i {
    font-size: 1rem;
}