/* CSS Reset and Variables */
:root {
    --primary-dark: #1b0a2c;
    --primary-light: #2c1145;
    --accent-gold: #c69c55;
    --accent-gold-hover: #b08947;
    --text-white: #ffffff;
    --text-muted: #ffffff;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-white);
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
}

.font-script {
    font-family: 'Pinyon Script', cursive;
}

a {
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: bold;
    border: none;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--accent-gold-hover);
    color: var(--primary-dark);
}

/* Top Bar */
.top-bar {
    background-color: #0c0218;
    font-size: 0.8rem;
    padding: 8px 0;
    color: #e2d1eb;
}
.top-bar i {
    color: var(--accent-gold);
}
.top-bar .social-icons a {
    color: #e2d1eb;
    margin-left: 15px;
    font-size: 0.9rem;
    text-decoration: none;
}
.top-bar .social-icons a:hover {
    color: var(--accent-gold);
}

/* Shared Logo Circle */
.header-logo-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: box-shadow 0.3s ease;
}
.header-logo-circle:hover {
    box-shadow: 0 0 16px rgba(198,156,85,0.4);
}

/* Desktop Header */
.header {
    background-color: #110221;
    padding: 16px 0;
    border-bottom: 1px solid rgba(198, 156, 85, 0.1);
}
.logo-text {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 0;
    line-height: 0.8;
}
.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-white);
    margin-top: 5px;
}
.search-bar .input-group-text {
    background: linear-gradient(to bottom, #ebd197, #b88a44);
    border: none;
    color: #110221;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
}
.search-bar input {
    background-color: #1f0b3b;
    border: 1px solid #36175e;
    color: var(--text-white);
    border-radius: 4px 0 0 4px;
    padding: 10px 15px;
}
.search-bar input::placeholder { color: #8c73a8; }
.search-bar input:focus {
    background-color: #2a114f;
    color: var(--text-white);
    border-color: var(--accent-gold);
    box-shadow: none;
}
.header-icons .icon-item {
    text-align: center;
    color: var(--text-white);
    margin-left: 20px;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}
.header-icons .icon-item:hover { color: var(--accent-gold); }
.header-icons .icon-item i {
    font-size: 1.2rem;
    margin-bottom: 2px;
    display: block;
}
.badge-cart {
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.7rem;
    font-weight: 700;
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 20px;
    text-align: center;
}

/* Desktop Navbar */
.navbar {
    background-color: #110221;
    border-bottom: 1px solid rgba(198, 156, 85, 0.15);
    padding: 0;
}
.navbar-nav .nav-link {
    color: var(--text-white);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    padding: 15px 20px;
    position: relative;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover { color: var(--accent-gold); }
.navbar-nav .nav-link.active { color: var(--accent-gold); }
.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: var(--accent-gold);
}

/* Desktop Categories Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(160deg, #1b0830 0%, #110221 60%, #0d0118 100%);
    border: 1px solid rgba(198, 156, 85, 0.2);
    border-radius: 8px;
    padding: 16px;
    min-width: 420px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #1b0830;
    border-left: 1px solid rgba(198, 156, 85, 0.2);
    border-top: 1px solid rgba(198, 156, 85, 0.2);
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.nav-dropdown-item:hover {
    background: rgba(198, 156, 85, 0.1);
    color: var(--accent-gold);
    padding-left: 16px;
}
.nav-dropdown-item-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(198, 156, 85, 0.3);
}
.nav-dropdown-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nav-dropdown-all-icon {
    background: rgba(198, 156, 85, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 0.9rem;
}
.nav-dropdown-all {
    border-top: 1px solid rgba(198, 156, 85, 0.15);
    margin-top: 4px;
    padding-top: 14px;
}

/* Mobile Categories Submenu */
.mobile-nav-has-sub {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-cat-toggle {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mobile-cat-toggle:hover {
    color: var(--accent-gold);
    padding-left: 16px;
}
.mobile-sub-menu {
    list-style: none;
    padding: 0 0 8px 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sub-menu.open {
    max-height: 500px;
}
.mobile-sub-menu li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mobile-sub-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 8px 12px 24px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.mobile-sub-menu li a:hover {
    color: var(--accent-gold);
    padding-left: 32px;
}
.mobile-sub-menu li a i {
    color: var(--accent-gold);
    opacity: 0.6;
}
.mobile-sub-menu li a:hover i {
    opacity: 1;
}
.mobile-cat-toggle .fa-chevron-down.open {
    transform: rotate(180deg);
}

/* ===================================
   MOBILE HEADER STYLES
   =================================== */
.mobile-header {
    background-color: #110221;
    border-bottom: 1px solid rgba(198, 156, 85, 0.15);
    position: sticky;
    top: 0;
    z-index: 1040;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

/* Hamburger */
.mobile-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    width: 36px;
}
.mobile-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}
.mobile-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Logo */
.mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mobile-logo-h {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
}
.mobile-logo-text {
    font-size: 2rem;
    color: var(--accent-gold);
    line-height: 1;
}

/* Mobile Icons */
.mobile-icons {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-icon-btn {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.2rem;
    padding: 6px 10px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.mobile-icon-btn:hover { color: var(--accent-gold); }

/* Mobile Search Dropdown */
.mobile-search-bar {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: #110221;
    border-top: 1px solid rgba(198, 156, 85, 0.1);
}
.mobile-search-bar.open {
    max-height: 80px;
}
.mobile-search-bar .form-control {
    background-color: #1f0b3b;
    border: 1px solid #36175e;
    color: var(--text-white);
    border-radius: 4px 0 0 4px;
}
.mobile-search-bar .form-control::placeholder { color: #8c73a8; }
.mobile-search-bar .form-control:focus {
    background-color: #2a114f;
    color: var(--text-white);
    border-color: var(--accent-gold);
    box-shadow: none;
}
.mobile-search-bar .input-group-text {
    background: linear-gradient(to bottom, #ebd197, #b88a44);
    border: none;
    color: #110221;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
}

/* Dark Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(4px);
}
.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* Off-Canvas Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    max-width: 85vw;
    background: linear-gradient(160deg, #1b0830 0%, #110221 60%, #0d0118 100%);
    border-right: 1px solid rgba(198, 156, 85, 0.2);
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
    overflow-y: auto;
}
.mobile-menu.open {
    transform: translateX(0);
}

/* Close Button */
.mobile-menu-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(198,156,85,0.2);
    color: var(--text-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    align-self: flex-end;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.mobile-menu-close:hover {
    background: rgba(198,156,85,0.2);
    color: var(--accent-gold);
}

/* Menu Logo */
.mobile-menu-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Menu Notice */
.mobile-menu-notice {
    background: rgba(198,156,85,0.08);
    border: 1px solid rgba(198,156,85,0.15);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* Nav List */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-list li {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav-list li a {
    display: flex;
    align-items: center;
    padding: 16px 8px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}
.mobile-nav-list li a:hover,
.mobile-nav-list li a.active {
    color: var(--accent-gold);
    padding-left: 16px;
}
.mobile-nav-list li a.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 60%;
    background: var(--accent-gold);
    border-radius: 0 3px 3px 0;
}
.mobile-nav-list li a i {
    width: 20px;
    text-align: center;
}
.mobile-cart-badge {
    margin-left: auto;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 700;
}

/* Mobile Social */
.mobile-menu-social {
    display: flex;
    gap: 12px;
}
.mobile-menu-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(198,156,85,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.mobile-menu-social a:hover {
    background: rgba(198,156,85,0.15);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, rgba(27, 10, 44, 0.95) 0%, rgba(27, 10, 44, 0.7) 40%, rgba(27, 10, 44, 0.2) 100%), url('../images/hero_bg.png') no-repeat center right/cover;
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
}
.hero-content-container {
    position: relative;
    z-index: 5;
}
.hero-text-col {
    z-index: 6;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleInPulse {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-50%);
    }
    50% {
        opacity: 1;
        transform: scale(1.03) translateY(-50%);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }
}

@keyframes floatLogo {
    0%, 100% {
        transform: translateY(-50%) translateY(0px);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
}

@keyframes rotatePulse {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes sparkFloat {
    0% {
        transform: translateY(100%) translateX(0px) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20%) translateX(20px) scale(1.2);
        opacity: 0;
    }
}

/* Spark Elements */
.hero-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.spark {
    position: absolute;
    bottom: -10px;
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 10px var(--accent-gold);
    opacity: 0;
}
.spark-1 { left: 15%; animation: sparkFloat 8s infinite ease-in-out; animation-delay: 0s; }
.spark-2 { left: 45%; animation: sparkFloat 10s infinite ease-in-out; animation-delay: 2s; }
.spark-3 { left: 75%; animation: sparkFloat 7s infinite ease-in-out; animation-delay: 4s; }
.spark-4 { left: 30%; animation: sparkFloat 12s infinite ease-in-out; animation-delay: 1s; }
.spark-5 { left: 85%; animation: sparkFloat 9s infinite ease-in-out; animation-delay: 3s; }

/* Text Content Styles */
.hero-title {
    margin: 0;
    display: flex;
    flex-direction: column;
}
.title-top {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    color: white;
    line-height: 1;
    letter-spacing: 2px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.title-bottom {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    color: var(--accent-gold);
    background: linear-gradient(135deg, #ebd197 0%, #b88a44 50%, #ebd197 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    letter-spacing: 2px;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Luxury Divider */
.hero-divider-luxury {
    display: flex;
    align-items: center;
    margin: 25px 0;
    width: 100%;
    max-width: 480px;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-divider-luxury .line-left,
.hero-divider-luxury .line-right {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}
.hero-divider-luxury .divider-center-icon {
    margin: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotatePulse 8s infinite linear;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 480px;
    line-height: 1.6;
    color: #e2d1eb;
    opacity: 0;
    animation: fadeInUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Buttons */
.hero-actions {
    opacity: 0;
    animation: fadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.btn-shop-now-luxury {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #dca853 0%, #f5d781 50%, #dca853 100%);
    color: #110221 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 38px;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}
.btn-shop-now-luxury:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(220,168,83,0.5);
}
.btn-shop-now-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: none;
}
.btn-shop-now-luxury:hover::before {
    left: 150%;
    transition: all 0.8s ease-in-out;
}
.btn-shop-now-luxury .arrow-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.btn-shop-now-luxury:hover .arrow-icon {
    transform: translateX(5px);
}

/* Pagination Dots */
.hero-pagination {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 50px;
    opacity: 0;
    animation: fadeInUp 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-pagination .pagination-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-pagination .pagination-dot.active-bar {
    width: 28px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 4px;
}

/* Visual Layers (Right) */
.hero-visual-col {
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.hero-model-wrap {
    position: absolute;
    bottom: -100px;
    right: 5%;
    width: 90%;
    max-width: 530px;
    z-index: 3;
    opacity: 0;
    animation: slideInRight 1.5s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}
.hero-model-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(-10px 15px 25px rgba(0, 0, 0, 0.6));
}
.hero-logo-wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -10%;
    width: 55%;
    max-width: 280px;
    z-index: 2;
    opacity: 0;
    border-radius: 50%;
    animation: scaleInPulse 1.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards, floatLogo 6s infinite ease-in-out 2.4s;
}
.hero-logo-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 15px rgba(198, 156, 85, 0.2));
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
        min-height: auto;
    }
    .title-top,
    .title-bottom {
        font-size: 3.5rem;
    }
    .hero-divider-luxury {
        margin: 20px auto;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-pagination {
        justify-content: center;
        margin-top: 30px;
    }
    .hero-visual-col {
        min-height: 400px;
        margin-top: 40px;
        overflow: visible;
    }
    .hero-model-wrap {
        bottom: -60px;
        right: 15%;
        width: 70%;
    }
    .hero-logo-wrap {
        right: 5%;
        width: 35%;
    }
}
@media (max-width: 576px) {
    .title-top,
    .title-bottom {
        font-size: 2.8rem;
    }
    .hero-model-wrap {
        width: 85%;
        right: 7.5%;
        bottom: -60px;
    }
    .hero-logo-wrap {
        display: none;
    }
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-title::before, .section-title::after {
    content: '◆';
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin: 0 15px;
}

/* Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 156, 85, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}
.product-img-wrap {
    position: relative;
    height: 250px;
    overflow: hidden;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-gold);
    color: var(--primary-dark);
    padding: 3px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
}
.product-info {
    padding: 15px;
}
.product-title {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}
.product-price {
    font-weight: bold;
    color: var(--text-white);
}
.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 5px;
}
.rating i {
    color: var(--accent-gold);
    font-size: 0.8rem;
}
.rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.product-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.action-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.action-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

/* Category Cards */
.category-card {
    border: 1px solid rgba(198, 156, 85, 0.3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    height: 150px;
    display: flex;
    align-items: flex-end;
    padding: 15px;
}
.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(27, 10, 44, 0.9), rgba(0,0,0,0.1));
    z-index: 1;
}
.category-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.category-card h3 {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--text-white);
    margin: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Best Sellers (Smaller Cards) */
.best-seller-card .product-img-wrap {
    height: 150px;
}
.best-seller-card .product-title {
    font-size: 0.9rem;
}
.best-seller-card .product-price {
    font-size: 0.9rem;
}

/* Banner */
.banner-section {
    background: linear-gradient(to right, #2c1145, #1b0a2c);
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    padding: 40px 0;
    text-align: center;
    position: relative;
}
.banner-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin: 0;
}
.banner-section .discount {
    font-size: 4rem;
    color: var(--accent-gold);
    font-weight: bold;
    line-height: 1;
}

/* Features */
.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
}
.feature-text h4 {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    font-size: 1rem;
    margin: 0;
}
.feature-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 156, 85, 0.2);
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    position: relative;
}
.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(198, 156, 85, 0.2);
    font-family: serif;
    line-height: 1;
}
.testi-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.testi-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}
.testi-name {
    margin: 0;
    font-size: 1rem;
    color: var(--text-white);
}

/* Newsletter */
.newsletter-section {
    background-color: #2a1538;
    padding: 40px 0;
    border-top: 1px solid rgba(198, 156, 85, 0.2);
}
.newsletter-icon {
    font-size: 2.5rem;
    color: var(--text-muted);
}
.newsletter-input {
    border-radius: 0;
    border: none;
    padding: 10px 15px;
}

/* Footer */
.footer {
    background-color: #120520;
    padding: 50px 0 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer h5 {
    font-family: 'Inter', sans-serif;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 20px;
}
.footer ul {
    list-style: none;
    padding: 0;
}
.footer ul li {
    margin-bottom: 10px;
}
.footer ul li a {
    color: var(--text-muted);
}
.footer ul li a:hover {
    color: var(--accent-gold);
}
.social-icons a {
    display: inline-block;
    width: 30px; height: 30px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
    color: var(--text-muted);
}
.social-icons a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding-top: 20px;
}

/* Breadcrumbs */
.breadcrumb {
    margin-bottom: 0;
    padding: 10px 0;
}
.breadcrumb-item a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}
.breadcrumb-item a:hover {
    color: var(--accent-gold);
}
.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(198, 156, 85, 0.4);
}
.text-gold {
    color: var(--accent-gold) !important;
}

/* Mobile Responsive Fixes */
@media (max-width: 767px) {
    .product-card {
        height: auto;
    }
    .product-img-wrap {
        height: 180px !important;
    }
    .product-info {
        padding: 10px;
    }
    .product-title {
        font-size: 0.85rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .product-price {
        font-size: 0.85rem;
    }
    .old-price {
        font-size: 0.75rem;
    }
    .rating i {
        font-size: 0.7rem;
    }
    .rating span {
        font-size: 0.7rem;
    }
    .product-actions {
        margin-top: 10px;
    }
    .action-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .best-seller-card .product-img-wrap {
        height: 140px !important;
    }
    .best-seller-card .product-title {
        font-size: 0.8rem;
    }
    .best-seller-card .product-price {
        font-size: 0.8rem;
    }
    .category-card {
        height: 120px;
    }
    .category-card h3 {
        font-size: 0.85rem;
    }
    .feature-box {
        flex-direction: column;
        text-align: center;
    }
    .feature-icon {
        font-size: 2rem;
    }
    .feature-text h4 {
        font-size: 0.9rem;
    }
    .feature-text p {
        font-size: 0.75rem;
    }
    .section-title h2 {
        font-size: 1.5rem;
    }
    .testimonial-card {
        padding: 15px;
    }
    .testi-img {
        width: 45px;
        height: 45px;
    }
    .testi-name {
        font-size: 0.85rem;
    }
    .testimonial-card p {
        font-size: 0.8rem;
    }
    .banner-section h2 {
        font-size: 1.5rem;
    }
    .banner-section .discount {
        font-size: 2.5rem;
    }
    .hero-title .title-top,
    .hero-title .title-bottom {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
    .btn-shop-now-luxury {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    .best-sellers-section .position-relative.px-4 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .best-sellers-section .action-btn.position-absolute {
        display: none;
    }
}
@media (max-width: 575px) {
    .product-img-wrap {
        height: 160px !important;
    }
    .product-title {
        font-size: 0.8rem;
    }
    .hero-title .title-top,
    .hero-title .title-bottom {
        font-size: 2rem;
    }
}

/* Additional Mobile Polish */
@media (max-width: 767px) {
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    .g-4 {
        --bs-gutter-x: 12px;
    }
    .g-5 {
        --bs-gutter-x: 16px;
    }
    .shop-sidebar-col .shop-sidebar {
        margin-bottom: 20px;
    }
}

/* Product Detail Styling */
.product-detail-title {
    font-size: 2.8rem;
    line-height: 1.2;
}
@media (max-width: 767px) {
    .product-detail-title {
        font-size: 1.6rem;
    }
    .product-detail-price {
        font-size: 1.3rem;
    }
    .product-detail-price .old-price {
        font-size: 1rem;
    }
    .product-detail-desc {
        font-size: 0.85rem;
    }
    .btn-add-to-cart {
        font-size: 0.9rem;
        padding: 12px 20px !important;
    }
    .product-gallery-wrap {
        padding: 10px;
    }
    .product-zoom-img {
        max-height: 300px;
    }
    .quantity-selector-wrap {
        height: 46px;
    }
    .qty-btn {
        width: 40px;
    }
    .qty-input {
        width: 36px;
    }
    .accordion-luxury .accordion-button {
        font-size: 0.8rem;
        padding: 14px 0;
    }
}
.product-gallery-wrap {
    position: relative;
    border: 1px solid rgba(198, 156, 85, 0.2);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
}
.zoom-box {
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
}
.product-zoom-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 480px;
    transition: transform 0.5s ease-out;
}
.zoom-box:hover .product-zoom-img {
    transform: scale(1.15);
}
.detail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.product-detail-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: white;
}
.product-detail-rating {
    font-size: 0.95rem;
}
.product-detail-rating .stars i {
    color: var(--accent-gold);
    margin-right: 2px;
}
.product-detail-price {
    font-size: 1.8rem;
    font-weight: bold;
}
.product-detail-price .old-price {
    text-decoration: line-through;
    font-size: 1.3rem;
}
.bg-success-transparent {
    background: rgba(40, 167, 69, 0.1);
}
.quantity-selector-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(198, 156, 85, 0.3);
    border-radius: 4px;
    height: 54px;
    background: #120520;
    overflow: hidden;
}
.qty-btn {
    width: 48px;
    height: 100%;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease;
}
.qty-btn:hover {
    background: rgba(198, 156, 85, 0.15);
    color: var(--accent-gold);
}
.qty-input {
    width: 45px;
    height: 100%;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-weight: bold;
    outline: none;
    -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.btn-add-to-cart {
    height: 54px;
    border-radius: 4px !important;
    font-size: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(to right, #dca853, #f5d781, #dca853);
    color: #110221 !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.btn-add-to-cart:hover {
    box-shadow: 0 6px 20px rgba(220,168,83,0.4);
    transform: translateY(-2px);
}
.accordion-luxury .accordion-item {
    background: transparent;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid rgba(198, 156, 85, 0.15);
}
.accordion-luxury .accordion-button {
    box-shadow: none;
    padding: 18px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border: none;
}
.accordion-luxury .accordion-button:not(.collapsed) {
    color: var(--accent-gold);
    background: transparent;
}
.accordion-luxury .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
    filter: drop-shadow(0 0 2px var(--accent-gold));
}
.accordion-luxury .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c69c55'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}
.accordion-luxury .accordion-body {
    padding: 0 0 20px 0;
}

/* Shop page styles */
.shop-sidebar {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}
@media (max-width: 991px) {
    .shop-sidebar-col {
        display: none;
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .shop-sidebar-col.open {
        display: block;
    }
    .shop-sidebar {
        margin-bottom: 20px;
    }
}
.sidebar-title {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 8px;
    display: inline-block;
}
.sidebar-list {
    list-style: none;
}
.sidebar-list a {
    transition: all 0.3s ease;
    font-size: 0.9rem;
}
.sidebar-list a:hover {
    padding-left: 5px;
}
.form-select.bg-dark, .form-control.bg-dark {
    border: 1px solid rgba(198, 156, 85, 0.25) !important;
}
.form-select.bg-dark:focus, .form-control.bg-dark:focus {
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 0.25rem rgba(198, 156, 85, 0.15) !important;
    background-color: #1f0b3b;
    color: white;
}

/* About & Contact Custom Styles */
.about-image-wrap {
    padding-bottom: 20px;
}
.about-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold) !important;
}
.contact-form-wrap {
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
.contact-icon-box {
    transition: all 0.3s ease;
}
.d-flex:hover > .contact-icon-box {
    background: rgba(198, 156, 85, 0.15);
    transform: scale(1.1);
}
.success-checkmark-box {
    color: var(--accent-gold);
}

/* Override text-muted for readability on dark background */
.text-muted {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Form input placeholder color */
.form-control::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}
.form-control:focus {
    background-color: #1f0b3b !important;
    color: #fff !important;
    border-color: var(--accent-gold) !important;
    box-shadow: 0 0 0 0.2rem rgba(198, 156, 85, 0.15) !important;
}
textarea.form-control {
    resize: vertical;
}
.form-label {
    color: rgba(255, 255, 255, 0.75) !important;
}
.form-check-label {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ===== CART PAGE STYLES ===== */
.cart-header-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
}
.cart-item-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 16px;
    align-items: center;
}
@media (max-width: 767px) {
    .cart-item-grid {
        grid-template-columns: 1fr;
    }
}
.cart-item-img-wrap {
    width: 90px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(198, 156, 85, 0.2);
    flex-shrink: 0;
    display: block;
}
.cart-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.cart-item-img-wrap:hover .cart-item-img {
    transform: scale(1.1);
}
.cart-item-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}
.cart-item-title:hover {
    color: var(--accent-gold);
}
.btn-remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.75rem;
    padding: 0;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}
.btn-remove-item:hover {
    color: #e74c3c;
}
