/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --primary: #D4AF37;
    /* More refined gold */
    --primary-light: #FFD700;
    --primary-dark: #996515;

    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --bg-card-hover: rgba(30, 30, 30, 0.8);

    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;

    --border-color: rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);

    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(212, 175, 55, 0.2);
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 90px;
    --top-bar-height: 40px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: calc(var(--header-height) + var(--top-bar-height));
    /* Subtle geometric pattern overlay */
    background-image:
        linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.9)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD700' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}



h1,
h2,
h3,
h4,
.logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-fast);
}

a:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Animations */
/* Glassmorphism Utility */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--glass-border);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient {
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Luxury Animation Suite */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--transition-smooth);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s var(--transition-smooth);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s var(--transition-smooth);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1s var(--transition-smooth);
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Delays (Up to 8 items) */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.stagger-6 {
    transition-delay: 0.6s;
}

.stagger-7 {
    transition-delay: 0.7s;
}

.stagger-8 {
    transition-delay: 0.8s;
}

/* Micro-animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: -200px;
    }

    100% {
        background-position: 200px;
    }
}

.shine-hover:hover {
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    background-size: 200px 100%;
    animation: shine 1s;
}

.zoom-img-hover {
    overflow: hidden;
}

.zoom-img-hover img {
    transition: transform 1.5s var(--transition-smooth);
}

.zoom-img-hover:hover img {
    transform: scale(1.1);
}

/* Header & Nav */
.top-bar {
    background: #000;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1002;
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.top-bar.scrolled {
    transform: translateY(-100%);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: var(--top-bar-height);
    width: 100%;
    z-index: 1001;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

header.scrolled {
    top: 0;
    padding: 0.8rem 0;
    background: #000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid var(--primary);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: all var(--transition-fast);
}

#mobile-menu-toggle:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 10px 0;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 20px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    min-width: 260px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    z-index: 1005;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 0 0 16px 16px;
    padding: 1.5rem 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block !important;
    padding: 12px 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    border: none;
    text-transform: uppercase;
}

/* Standard Hero Section (Used by Categories and preferred by user) */
.hero {
    position: relative;
    min-height: 80vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(11, 11, 11, 1)),
        url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
    opacity: 0.7;
    transition: transform 2s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Hero Section Enhancement (Alternative) */
.hero-premium {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-text-box {
    padding: 4rem;
    max-width: 650px;
    border-radius: 30px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin: 1.5rem 0;
    font-weight: 700;
}

.hero-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
}

.hero-text {
    font-size: 1.25rem;
    color: #dedede;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Craftsmanship Section */
.craftsmanship-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 6rem 0;
}

.luxury-rounded {
    border-radius: 40px;
    border: 2px solid var(--border-color);
}

.premium-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.luxury-list {
    list-style: none;
    padding: 0;
}

.luxury-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-weight: 500;
}

.luxury-list i {
    color: var(--primary);
}

/* Button & Divider Polish */
.btn-gold {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-outline-gold {
    border: 2px solid var(--primary);
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    color: var(--primary);
    font-weight: 700;
}

.gold-divider {
    height: 3px;
    width: 80px;
    background: var(--primary);
    margin: 1.5rem 0 2rem;
}

.gold-divider-center {
    height: 3px;
    width: 60px;
    background: var(--primary);
    margin: 1.5rem auto 3rem;
}

.section-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Features Bar */
.features-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 3rem 2rem;
    background: rgba(25, 25, 25, 0.7);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: #fff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0 8rem;
}

.product-card {
    background: var(--bg-card);
    border-radius: 4px;
    /* Sharper edges for professional look */
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.product-image-container {
    height: 320px;
    background: #151515;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info Layout */
/* Product Info Layout */
.product-card-footer {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.product-details-text {
    flex: 1;
    min-width: 0; /* Prevents text from pushing flex container */
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.product-action {
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .product-card-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.8rem !important;
        padding: 1rem 0.8rem !important;
        text-align: left;
    }
    
    .product-details-text {
        width: 100% !important;
        padding-right: 0 !important;
    }
    
    .product-title {
        white-space: normal !important;
        font-size: 1rem !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.4;
    }

    .product-meta, .product-price {
        margin-top: 5px !important;
        display: block !important;
    }
    
    .product-action {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    .product-action .btn {
        width: 100% !important;
        text-align: center !important;
        display: block !important;
        padding: 12px !important;
        font-size: 0.9rem !important;
    }
}

.product-price {
    font-weight: 700;
    color: var(--primary);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Footer Section */
footer {
    position: relative;
    background-color: #0b0b0b;
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('/static/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-col-brand h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-heading {
    color: var(--primary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-address, .footer-phone {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.address-item, .footer-phone {
    display: flex;
    gap: 1rem;
}

.address-item i, .footer-phone i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
}

.btn-directions {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary);
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    width: fit-content;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.btn-directions:hover {
    background: var(--primary);
    color: #000;
}

.footer-bottom {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 4rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #e0e0e0;
}

/* Checkout & Cart Luxury Styles */
.luxury-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.cart-table-luxury {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1rem;
}

.cart-row-luxury {
    background: rgba(255, 255, 255, 0.02);
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.cart-product-image {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-smooth);
    background: #151515;
}

.cart-row-luxury:hover .cart-product-image {
    transform: scale(1.05) rotate(2deg);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.cart-product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.cart-product-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Luxury Quantity Control */
.lux-qty-wrapper {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 5px;
    width: fit-content;
    transition: all 0.3s ease;
}

.lux-qty-wrapper:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.lux-qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lux-qty-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary);
}

.lux-qty-input {
    width: 40px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    pointer-events: none;
}

/* Glassmorphism Summary Card */
.cart-total-card-luxury {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8), rgba(15, 15, 15, 0.9));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 32px;
    padding: 3rem;
    width: 100%;
    max-width: 480px;
    position: relative;
    overflow: hidden;
}

.cart-total-card-luxury::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cart-total-section-luxury {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 6rem;
    gap: 4rem;
}

/* Luxury Benefits */
.lux-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.benefit-item i {
    color: var(--primary);
}

.badge-elite {
    background: linear-gradient(45deg, var(--primary-dark), var(--primary));
    color: #0b0b0b;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-row-luxury .value {
    font-size: 2.4rem;
    color: var(--primary);
    font-weight: 700;
}

/* Product Detail Specific */
.product-detail-flex {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    margin-top: 3rem;
    align-items: start;
}

.product-detail-flex h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.detail-actions {
    display: flex;
    gap: 1.5rem;
}

.hero-small {
    padding: 6rem 0 4rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-small h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Checkout Page Styles */
.checkout-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 4rem;
    align-items: start;
}

.checkout-submit-box {
    margin-top: 4rem;
}

.checkout-submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.ssl-info {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

.form-row-luxury {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-luxury {
    flex: 1;
    margin-bottom: 1.5rem;
}

.form-group-luxury label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#checkout-form input,
#checkout-form select,
#checkout-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#checkout-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}

.section-title-luxury {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}

.summary-card {
    position: sticky;
    top: 120px;
}

.summary-title {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.summary-total {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-amount {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

/* Empty State Styles */
.empty-cart-card {
    text-align: center;
    padding: 6rem 2rem;
}

.empty-cart-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.empty-cart-icon-box i {
    font-size: 2rem;
    color: #333;
}

.empty-cart-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.empty-cart-card p {
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Luxury Toast Notifications */
.luxury-toast-container {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 10000;
}

.luxury-toast {
    background: rgba(11, 11, 11, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.2rem 1.8rem;
}

/* Media Queries */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media screen and (max-width: 992px) {
    :root {
        --header-height: 70px;
        --top-bar-height: 0px;
    }

    .container {
        padding: 0 15px;
    }

    .top-bar {
        display: none;
    }

    header {
        position: fixed !important;
        top: 0 !important;
    }

    #mobile-menu-toggle {
        display: block !important;
        color: var(--primary) !important;
    }

    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        flex-direction: column;
        padding: 4rem 2rem;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.mobile-active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        box-shadow: none;
        border: none;
        padding: 1rem 0 0 0;
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .dropdown:hover .dropdown-content {
        transform: none;
    }

    .dropdown-content a {
        padding: 10px 0;
        font-size: 1rem;
    }

    .hero {
        min-height: 60vh;
        padding: 80px 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .features-bar {
        margin-top: -40px;
        padding: 2rem 1rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .luxury-card {
        padding: 2rem 1.5rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        margin-top: 1.5rem;
    }

    .product-detail-flex {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-detail-flex h1 {
        font-size: 2rem;
    }

    .hero-small h1 {
        font-size: 2rem;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .summary-card {
        position: static;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .cart-table-luxury thead {
        display: none;
    }

    .cart-row-luxury {
        display: block;
        padding: 2rem;
        margin-bottom: 2rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        position: relative;
    }

    .cart-row-luxury td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        width: 100% !important;
    }

    .cart-row-luxury td:last-child {
        border-bottom: none;
        padding-top: 1.5rem;
    }

    /* Add labels for mobile */
    .cart-row-luxury td:nth-child(2)::before {
        content: "Quantity";
        color: var(--text-muted);
        font-size: 0.75rem;
        text-transform: uppercase;
    }

    .cart-row-luxury td:nth-child(3)::before {
        content: "Total";
        color: var(--text-muted);
        font-size: 0.75rem;
        text-transform: uppercase;
    }

    .cart-product-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .cart-product-image {
        width: 100%;
        height: 200px;
    }

    .cart-product-name {
        font-size: 1.2rem;
    }

    .lux-qty-wrapper {
        margin-left: auto;
    }

    .cart-total-card-luxury {
        padding: 2rem !important;
        border-radius: 20px !important;
    }

    .lux-benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

@media screen and (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-col-brand, .footer-col-visit {
        grid-column: span 2;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .address-item, .footer-phone {
        justify-content: center;
    }

    .btn-directions {
        margin: 0.5rem auto 0;
    }
}

@media screen and (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 1rem;
    }

    .footer-col-links {
        text-align: center;
    }

    .footer-heading {
        font-size: 0.75rem;
        margin-bottom: 1.2rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .cart-total-section-luxury {
        flex-direction: column;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .form-row-luxury {
        flex-direction: column;
        gap: 0;
    }

    .section-title-luxury {
        font-size: 1.2rem;
    }

    .total-amount {
        font-size: 1.5rem;
    }

    .detail-actions {
        flex-direction: column;
    }

    .detail-actions .btn {
        width: 100%;
    }
}

/* Contact Page Responsive Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.contact-card {
    padding: 4rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-card {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.5rem;
    }
}

/* Professional Admin Dashboard Styles */
.dash-container {
    padding: 4rem 2rem 8rem;
    max-width: 1600px;
    margin: 0 auto;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dash-header h1 {
    font-size: 2.5rem;
    background: linear-gradient(45deg, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.dash-actions {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.dash-user-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.dash-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.stat-card-luxury {
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8), rgba(15, 15, 15, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05), transparent 70%);
}

.stat-card-luxury:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.revenue-text {
    color: var(--primary);
}

/* Kanban Workflow Board */
.workflow-section-title {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    min-height: 800px;
    align-items: flex-start;
}

.workflow-column {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.workflow-col-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.workflow-col-header h3 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
}

.count-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.workflow-col-body {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex: 1;
}

/* Order Cards in Kanban */
.order-card-luxury {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-fast);
    cursor: default;
}

.order-card-luxury:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.1);
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.order-card-luxury h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.card-meta span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Button Standardization */
/* Professional Boxed Luxury Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 0;
    /* Sharp professional box shape */
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    width: auto;
    /* Fix: Allow button to size to content */
    margin-top: 0;
}

.btn-primary {
    background: #FFD700;
    /* Pure Yellow fill as requested */
    color: #000;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.btn-primary:hover {
    background: #fff;
    border-color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #FFD700;
    /* Box outline */
    color: #FFD700;
}

.btn-secondary:hover {
    background: #FFD700;
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

@media screen and (max-width: 1400px) {
    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .dash-stat-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   PREMIUM LANDING PAGE STYLES (ADDED)
   ========================================= */

/* Premium Hero */
.hero-premium {
    position: relative;
    height: 90vh;
    /* Taller hero */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat fixed;
    margin-top: -80px;
    /* Pull behind header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content-premium {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-gold {
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #000;
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
    color: #000;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #fff;
    padding: 16px 38px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.btn-outline-gold:hover {
    border-color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
}

/* Premium Section General */
.section-premium {
    padding: 6rem 0;
    position: relative;
    background: #0b0b0b;
}

@media (max-width: 768px) {
    .section-premium {
        padding: 4rem 0;
    }
}

.bg-darker {
    background: #050505;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 4rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-tag {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 3rem;
    color: #fff;
    margin: 0;
}

.gold-divider-center {
    height: 3px;
    width: 80px;
    background: var(--primary);
    margin: 1.5rem auto 0;
}

.btn-link-gold {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Category Grid Premium */
.category-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.category-card-premium {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cat-img-wrapper {
    width: 100%;
    height: 100%;
}

.cat-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.category-card-premium:hover .cat-img-wrapper img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.cat-overlay h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: 0.4s;
}

.explore-link {
    color: var(--primary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.category-card-premium:hover .cat-overlay h3 {
    transform: translateY(0);
}

.category-card-premium:hover .explore-link {
    opacity: 1;
    transform: translateY(0);
}

/* Trust Banner */
.trust-banner {
    padding: 4rem 0;
    background: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    transition: 0.3s;
}

.trust-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary);
}

.trust-text h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.trust-text p {
    color: #888;
    font-size: 0.9rem;
}

/* Testimonial Slider */
.testimonial-slider-luxury {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'), rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 2rem;
    line-height: 1.4;
    color: #e0e0e0;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin-bottom: 3rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 8rem 0;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 3rem;
}

.btn-gold-solid {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transition: 0.3s;
}

.btn-gold-solid:hover {
    transform: scale(1.05);
    background: #fff;
    color: #000;
}

/* Responsive Adjusments */
@media (max-width: 768px) {

    .hero-title,
    .hero h1 {
        font-size: 3rem;
    }

    .hero-premium,
    .hero {
        min-height: auto;
        padding: 120px 20px 60px;
    }

    .category-grid-premium,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .section-header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    #mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.mobile-active {
        display: flex;
    }

    .dropdown-content {
        position: static;
        background: transparent;
        border: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}