:root {
    --green: #172716;
    --green-2: #263a1d;
    --gold: #d8aa45;
    --cream: #f4eddc;
    --paper: #fbf7ed;
    --ink: #172018;
    --muted: #7b806f;
    --red: #7d1b17;
    --violet: #24152d;
    --shadow: 0 28px 80px rgba(10, 18, 8, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Cairo, sans-serif;
    overflow-x: hidden;
}
body.rtl { font-family: Cairo, Inter, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .12;
    z-index: 20;
    background-image: radial-gradient(rgba(255,255,255,.55) 1px, transparent 1px);
    background-size: 7px 7px;
    mix-blend-mode: overlay;
}
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 8px clamp(26px, 5.2vw, 82px);
    color: var(--cream);
    background: linear-gradient(180deg, rgba(20, 23, 14, .52), rgba(20, 23, 14, .26));
    border-bottom: 1px solid rgba(244, 237, 220, .12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}
.brand {
    display: flex;
    align-items: center;
    width: 128px;
    height: 74px;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.24));
}
.brand img {
    width: 128px;
    height: 74px;
    object-fit: contain;
    transform: scale(1.18);
    transform-origin: center;
}
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(26px, 3vw, 48px);
    padding-top: 0;
    font-weight: 700;
    font-size: .98rem;
}
.nav a { opacity: .86; transition: color .25s, opacity .25s; }
.nav a:hover { color: var(--gold); opacity: 1; }
.lang {
    min-width: 78px;
    text-align: center;
    border: 1px solid rgba(244, 237, 220, .75);
    border-radius: 999px;
    padding: 11px 18px;
    font-weight: 800;
}
.header-lang { margin-top: 0; }
.nav-lang { display: none; }
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(244, 237, 220, .58);
    border-radius: 999px;
    background: rgba(18, 25, 13, .38);
    color: var(--cream);
    padding: 0;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform .25s;
}
.menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.hero {
    min-height: var(--hero-min, 82vh);
    position: relative;
    display: grid;
    align-items: center;
    padding: 142px clamp(28px, 5vw, 92px) 64px;
    color: var(--cream);
    overflow: hidden;
}
.hero-bg, .hero-bg picture, .hero-bg img, .hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-bg img { object-fit: cover; transform: scale(1.05); }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}
.hero-has-video .hero-bg {
    background: var(--green);
}
.hero-slide {
    opacity: 0;
    transition: opacity 1.15s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-shade {
    opacity: var(--hero-shade-opacity, 1);
    background:
        linear-gradient(90deg, rgba(11, 20, 9, .94), rgba(20, 27, 12, .62) 34%, rgba(20, 27, 12, .14) 68%),
        linear-gradient(0deg, rgba(13, 22, 10, .42), transparent 44%);
}
.hero-copy {
    position: relative;
    z-index: 2;
    max-width: min(760px, 45vw);
}
.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    text-transform: uppercase;
    font-size: .84rem;
    letter-spacing: 0;
    font-weight: 900;
}
.hero h1, .section-head h2, .story h2, .contact h2, .detail-copy h1 {
    font-family: "Playfair Display", Cairo, serif;
    font-weight: 800;
    line-height: .98;
    margin: 0;
}
.rtl .hero h1, .rtl .section-head h2, .rtl .story h2, .rtl .contact h2, .rtl .detail-copy h1 {
    font-family: Cairo, "Playfair Display", serif;
    line-height: 1.16;
}
.hero h1 { font-size: clamp(4.2rem, 6.9vw, 8.1rem); max-width: 860px; }
.lead {
    font-size: clamp(1.1rem, 2vw, 1.55rem);
    line-height: 1.7;
    max-width: 680px;
    color: rgba(244, 237, 220, .9);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 30px;
    border-radius: 8px;
    font-weight: 900;
    border: 1px solid transparent;
    transition: transform .25s, background .25s, border-color .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn.solid { background: var(--gold); color: var(--green); }
.btn.ghost { border-color: var(--gold); color: var(--gold); background: rgba(10, 16, 8, .18); }
.hero-products {
    position: absolute;
    right: 5vw;
    bottom: 4vh;
    z-index: 2;
    width: min(45vw, 760px);
    height: 68vh;
}
.rtl .hero-products { right: auto; left: 5vw; }
.floating-pack {
    position: absolute;
    width: clamp(170px, 18vw, 285px);
    filter: drop-shadow(0 34px 38px rgba(0,0,0,.42));
    transform-origin: center bottom;
}
.pack-1 { left: 0; bottom: 4%; transform: rotate(-7deg); }
.pack-2 { left: 31%; bottom: 0; width: clamp(205px, 22vw, 345px); z-index: 2; }
.pack-3 { right: 0; bottom: 6%; transform: rotate(7deg); }
.marquee {
    overflow: hidden;
    background: var(--green);
    color: var(--gold);
    border-top: 1px solid rgba(216, 170, 69, .3);
    border-bottom: 1px solid rgba(216, 170, 69, .3);
}
.marquee div {
    display: flex;
    width: max-content;
    gap: 42px;
    padding: 18px 0;
    animation: marquee 24s linear infinite;
    font-weight: 900;
    text-transform: uppercase;
}
.marquee span { white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }
.section { padding: clamp(70px, 9vw, 140px) clamp(22px, 5vw, 90px); }
.products-section {
    padding-top: clamp(42px, 5vw, 76px);
}
.section-head {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 32px;
    align-items: end;
    margin-bottom: 48px;
}
.rtl .section-head {
    direction: rtl;
    text-align: right;
}
.rtl .section-head .eyebrow {
    justify-self: end;
}
.section-head h2, .story h2, .contact h2 { font-size: clamp(2.3rem, 5vw, 5.8rem); }
.products-section .section-head {
    grid-template-columns: 1fr;
    justify-items: start;
    text-align: left;
    max-width: 860px;
    margin: 0 0 42px;
    gap: 12px;
}
.products-section .section-head .eyebrow {
    width: 100%;
    justify-self: stretch;
    text-align: left;
}
.rtl .products-section .section-head {
    justify-items: end;
    text-align: right;
    margin-right: 0;
    margin-left: auto;
}
.rtl .products-section .section-head .eyebrow {
    justify-self: stretch;
    text-align: right;
}
.products-section .section-head h2 {
    max-width: 860px;
    font-size: clamp(2.35rem, 3.45vw, 4.35rem);
    line-height: 1.18;
}
.home-product-groups {
    display: grid;
    gap: clamp(42px, 7vw, 86px);
}
.home-category-block {
    display: grid;
    gap: 22px;
}
.category-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
    padding: 0 4px;
}
.rtl .category-head {
    direction: rtl;
    text-align: right;
}
.category-head h3 {
    margin: 8px 0 0;
    max-width: 880px;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(1.8rem, 3vw, 3.2rem);
    line-height: 1.1;
    color: var(--green);
}
.category-head > a {
    flex: 0 0 auto;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    border: 1px solid rgba(23,39,22,.18);
    color: var(--green);
    font-weight: 900;
    background: rgba(255,255,255,.58);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.product-card {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 20%, rgba(216,170,69,.2), transparent 34%),
        linear-gradient(180deg, #fff8e8 0%, #efe2be 100%);
    box-shadow: 0 24px 70px rgba(23, 39, 22, .12);
    padding: 16px;
    color: var(--ink);
    cursor: pointer;
    border: 0;
    width: 100%;
    text-align: start;
    font: inherit;
}
.product-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.2), transparent 24%, transparent 76%, rgba(255,255,255,.22)),
        radial-gradient(circle at 50% 12%, rgba(255,255,255,.7), transparent 28%);
    pointer-events: none;
}
.product-card picture,
.product-card img {
    position: static;
    width: 100%;
    height: 360px;
}
.product-card img {
    object-fit: contain;
    transform: none;
    transition: transform .5s;
    filter: drop-shadow(0 28px 30px rgba(0,0,0,.22));
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.72);
    background:
        radial-gradient(circle at 50% 18%, rgba(255,255,255,.72), transparent 36%),
        linear-gradient(180deg, rgba(255,255,255,.38), rgba(239,226,190,.2));
}
.product-card:hover img { transform: translateY(-8px) scale(1.025); }
.card-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--green);
    color: var(--cream);
    font-weight: 900;
}
.badge {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border-radius: 999px;
    color: var(--green);
    background: var(--gold);
    font-weight: 900;
}
.rtl .badge { right: auto; left: 24px; }
.product-card div {
    position: relative;
    z-index: 2;
    min-height: 185px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 10px;
    padding: 22px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.88);
    border-radius: 8px;
    box-shadow: 0 22px 50px rgba(23, 39, 22, .12);
}
.product-card p {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--muted);
    font-weight: 900;
    text-align: center;
    width: 100%;
}
.product-card h3 {
    grid-column: 1 / -1;
    margin: 0;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(2rem, 2.8vw, 3.35rem);
    line-height: 1;
    text-align: center;
    width: 100%;
}
.ltr .product-card h3 {
    font-family: "Playfair Display", serif;
    letter-spacing: 0;
}
.rtl .product-card h3 { font-family: Cairo, serif; }
.product-card div > span:not(.card-more) {
    align-self: center;
    color: #53604e;
    line-height: 1.65;
    text-align: center;
    width: 100%;
}
.category-more-card {
    min-height: 100%;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    padding: 28px;
    border-radius: 8px;
    color: var(--cream);
    text-align: center;
    background:
        linear-gradient(135deg, rgba(216,170,69,.92), rgba(23,39,22,.96)),
        var(--green);
    box-shadow: 0 24px 70px rgba(23, 39, 22, .16);
    border: 1px solid rgba(216,170,69,.5);
    position: relative;
    overflow: hidden;
}
.category-more-card:before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 8px;
    pointer-events: none;
}
.category-more-card span {
    position: relative;
    z-index: 1;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    padding: 0 18px;
    border-radius: 8px;
    background: var(--cream);
    color: var(--green);
    font-weight: 900;
}
.category-more-card strong {
    position: relative;
    z-index: 1;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
}
.category-more-card small {
    position: relative;
    z-index: 1;
    max-width: 260px;
    color: rgba(244,237,220,.82);
    font-weight: 800;
    line-height: 1.6;
}
.rtl .product-card p,
.rtl .product-card div > span:not(.card-more) {
    font-family: Cairo, sans-serif;
}
.ltr .product-card p,
.ltr .product-card div > span:not(.card-more) {
    font-family: Inter, sans-serif;
}
.category-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 34px;
}
.category-filters a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0 18px;
    background: #fff8e8;
    color: var(--green);
    border: 1px solid rgba(23,39,22,.12);
    font-weight: 900;
}
.category-filters a.active {
    background: var(--green);
    color: var(--cream);
}
.story {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 54px;
    align-items: center;
    padding: clamp(70px, 8vw, 130px) clamp(22px, 5vw, 90px);
    background: var(--green);
    color: var(--cream);
}
.story-media { overflow: hidden; border-radius: 8px; }
.story-media picture, .story-media img { display: block; width: 100%; height: 560px; }
.story-media img { object-fit: cover; }
.story-copy p:last-child { color: rgba(244,237,220,.78); line-height: 1.8; font-size: 1.15rem; }
.story-more { margin-top: 20px; }
.quality {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    background: #f8f2e4;
}
.quality-card {
    border-left: 4px solid var(--gold);
    padding: 28px;
    background: white;
    border-radius: 8px;
}
.quality-card strong { color: var(--gold); font-size: 3rem; font-family: "Playfair Display", serif; }
.quality-card h3 { font-size: 1.7rem; margin: 10px 0; }
.quality-card p { line-height: 1.7; color: var(--muted); }
.quality-more {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 10px;
}
.contact {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    padding: clamp(70px, 9vw, 140px) clamp(22px, 5vw, 90px);
    background: linear-gradient(135deg, var(--green), #10180f);
    color: var(--cream);
}
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
    width: 100%;
    min-height: 58px;
    border: 1px solid rgba(244,237,220,.24);
    background: rgba(255,255,255,.08);
    color: var(--cream);
    border-radius: 8px;
    padding: 16px;
    font: inherit;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 34px clamp(22px, 5vw, 90px);
    background: #0c140b;
    color: var(--cream);
}
.footer-logo { width: 122px; height: 92px; object-fit: contain; }
.footer a { display: block; color: var(--gold); margin-top: 8px; }
.footer small { display: block; margin-top: 10px; color: rgba(244,237,220,.58); }
.product-detail {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 46px;
    align-items: center;
    padding: 130px clamp(22px, 6vw, 100px) 70px;
    background:
        radial-gradient(circle at 20% 20%, rgba(216,170,69,.16), transparent 30%),
        linear-gradient(135deg, #fff8e8, #e8d9b9);
}
.page-hero {
    position: relative;
    min-height: 62vh;
    display: grid;
    align-items: end;
    padding: 150px clamp(22px, 5vw, 90px) 70px;
    color: var(--cream);
    overflow: hidden;
}
.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,22,10,.9), rgba(13,22,10,.5), rgba(13,22,10,.18));
    z-index: 1;
}
.page-hero picture,
.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.page-hero img {
    object-fit: cover;
}
.page-hero div {
    position: relative;
    z-index: 2;
    max-width: 860px;
}
.page-hero h1 {
    margin: 0;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(3.6rem, 8vw, 8rem);
    line-height: 1;
}
.page-hero p:last-child {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.75;
    color: rgba(244,237,220,.86);
}
.story-page {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 34px;
}
.story-page-copy h2 {
    margin: 0 0 18px;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(2.4rem, 5vw, 5rem);
    line-height: 1.05;
}
.story-page-copy p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.1rem;
}
.story-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.custom-page {
    background: #fffaf0;
}
.custom-page article {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 54px);
    border-radius: 8px;
    background: white;
    box-shadow: 0 20px 60px rgba(23,39,22,.08);
    color: #394535;
    font-size: 1.12rem;
    line-height: 1.9;
}
.quality-page {
    display: grid;
    gap: 28px;
}
.quality-page .quality-page-cards {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}
.contact-page {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    background: #fffaf0;
}
.contact-info-panel,
.contact-page-form {
    border-radius: 8px;
    background: white;
    box-shadow: 0 20px 60px rgba(23,39,22,.08);
    padding: clamp(24px, 4vw, 42px);
}
.contact-info-panel h2 {
    margin: 0 0 24px;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
}
.contact-methods {
    display: grid;
    gap: 14px;
}
.contact-methods a,
.contact-methods div {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 8px;
    background: #fff8e8;
    border: 1px solid rgba(23,39,22,.08);
}
.contact-methods span {
    color: var(--muted);
    font-weight: 900;
    font-size: .85rem;
}
.contact-methods strong {
    color: var(--green);
    word-break: break-word;
}
.contact-page-form {
    display: grid;
    gap: 14px;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    min-height: 56px;
    border: 1px solid #e1d5bd;
    border-radius: 8px;
    padding: 15px;
    font: inherit;
    background: #fffdf7;
}
.contact-page-form textarea {
    min-height: 170px;
    resize: vertical;
}
.detail-media picture,
.detail-media img {
    display: block;
}
.detail-media img {
    max-height: 78vh;
    margin: auto;
    object-fit: contain;
    filter: drop-shadow(0 38px 45px rgba(23,39,22,.25));
}
.detail-copy h1 { font-size: clamp(4rem, 8vw, 8rem); color: var(--green); }
.detail-copy p { line-height: 1.8; color: #4f5949; }
.back-link { color: var(--gold); font-weight: 900; }
.specs { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.specs span {
    padding: 12px 16px;
    border-radius: 999px;
    background: white;
    color: var(--green);
    font-weight: 900;
}
.not-found { min-height: 80vh; display: grid; place-items: center; padding: 120px 20px; }
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}
.modal-open .product-modal {
    opacity: 1;
    pointer-events: auto;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 12, 7, .68);
    backdrop-filter: blur(6px);
}
.modal-panel {
    position: relative;
    width: min(720px, 100%);
    max-height: min(860px, calc(100svh - 28px));
    overflow: auto;
    border-radius: 8px;
    background: #f6edd7;
    color: var(--green);
    box-shadow: 0 28px 90px rgba(0,0,0,.42);
    padding: clamp(18px, 4vw, 34px);
}
.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: rgba(23, 39, 22, .08);
    color: var(--green);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
.rtl .modal-close { right: auto; left: 14px; }
.modal-top {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 24px;
    align-items: center;
}
.modal-image {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(0,0,0,.16));
}
.modal-title {
    margin: 0 0 18px;
    font-family: "Playfair Display", Cairo, serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
}
.modal-meta {
    display: grid;
    gap: 16px;
    color: #687356;
}
.modal-meta strong {
    display: block;
    margin-top: 4px;
    color: var(--green);
    font-size: 1.45rem;
}
.modal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}
.modal-tags span {
    padding: 9px 14px;
    border-radius: 999px;
    background: #efe0bd;
    color: #c79235;
    font-weight: 900;
}
.modal-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(23, 39, 22, .14);
}
.modal-section h3 {
    margin: 0 0 16px;
    font-family: "Playfair Display", Cairo, serif;
    font-size: 1.55rem;
}
.ingredient-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.ingredient-list li {
    display: flex;
    gap: 12px;
    align-items: center;
}
.ingredient-list li:before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold);
    flex: 0 0 auto;
}
.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.nutrition-card {
    min-height: 82px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(23, 39, 22, .08);
}
.nutrition-card span {
    display: block;
    color: #687356;
    font-size: .9rem;
}
.nutrition-card strong {
    display: block;
    margin: 3px 0;
    font-size: 1.35rem;
}
.info-box {
    padding: 16px;
    border-radius: 8px;
    line-height: 1.65;
}
.info-box.storage { background: #edf5ff; border: 1px solid #b9d7ff; }
.info-box.usage { background: #effcf2; border: 1px solid #b9edc7; }
.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
}
.modal-actions .btn { min-height: 48px; }
.modal-actions .btn.ghost {
    color: var(--green);
    border-color: rgba(23, 39, 22, .18);
    background: rgba(255,255,255,.38);
}
@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 132px 1fr auto;
        padding: 8px 22px;
        align-items: center;
    }
    .brand {
        width: 116px;
        height: 68px;
    }
    .brand img {
        width: 116px;
        height: 68px;
    }
    .nav { gap: 20px; font-size: .9rem; padding-top: 0; }
    .hero {
        padding-top: 132px;
        min-height: 78vh;
    }
    .hero-copy { max-width: 58vw; }
    .hero-products { opacity: .42; width: 70vw; pointer-events: none; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .story, .contact, .contact-page, .product-detail { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 1fr auto;
        align-items: center;
        padding: 10px 16px 8px;
        background: rgba(13, 19, 10, .62);
    }
    .brand {
        width: 106px;
        height: 66px;
    }
    .brand img {
        width: 106px;
        height: 66px;
    }
    .menu-toggle { display: block; grid-column: 2; grid-row: 1; }
    .header-lang { display: none; }
    .nav {
        position: fixed;
        top: 78px;
        left: 14px;
        right: 14px;
        display: grid;
        gap: 4px;
        padding: 14px;
        border: 1px solid rgba(244, 237, 220, .2);
        border-radius: 8px;
        background: rgba(15, 24, 12, .94);
        backdrop-filter: blur(18px);
        box-shadow: 0 26px 60px rgba(0,0,0,.28);
        opacity: 0;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity .25s, transform .25s;
    }
    .menu-open .nav {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .nav a {
        display: flex;
        align-items: center;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 8px;
        background: rgba(255,255,255,.04);
        opacity: 1;
    }
    .nav-lang { display: flex; justify-content: center; width: 100%; border-color: rgba(216,170,69,.55); color: var(--gold); }
    .hero {
        min-height: 82svh;
        align-items: end;
        padding: 116px 18px 28px;
    }
    .hero-bg img {
        object-position: 64% center;
        transform: scale(1.02);
    }
    .hero-shade {
        background:
            linear-gradient(180deg, rgba(12, 20, 9, .38), rgba(12, 20, 9, .22) 26%, rgba(12, 20, 9, .9) 74%, rgba(12, 20, 9, .98)),
            linear-gradient(90deg, rgba(12, 20, 9, .75), transparent 62%);
    }
    .hero-copy {
        max-width: 100%;
        padding-top: 22vh;
    }
    .hero .eyebrow { font-size: .75rem; margin-bottom: 10px; }
    .hero h1 {
        font-size: clamp(2.9rem, 14vw, 4.7rem);
        max-width: 96%;
    }
    .lead {
        font-size: 1rem;
        line-height: 1.55;
        max-width: 94%;
        margin: 14px 0 0;
    }
    .hero-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-top: 20px;
    }
    .btn {
        min-height: 52px;
        padding: 0 14px;
        font-size: .92rem;
    }
    .hero-products { display: none; }
    .section-head, .product-grid, .quality { grid-template-columns: 1fr; }
    .section { padding: 58px 16px; }
    .products-section { padding-top: 36px; }
    .section-head { gap: 12px; margin-bottom: 24px; }
    .section-head h2, .story h2, .contact h2 { font-size: clamp(2rem, 10vw, 3.2rem); }
    .products-section .section-head {
        margin-bottom: 28px;
        gap: 10px;
        align-items: start;
    }
    .rtl .products-section .section-head {
        align-items: end;
    }
    .products-section .section-head h2 {
        font-size: clamp(1.95rem, 8.4vw, 2.9rem);
        line-height: 1.22;
    }
    .category-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .rtl .category-head {
        align-items: flex-end;
    }
    .category-more-card {
        min-height: 280px;
    }
    .product-grid { gap: 16px; }
    .product-card {
        min-height: auto;
        padding: 14px;
        gap: 12px;
    }
    .product-card img {
        height: 310px;
        width: 100%;
    }
    .product-card div {
        min-height: 175px;
        padding: 18px;
        gap: 8px 12px;
    }
    .product-card p,
    .product-card h3 { text-align: center; }
    .product-card h3 { font-size: clamp(1.9rem, 10vw, 2.8rem); }
    .card-more {
        min-height: 40px;
        padding: 0 14px;
        font-size: .9rem;
    }
    .story { padding: 58px 16px; gap: 24px; }
    .story-media img { height: 360px; }
    .page-hero { min-height: 58vh; padding: 120px 18px 44px; }
    .story-page, .story-values { grid-template-columns: 1fr; }
    .field-row { grid-template-columns: 1fr; }
    .contact { padding: 58px 16px; gap: 22px; }
    .contact-form input, .contact-form textarea { min-height: 54px; }
    .footer { flex-direction: column; }
    .product-detail {
        min-height: auto;
        padding: 44px 16px;
        gap: 18px;
    }
    .detail-media img { max-height: 52vh; }
    .detail-copy h1 { font-size: clamp(3rem, 16vw, 4.7rem); }
    .specs span { padding: 10px 12px; font-size: .9rem; }
}
@media (max-width: 410px) {
    .hero-actions { grid-template-columns: 1fr; }
    .hero-copy { padding-top: 20vh; }
    .hero h1 { font-size: clamp(2.55rem, 13vw, 3.5rem); }
}
@media (max-width: 560px) {
    .product-modal { padding: 8px; align-items: end; }
    .modal-panel {
        max-height: calc(100svh - 16px);
        padding: 18px;
    }
    .modal-top {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .modal-image {
        width: min(220px, 72%);
        margin: 0 auto;
        max-height: 190px;
    }
    .nutrition-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .nutrition-card { padding: 12px; }
    .modal-actions {
        position: sticky;
        bottom: -18px;
        margin-inline: -18px;
        padding: 14px 18px 0;
        background: linear-gradient(180deg, rgba(246,237,215,0), #f6edd7 34%);
    }
}
