﻿:root {
    --gold: #C9A961;
    --gold-light: #E5D4A1;
    --gold-dark: #9A7B3F;
    --gold-shimmer: linear-gradient(135deg, #9A7B3F 0%, #C9A961 25%, #E5D4A1 50%, #C9A961 75%, #9A7B3F 100%);
    --bg-dark: #080808;
    --bg-card: #111111;
    --bg-section: #0A0A0A;
    --text-light: #F8F8F8;
    --text-muted: #888888;
    --text-dim: #555555;
    --dark: #111111;
    --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.15);
    --shadow-gold-intense: 0 20px 60px rgba(201, 169, 97, 0.25);
}

/* Order Deadline Banner */
.order-banner {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.95), rgba(154, 123, 63, 0.95));
    color: #080808;
    padding: 10px 20px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
}

.order-banner p {
    margin: 0;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
}

/* Order Deadline Modal */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 20px;
    box-sizing: border-box;
}

.order-modal.active {
    display: flex;
}

.order-modal-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(201, 169, 97, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.order-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.order-modal-close:hover {
    background: rgba(201, 169, 97, 0.2);
    transform: rotate(90deg);
}

.order-modal h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.order-modal p {
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.order-modal .highlight {
    color: var(--gold);
    font-weight: 600;
}

.order-modal-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #080808;
    border: none;
    padding: 12px 30px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.order-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.4);
}

@media (max-width: 768px) {
    .order-modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .order-modal h3 {
        font-size: 20px;
    }
    
    .order-modal p {
        font-size: 14px;
    }
    
    .order-modal-btn {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Breadcrumb Navigation */
.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}
.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb a:hover {
    color: var(--gold-light);
}
.breadcrumb .separator {
    margin: 0 8px;
    color: var(--text-dim);
}
.breadcrumb .current {
    color: var(--text-light);
    font-weight: 500;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Lato', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    min-height: 100vh;
    overflow-x: hidden;
    padding-top: 120px;
}
/* Elegant Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 100%, rgba(201, 169, 97, 0.05) 0%, transparent 40%),
        repeating-linear-gradient(45deg, transparent, transparent 100px, rgba(201, 169, 97, 0.01) 100px, rgba(201, 169, 97, 0.01) 101px);
    pointer-events: none;
    z-index: -1;
}
/* Typography */
h1, h2, h3, h4 {
    font-family: 'Lora', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}
/* Header */
header {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98) 0%, rgba(8, 8, 8, 0.95) 100%);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}
header.scrolled {
    padding: 10px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 50px 15px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo-section {
    display: flex;
    align-items: center;
    gap: 18px;
}
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px 12px;
    margin: -8px -12px;
}
.logo-link:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: scale(1.02);
}
.logo-link:active {
    transform: scale(0.98);
}
.logo-placeholder {
    width: 70px;
    height: 70px;
    background: var(--gold-shimmer);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 16px rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;
}
.logo-placeholder:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 205, 95, 0.25);
}
.logo-placeholder img,
.footer-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shimmer-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.logo-text,
.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.25);
    transition: all 0.3s ease;
    cursor: default;
    line-height: 1.1;
    position: relative;
}
.logo-section {
    position: relative;
}
.logo-section:hover .logo-text {
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.35)) drop-shadow(0 0 10px rgba(240, 230, 140, 0.2));
    letter-spacing: 3px;
}
.logo-text span,
.footer-logo-text span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    max-width: 260px;
    display: inline-block;
    background: linear-gradient(120deg, rgba(255,255,255,0.95), rgba(201,169,97,0.95), rgba(255,255,255,0.9));
    background-size: 220% 220%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.25);
    transition: opacity 0.35s ease, transform 0.35s ease;
    position: relative;
    overflow: visible;
}
.logo-text::before,
.logo-text::after,
.logo-section::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 18px;
    border-radius: 50% 50% 60% 60%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 244, 206, 0.95), rgba(220, 180, 90, 0.55), transparent 80%);
    box-shadow: 0 0 14px rgba(255, 220, 140, 0.35);
    opacity: 0;
    transform: translateY(0) scaleY(0.7);
    transition: opacity 0.25s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: 2;
}
.logo-text::before {
    left: 8px;
    top: 26px;
}
.logo-text::after {
    right: 16px;
    top: 26px;
    width: 5px;
    height: 16px;
}
.logo-section::after {
    right: -4px;
    top: 22px;
    width: 4px;
    height: 14px;
    background: radial-gradient(circle at 50% 30%, rgba(255, 244, 206, 0.88), rgba(220, 180, 90, 0.4), transparent 80%);
    box-shadow: 0 0 10px rgba(255, 220, 140, 0.25);
}
.logo-text span::before,
.logo-text span::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 238, 170, 0.96), rgba(210, 175, 90, 0.7) 60%, transparent 90%);
    opacity: 0;
    transform: translateY(0) scale(0.55);
    transition: opacity 0.2s ease, transform 0.3s ease;
}
.logo-text span::before {
    left: 16px;
    top: 8px;
}
.logo-text span::after {
    right: 18px;
    top: 10px;
    width: 3px;
    height: 3px;
}
.logo-section:hover .logo-text span {
    opacity: 0.95;
    transform: translateY(0);
}
.logo-section:hover .logo-text::before,
.logo-section:hover .logo-text::after,
.logo-section:hover::after,
.logo-section:hover .logo-text span::before,
.logo-section:hover .logo-text span::after {
    opacity: 1;
}
.logo-section:hover .logo-text::before,
.logo-section:hover .logo-text::after,
.logo-section:hover::after {
    animation: drop-golden 1.4s ease-out both;
}
.logo-section:hover .logo-text span::before,
.logo-section:hover .logo-text span::after {
    animation: drop-spark 1.15s ease-out both;
}

@keyframes drop-golden {
    0% {
        opacity: 0;
        transform: translateY(0) scaleY(0.65);
    }
    30% {
        opacity: 0.65;
        transform: translateY(14px) scaleY(0.85);
    }
    60% {
        opacity: 0.85;
        transform: translateY(28px) scaleY(1);
    }
    100% {
        opacity: 0;
        transform: translateY(44px) scaleY(0.75);
    }
}

@keyframes drop-spark {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.5);
    }
    35% {
        opacity: 1;
        transform: translateY(10px) scale(0.95);
    }
    100% {
        opacity: 0;
        transform: translateY(22px) scale(0.2);
    }
}
/* Navigation */
nav {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}
.nav-item {
    position: relative;
}
.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 0;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    transition: all 0.3s ease;
}
.nav-link:hover svg,
.nav-link.active svg {
    color: var(--gold);
    stroke: var(--gold);
    transform: translateX(1px);
}
.nav-link::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover {
    color: var(--gold);
}
.nav-link.active {
    color: var(--gold);
    font-weight: 700;
}
.nav-link.active::before {
    width: 100%;
    height: 2px;
    background: var(--gold);
}
.nav-link:hover::before {
    width: 30px;
}
/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(17, 17, 17, 0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    margin-top: 15px;
}
.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: var(--gold-shimmer);
}
.dropdown-link {
    display: block;
    padding: 14px 25px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    position: relative;
}
.dropdown-icon {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.dropdown-link:hover .dropdown-icon {
    opacity: 1;
    color: var(--gold);
}
.dropdown-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    right: 25px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.1), transparent);
}
.dropdown-link:last-child::after {
    display: none;
}
.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(201, 169, 97, 0.1) 0%, transparent 100%);
    border-left-color: var(--gold);
    color: var(--gold);
    padding-left: 35px;
}
.dropdown-section {
    padding: 10px 0;
}
.dropdown-section:not(:last-child) {
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.dropdown-section-title {
    padding: 10px 25px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
/* Hero Section */
.hero {
    min-height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 0;
    padding: 10px 40px 10px;
    background:
        linear-gradient(180deg, rgba(8, 8, 8, 0.7) 0%, rgba(8, 8, 8, 0.5) 50%, rgba(8, 8, 8, 0.9) 100%),
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(201, 169, 97, 0.1) 0%, transparent 60%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L30 60M0 30L60 30' stroke='rgba(201,169,97,0.03)' stroke-width='1'/%3E%3C/svg%3E");
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}
@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(60px); }
}
.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.hero-subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}
.hero h1 {
    font-size: 72px;
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}
.hero h1 span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
}
.hero-tagline {
    font-size: 16px;
    color: var(--gold);
    max-width: 550px;
    margin: 0 auto 35px;
    letter-spacing: 1px;
    text-shadow: 0 0 18px rgba(212, 175, 55, 0.25);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}
.hero-divider {
    width: 120px;
    height: 1px;
    background: var(--gold-shimmer);
    margin: 5px auto 5px;
}
@keyframes expandWidth {
    from { width: 0; }
    to { width: 120px; }
}
/* Hero Slideshow */
.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 880px;
    margin: 0 auto 2rem;
    border-radius: 34px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.06);
    overflow: visible;
    box-shadow:
        0 28px 80px rgba(0, 0, 0, 0.18),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 0 120px rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.8s;
}

.hero-slideshow::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.45),
        rgba(255, 255, 255, 0.08) 20%,
        rgba(255, 215, 0, 0.25) 45%,
        rgba(255, 255, 255, 0.05) 65%,
        rgba(255, 215, 0, 0.4)
    );
    filter: blur(4px);
    z-index: -2;
}

.hero-slideshow::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.08);
    z-index: -1;
}

.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 300px;
    max-height: 420px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(20, 20, 20, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px) scale(0.96) rotate(3deg);
    transition: opacity 0.9s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1;
    will-change: opacity, transform;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
}

.slide.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    z-index: 2;
}

.slide-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 28px 0 0 28px;
    background: radial-gradient(circle at top center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 40%, rgba(0, 0, 0, 0.18) 110%);
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease, filter 0.8s ease;
    filter: brightness(0.94) contrast(1.08) saturate(1.2);
    padding: 0;
    background: transparent;
}

.slide.active .slide-image {
    filter: brightness(1.08) contrast(1.16) saturate(1.3);
}

.slide:hover .slide-image {
    transform: scale(1.04);
}

.slide-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 34px 68px 100px 28px;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.9), rgba(20, 20, 20, 0.7));
    border-radius: 0 28px 28px 0;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    gap: 18px;
}

.slide-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.06), transparent 60%);
    pointer-events: none;
}

.slide-title {
    font-family: 'Cormorant Garamond', 'Lora', serif;
    font-size: 1.55rem;
    font-weight: 600;
    font-style: italic;
    color: var(--gold);
    margin: 0 0 14px 0;
    letter-spacing: 0.03em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    line-height: 1.35;
    position: relative;
    z-index: 1;
    animation: slideInText 0.8s ease-out 0.3s both;
}

.slide-description {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 1;
    padding-right: 8px;
    animation: slideInText 0.8s ease-out 0.5s both;
}


@keyframes slideInText {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Slideshow Indicators */
.slideshow-indicators {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 15;
    padding: 14px 24px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.18));
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}

.slideshow-thumbnails {
    position: absolute;
    right: -78px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
    padding: 6px 4px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow-y: auto;
    max-height: 100%;
    width: 78px;
}

.slideshow-thumbnails::-webkit-scrollbar {
    width: 4px;
}

.slideshow-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.4);
    border-radius: 2px;
}

.thumbnail {
    width: 66px;
    height: 66px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.thumbnail::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 2;
}

.thumbnail.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.4), 0 8px 24px rgba(201, 169, 97, 0.25);
    transform: scale(1.08) translateX(8px);
    background: rgba(201, 169, 97, 0.12);
}

.thumbnail:hover {
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateX(4px);
}

.thumbnail-image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 14px;
}

.thumbnail-label {
    display: none;
}

.thumbnail:hover .thumbnail-label,
.thumbnail.active .thumbnail-label {
    display: block;
    width: 100%;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    padding: 0 6px;
} 

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    position: relative;
}

.indicator.active {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.6);
    box-shadow: 0 0 32px rgba(212, 175, 55, 0.6), inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.55);
    transform: scale(1.4);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Slideshow Navigation */
.slideshow-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 12;
    pointer-events: none;
}

.nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.08));
    border: 2px solid rgba(201, 169, 97, 0.35);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    pointer-events: auto;
    opacity: 0.8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.28), rgba(201, 169, 97, 0.15));
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.12);
    opacity: 1;
    box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Slideshow Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-30px) scale(1.05);
    }
}

/* Auto-play animation */
.slideshow-container:hover .slide.active .slide-image {
    animation: gentleZoom 3s ease-in-out infinite;
}

@keyframes gentleZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.hero-core {
    position: relative;
    z-index: 20;
}

.premium-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, #d4af37 50%, var(--gold) 100%);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.3),
        0 4px 16px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.premium-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.4),
        0 8px 32px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.premium-cta:hover .cta-glow {
    transform: translateX(100%);
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 2;
}

.cta-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-main-icon {
    width: 24px;
    height: 24px;
    color: var(--dark);
    transition: all 0.3s ease;
}

.premium-cta:hover .cta-main-icon {
    transform: rotate(15deg) scale(1.1);
}

.icon-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle-dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-dot:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 1s;
}

.particle-dot:nth-child(3) {
    bottom: 20%;
    left: 60%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 0.4;
    }
}

.cta-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dark);
}

.cta-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    color: var(--dark);
}

.cta-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.premium-cta:active .cta-ripple {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Hero Secondary Buttons */
.hero-secondary-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.2s;
}

.secondary-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.6rem;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 214, 107, 0.25);
    border-radius: 18px;
    text-decoration: none;
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.secondary-btn:hover::before {
    width: 260%;
    height: 260%;
}

.secondary-btn:hover {
    background: rgba(255, 214, 107, 0.18);
    border-color: rgba(255, 214, 107, 0.55);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(212, 175, 55, 0.18);
    color: var(--dark);
}

.secondary-btn:hover .btn-icon {
    color: var(--text-light);
}

.btn-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.secondary-btn:hover .btn-icon {
    transform: scale(1.1);
    color: var(--light);
}

.secondary-btn span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.2) 100%);
    border-radius: 50%;
    animation: shapeFloat 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    border-radius: 20px 40px 20px 40px;
}

.floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
    border-radius: 40px 20px 40px 20px;
}

.floating-shape.shape-4 {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg) scale(1.1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) rotate(180deg) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) rotate(270deg) scale(1.2);
        opacity: 0.7;
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Floating particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}
.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.particle:nth-child(3) { left: 70%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 1s; }
.particle:nth-child(5) { left: 50%; top: 50%; animation-delay: 3s; }
@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}
/* Section Styling */
.section {
    padding: 20px 40px;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 15px;
}
.section-subtitle {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-header h2 {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 15px auto 0;
}
/* Products Section */
.products-section {
    background: var(--bg-section);
    padding: 10px 0 30px;
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: -10px;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-row-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.categories-row-small {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.categories-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.categories-masonry .category-card {
    grid-row: span 1;
    grid-column: span 1;
}

.categories-masonry .category-card-tall {
    grid-row: span 2;
}

.categories-masonry .category-card-wide {
    grid-column: span 2;
}

.categories-featured {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.featured-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card-featured {
    min-height: 280px;
    padding: 32px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 214, 107, 0.1));
    border: 1px solid rgba(255, 214, 107, 0.2);
    box-shadow: 0 24px 60px rgba(201, 169, 97, 0.15);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.category-card-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 214, 107, 0.2), transparent 40%);
    pointer-events: none;
    opacity: 0.5;
    transition: opacity 0.35s ease;
}

.category-card-featured:hover::before {
    opacity: 0.7;
}

.category-card-featured:hover {
    transform: translateY(-12px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 214, 107, 0.18));
    border-color: rgba(255, 214, 107, 0.4);
    box-shadow: 0 32px 80px rgba(201, 169, 97, 0.22);
}

.category-card-featured .category-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(255, 214, 107, 0.2));
    color: var(--gold);
    box-shadow: 0 16px 40px rgba(201, 169, 97, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease;
}

.category-card-featured .category-icon::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    top: 12px;
    right: 12px;
    transform: rotate(12deg);
}

.category-card-featured:hover .category-icon {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.4), rgba(255, 214, 107, 0.3));
}

.category-card-featured h3 {
    font-size: 1.5rem;
    margin: 0 0 12px 0;
    line-height: 1.3;
    color: var(--gold);
    font-weight: 500;
}

.category-card-featured p {
    margin: 0;
    line-height: 1.6;
    color: #FFFFFF;
    opacity: 0.9;
    font-size: 0.95rem;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.category-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 214, 107, 0.05));
    border: 1px solid rgba(255, 214, 107, 0.1);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.08);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.category-list-item:hover {
    transform: translateX(8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 214, 107, 0.12));
    border-color: rgba(255, 214, 107, 0.25);
    box-shadow: 0 16px 40px rgba(201, 169, 97, 0.15);
}

.category-list-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(255, 214, 107, 0.12));
    color: var(--gold);
    box-shadow: 0 8px 20px rgba(201, 169, 97, 0.12);
    flex-shrink: 0;
}

.category-list-content h4 {
    font-size: 1.1rem;
    margin: 0 0 6px 0;
    line-height: 1.3;
    color: var(--gold);
    font-weight: 500;
}

.category-list-content p {
    margin: 0;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.8;
    font-size: 0.85rem;
}

.categories-section .section-header {
    max-width: 780px;
    margin: 0 auto 32px;
}

.categories-section .section-header h2 {
    color: var(--gold);
}

.category-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 214, 107, 0.06));
    border: 1px solid rgba(255, 214, 107, 0.15);
    box-shadow: 0 20px 50px rgba(201, 169, 97, 0.12);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 214, 107, 0.16), transparent 35%);
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.35s ease;
}

.category-card:hover::before {
    opacity: 0.55;
}

.category-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 214, 107, 0.15));
    border-color: rgba(255, 214, 107, 0.35);
    box-shadow: 0 28px 70px rgba(201, 169, 97, 0.18);
}

.category-card-large {
    min-height: 320px;
    padding: 32px 28px;
    border-radius: 28px;
}

.category-card-large:hover {
    transform: translateY(-12px);
}

.category-card .category-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(255, 214, 107, 0.15));
    color: var(--gold);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, background 0.35s ease;
}

.category-card-tall .category-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
}

.category-card-wide .category-icon {
    width: 90px;
    height: 90px;
    border-radius: 22px;
}

.category-card .category-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    top: 10px;
    right: 10px;
    transform: rotate(12deg);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.35), rgba(255, 214, 107, 0.25));
}

.category-card h3 {
    font-size: 1.1rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: var(--gold);
    font-weight: 500;
}

.category-card-large h3 {
    font-size: 1.5rem;
    margin: 0 0 12px 0;
}

.category-card p {
    margin: 0;
    line-height: 1.5;
    color: #FFFFFF;
    opacity: 0.85;
    font-size: 0.85rem;
}

.category-card-large p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.category-card .category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Design for Categories */
@media (max-width: 1024px) {
    .categories-row-small {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .categories-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-row-large {
        grid-template-columns: 1fr;
    }
    
    .categories-row-small {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card-large {
        min-height: 280px;
    }
    
    .category-card-large .category-image {
        height: 140px;
    }
    
    .categories-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }
    
    .categories-masonry .category-card-tall {
        grid-row: span 1;
    }
    
    .categories-masonry .category-card-wide {
        grid-column: span 1;
    }
    
    .featured-categories {
        grid-template-columns: 1fr;
    }
    
    .category-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .categories-row-small {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 20px 16px;
    }
    
    .category-card-large {
        min-height: 260px;
        padding: 24px 20px;
    }
    
    .categories-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 160px;
        gap: 16px;
    }
    
    .category-card-featured {
        min-height: 240px;
        padding: 24px 20px;
    }
    
    .category-card-featured .category-icon {
        width: 80px;
        height: 80px;
    }
    
    .category-list-item {
        padding: 16px 20px;
    }
}

.product-card {
    position: relative;
    min-height: 520px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    perspective: 1000px;
    cursor: pointer;
    transition: all 0.45s ease;
    animation: floatIn 0.8s ease forwards;
    opacity: 0;
    transform: translateY(50px);
}

.product-card:nth-child(1) { animation-delay: 0.08s; }
.product-card:nth-child(2) { animation-delay: 0.16s; }
.product-card:nth-child(3) { animation-delay: 0.24s; }
.product-card:nth-child(4) { animation-delay: 0.32s; }
.product-card:nth-child(5) { animation-delay: 0.40s; }

@keyframes floatIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-12px) scale(1.04);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.card-inner {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-front {
    background: linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-back {
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(12, 12, 12, 0.96));
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px;
    border: 1px solid rgba(201, 169, 97, 0.12);
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(201, 169, 97, 0.08));
    box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.18);
}

.card-image-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image-slideshow .card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.card-image-slideshow .card-image.active {
    opacity: 1;
}

.image-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.image-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.image-indicators .indicator.active {
    background: var(--gold);
    transform: scale(1.2);
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.6s ease, filter 0.3s ease;
}

.product-card:hover .card-image {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 22px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.88));
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.product-card:hover .card-content {
    transform: translateY(-5px);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s ease;
}

.product-card[data-category="dispensers"] .card-title,
.product-card[data-category="preparations"] .card-title,
.product-card[data-category="soaps"] .card-title,
.product-card[data-category="disinfectants"] .card-title {
    text-align: center;
}

.product-card:hover .card-title {
    color: #fff;
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    opacity: 0.9;
    transition: opacity 0.3s ease;
    text-align: justify;
}

.product-card:hover .card-description {
    opacity: 1;
}

.card-details h4 {
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 0 20px 0;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
    letter-spacing: 0.5px;
}

.card-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.card-details {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

.card-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--gold), #d4af37);
    color: var(--dark);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.card-link:hover::before {
    left: 100%;
}

.card-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #d4af37, var(--gold));
}

.price-badge {
    position: absolute;
    top: 22px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: rgba(0, 0, 0, 0.65);
    color: var(--gold);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    z-index: 5;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.old-price {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: line-through;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.price-current {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.price-note {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.85rem;
    line-height: 1.4;
}

.meta-pill {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(201, 169, 97, 0.16);
    color: var(--gold);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

@media (min-width: 769px) {
    .intro-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .intro-content .intro-copy {
        flex: 1;
    }
    
    .intro-content .pricing-panel {
        flex: 0 0 auto;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .intro-content {
        gap: 24px;
        margin: 30px 0;
    }
    
    .intro-content .intro-copy {
        width: 100%;
    }
    
    .intro-content .pricing-panel {
        width: 100%;
    }
}

.intro-copy {
    padding-left: 20px;
}
.intro-copy h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
}
.intro-copy p {
    text-align: justify;
}

.pricing-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.14);
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow-gold);
    max-width: 500px;
    margin: 0 auto;
}

.pricing-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 20px;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: var(--text-light);
    font-size: 14px;
}

.price-value {
    color: var(--gold);
    font-weight: 600;
    font-size: 16px;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 15px;
}

.pricing-pill {
    display: inline-block;
    margin-bottom: 24px;
    padding: 10px 18px;
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-list li {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.98rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.section-badges {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
}

.badge-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.12);
    border-radius: 26px;
    padding: 30px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.badge-card h3 {
    color: var(--gold);
    margin-bottom: 16px;
    font-size: 1.35rem;
}

.badge-card p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.8;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    margin-top: 40px;
}

.spec-panel,
.faq-panel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.13);
    border-radius: 26px;
    padding: 32px;
    box-shadow: var(--shadow-gold);
}

.spec-panel h3,
.faq-panel h3 {
    margin-top: 0;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 1.8rem;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--text-light);
    font-size: 0.95rem;
    overflow-x: auto;
}

@media (max-width: 768px) {
    .spec-table {
        font-size: 0.85rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .spec-table th,
    .spec-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
        white-space: nowrap;
    }
    
    .spec-table thead th {
        font-size: 0.75rem;
        padding: 8px 6px;
    }
    
    .faq-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    
    .spec-panel,
    .faq-panel {
        width: 100%;
        padding: 20px 15px;
    }
    
    .faq-item {
        margin-bottom: 12px;
    }
    
    .faq-item summary {
        font-size: 0.9rem;
        padding: 12px;
    }
    
    .faq-item p {
        font-size: 0.85rem;
        padding: 12px;
    }
}

.spec-table th,
.spec-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.spec-table thead th {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
}

.spec-table tbody tr:nth-child(odd) {
    background: rgba(255, 255, 255, 0.03);
}

.faq-item {
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
    cursor: pointer;
    padding: 18px 22px;
    list-style: none;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.01em;
    position: relative;
    transition: background 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding: 0 22px 20px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* Tab Styles */
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 15px 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
    margin: 0 5px;
    transition: all 0.3s ease;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-button:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.3);
}

.tab-icon {
    width: 24px;
    height: 24px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Search Bar */
.search-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto 30px;
}

.search-container-centered {
    position: relative;
    max-width: 500px;
    margin: 20px auto;
    text-align: center;
}

#product-search {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 25px;
    background: var(--bg-card);
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

#product-search:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.search-button {
    position: absolute;
    right: 5px;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--gold-light);
    transform: scale(1.05);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    color: var(--gold);
    pointer-events: none;
}

/* Sub-tabs */
.sub-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.sub-tab-button {
    background: rgba(201, 169, 97, 0.1);
    border: 1px solid rgba(201, 169, 97, 0.2);
    padding: 8px 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.sub-tab-button:hover {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--gold);
}

.sub-tab-button.active {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Price Styling */
.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

.current-price {
    color: var(--gold);
    font-weight: bold;
    font-size: 16px;
}

/* Enhanced Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(201, 169, 97, 0.15);
}

.product-card:hover .golden-frame {
    opacity: 1;
    transform: scale(1.05);
}

.product-card:hover .image-overlay {
    opacity: 0.3;
}

/* Hidden products for filtering */
.product-card.hidden {
    display: none;
}

/* Responsive Styles for New Elements */
@media (max-width: 768px) {
    .tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-button {
        border-radius: 8px;
        margin: 0;
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .tab-icon {
        width: 20px;
        height: 20px;
    }
    
    .search-container {
        margin-bottom: 20px;
    }
    
    #product-search {
        padding: 10px 40px 10px 12px;
        font-size: 14px;
    }
    
    .sub-tabs {
        gap: 8px;
    }
    
    .sub-tab-button {
        padding: 6px 16px;
        font-size: 13px;
    }
    
    .product-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .sub-tab-button {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    .search-container {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .intro-grid,
    .section-badges,
    .faq-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }
    .card-title {
        font-size: 1.3rem;
    }
    .card-description,
    .card-details p {
        font-size: 0.9rem;
    }
    .pricing-panel,
    .badge-card,
    .cta-highlights {
        padding: 24px;
    }
    .cta-actions {
        align-items: stretch;
    }
    .cta-grid {
        gap: 24px;
    }
    
    .cta-copy {
        text-align: center;
        padding: 0 10px;
    }
    
    .cta-copy h2 {
        font-size: 1.5rem;
    }
    
    .cta-copy p {
        font-size: 0.9rem;
    }
    
    .cta-features {
        font-size: 0.85rem;
    }
    
    .cta-actions {
        align-items: center;
        width: 100%;
    }
    
    .premium-cta {
        width: 100%;
        min-width: auto;
    }
    
    .cta-highlights {
        text-align: center;
        padding: 15px 10px;
    }
    
    .cta-highlights p {
        font-size: 0.85rem;
    }
}

.section-cta {
    padding: 90px 0 80px;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}
.section-cta .container {
    text-align: center;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 28px;
    align-items: center;
}

.cta-copy h2 {
    font-size: 3rem;
    line-height: 1.05;
    margin: 18px 0 20px;
}

.cta-copy p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    max-width: 560px;
    margin-bottom: 20px;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    max-width: 560px;
}

.cta-features li {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.96rem;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.cta-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}

.premium-cta {
    width: 100%;
    max-width: 420px;
}

.cta-highlights {
    width: 100%;
    max-width: 420px;
    padding: 24px 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 169, 97, 0.14);
    box-shadow: var(--shadow-gold);
}

.cta-highlights p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
    font-size: 0.98rem;
}


@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) rotate(45deg); }
    50% { transform: translateX(100%) rotate(45deg); }
}

/* Removed glowing border effect to prevent moving frame issue */

/* Floating particles effect */
.product-card .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 4s ease-in-out infinite;
}

.product-card .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.product-card .particle:nth-child(2) {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.product-card .particle:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 2s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.8;
    }
}

.product-card:hover .particle {
    animation-duration: 2s;
}

/* Enhanced floating animation */
@keyframes floatGlow {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-8px) rotate(1deg) scale(1.02);
        opacity: 0.9;
    }
    66% {
        transform: translateY(-4px) rotate(-0.5deg) scale(0.98);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .products-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-card {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        height: auto;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-description {
        font-size: 0.85rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .category-card {
        width: 100%;
        max-width: 580px;
        padding: 24px;
    }
}

.slider-control {
    display: grid;
    place-items: center;
    cursor: pointer;
    border-radius: 50%;
    z-index: 3;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.slider-control:hover {
    transform: translateY(-50%) scale(1.12);
    background: rgba(255, 214, 107, 0.18);
    border-color: rgba(255, 214, 107, 0.55);
    box-shadow: 0 18px 50px rgba(255, 185, 64, 0.18);
}
.slider-control.prev {
    left: 14px;
}
.slider-control.next {
    right: 14px;
}
.slider-glow {
    --glow-x: 0px;
    --glow-scale: 1;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 560px;
    height: 560px;
    transform: translate(calc(-50% + var(--glow-x)), -50%) scale(var(--glow-scale));
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 223, 130, 0.22), transparent 25%), radial-gradient(circle at 70% 55%, rgba(255, 183, 49, 0.16), transparent 18%);
    filter: blur(48px);
    pointer-events: none;
    z-index: 0;
}
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 18px auto 0;
    max-width: 100%;
    position: relative;
    z-index: 2;
}
.slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 97, 0.45);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.slider-indicators .indicator.active {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgba(255, 205, 95, 0.16);
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(201, 169, 97, 0.1);
    position: relative;
    max-width: 400px;
}
/* Removed hover animation to prevent card movement */
.product-card:hover {
    /* transform: translateY(-15px); */
    box-shadow: var(--shadow-gold-intense);
}
.product-description {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.product-description h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}
.product-description p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 0;
    text-align: justify;
}
.product-details {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(201, 169, 97, 0.08);
    border-left: 3px solid var(--gold);
    border-radius: 4px;
}
.product-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #151515, #1a1a1a);
}
.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(1.1) contrast(1.05) brightness(1.02);
    image-rendering: -webkit-optimize-contrast;
}
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: 1;
}
.product-content h3 {
    font-family: 'Lora', serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1.25;
    transition: transform 0.35s ease, color 0.35s ease;
}
/* Removed hover animation to prevent text movement */
.product-card:hover .product-content h3 {
    /* transform: translateY(-6px); */
    color: var(--gold);
}

/* Mobile dropdown toggle button - hidden on desktop */
.product-card .dropdown-toggle {
    display: none;
}

/* Mobile dropdown content - hidden on desktop */
.product-card .dropdown-content {
    display: none;
}

/* Show dropdown elements on mobile */
@media (max-width: 768px) {
    .product-card .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 16px;
        margin-top: 10px;
        background: var(--gold);
        color: #141414;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .product-card .dropdown-toggle:hover {
        background: #d4b872;
    }
    
    .product-card .dropdown-toggle.active {
        background: #d4b872;
    }
    
    .product-card .dropdown-content {
        display: none !important;
        padding: 15px;
        margin-top: 10px;
        background: rgba(20, 20, 20, 0.95);
        border-radius: 8px;
        border: 1px solid rgba(201, 169, 97, 0.3);
    }
    
    .product-card .dropdown-content.active {
        display: block !important;
    }
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 4px;
}
.product-link span {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.3s ease;
}
.product-link svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    transition: all 0.3s ease;
    flex-shrink: 0;
}
/* Removed hover animation to prevent link movement */
.product-link:hover {
    /* gap: 20px; */
    color: var(--gold-light);
    background: rgba(201, 169, 97, 0.15);
    border-color: rgba(201, 169, 97, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.2);
}
.product-link:hover span {
    color: var(--gold-light);
}
.product-link:hover svg {
    /* transform: translateX(10px); */
    stroke: var(--gold-light);
    transform: translateX(4px);
}
.product-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

/* Aromas Section */
.aromas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .aromas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .aromas-column h3 {
        font-size: 18px;
    }
    
    .aromas-list li {
        font-size: 13px;
        padding: 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}
.aromas-column h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}
.aromas-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aromas-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}
.aromas-list li:last-child {
    border-bottom: none;
}
.aromas-list li:hover {
    color: var(--text-light);
    padding-left: 8px;
}
.aromas-list strong {
    color: var(--gold);
    font-weight: 600;
}

/* Golden Frame */
.golden-frame {
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    pointer-events: none;
    transition: all 0.5s ease;
    opacity: 0.6;
}
.product-card:hover .golden-frame {
    border-color: var(--gold);
    box-shadow: inset 0 0 30px rgba(201, 169, 97, 0.15);
    opacity: 1;
}
.product-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: linear-gradient(135deg, #ffe19b, #d7a03e);
    color: #1e1e1e;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    padding: 10px 18px 10px 16px;
    border-radius: 999px;
    opacity: 1;
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, filter 0.3s ease;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 58px rgba(255, 207, 109, 0.34);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.product-badge::before {
    content: '✦';
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    color: #d4af37;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.45);
    transform: scale(0.95);
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.product-badge:hover::before {
    transform: scale(1.15) rotate(15deg);
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.55);
}
.product-card:hover .product-badge {
    box-shadow: 0 24px 70px rgba(255, 205, 80, 0.38);
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, #fff3b1, #d4a232);
    filter: saturate(1.05);
}
.product-card:hover .product-badge::before {
    transform: scale(1.28) rotate(15deg);
}
@keyframes badgePulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-1px) scale(1.03); }
}
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 20px 55px rgba(255, 207, 109, 0.32); }
    50% { box-shadow: 0 28px 82px rgba(255, 220, 128, 0.45); }
}
.product-badge {
    animation: badgePulse 3.2s ease-in-out infinite;
}
.product-card:hover .product-content h3 {
    transform: translateY(-10px);
    color: var(--gold);
}
.product-content {
    padding: 30px;
    position: relative;
    text-align: center;
}
.product-content .btn-primary {
    display: block !important;
    margin: 0 auto;
}

.context-box {
    text-align: center;
}
.context-box .btn-primary {
    display: inline-block;
    margin-top: 20px;
}
.product-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}
.product-content h3 {
    font-family: 'Lora', serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.product-content p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--gold);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
}
.product-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}
.product-link:hover {
    gap: 20px;
    color: var(--gold-light);
}
.product-link:hover::after {
    width: 100%;
}
.product-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}
.product-link:hover svg {
    transform: translateX(8px);
}
.product-aromas {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}
.aroma-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.aroma-link:hover {
    color: var(--gold);
}
.aroma-link svg {
    width: 16px;
    height: 16px;
}
/* About Section */
.about-section {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
    padding: 10px 40px;
}
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-content {
    position: relative;
}
.about-content h2 {
    font-size: 46px;
    font-weight: 300;
    color: var(--gold);
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.about-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 15px;
    text-align: justify;
}
.about-content p:first-of-type::first-letter {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    float: left;
    line-height: 1;
    margin-right: 12px;
    color: var(--gold);
}
.about-features {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}
.feature-text {
    font-size: 13px;
    color: var(--text-light);
    letter-spacing: 1px;
}
.about-stats {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
.stat-item {
    text-align: left;
}
.stat-number {
    font-family: 'Lora', serif;
    font-size: 52px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 11px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}
.about-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(135deg, #151515, #0a0a0a);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-visual::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 7px;
}
.about-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(201, 169, 97, 0.05) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(201, 169, 97, 0.05) 50%, transparent 55%);
    background-size: 20px 20px;
    animation: diagonalMove 4s linear infinite;
}
@keyframes diagonalMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}
.about-visual-content {
    text-align: center;
    z-index: 1;
}
.about-visual-logo {
    font-family: 'Merriweather', serif;
    font-size: 48px;
    color: var(--gold);
    letter-spacing: 8px;
    margin-bottom: 20px;
}
.about-visual-tagline {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 4px;
    text-transform: uppercase;
}
.visual-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 1px solid var(--gold-dark);
    opacity: 0.3;
}
.visual-decoration.top-right {
    top: 30px;
    right: 30px;
    border-left: none;
    border-bottom: none;
}
.visual-decoration.bottom-left {
    bottom: 30px;
    left: 30px;
    border-right: none;
    border-top: none;
}
/* Services Section */
.services-section {
    background: var(--bg-section);
    padding: 80px 40px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: var(--bg-card);
    padding: 50px 35px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-shimmer);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.3);
    box-shadow: var(--shadow-gold);
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border: 1px solid var(--gold-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.service-card:hover .service-icon {
    background: var(--gold);
    border-color: var(--gold);
}
.service-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    transition: all 0.4s ease;
}
.service-card:hover .service-icon svg {
    stroke: var(--bg-dark);
}
.service-card h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 15px;
}
.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}
/* Contact Main Section */
.contact-main {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-section) 100%);
    position: relative;
    padding: 40px 40px;
    overflow: hidden;
}
.contact-main::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contact-grid-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 80px;
}
.contact-method {
    text-align: center;
    transition: all 0.4s ease;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    background: rgba(255, 255, 255, 0.02);
}
.contact-method:hover {
    border-color: var(--gold);
    background: rgba(201, 169, 97, 0.05);
    transform: translateY(-8px);
}
.contact-method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 40px;
    transition: all 0.4s ease;
}
.phone-icon {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
}
.viber-icon {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
}
.email-icon {
    background: rgba(201, 169, 97, 0.15);
    color: var(--gold);
}
.contact-method:hover .contact-method-icon {
    transform: scale(1.1) rotate(5deg);
}
.contact-method-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
.contact-method h3 {
    font-family: 'Lora', serif;
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 12px;
    font-weight: 500;
}
.method-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 18px;
}
.method-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s ease;
}
.method-link:hover {
    background: var(--gold);
    color: var(--bg-dark);
}
.contact-info-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding: 60px 40px;
    background: rgba(201, 169, 97, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.1);
}
.info-card {
    text-align: center;
}
.info-card h4 {
    font-family: 'Lora', serif;
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
}
.info-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}
.contact-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-radius: 16px;
    border: 2px solid rgba(201, 169, 97, 0.2);
}
.contact-cta p {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 36px !important;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    line-height: 1.4;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 169, 97, 0.45);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-large {
    padding: 18px 50px !important;
    font-size: 16px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.card-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
    margin-bottom: 15px;
    letter-spacing: 1px;
}
/* CTA */
.cta-section {
    text-align: center;
    padding: 10px 0 0;
}
.cta-section > p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}
/* Footer */
footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    padding: 30px 0 30px;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 1;
    width: 100%;
}

@media (max-width: 768px) {
    .footer-container {
        max-width: 100%;
        padding: 0 20px;
        width: 100%;
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo-placeholder {
    width: 70px;
    height: 70px;
    background: var(--gold-shimmer);
    background-size: 200% 200%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 16px rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-logo-placeholder:hover {
    transform: scale(1.08) rotate(8deg);
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 20px rgba(255, 255, 255, 0.2), 0 0 20px rgba(255, 205, 95, 0.25);
}

.footer-logo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
    filter: none;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    line-height: 1.1;
}

.footer-logo-text span {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;
    line-height: 1.4;
    max-width: 260px;
    display: inline-block;
    background: linear-gradient(120deg, rgba(255,255,255,0.95), rgba(201,169,97,0.95), rgba(255,255,255,0.9));
    background-size: 220% 220%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.25);
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #080808;
    border: 2px solid rgba(201, 169, 97, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.footer-social a.viber-social {
    background: #080808;
    border-color: rgba(201, 169, 97, 0.95);
    color: var(--gold);
}

.footer-social a.viber-social:hover {
    background: #111111;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.45);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.footer-text {
    font-size: 14px;
    color: var(--gold);
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.45);
    padding: 8px 18px;
    background: rgba(255, 223, 120, 0.12);
    border: 1px solid rgba(201, 169, 97, 0.32);
    border-radius: 30px;
    position: relative;
}
.footer-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 220px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 97, 0.45) 20%, rgba(255, 238, 170, 1) 50%, rgba(201, 169, 97, 0.45) 80%, transparent 100%);
    box-shadow: 0 0 20px rgba(255, 220, 140, 0.35);
}
.footer-text::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 238, 170, 0.95);
    box-shadow: 0 0 20px rgba(255, 238, 170, 0.9), 24px 0 0 rgba(255, 238, 170, 0.35), -24px 0 0 rgba(255, 238, 170, 0.35);
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}
/* Viber Button */
.viber-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 68px;
    height: 68px;
    background: #080808;
    border: 2px solid rgba(201, 169, 97, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(201, 169, 97, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 999;
    text-decoration: none;
    overflow: visible;
}
.viber-button::before {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 220, 120, 0.2), transparent 45%);
    opacity: 0.9;
}
.viber-button::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.35);
    animation: pulse-ring 1.8s ease-out infinite;
}
.viber-button:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 55px rgba(201, 169, 97, 0.35);
}
.viber-button svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    stroke: var(--gold);
    position: relative;
    z-index: 1;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201, 169, 97, 0.1); }
    100% { box-shadow: 0 0 0 0 rgba(201, 169, 97, 0); }
}
/* Mobile Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-visual {
        height: 350px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .header-container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px !important;
    }
    .logo-text {
        font-size: 24px;
    }
    .logo-section:hover .logo-text {
        letter-spacing: 3px;
    }
    .logo-section:hover .logo-text span {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.12));
    }
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 10px;
    }
    .nav-link {
        padding: 10px 0;
    }
    .hero {
        padding: 80px 25px 45px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .hero-interactive {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .premium-cta {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
    
    .cta-content {
        gap: 1rem;
    }
    
    .cta-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .cta-main-icon {
        width: 20px;
        height: 20px;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-orbitals {
        gap: 2rem;
    }
    
    .orbital-content {
        padding: 1.2rem;
        min-width: 100px;
    }
    
    .orbital-icon {
        width: 28px;
        height: 28px;
    }
    
    .orbital-text {
        font-size: 0.8rem;
    }
    
    .floating-shape.shape-1 {
        width: 40px;
        height: 40px;
    }
    
    .floating-shape.shape-2 {
        width: 30px;
        height: 30px;
    }
    
    .floating-shape.shape-3 {
        width: 50px;
        height: 50px;
    }
    
    .hero-secondary-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-top {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-section {
        justify-content: center;
    }
    
    .footer-logo-text {
        font-size: 24px;
    }
    
    .footer-logo-text span {
        font-size: 12px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .section {
        padding: 20px 25px;
    }
    .section-header h2 {
        font-size: 36px;
    }
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .product-image-container {
        height: 200px;
    }
    .about-features {
        flex-direction: column;
        gap: 20px;
    }
    .about-stats {
        gap: 30px;
    }
    .stat-number {
        font-size: 40px;
    }
    .footer-top,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .viber-button {
        width: 55px;
        height: 55px;
        bottom: 25px;
        right: 25px;
    }
}
/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Loading Animation */
.loading {
    background: linear-gradient(90deg, #151515 25%, #1a1a1a 50%, #151515 75%);
    background-size: 200% 100%;
    /* Removed shimmer animation to prevent image movement */
}


/* New Product Card Enhancements */
.card-category-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(201, 169, 97, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 5;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.2);
}

.product-card:hover .card-category-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(201, 169, 97, 0.2);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
}

.card-category-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
    stroke-width: 1.5;
    transition: all 0.3s ease;
}

.product-card:hover .card-category-icon svg {
    stroke: var(--gold-light);
    transform: scale(1.1);
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.feature-tag {
    background: rgba(201, 169, 97, 0.1);
    color: var(--gold);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(201, 169, 97, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: translateY(-1px);
}

.card-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 2px 4px rgba(201, 169, 97, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Enhanced hover effects for new elements */
.product-card:hover .feature-tag {
    background: rgba(201, 169, 97, 0.2);
    border-color: var(--gold);
}

.product-card:hover .stat-number {
    color: var(--gold-light);
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.5);
}

/* Mobile responsive for new elements */
@media (max-width: 768px) {
    .card-category-icon {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .card-category-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .card-features {
        gap: 6px;
        margin-top: 10px;
    }
    
    .feature-tag {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
    
    .card-stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        padding-top: 15px;
    }
    
    .stat {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Enhanced Hero Section */
.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--bg-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    from { box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3); }
    to { box-shadow: 0 4px 20px rgba(201, 169, 97, 0.5); }
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 1.3s;
}

.hero-stat {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-20px) rotate(120deg) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translateY(-10px) rotate(240deg) scale(0.9);
        opacity: 0.4;
    }
}

/* Mobile responsive for hero enhancements */
@media (max-width: 768px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 30px;
    }
    
    .hero-stat {
        padding: 15px;
    }
    
    .hero-stat .stat-number {
        font-size: 2rem;
    }
    
    .hero-stat .stat-label {
        font-size: 0.8rem;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

/* Single Product Showcase Layout */
.single-product-section {
    display: block !important;
    max-width: 1240px;
    margin: 80px auto;
    padding: 0 20px;
    background: none;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.showcase-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.showcase-image .product-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(201, 169, 97, 0.08));
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(201, 169, 97, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-sizing: border-box;
}

.showcase-image img {
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.showcase-image:hover img {
    transform: scale(1.12);
}

/* Fragrances Section */
.fragrances-section {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, rgba(201, 169, 97, 0.02) 100%);
    padding: 30px 20px;
    margin: 20px 0;
}

.fragrances-grid {
    max-width: 1300px;
    margin: 60px auto 0;
}

.fragrance-category {
    margin-bottom: 80px;
}

.category-title {
    font-family: 'Lora', serif;
    font-size: 28px;
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(201, 169, 97, 0.2);
}

.fragrance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.fragrance-card {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.12) 0%, rgba(201, 169, 97, 0.05) 100%);
    border: 1px solid rgba(201, 169, 97, 0.25);
    border-radius: 10px;
    padding: 18px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.fragrance-card:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(201, 169, 97, 0.1) 100%);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(201, 169, 97, 0.15);
}

.fragrance-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 6px;
    line-height: 1.3;
}

.fragrance-source {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-style: italic;
    line-height: 1.3;
}

.fragrance-image-container {
    width: 100%;
    height: 100px;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(201, 169, 97, 0.03) 100%);
    border: 1px solid rgba(201, 169, 97, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fragrance-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fragrance-card:hover .fragrance-image {
    transform: scale(1.05);
}

.fragrance-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(201, 169, 97, 0.15);
}

.benefit-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    background: rgba(201, 169, 97, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(201, 169, 97, 0.12);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.benefit-item h4 {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 16px;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.5;
}

/* Fragrance Slideshow Styles */
.fragrance-slideshow-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.slideshow-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.slideshow-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fragrance-slide {
    min-width: 100%;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.fragrance-slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
}

.slide-illustration {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.flower-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(201, 169, 97, 0.3));
}

.slide-text {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-category {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a961;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.slide-brands {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.brand-tag {
    padding: 8px 20px;
    background: linear-gradient(135deg, #c9a961, #8b7355);
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
}

.brand-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.slideshow-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c9a961, #8b7355);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.6);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.slide-indicators {
    display: flex;
    gap: 12px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: rgba(201, 169, 97, 0.6);
}

.indicator.active {
    background: #c9a961;
    border-color: white;
    transform: scale(1.2);
}

.showcase-content {
    display: flex;
    flex-direction: column;
}

.showcase-content h2 {
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--text-light);
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.showcase-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
    margin: 0 0 35px 0;
}

.showcase-features h3 {
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.showcase-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.showcase-features li {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    padding-left: 28px;
    position: relative;
}

.showcase-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-image {
        min-height: 350px;
    }

    .showcase-content h2 {
        font-size: 2.2rem;
    }

    .showcase-description {
        font-size: 0.98rem;
    }
}

.viber-button {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 68px;
    height: 68px;
    background: #080808;
    border: 2px solid rgba(201, 169, 97, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 45px rgba(201, 169, 97, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 999;
    text-decoration: none;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 18px 45px rgba(201, 169, 97, 0.22); }
    50% { box-shadow: 0 18px 55px rgba(201, 169, 97, 0.35); }
}

.viber-button:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 20px 55px rgba(201, 169, 97, 0.35);
    animation: none;
}

.viber-button svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .slider-control {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
    .slider-glow {
        width: 470px;
        height: 470px;
        filter: blur(42px);
    }
}
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-visual {
        height: 350px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .header-container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px !important;
    }
    .logo-text {
        font-size: 26px;
    }
    .logo-section:hover .logo-text {
        letter-spacing: 2px;
    }
    .logo-section:hover .logo-text span {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
        filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.12));
    }
    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        margin-top: 10px;
    }
    .nav-link {
        padding: 10px 0;
    }
    .hero {
        padding: 80px 25px 45px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-subtitle {
        font-size: 22px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .product-image-container {
        height: 240px;
    }
    .product-badge {
                top: 12px;
                right: 12px;
                font-size: 10px;
                padding: 8px 12px;
            }
            .section {
                padding: 80px 25px;
            }
            .section-header h2 {
                font-size: 36px;
            }
            .products-grid,
            .services-grid {
                grid-template-columns: 1fr;
            }
            .product-image-container {
                height: 200px;
            }
            .about-features {
                flex-direction: column;
                gap: 20px;
            }
            .about-stats {
                gap: 30px;
            }
            .stat-number {
                font-size: 40px;
            }
            .footer-top,
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }
            .viber-button {
                width: 55px;
                height: 55px;
                bottom: 25px;
                right: 25px;
            }
            .contact-main {
                padding: 30px 25px;
            }
            .contact-grid-main {
                grid-template-columns: 1fr;
                gap: 25px;
                margin-bottom: 40px;
            }
            .contact-method {
                padding: 20px;
            }
            .contact-method-icon {
                width: 60px;
                height: 60px;
            }
            .contact-method h3 {
                font-size: 20px;
            }
            .contact-info-section {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 30px 20px;
            }
            .contact-cta {
                padding: 30px 20px;
            }
            .contact-cta p {
                font-size: 28px;
            }
            .btn-large {
                padding: 14px 35px !important;
                font-size: 14px;
            }
            .aroma-link {
                font-size: 11px;
                gap: 6px;
            }
            .aroma-link svg {
                width: 14px;
                height: 14px;
            }
        }
        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    header {
        position: static !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        padding: 0 !important;
    }
    
    body {
        padding-top: 0 !important;
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .container {
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    .section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .products-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .intro-grid {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .context-section {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .pricing-panel {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .section-faq {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    header {
        top: 0;
        left: 0;
        right: 0;
    }

    .header-container {
        width: 100%;
        max-width: none;
        padding: 15px 20px;
        margin: 0;
    }

    .order-banner {
        display: none;
    }

    /* Ensure products are visible on mobile */
    .section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    #products-container,
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 15px !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 100px !important;
        height: auto !important;
    }

    .product-card {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 350px !important;
        height: auto !important;
    }

    /* Fix product card image on mobile */
    .product-card .card-image-wrapper {
        height: 200px !important;
        min-height: 200px !important;
    }

    .product-card .card-image {
        height: 200px !important;
        min-height: 200px !important;
        object-fit: cover !important;
    }

    /* Fix product-image-container on mobile */
    .product-image-container {
        height: 200px !important;
        min-height: 200px !important;
    }

    .product-image {
        height: 200px !important;
        min-height: 200px !important;
        object-fit: cover !important;
    }

    /* Fix product card content on mobile */
    .product-card .card-content {
        padding: 15px !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        overflow: visible !important;
    }

    .product-card .card-title {
        font-size: 1rem !important;
        line-height: 1.3 !important;
        max-height: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        margin-bottom: 0 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .product-card .card-description {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        max-height: none !important;
        overflow: visible !important;
        text-overflow: clip !important;
        display: block !important;
        -webkit-line-clamp: unset !important;
        line-clamp: unset !important;
        -webkit-box-orient: unset !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        margin-bottom: 8px !important;
    }

    /* Disable flip functionality on mobile - show all content in simple layout */
    .product-card {
        cursor: default !important;
    }

    .product-card .card-inner {
        transform: none !important;
        transition: none !important;
    }

    .product-card .card-front,
    .product-card .card-back {
        position: relative !important;
        backface-visibility: visible !important;
        transform: none !important;
    }

    .product-card .card-back {
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 15px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-top: 1px solid rgba(201, 169, 97, 0.2) !important;
    }

    .product-card .card-details {
        text-align: left !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .product-card .card-details h4 {
        font-size: 1.1rem !important;
        margin-bottom: 12px !important;
        color: var(--gold) !important;
    }

    .product-card .card-details p {
        font-size: 1.1rem !important;
        line-height: 1.7 !important;
        color: #fff !important;
        margin-bottom: 20px !important;
        max-height: 400px !important;
        overflow-y: auto !important;
        padding: 15px !important;
        background: rgba(0, 0, 0, 0.4) !important;
        border-radius: 10px !important;
    }

    .product-card .card-link {
        display: inline-block !important;
        padding: 10px 20px !important;
        background: var(--gold) !important;
        color: #000 !important;
        text-decoration: none !important;
        border-radius: 5px !important;
        font-weight: 600 !important;
        margin-top: 10px !important;
    }

    /* Disable flip functionality on mobile - show all content in simple layout */
    .product-card .card-inner {
        transform: none !important;
        transition: none !important;
    }

    .product-card.flipped .card-inner {
        transform: none !important;
    }

    .product-card .card-back {
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 15px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-top: 1px solid rgba(201, 169, 97, 0.2) !important;
        backface-visibility: visible !important;
    }

    /* Dropdown button styles */
    .product-card .dropdown-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 12px 15px;
        background: rgba(201, 169, 97, 0.15);
        border: 1px solid var(--gold);
        border-radius: 8px;
        color: var(--gold);
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .product-card .dropdown-toggle:hover {
        background: rgba(201, 169, 97, 0.25);
        transform: translateY(-2px);
    }

    .product-card .dropdown-toggle::after {
        content: '▼';
        margin-left: 8px;
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }

    .product-card .dropdown-toggle.active::after {
        transform: rotate(180deg);
    }

    /* Dropdown content styles */
    .product-card .dropdown-content {
        display: none;
        padding: 15px;
        background: rgba(20, 20, 20, 0.95);
        border-radius: 8px;
        margin-top: 10px;
        border: 1px solid rgba(201, 169, 97, 0.3);
        animation: slideDown 0.3s ease;
    }

    .product-card .dropdown-content.active {
        display: block;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .product-card .dropdown-content h4 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        color: var(--gold);
    }

    .product-card .dropdown-content p {
        font-size: 1rem;
        line-height: 1.6;
        color: #fff;
        margin-bottom: 15px;
    }

    .mobile-menu-btn {
        display: flex;
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 1003;
    }

    .mobile-menu-btn.active {
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1003;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }

    .hero {
        min-height: 40vh;
        padding: 20px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-slideshow {
        max-width: 100%;
        margin: 0 auto;
        padding: 8px;
        border-radius: 16px;
    }

    .slideshow-container {
        grid-template-columns: 1fr;
        aspect-ratio: auto;
        min-height: auto;
        max-height: none;
    }

    .slide {
        grid-template-columns: 1fr;
    }

    .slide-image-wrapper {
        border-radius: 16px 16px 0 0;
        height: 200px;
    }

    .slide-info {
        border-radius: 0 0 16px 16px;
        padding: 25px 20px;
        min-height: auto;
    }

    .slide-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .slide-description {
        font-size: 0.9rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.95);
    }

    .container {
        padding: 0 15px;
    }

    .header-container {
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 10px 15px;
        position: relative;
    }

    .categories-featured {
        flex-direction: column;
    }

    .featured-categories {
        width: 100%;
    }

    .category-list {
        width: 100%;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    }

    .nav-link {
        display: flex;
        align-items: center;
        padding: 15px 0;
        font-size: 16px;
    }

    .nav-link svg {
        margin-right: 12px;
        width: 20px;
        height: 20px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.3);
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 32px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active {
        max-height: 500px;
    }

    .dropdown-link {
        padding: 12px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(201, 169, 97, 0.05);
    }

    .dropdown-link svg {
        margin-right: 10px;
        width: 16px;
        height: 16px;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        transition: opacity 0.3s ease;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Ensure images display properly on mobile */
    .product-image {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .product-image-container {
        position: relative !important;
        width: 100% !important;
        height: 200px !important;
        overflow: hidden !important;
    }

    /* Fix for mobile image loading */
    .loading .product-image {
        opacity: 1;
    }

    .loading.loaded .product-image {
        opacity: 1;
        transition: opacity 0.3s ease;
    }

    /* Header adjustments */
    .header-container {
        width: 100%;
        max-width: none;
        margin: 0;
        position: relative;
    }

    /* Disable flip functionality on mobile - show all content in simple layout */
    .product-card.flipped .card-inner {
        transform: none !important;
    }

    /* Enable tap-to-flip on mobile */
    .product-card {
        cursor: pointer;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    /* Footer mobile improvements */
    .footer-top {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-logo-section {
        justify-content: center;
        gap: 15px;
    }

    .footer-logo-placeholder {
        width: 70px;
        height: 70px;
        box-shadow: 0 0 0 2px var(--gold), inset 0 0 16px rgba(255, 255, 255, 0.12);
        border-radius: 50%;
    }

    .footer-logo-placeholder img {
        border-radius: 50%;
        object-fit: cover;
    }

    .footer-logo-text {
        font-size: 28px;
    }

    .footer-logo-text span {
        font-size: 13px;
    }

    .footer-social {
        gap: 15px;
        justify-content: center;
    }

    .footer-social a {
        width: 45px;
        height: 45px;
    }

    .footer-social svg {
        width: 18px;
        height: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-text {
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Slideshow mobile improvements */
    .hero-slideshow {
        max-width: 100%;
        margin: 0 auto 1rem;
        padding: 8px;
        border-radius: 20px;
    }

    .slideshow-container {
        aspect-ratio: 16 / 9;
        border-radius: 16px;
    }

    .slideshow-thumbnails {
        display: none;
    }

    .slideshow-navigation {
        width: 40px;
        height: 40px;
    }

    .slideshow-navigation svg {
        width: 16px;
        height: 16px;
    }

    .slideshow-indicators {
        bottom: 12px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    /* Fragrance slideshow mobile */
    .fragrance-slideshow-container {
        padding: 20px 15px;
    }

    .slideshow-wrapper {
        border-radius: 16px;
    }

    .slideshow-nav button {
        width: 40px;
        height: 40px;
    }

    .slideshow-nav button svg {
        width: 16px;
        height: 16px;
    }

    /* Card images mobile */
    .card-image-wrapper {
        aspect-ratio: 4 / 3;
        min-height: 200px;
    }

    .card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .card-image-slideshow .card-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }
}

/* Context Section Styles */
.context-section {
    margin: 60px 0;
}

.context-box {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(154, 123, 63, 0.05));
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.context-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-align: center;
}

.context-box p {
    font-family: 'Lora', serif;
    font-size: 1.1em;
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.context-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.context-links .cta-button {
    margin: 0;
}

.secondary-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.95em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.secondary-link:hover {
    color: var(--gold);
}

.context-links h4 {
    font-family: 'Lato', sans-serif;
    font-size: 1.3em;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: center;
}

.context-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.context-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 12px;
    padding: 25px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.context-link-card:hover {
    background: rgba(201, 169, 97, 0.15);
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.context-link-card svg {
    width: 48px;
    height: 48px;
    stroke: var(--gold);
    margin-bottom: 15px;
    transition: stroke 0.3s ease;
}

.context-link-card:hover svg {
    stroke: var(--gold-light);
}

.context-link-card span {
    font-family: 'Lato', sans-serif;
    font-size: 0.95em;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
}

@media (max-width: 768px) {
    .context-box {
        padding: 25px 20px;
    }

    .context-box h3 {
        font-size: 1.6em;
    }

    .context-box p {
        font-size: 1em;
    }

    .context-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .context-link-card {
        padding: 20px 15px;
    }

    .context-link-card svg {
        width: 36px;
        height: 36px;
    }

    .context-link-card span {
        font-size: 0.85em;
    }
}
