/* ============================================
   Göznurum Organik — Design System
   Elegant + Organic
   ============================================ */

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

:root {
    /* Colors */
    --bg-primary: #FAF8F4;
    --bg-secondary: #F2EDE6;
    --bg-dark: #2C3A2E;
    --bg-card: #FFFFFF;

    --text-primary: #2C3A2E;
    --text-secondary: #5A6B5E;
    --text-tertiary: #6B7B6F;
    --text-on-dark: #FAF8F4;
    --text-on-dark-secondary: rgba(250, 248, 244, 0.7);

    --accent: #7A8C6E;
    --accent-hover: #6A7C5E;
    --accent-light: rgba(122, 140, 110, 0.1);
    --terra: #C4725A;
    --terra-light: rgba(196, 114, 90, 0.1);
    --gold: #D4A853;
    --gold-light: rgba(212, 168, 83, 0.1);

    --border: rgba(44, 58, 46, 0.08);
    --border-hover: rgba(44, 58, 46, 0.15);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(44, 58, 46, 0.04);
    --shadow-md: 0 4px 20px rgba(44, 58, 46, 0.06);
    --shadow-lg: 0 8px 40px rgba(44, 58, 46, 0.08);
    --shadow-xl: 0 20px 60px rgba(44, 58, 46, 0.1);

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --duration: 0.3s;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

section, footer, nav {
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    z-index: 9999;
    font-size: 0.85rem;
    transition: top 0.2s;
}

.skip-link:focus {
    top: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}


/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.4s var(--ease);
    background: transparent;
}

/* Hero üstünde: beyaz yazı + beyaz logo */
.nav--hero .nav-logo-img {
    filter: brightness(0) invert(1);
}
.nav--hero .nav-links a,
.nav--hero .nav-toggle span {
    color: #fff;
    background-color: transparent;
}
.nav--hero .nav-cta {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff !important;
}
.nav--hero .nav-cta:hover {
    background: rgba(255,255,255,0.25);
}
.nav--hero .nav-toggle span {
    background: #fff;
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

/* Scroll sonrası tekrar koyu yazı + normal logo */
.nav.scrolled .nav-logo-img {
    filter: none;
}
.nav.scrolled .nav-links a {
    color: var(--text-secondary);
}
.nav.scrolled .nav-cta {
    background: var(--text-primary);
    border: none;
    backdrop-filter: none;
    color: var(--text-on-dark) !important;
}
.nav.scrolled .nav-toggle span {
    background: var(--text-primary);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

@media (min-width: 769px) {
    .nav-logo {
        transform: translateX(-6rem);
    }
    .nav--hero .nav-logo-img {
        height: 70px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    overflow: visible;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    transition: filter 0.5s var(--ease), height 0.5s var(--ease);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.01em;
    transition: color var(--duration) var(--ease);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    background: var(--text-primary);
    color: var(--text-on-dark) !important;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 500 !important;
    transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease) !important;
}

.nav-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    text-align: center;
}

.mobile-menu li {
    margin-bottom: var(--space-md);
}

.mobile-menu a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color var(--duration) var(--ease);
}

.mobile-menu a:hover {
    color: var(--accent);
}


/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: #6fa832;
    color: #fff;
}
.btn-primary:hover {
    background: #5f952b;
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
    background: var(--text-primary);
    color: var(--text-on-dark);
    border-color: var(--text-primary);
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-size: 1rem;
    padding: 1rem 2.2rem;
}
.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
}


/* ============================================
   Section Helpers
   ============================================ */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title em {
    font-style: italic;
    font-weight: 400;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
    max-width: 480px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-desc {
    margin-left: auto;
    margin-right: auto;
}


/* ============================================
   Hero — Cinematic Video
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video yokken poster görünsün */
.hero-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/general/hero-poster.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 30, 20, 0.45) 0%,
        rgba(20, 30, 20, 0.25) 40%,
        rgba(20, 30, 20, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 0 var(--space-md);
}

.hero-tag {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-sm);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-title em {
    font-style: italic;
    font-weight: 500;
    color: #8cc63f;
}

.hero-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto var(--space-lg);
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}


/* ============================================
   Trust Banner
   ============================================ */
.trust-banner {
    background: var(--bg-dark);
    padding: 1.2rem 0;
    overflow: hidden;
}

.trust-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.trust-track {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-lg);
    width: max-content;
    animation: marquee 20s linear infinite;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(250, 248, 244, 0.8);
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-item svg {
    color: #8cc63f;
    flex-shrink: 0;
}

.trust-item strong {
    color: #fff;
    font-weight: 600;
}

.trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(250, 248, 244, 0.3);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-item {
        font-size: 0.8rem;
    }
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ============================================
   Featured Products
   ============================================ */
.featured {
    padding: var(--space-3xl) 0;
}

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

.featured-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    width: calc(50% - var(--space-md) / 2);
}

.featured-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.featured-card--large {
    width: calc(50% - var(--space-md) / 2);
}

.featured-card-img {
    width: 100%;
    overflow: hidden;
    height: 280px;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.featured-card:hover .featured-card-img img {
    transform: scale(1.04);
}

.featured-card-body {
    padding: var(--space-md);
}

.featured-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    letter-spacing: -0.01em;
}

.featured-card-body p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    background: var(--accent-light);
    color: var(--accent);
    margin-bottom: 0.6rem;
}

.badge-gold {
    background: var(--gold-light);
    color: var(--gold);
}

.badge-terra {
    background: var(--terra-light);
    color: var(--terra);
}


/* ============================================
   Story Section
   ============================================ */
.story {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

.story-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.story-image {
    flex: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/5;
    max-height: 600px;
}

.story-image img,
.story-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    flex: 1;
}

.story .section-tag {
    color: var(--gold);
}

.story .section-title {
    color: var(--text-on-dark);
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-on-dark-secondary);
    margin-top: var(--space-sm);
}

.story-stats {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(250, 248, 244, 0.12);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-on-dark);
    letter-spacing: -0.02em;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-on-dark-secondary);
    margin-top: 0.2rem;
}


/* ============================================
   Discount Badge
   ============================================ */
.discount-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4e7a22;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(111, 168, 50, 0.35);
}


/* ============================================
   Catalog
   ============================================ */
.catalog {
    padding: var(--space-3xl) 0;
}

.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.filter-btn:hover {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--text-primary);
    color: var(--text-on-dark);
    border-color: var(--text-primary);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-md);
}

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease);
    animation: fadeUp 0.5s var(--ease) both;
    display: flex;
    flex-direction: column;
}

.product-card.hidden {
    display: none;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.product-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.product-card-body {
    padding: var(--space-sm) var(--space-md);
    padding-bottom: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.btn-order {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    width: 100%;
    background: #fff;
    color: var(--text-primary);
    border: 1px solid var(--border-hover);
    padding: 0.7rem 1.4rem;
}

.btn-order:hover {
    background: #6fa832;
    color: #fff;
    border-color: #6fa832;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    letter-spacing: -0.01em;
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-bottom: 0.75rem;
}

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


/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
}

.contact-inner {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.contact-content {
    flex: 1;
}

.contact-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: var(--space-sm);
    margin-bottom: var(--space-lg);
    max-width: 440px;
}

.contact-visual {
    flex: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    max-height: 400px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ============================================
   Footer
   ============================================ */
.footer {
    padding: var(--space-2xl) 0 var(--space-lg);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-bottom: var(--space-xl);
}

.footer-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 0.6rem;
    line-height: 1.6;
}

.footer-links h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

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

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-ig {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    transition: all var(--duration) var(--ease);
    margin-top: 0.25rem;
}

.footer-ig:hover {
    background: var(--accent);
    color: #fff !important;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
}


/* ============================================
   Floating WhatsApp
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 900;
    transition: all var(--duration) var(--ease);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}


/* ============================================
   Scroll Animations
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .featured-card,
    .featured-card--large {
        width: 100%;
    }

    .featured-card-img {
        height: 240px;
    }

    .story-inner {
        flex-direction: column;
    }

    .story-image {
        width: 100%;
        max-height: 400px;
        aspect-ratio: 16/9;
    }

    .contact-inner {
        flex-direction: column;
    }

    .contact-visual {
        width: 100%;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(3.5rem, 15vw, 5.5rem);
    }

    .story-stats {
        gap: var(--space-lg);
    }

    .stat-number {
        font-size: 2rem;
    }

    .catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-brand {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 4rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions .btn {
        max-width: 280px;
    }

    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .single-card {
        grid-column: 1 / -1;
        display: flex;
        flex-direction: row;
    }

    .single-card .product-card-img {
        width: 45%;
        height: auto;
        min-height: 180px;
        flex-shrink: 0;
    }

    .single-card .product-card-body {
        flex: 1;
    }

    .product-card-img {
        height: 180px;
    }

    .product-card-body {
        padding: 0.75rem;
    }

    .product-card-body h3 {
        font-size: 1.05rem;
    }

    .product-card-body p {
        font-size: 0.75rem;
    }

}
