/* ==========================================================================
   Reichs & Co — Public Site Styles
   Design System: Warm, premium snack brand aesthetic
   ========================================================================== */

/* ---------- Custom Fonts ---------- */
@font-face {
    font-family: 'ArchyEDT';
    src: url('/public/fonts/archyedt-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BPGDejaVu';
    src: url('/public/fonts/bpg_dejavu_sans-67553242003.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ---------- CSS Custom Properties (Design System) ---------- */
:root {
    --color-cream: #FFF8F0;
    --color-golden-brown: #C8913A;
    --color-golden-light: #E8B960;
    --color-warm-yellow: #F5D76E;
    --color-dark: #2C2C2C;
    --color-text: #3A3A3A;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    --color-border: #E8E0D8;
    --color-bg-warm: #FDF6EE;
    --color-bg-dark: #2C2C2C;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'ArchyEDT', 'Poppins', 'Inter', sans-serif;
    --font-ka-sub: 'BPGDejaVu', 'Inter', sans-serif;

    --max-width: 1200px;
    --max-width-narrow: 800px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    --spacing-2xl: 7rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    --transition: 0.3s ease;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

/* Only hide body on first visit while fonts download */
.fonts-loading body {
    opacity: 0;
    animation: pageReveal 0s ease 0.4s forwards;
}
.fonts-loading body.fonts-ready {
    opacity: 1;
    transition: opacity 0.15s ease;
    animation: none;
}

@keyframes pageReveal {
    to { opacity: 1; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-golden-brown); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-golden-light); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}
.container-narrow { max-width: var(--max-width-narrow); }
.text-center { text-align: center; }
.mt-4 { margin-top: var(--spacing-md); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: #0e6a4f;
    color: var(--color-white);
    border-color: #0e6a4f;
}
.btn-primary:hover {
    background: #e8b761;
    border-color: #e8b761;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero-primary {
    background: #0e6a4f;
    color: var(--color-white);
    border-color: #0e6a4f;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}
.btn-hero-primary:hover {
    background: #e8b761;
    border-color: #e8b761;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}
.btn-hero-secondary:hover {
    background: var(--color-white);
    color: var(--color-dark);
    transform: translateY(-2px);
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(4,41,37,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }

.navbar-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 140px;
}

.navbar-logo { text-decoration: none; }
.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
}
.logo-accent { color: var(--color-golden-brown); }

.navbar-logo-img {
    height: 108px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    margin-left: -150px;
}

.nav-link {
    font-family: 'ArchyEDT', var(--font-heading);
    font-size: 1.43rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
    position: relative;
}
.nav-link:hover { color: #E99A61; }
.nav-link.active { color: #E99A61; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E99A61;
    transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }
.nav-link.active::after { width: 100%; }

/* ---------- Nav Right (social + lang) ---------- */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: absolute;
    right: 0;
}

/* ---------- Social Icons ---------- */
.nav-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-social-icon {
    display: inline-flex;
    color: rgba(255,255,255,0.85);
    transition: color var(--transition);
}
.nav-social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}
.nav-social-icon:hover { color: #E99A61; }

/* ---------- Language Dropdown ---------- */
.lang-dropdown {
    position: relative;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--radius-full);
    color: rgba(255,255,255,0.85);
    font-family: 'ArchyEDT', var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
}
.lang-toggle:hover {
    border-color: #E99A61;
    color: #E99A61;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: #042925;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    min-width: 130px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all var(--transition);
    z-index: 100;
}
.lang-dropdown:hover .lang-menu,
.lang-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: rgba(255,255,255,0.85);
    font-family: 'ArchyEDT', var(--font-heading);
    font-size: 1.14rem;
    transition: all var(--transition);
}
.lang-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #E99A61;
}
.lang-menu a + a {
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* ---------- Products Nav Dropdown ---------- */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-dropdown-arrow {
    font-size: 0.7em;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #042925;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.55rem 1.1rem;
    color: rgba(255,255,255,0.85);
    font-family: 'ArchyEDT', var(--font-heading);
    font-size: 1.14rem;
    font-weight: 700;
    transition: all var(--transition);
    white-space: nowrap;
}
.nav-dropdown-item:hover {
    background: rgba(255,255,255,0.08);
    color: #E99A61;
}
.nav-dropdown-item + .nav-dropdown-item {
    border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle-bar {
    width: 28px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ---------- Hero Section ---------- */
/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background-color: var(--color-cream);
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 80vh;
    background-color: var(--color-cream);
    background-size: cover;
    background-position: left 82%;
    display: flex;
    align-items: center;
    padding: calc(140px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    position: relative;
}
.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, var(--slide-overlay, 0.15));
    z-index: 0;
}

.hero-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 50%;
}

.hero-image {
    display: none;
}

.hero-title {
    font-size: clamp(3.57rem, 7.15vw, 5.72rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.05;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    text-shadow: 0 1px 6px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.56rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

/* Slider arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
}
.hero-slider-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-slider-arrow.prev { left: 1.5rem; }
.hero-slider-arrow.next { right: 1.5rem; }

/* Slider dots */
.hero-slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}
.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}
.hero-slider-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Hide controls when only 1 slide */
/* --- Hero Slide Text Position --- */
.hero-slide[data-text-pos="left"] .hero-inner { justify-content: flex-start; }
.hero-slide[data-text-pos="right"] .hero-inner { justify-content: flex-end; }
.hero-slide[data-text-pos="center"] .hero-inner { justify-content: center; text-align: center; }
.hero-slide[data-text-pos="center"] .hero-subtitle { margin-left: auto; margin-right: auto; }
.hero-slide[data-text-pos="center"] .hero-ctas { justify-content: center; }
.hero-slide[data-text-pos="freeform"] .hero-inner { position: relative; }
.hero-slide[data-text-pos="freeform"] .hero-content {
    position: absolute;
    left: var(--text-x, 50%);
    top: var(--text-y, 50%);
    transform: translate(-50%, -50%);
}

.hero-slider[data-slide-count="1"] .hero-slider-arrow,
.hero-slider[data-slide-count="1"] .hero-slider-dots {
    display: none;
}

/* Legacy single hero (fallback) */
.hero {
    padding: calc(140px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    background-color: var(--color-cream);
    background-image: url('/public/images/brand/hero-banner.png');
    background-size: cover;
    background-position: left 82%;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    z-index: 0;
}

/* ---------- Page Hero (Sub-pages) ---------- */
.page-hero {
    padding: calc(140px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: var(--color-cream);
    background-size: cover;
    background-position: center;
    text-align: center;
}
.page-hero-short { padding-bottom: var(--spacing-lg); }

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Sections ---------- */
.section {
    padding: var(--spacing-2xl) 0;
}
.section-warm { background: var(--color-bg-warm); }
.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-white);
}
.section-dark .section-title { color: var(--color-white); }
.section-dark .section-subtitle,
.section-dark .section-body { color: rgba(255,255,255,0.8); }

.section-title {
    font-size: clamp(2.34rem, 4.01vw, 3.35rem);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.27rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
}

.section-subtitle a {
    color: #0e6a4f;
}
.section-subtitle a:hover {
    color: #0b5a42;
}
.section-subtitle a.wolt-link {
    color: #009de0;
}
.section-subtitle a.wolt-link:hover {
    color: #007ab8;
}
.wolt-link-text {
    color: #009de0;
    font-weight: 400;
    text-decoration: none;
}
.wolt-link-text:hover {
    color: #007ab8;
    text-decoration: underline;
}
.reichs-highlight {
    color: #0e6a4f;
    font-weight: 400;
}

.section-body {
    font-size: 1.21rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 700px;
}
.section-body + .section-body {
    margin-top: 1em;
}
.section-body-large { font-size: 1.32rem; margin: 0 auto; }

/* ---------- Two Column Layout ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.two-col-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.brand-intro-title {
    margin-bottom: var(--spacing-lg);
}

.brand-intro .two-col-image img {
    max-height: 440px;
    object-fit: cover;
    margin: 0 auto;
}

/* ---------- Brand Intro CTA ---------- */
.brand-intro-cta {
    margin-top: var(--spacing-xl);
}

/* ---------- Section Divider ---------- */
.section-divider {
    padding: 0;
}

.divider-line {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(14, 106, 79, 0.3),
        rgba(14, 106, 79, 0.3),
        transparent
    );
    margin: 0;
}

/* ---------- Featured Products ---------- */
.featured-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.featured-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}
.featured-reverse { direction: rtl; }
.featured-reverse > * { direction: ltr; }

.featured-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.featured-name {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-xs);
}

.featured-flavor {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-golden-brown);
    background: rgba(200,145,58,0.1);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
}

.featured-tagline {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ---------- Product Grid ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    position: relative;
    padding-top: 100%;
    background: var(--color-cream);
}
.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-golden-brown);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.product-card-info {
    padding: var(--spacing-sm) var(--spacing-sm) 1.25rem;
}

.product-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.product-card-flavor {
    font-size: 0.85rem;
    color: var(--color-golden-brown);
    font-weight: 500;
}

/* ---------- Gradient Background Wrapper ---------- */
.gradient-bg {
    background: linear-gradient(111deg, #fdedd0, #c4dcc7);
}

/* ---------- Crispy Products Section ---------- */
.crispy-products {
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

.crispy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.crispy-card {
    display: flex;
    flex-direction: column;
    background: #DFD2A2;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.crispy-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.crispy-card-image {
    position: relative;
    padding-top: 100%;
    background: var(--color-cream);
    cursor: pointer;
}
.crispy-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crispy-card-body {
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-md);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.crispy-card-name {
    font-size: 1.44rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--color-dark);
}

.paska-products .crispy-card-name {
    min-height: 3.6rem; /* 2 lines — aligns descriptions across cards */
}

.crispy-card-desc {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.55;
    margin-bottom: 0.75rem;
    flex: 1;
}

.crispy-card-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #042925;
    background: #E99A61;
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
}

.crispy-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.btn-ingredients {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: #042925;
    background: #e8b761;
    border: 1.5px solid #e8b761;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-ingredients:hover {
    background: #0e6a4f;
    border-color: #0e6a4f;
    color: var(--color-white);
}
.btn-order-phone {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-white);
    background: #0e6a4f;
    border: 1.5px solid #0e6a4f;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn-order-phone:hover {
    background: #e8b761;
    border-color: #e8b761;
    color: #042925;
}

/* ---------- Product Modal ---------- */
.product-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-md);
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    transform: scale(0.92);
    transition: transform 0.3s ease;
}
.product-modal-overlay.active .product-modal {
    transform: scale(1);
}

.product-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-cream);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition);
    z-index: 1;
}
.product-modal-close:hover {
    background: var(--color-border);
}

.product-modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-md) 0;
    text-align: center;
}
.product-modal-header img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
}
.product-modal-header h3 {
    font-size: 1.35rem;
    margin-bottom: 0.4rem;
}
.product-modal-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: #042925;
    background: rgba(200, 145, 58, 0.1);
    padding: 0.25rem 0.85rem;
    border-radius: var(--radius-full);
}

.product-modal-body {
    padding: var(--spacing-md);
}
.product-modal-body h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.product-modal-stats {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.modal-stat-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #f0f9f5, #e8f5f0);
    border: 1px solid rgba(14, 106, 79, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem 0.75rem;
}

.modal-stat-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.modal-stat-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #0e6a4f;
    line-height: 1.1;
}

.modal-stat-unit {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0e6a4f;
}

.modal-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    margin-top: 0.35rem;
}

.product-modal-ingredients p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* ---------- Delivery Logos ---------- */
.delivery-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.delivery-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.delivery-logo-link:hover { transform: scale(1.05); }

.delivery-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity var(--transition);
}
.delivery-logo-link:hover .delivery-logo { opacity: 1; }

.delivery-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-white);
}

/* ---------- Delivery Grid (Locations page) ---------- */
.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    text-decoration: none;
}
.delivery-card:hover {
    border-color: var(--color-golden-brown);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.delivery-card-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.delivery-card-name {
    font-weight: 600;
    color: var(--color-text);
}

/* ---------- Retail Stores ---------- */
.retail-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.retail-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
}

.retail-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.retail-card-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.retail-card-name {
    font-size: 1.25rem;
    font-weight: 600;
    flex: 1;
}

.retail-card-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-golden-brown);
}

.retail-addresses {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.5rem;
}

.retail-addresses li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
}

.address-city {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ---------- Ingredient Cards ---------- */
.ingredient-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.ingredient-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.ingredient-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ingredient-card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-cream);
}
.ingredient-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-card-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.ingredient-card-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
    background: #042925;
    color: rgba(255,255,255,0.8);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--spacing-lg);
    align-items: end;
    margin-bottom: var(--spacing-lg);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-golden-light);
    margin-bottom: var(--spacing-sm);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-list a { color: rgba(255,255,255,0.8); }
.footer-list a:hover { color: var(--color-white); }

.footer-label {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.7);
    display: block;
    font-weight: 600;
}
.footer-list li span:not(.footer-label),
.footer-list li a {
    font-size: 0.85rem;
}

.footer-brand-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 0.6rem;
}

.footer-brand-right .footer-logo-img {
    height: 92px;
    width: auto;
}

.footer-slogan {
    font-size: 0.99rem;
    font-style: italic;
    color: rgba(255,255,255,0.6);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social-icon {
    display: inline-flex;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.footer-social-icon:hover {
    color: #E99A61;
}

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ---------- Contact Page ---------- */
.contact-page {
    background-color: #c4a87a;
    background: url('/public/images/brand/contact-bg.png') center 40% / cover no-repeat #c4a87a;
    min-height: 85vh;
    padding: calc(140px + 6rem) 0 var(--spacing-lg);
    position: relative;
}
.contact-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(4, 41, 37, 0.25);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.contact-page-title {
    color: #FFFFFF;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.contact-card {
    background: rgba(254, 252, 245, 0.95);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-card-title {
    color: #2E534C;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-card-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 16px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-card-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    fill: #2E534C;
}

.contact-card-item span,
.contact-card-item a {
    font-size: 0.95rem;
    color: #2E534C;
    font-weight: 500;
}
.contact-card-item a:hover {
    color: var(--color-golden-brown);
}

.contact-card-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

/* ---------- About Page ---------- */
.about-page {
    background: linear-gradient(164deg, #fdedd0, #c4dcc7);
    min-height: 100vh;
    padding: calc(140px + var(--spacing-xl)) 0 var(--spacing-2xl);
}

.about-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.about-logo {
    width: 200px;
    height: auto;
    margin-bottom: var(--spacing-sm);
}

.about-page-title {
    color: #2E534C;
    font-size: clamp(2.2rem, 4.4vw, 3.3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.25rem;
}

.about-slogan {
    color: #2E534C;
    font-size: 1.32rem;
    font-style: italic;
    text-align: center;
    opacity: 0.8;
}

.about-intro {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.about-intro p {
    font-size: 1.21rem;
    line-height: 1.75;
    color: #4A4A4A;
    margin-bottom: var(--spacing-sm);
}

.about-sections {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-section {
    background: #FEFCF5;
    border-radius: 16px;
    padding: 30px 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.about-section h2 {
    color: #2E534C;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #4A4A4A;
}

/* ---------- Locations Page (Embeddable Card Design) ---------- */
.locations-page {
    background: linear-gradient(164deg, #fdedd0, #c4dcc7);
    min-height: 100vh;
    padding: calc(140px + var(--spacing-xl)) 0 var(--spacing-2xl);
}

.locations-container {
    max-width: 1100px;
}

.locations-card {
    background: #FEFCF5;
    border-radius: 20px;
    padding: 30px 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.locations-title {
    font-size: clamp(2.34rem, 4.01vw, 3.35rem);
    font-weight: 700;
    color: #2E534C;
    margin-bottom: 10px;
    text-align: center;
}

.locations-subtitle {
    font-size: 16px;
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 6px;
    text-align: center;
}

.locations-hint {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-bottom: 35px;
    text-align: center;
}

/* Two-column grid */
.locations-columns {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    align-items: start;
}

/* Card title & subtitle */
.locations-card-title {
    color: #2E534C;
    font-size: 24.5px;
    font-weight: 700;
    margin-bottom: 6px;
}

.locations-card-subtitle {
    font-size: 14.7px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Other stores section */
.other-stores-heading {
    color: #2E534C;
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 12px;
}

.locations-city-label {
    color: #2E534C;
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.other-store-item {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: background var(--transition);
}
.other-store-item:hover {
    background: #F4EFE4;
}

.other-store-name {
    font-weight: 600;
    color: #2E534C;
    font-size: 0.95rem;
}

.other-store-address {
    display: block;
    font-size: 0.85rem;
    color: #2E534C;
}


/* Store dropdown wrapper */
.store-dropdown {
    margin-bottom: 15px;
}

/* Toggle bar */
.store-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #F9F5ED;
    border: 1.5px solid #2E534C;
    border-radius: 10px;
    color: #2E534C;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition), box-shadow var(--transition);
}
.store-toggle:hover {
    background: #F4EFE4;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.store-toggle:focus-visible {
    outline: 2px solid #2E534C;
    outline-offset: 2px;
}

/* Connected bottom when expanded */
.store-toggle.expanded {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.store-toggle-text {
    text-align: left;
}

/* Arrow */
.store-toggle .arrow {
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 12px;
}
.store-toggle .arrow.expanded {
    transform: rotate(90deg);
}

/* Dropdown content panel */
.store-content {
    display: none;
    background: #FAF7F0;
    border: 1.5px solid #2E534C;
    border-top: none;
    border-radius: 0 0 10px 10px;
    padding: 15px 20px;
}
.store-content.open {
    display: block;
}

/* Address links */
.store-content a {
    display: block;
    color: #2E534C;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.92rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
}
.store-content a:hover {
    background: #e9e4da;
    color: #1A3832;
}

/* City label above chain dropdowns */
.locations-city-label {
    font-weight: 700;
    font-size: 15px;
    color: #2E534C;
    margin: 18px 0 8px 0;
    padding-left: 2px;
}
.locations-city-label:first-of-type {
    margin-top: 0;
}

/* Coming soon text inside panel */
.store-content-empty {
    color: #777;
    font-size: 0.95rem;
    font-style: italic;
    padding: 8px 10px;
}

/* Partner Venues heading */
.locations-partners-heading {
    color: #2E534C;
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .locations-columns { grid-template-columns: 1fr; }
}

@media (max-width: 1400px) {
    /* Tighten nav for Georgian text safety in 1100-1400px range */
    .nav-menu { gap: 1.25rem; margin-left: -80px; }
    .nav-link { font-size: 1.25rem; }

    .hero-inner { flex-direction: column; align-items: center; text-align: center; justify-content: center !important; }
    .hero-content { max-width: 100%; position: static !important; transform: none !important; left: auto !important; top: auto !important; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero { min-height: 60vh; }
    .hero-slider { min-height: 60vh; }
    .hero-slide { min-height: 60vh; }

    .two-col { grid-template-columns: 1fr; gap: var(--spacing-lg); }

    /* Brand intro mobile: title → image → text + button */
    .brand-intro-title { text-align: center; margin-bottom: var(--spacing-md); }
    .brand-intro .two-col { display: flex; flex-direction: column; }
    .brand-intro .two-col-image { order: -1; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--radius-md); }
    .brand-intro .two-col-image img { width: 100%; height: 100%; object-fit: cover; }
    .brand-intro .two-col-text { order: 1; }
    .brand-intro-cta { margin-top: var(--spacing-md); }

    .featured-product { grid-template-columns: 1fr; }
    .featured-reverse { direction: ltr; }

    .desktop-br { display: none; }

    .contact-cards { grid-template-columns: 1fr; }

    .crispy-grid { grid-template-columns: repeat(2, 1fr); }

    .locations-card { padding: 25px 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: var(--spacing-md); text-align: center; }
    .footer-brand-right { align-items: center; }
}

@media (max-width: 1100px) {
    /* Show hamburger */
    .nav-toggle { display: flex; }

    /* Navbar: logo left, hamburger right */
    .navbar-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* Mobile menu panel */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: calc(100vh - 140px);
        background: #042925;
        flex-direction: column;
        justify-content: flex-start;
        padding: 1rem var(--spacing-xl);
        gap: 0.25rem;
        margin-left: 0;
        overflow-y: auto;
        z-index: 999;
        /* Hidden by default — animatable */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Full-width nav links — big & easy to tap */
    .nav-menu .nav-link {
        display: block;
        width: 100%;
        padding: 0.9rem 1.35rem;
        font-size: 1.49rem;
        color: rgba(255,255,255,0.9);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
    }
    .nav-menu .nav-link:hover {
        background: rgba(255,255,255,0.08);
    }
    .nav-menu .nav-link.active {
        border-left: 4px solid #E99A61;
        padding-left: calc(1.5rem - 4px);
        color: #E99A61;
    }
    .nav-menu .nav-link::after { display: none; }

    /* Products dropdown in mobile menu */
    .nav-menu .nav-dropdown {
        display: block;
        width: 100%;
    }
    .nav-menu .nav-dropdown-toggle {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .nav-menu .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        min-width: auto;
        display: none;
        padding-left: 1rem;
    }
    .nav-menu .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }
    .nav-menu .nav-dropdown-item {
        padding: 0.6rem 1.35rem;
        font-size: 1.25rem;
        color: rgba(255,255,255,0.7);
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-menu .nav-dropdown-item:hover {
        background: rgba(255,255,255,0.05);
    }
    .nav-menu .nav-dropdown-item + .nav-dropdown-item {
        border-top: none;
    }

    /* Nav-right inside mobile menu */
    .nav-menu .nav-right {
        position: static;
        width: 100%;
        justify-content: space-between;
        padding: 0.75rem 0 0;
        border-top: 1px solid rgba(255,255,255,0.12);
        margin-top: 0.5rem;
    }
    .nav-menu .nav-right .nav-social-icon svg {
        width: 23px;
        height: 23px;
    }
    /* Transform lang dropdown into side-by-side buttons on mobile */
    .nav-menu .nav-right .lang-toggle {
        display: none;
    }
    .nav-menu .nav-right .lang-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: flex;
        gap: 0;
        background: none;
        border: none;
        min-width: auto;
        box-shadow: none;
        padding: 0;
    }
    .nav-menu .nav-right .lang-menu a {
        font-size: 0;
        padding: 0.4rem 0.9rem;
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.7);
        transition: all var(--transition);
        text-decoration: none;
    }
    .nav-menu .nav-right .lang-menu a::after {
        content: attr(data-short);
        font-size: 0.79rem;
        font-family: 'ArchyEDT', var(--font-heading);
        font-weight: 700;
    }
    .nav-menu .nav-right .lang-menu a:first-child {
        border-radius: var(--radius-full) 0 0 var(--radius-full);
        border-right: none;
    }
    .nav-menu .nav-right .lang-menu a:last-child {
        border-radius: 0 var(--radius-full) var(--radius-full) 0;
    }
    .nav-menu .nav-right .lang-menu a.active {
        background: #E99A61;
        border-color: #E99A61;
        color: #042925;
    }
    .nav-menu .nav-right .lang-menu a.active::after {
        color: #042925;
    }
    .nav-menu .nav-right .lang-menu a:not(.active):hover {
        border-color: #E99A61;
        color: #E99A61;
    }
    .nav-menu .nav-right .lang-menu a + a {
        border-top: none;
    }

    /* Hero intermediate sizing */
    .hero-content { max-width: 70%; }

    /* Swap to vertical hero photo on mobile */
    .hero {
        background-image: url('/public/images/brand/hero-banner-mobile.jpg') !important;
        background-position: center center;
    }
    .hero-slide {
        background-position: center center;
    }
}

@media (max-width: 640px) {
    /* Smaller navbar logo on phones */
    .navbar-logo-img { height: 70px; }
    .navbar-inner { height: 100px; }

    /* Smaller nav links on phones */
    .nav-menu .nav-link { padding: 0.55rem 1rem; font-size: 1.04rem; }
    .nav-menu .nav-dropdown-item { font-size: 0.95rem; padding: 0.45rem 1rem; }
    .nav-menu { padding: 0.7rem var(--spacing-lg); }
    .nav-menu .nav-right .lang-menu a { padding: 0.35rem 0.75rem; }
    .nav-menu .nav-right .lang-menu a::after { font-size: 0.72rem; }
    .nav-menu { height: calc(100vh - 100px); }

    .hero { min-height: 75vh; padding-top: calc(100px + 9rem); padding-bottom: var(--spacing-lg); }
    .hero-slide { min-height: 75vh; padding-top: calc(100px + 9rem); padding-bottom: var(--spacing-lg); }
    .hero-slider { min-height: 75vh; }
    .hero-title { font-size: 2.53rem; }
    .hero-subtitle { font-size: 1.01rem; }
    html[lang="ka"] .hero-subtitle { font-size: 1.26rem; }

    /* KA product text slightly smaller to reduce cramping */
    html[lang="ka"] .crispy-card-name { font-size: 1.34rem; }
    html[lang="ka"] .crispy-card-desc { font-size: 0.88rem; }
    .paska-products .crispy-card-name { min-height: 3.2rem; }
    html[lang="ka"] .section-subtitle { font-size: 1.18rem; }
    .hero-content { max-width: 100%; }
    .hero-slider-arrow { width: 36px; height: 36px; }
    .hero-slider-arrow.prev { left: 0.75rem; }
    .hero-slider-arrow.next { right: 0.75rem; }

    .section { padding: var(--spacing-xl) 0; }
    .crispy-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-sm); }
    .ingredient-grid { grid-template-columns: repeat(2, 1fr); }
    .retail-addresses { grid-template-columns: 1fr; }

    .locations-page { padding-top: calc(100px + var(--spacing-md)); padding-bottom: var(--spacing-xl); }
    .locations-card { padding: 20px 16px; border-radius: 14px; }
    .locations-title { font-size: 1.75rem; }
    .locations-subtitle { font-size: 14px; }
    .locations-card-title { font-size: 20.1px; }
    .store-toggle { padding: 12px 16px; font-size: 14px; }
    .store-content { padding: 12px 14px; }
    .store-content a { font-size: 0.85rem; padding: 7px 8px; }

    .about-page { padding-top: calc(100px + var(--spacing-md)); padding-bottom: var(--spacing-xl); }
    .about-section { padding: 22px 20px; border-radius: 14px; }
    .about-page-title { font-size: 2rem; }
    .about-intro p { font-size: 0.95rem; }

    .btn-hero-primary, .btn-hero-secondary { padding: 0.75rem 1.5rem; font-size: 0.95rem; }

    .product-modal { width: 100%; max-width: 100%; border-radius: var(--radius-sm); margin: var(--spacing-xs); }
    .product-modal-header img { max-width: 200px; }

    .contact-cards { grid-template-columns: 1fr; }
    .contact-map iframe { height: 300px; }
}

/* ---------- Georgian Language — Sub-text Font ---------- */
html[lang="ka"] .hero-subtitle,
html[lang="ka"] .section-subtitle,
html[lang="ka"] .section-body,
html[lang="ka"] .crispy-card-desc,
html[lang="ka"] .crispy-card-tag,
html[lang="ka"] .about-intro p,
html[lang="ka"] .about-section p,
html[lang="ka"] .about-section h2,
html[lang="ka"] .about-slogan,
html[lang="ka"] .contact-card-title,
html[lang="ka"] .contact-card-desc,
html[lang="ka"] .contact-card-note,
html[lang="ka"] .contact-card-item span,
html[lang="ka"] .locations-subtitle,
html[lang="ka"] .locations-hint,
html[lang="ka"] .locations-card-subtitle,
html[lang="ka"] .footer-slogan,
html[lang="ka"] .footer-label,
html[lang="ka"] .footer-list span,
html[lang="ka"] .footer-bottom p,
html[lang="ka"] .product-modal-ingredients p,
html[lang="ka"] .product-modal-ingredients h4,
html[lang="ka"] .product-modal-header h3,
html[lang="ka"] .product-modal-tag,
html[lang="ka"] .product-modal-close,
html[lang="ka"] .modal-stat-label,
html[lang="ka"] .modal-stat-unit,
html[lang="ka"] .btn-ingredients,
html[lang="ka"] .btn-order-phone,
html[lang="ka"] .btn-primary,
html[lang="ka"] .btn-hero-primary,
html[lang="ka"] .btn-hero-secondary,
html[lang="ka"] .store-toggle-text,
html[lang="ka"] .store-content a,
html[lang="ka"] .other-store-name,
html[lang="ka"] .other-store-address {
    font-family: var(--font-ka-sub);
}
