/* =========================
   PREMIUM DESIGN ENHANCEMENTS
   10X DESIGN UPGRADE
   ========================= */

/* Advanced Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(176, 158, 102, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(203, 33, 37, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.hero-title {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 50%, var(--red) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-image img {
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.hero-image video {
    width: 100%;
    height: 100%;
    object-fit: fill;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.hero-image video::-webkit-media-controls {
    display: none !important;
}

.hero-image video::-webkit-media-controls-enclosure {
    display: none !important;
}

/* Make video area and video both square */
.hero .hero-image {
    width: 45vw;
    height: 45vw;
    max-width: 600px;
    max-height: 600px;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 32px;
    overflow: hidden;
}

.hero .hero-image video {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: fill;
}

/* Page Hero with Coffee Background */
.page-hero {
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://plus.unsplash.com/premium_photo-1675237625862-d982e7f44696?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

/* About Hero with Custom Background */
.page-hero.about-hero::before {
    background-image: url('https://images.unsplash.com/photo-1623821286322-f3990857ff3b?q=80&w=1031&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

/* Story Hero with Custom Background */
.page-hero.story-hero::before {
    background-image: url('../images/hero_in.jpeg');
}

/* Shop Hero with Background */
.shop-hero {
    position: relative;
    overflow: hidden;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1626402679707-b248aa61e5ff?q=80&w=1631&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.shop-hero .container {
    position: relative;
    z-index: 1;
}

/* Premium Product Cards */
.product-card {
    position: relative;
    background: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, transparent, var(--gold), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(176, 158, 102, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.product-image img {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
}

/* Glassmorphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Premium Buttons */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark) 0%, #2c1810 100%);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.2),
        0 1px 3px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a961 100%);
    transform: translateY(-3px);
    box-shadow:
        0 12px 24px rgba(176, 158, 102, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Enhanced Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    border-radius: 2px;
}

/* Magnetic Button Effect */
.quick-add {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-add:hover {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a961 100%);
    box-shadow:
        0 8px 20px rgba(176, 158, 102, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) translateY(-2px) scale(1.05);
}

/* Feature Cards Enhancement */
.feature {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.feature:hover {
    transform: translateY(-8px);
}

.feature-icon {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a961 100%);
    box-shadow:
        0 12px 24px rgba(176, 158, 102, 0.3),
        0 0 0 8px rgba(176, 158, 102, 0.1);
    transform: translateY(-8px) scale(1.1);
}

.feature:hover .feature-icon svg path {
    stroke: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Category Cards */
.category-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(176, 158, 102, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(176, 158, 102, 0.1);
}

.category-image {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image {
    transform: scale(1.15) rotate(-2deg);
}

/* Testimonial Cards */
.testimonial-card {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.1;
    transition: all 0.4s ease;
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.1);
}

.testimonial-card:hover {
    background: var(--white);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(176, 158, 102, 0.05);
}

/* Story Banner Enhancement */
.story-banner {
    position: relative;
    overflow: hidden;
}

.story-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 8, 8, 0.95) 0%, rgba(44, 24, 16, 0.9) 100%);
    z-index: 1;
}

.story-content {
    position: relative;
    z-index: 2;
}

.story-image {
    animation: scaleIn 0.8s ease-out;
}

/* Premium Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
}

.stagger-item.animated {
    animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }

/* Contemporary Red Header */
.header {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(135deg, #1a0808 0%, #2c1810 50%, #1a0808 100%);
    background-size: 200% auto;
    border-bottom: 1px solid rgba(176, 158, 102, 0.2);
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(26, 8, 8, 0.98) 0%, rgba(44, 24, 16, 0.98) 100%);
    box-shadow:
        0 4px 30px rgba(203, 33, 37, 0.3),
        0 2px 10px rgba(0, 0, 0, 0.2);
}

.logo-text {
    background: linear-gradient(135deg, var(--gold) 0%, #f5e6c8 50%, var(--gold) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    filter: drop-shadow(0 2px 4px rgba(176, 158, 102, 0.3));
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), #f5e6c8);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    box-shadow: 0 2px 8px rgba(176, 158, 102, 0.5);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold) !important;
    text-shadow: 0 0 20px rgba(176, 158, 102, 0.5);
}

.icon-btn {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-btn:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(176, 158, 102, 0.4);
    transform: translateY(-2px);
}

.cart-count {
    background: linear-gradient(135deg, var(--red) 0%, #a91d20 100%);
    box-shadow:
        0 2px 8px rgba(203, 33, 37, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle span {
    background: var(--gold);
    box-shadow: 0 1px 3px rgba(176, 158, 102, 0.3);
}

/* Badge Enhancements */
.product-badge {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation: scaleIn 0.4s ease-out;
}

.product-badge.sale {
    background: linear-gradient(135deg, var(--red) 0%, #a91d20 100%);
    box-shadow: 0 4px 12px rgba(203, 33, 37, 0.4);
}

.product-badge.bestseller {
    background: linear-gradient(135deg, var(--gold) 0%, #c9a961 100%);
    box-shadow: 0 4px 12px rgba(176, 158, 102, 0.4);
}

.product-badge.new {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.product-badge.hot {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Loading State Shimmer */
.shimmer {
    background: linear-gradient(
        90deg,
        var(--cream) 0%,
        #f0ede8 50%,
        var(--cream) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Premium Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--gold) 0%, var(--red) 100%);
    background-size: 200% auto;
    animation: gradient-shift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.newsletter-form input {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Cursor Enhancement (optional) */
@media (min-width: 1024px) {
    .product-card,
    .category-card,
    .btn {
        cursor: pointer;
    }
}

/* Tablet Optimization */
@media (max-width: 992px) {
    .hero .hero-image {
        width: 50vw;
        height: 50vw;
        max-width: 400px;
        max-height: 400px;
        right: 2%;
    }
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .hero::before,
    .hero::after {
        display: none;
    }

    /* Mobile Hero Video */
    .hero {
        min-height: auto;
        padding: 60px 0 40px;
        flex-direction: column;
    }

    .hero .hero-image {
        position: relative;
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
        margin: 40px auto 0;
        right: auto;
        top: auto;
        transform: none;
    }

    .hero-content {
        flex: 1;
        width: 100%;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        padding: 40px 0;
    }

    .hero-cta {
        justify-content: center;
    }

    /* Mobile Header */
    .header {
        padding: 12px 0;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-actions .icon-btn {
        width: 36px;
        height: 36px;
    }

    /* Page Hero Backgrounds */
    .page-hero,
    .shop-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1,
    .shop-hero h1 {
        font-size: 36px;
    }

    /* Product Cards */
    .product-card:active {
        transform: scale(0.98);
    }

    .product-card {
        border-radius: 16px;
    }

    /* Sections */
    section {
        padding: 40px 0;
    }

    /* Buttons */
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Small Mobile Optimization */
@media (max-width: 480px) {
    .hero .hero-image {
        width: 85vw;
        height: 85vw;
        border-radius: 24px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .page-hero h1,
    .shop-hero h1 {
        font-size: 28px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* Logo Image */
.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

/* Desktop Navigation Size */
@media (min-width: 992px) {
    .nav-link {
        font-size: 17px;
        font-weight: 500;
    }

    .nav-menu {
        gap: 45px;
    }
}

/* PREMIUM MOBILE EXPERIENCE */
@media (max-width: 992px) {
    /* Elevated sticky header with glassmorphism */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(26, 8, 8, 0.95);
        backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(176, 158, 102, 0.1);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    body {
        padding-top: 70px;
    }

    /* Premium mobile header layout */
    .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
        position: relative;
    }

    /* Refined menu toggle */
    .mobile-menu-toggle {
        z-index: 1001;
        padding: 10px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu-toggle:active {
        transform: scale(0.9);
        background: rgba(176, 158, 102, 0.15);
    }

    .mobile-menu-toggle span {
        background: rgba(176, 158, 102, 1);
        height: 2.5px;
        border-radius: 2px;
    }

    /* Perfectly centered logo */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }

    .logo-img {
        height: 48px;
        filter: drop-shadow(0 2px 8px rgba(176, 158, 102, 0.3));
    }

    /* Premium nav actions */
    .nav-actions {
        display: flex;
        gap: 10px;
        z-index: 2;
    }

    .nav-actions .icon-btn {
        width: 46px;
        height: 46px;
        background: rgba(176, 158, 102, 0.1);
        border: 1px solid rgba(176, 158, 102, 0.2);
        border-radius: 12px;
        backdrop-filter: blur(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-actions .icon-btn svg {
        stroke: rgba(176, 158, 102, 1);
    }

    .nav-actions .icon-btn:active {
        transform: scale(0.92);
        background: rgba(176, 158, 102, 0.2);
        border-color: rgba(176, 158, 102, 0.4);
    }

    /* Premium slide-in menu */
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 82%;
        max-width: 340px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(26, 8, 8, 0.97) 0%, rgba(44, 24, 16, 0.97) 100%);
        backdrop-filter: blur(10px) saturate(180%);
        -webkit-backdrop-filter: blur(10px) saturate(180%);
        flex-direction: column;
        gap: 0;
        padding: 110px 0 40px;
        box-shadow: 5px 0 50px rgba(0, 0, 0, 0.4);
        transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: auto;
        display: flex !important;
        border-right: 1px solid rgba(176, 158, 102, 0.1);
        pointer-events: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active li:nth-child(1) { transition-delay: 0.05s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.35s; }

    .nav-link {
        display: block;
        padding: 22px 35px;
        font-size: 17px;
        color: rgba(255, 255, 255, 0.95) !important;
        font-weight: 500;
        letter-spacing: 0.3px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, var(--gold), var(--red));
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-link:active::before,
    .nav-link.active::before {
        height: 60%;
    }

    .nav-link:active {
        background: rgba(176, 158, 102, 0.08);
        color: var(--gold) !important;
        padding-left: 40px;
    }

    .nav-link.active {
        color: var(--gold) !important;
        background: rgba(176, 158, 102, 0.05);
        padding-left: 40px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Premium overlay with blur */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        pointer-events: none;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Premium product cards on mobile */
    .product-card {
        border-radius: 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:active {
        transform: scale(0.97);
    }

    .product-image {
        text-align: center;
        padding: 25px;
    }

    .product-image img {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Enhanced mobile spacing */
    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    section {
        padding: 50px 0;
    }

    /* Premium buttons on mobile */
    .btn {
        padding: 14px 28px;
        border-radius: 12px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn:active {
        transform: scale(0.96);
    }
}

/* Ultra-premium small mobile */
@media (max-width: 480px) {
    .logo-img {
        height: 44px;
    }

    .nav-menu {
        width: 88%;
    }

    .nav-link {
        font-size: 16px;
        padding: 20px 30px;
    }

    .container {
        padding-left: 18px;
        padding-right: 18px;
    }
}

/* Print Optimization */
@media print {
    .animate-on-scroll,
    .stagger-item {
        opacity: 1 !important;
        transform: none !important;
    }
}
