/* ===================================
   НЕНОЛГЯДОВЫ — Confectionery Website
   Elegant Chocolate & Gold Theme
   =================================== */

/* --- Font Faces --- */
@font-face {
    font-family: 'Hangbird';
    src: url('fonts/Mika Melvas - Hangbird Regular (3).otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-UltraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-Demi.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir Next Cyr';
    src: url('fonts/AvenirNextCyr-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* --- CSS Variables --- */
:root {
    --color-dark: #1a0f0a;
    --color-chocolate: #2d1810;
    --color-brown: #4a2c1a;
    --color-gold: #c9a227;
    --color-gold-light: #e8d078;
    --color-cream: #fdf8f3;
    --color-cream-dark: #f5ebe0;
    --color-text: #3d2418;
    --color-text-light: #6b5144;
    
    --font-display: 'Hangbird', Georgia, serif;
    --font-body: 'Avenir Next Cyr', -apple-system, sans-serif;
    
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
    
    --shadow-soft: 0 4px 20px rgba(26, 15, 10, 0.1);
    --shadow-medium: 0 8px 40px rgba(26, 15, 10, 0.15);
    --shadow-gold: 0 4px 30px rgba(201, 162, 39, 0.3);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
    color: var(--color-dark);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 40px rgba(201, 162, 39, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-chocolate);
    border: 2px solid var(--color-chocolate);
}

.btn-secondary:hover {
    background: var(--color-chocolate);
    color: var(--color-cream);
}

.btn-full {
    width: 100%;
}

/* --- Section Labels & Titles --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-chocolate);
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header--light .section-title {
    color: var(--color-cream);
}

.section-header--light .section-label {
    color: var(--color-gold-light);
}

/* --- Image Placeholders --- */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 250px;
    background: linear-gradient(145deg, var(--color-cream-dark), var(--color-cream));
    border: 2px dashed var(--color-brown);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.image-placeholder--large {
    min-height: 400px;
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(253, 248, 243, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.nav-logo-img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-base);
}

.nav.scrolled .nav-logo-img {
    filter: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--color-cream);
    position: relative;
}

.nav.scrolled .nav-menu a {
    color: var(--color-text);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-cream);
    transition: var(--transition-base);
}

.nav.scrolled .nav-toggle span {
    background: var(--color-chocolate);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(26, 15, 10, 0.55) 0%, 
            rgba(45, 24, 16, 0.5) 40%,
            rgba(26, 15, 10, 0.6) 100%
        ),
        url('images/ny_bonbons-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 60%);
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-content {
    max-width: 800px;
    animation: fadeUp 1s ease-out;
}

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

.hero-tagline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 24px;
    animation: fadeUp 1s ease-out 0.2s both;
}

.hero-title {
    font-family: 'Hangbird', Georgia, serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 24px;
    animation: fadeUp 1s ease-out 0.4s both;
}

.hero-title::first-letter {
    color: var(--color-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(253, 248, 243, 0.8);
    max-width: 500px;
    margin: 0 auto 40px;
    animation: fadeUp 1s ease-out 0.6s both;
}

.hero .btn {
    animation: fadeUp 1s ease-out 0.8s both;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--color-cream);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.scroll-indicator {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { 
        transform: rotate(45deg);
        opacity: 1; 
    }
    50% { 
        transform: rotate(45deg) translate(4px, 4px);
        opacity: 0.5; 
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 120px 0;
    background: var(--color-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--color-gold);
    border-radius: 8px;
    z-index: -1;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-cream-dark);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===================================
   COLLECTION SECTION
   =================================== */
.collection {
    padding: 120px 0;
    background: var(--color-cream-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.product-card {
    background: var(--color-cream);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
}

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

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

.product-image .image-placeholder {
    min-height: 100%;
    border-radius: 0;
    border: none;
    transition: var(--transition-slow);
}

.product-card:hover .image-placeholder {
    transform: scale(1.05);
}

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 1.3rem;
    color: var(--color-chocolate);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-price {
    display: inline-block;
    font-weight: 500;
    color: var(--color-gold);
    font-size: 1rem;
}

.collection-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(74, 44, 26, 0.1);
}

.collection-cta p {
    margin-bottom: 20px;
    color: var(--color-text-light);
    font-style: italic;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process {
    padding: 120px 0;
    background: 
        linear-gradient(180deg, var(--color-chocolate) 0%, var(--color-dark) 100%);
    color: var(--color-cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.2rem;
    color: var(--color-cream);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.9rem;
    color: rgba(253, 248, 243, 0.7);
    line-height: 1.6;
}

.process-image .image-placeholder {
    background: rgba(253, 248, 243, 0.05);
    border-color: rgba(201, 162, 39, 0.3);
    color: rgba(253, 248, 243, 0.5);
}

/* ===================================
   GIFTS SECTION
   =================================== */
.gifts {
    padding: 120px 0;
    background: var(--color-cream);
}

.gifts-header {
    text-align: center;
    margin-bottom: 60px;
}

.gifts-intro {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.gift-sets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.gift-card {
    background: var(--color-cream-dark);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.gift-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Gallery Component */
.gift-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(145deg, var(--color-cream), var(--color-cream-dark));
}

.gallery-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-slide.active {
    opacity: 1;
}

/* Placeholder styling for empty images */
.gallery-slides::after {
    content: 'Добавьте фото';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--color-cream-dark), var(--color-cream));
    border: 2px dashed var(--color-brown);
    color: var(--color-text-light);
    font-style: italic;
    font-size: 0.9rem;
    z-index: 0;
    pointer-events: none;
}

.gallery-slides:has(.gallery-slide[src]:not([src=""]))::after {
    display: none;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(253, 248, 243, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--color-chocolate);
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-main:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.gallery-prev {
    left: 12px;
}

.gallery-next {
    right: 12px;
}

.gallery-zoom {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(253, 248, 243, 0.9);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    color: var(--color-chocolate);
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 10;
}

.gallery-main:hover .gallery-zoom {
    opacity: 1;
}

.gallery-zoom:hover {
    background: var(--color-gold);
    color: var(--color-dark);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: var(--color-cream-dark);
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-brown);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-base);
    padding: 0;
}

.gallery-dot:hover {
    border-color: var(--color-gold);
}

.gallery-dot.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

/* Gift Info */
.gift-info {
    padding: 24px;
    text-align: center;
}

.gift-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-chocolate);
    margin-bottom: 8px;
}

.gift-details {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.gift-price {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-gold);
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(26, 15, 10, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 2px solid rgba(253, 248, 243, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--color-cream);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: transparent;
    border: 2px solid rgba(253, 248, 243, 0.3);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--color-cream);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(253, 248, 243, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 120px 0;
    background: var(--color-cream-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 32px;
    background: var(--color-cream);
    border-radius: 8px;
    transition: var(--transition-base);
    min-width: 180px;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-icon-img {
    width: 24px;
    height: 24px;
    margin-bottom: 8px;
}

.contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
    margin-bottom: 4px;
}

.contact-value {
    font-weight: 500;
    color: var(--color-chocolate);
}

/* Contact Form */
.contact-form {
    background: var(--color-cream);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-cream-dark);
    border: 2px solid transparent;
    border-radius: 8px;
    transition: var(--transition-base);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: var(--color-cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-dark);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(253, 248, 243, 0.1);
}

.footer-logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(253, 248, 243, 0.6);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(253, 248, 243, 0.7);
}

.footer-links a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 248, 243, 0.05);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-link:hover {
    background: var(--color-gold);
    transform: translateY(-2px);
}

.social-icon-img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(253, 248, 243, 0.5);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gift-sets {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: var(--transition-base);
        box-shadow: var(--shadow-medium);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--color-text) !important;
        font-size: 1.1rem;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .contact-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* Lightbox mobile */
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .gallery-nav {
        opacity: 1;
        width: 36px;
        height: 36px;
    }
    
    .gallery-zoom {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .btn {
        padding: 14px 32px;
    }
    
    section {
        padding: 80px 0;
    }
}

/* --- Animations on Scroll --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

