:root{
    --agro-green:#143d2b;
    --agro-green-2:#287a4b;
    --agro-gold:#c69a45;
    --agro-cream:#f7f3e8;
    --agro-white:#ffffff;
    --agro-text:#243129;
    --agro-muted:#69766e;
    --agro-border:#dfe5df;
    --agro-max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:Arial,Helvetica,sans-serif;
    background:var(--agro-white);
    color:var(--agro-text);
    line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;height:auto}
.agro-container{width:min(calc(100% - 40px),var(--agro-max));margin:auto}

.agro-topbar{
    background:var(--agro-green);
    color:#fff;
    font-size:13px;
}
.agro-topbar-inner{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}
.agro-header{
    background:#fff;
    border-bottom:1px solid var(--agro-border);
}
.agro-header-inner{
    min-height:82px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}
.agro-brand strong{
    display:block;
    color:var(--agro-green);
    font-family:Georgia,"Times New Roman",serif;
    font-size:27px;
    letter-spacing:.06em;
}
.agro-brand small{
    display:block;
    color:var(--agro-gold);
    font-size:11px;
    letter-spacing:.13em;
    text-transform:uppercase;
}
.agro-nav{
    display:flex;
    align-items:center;
    gap:24px;
    font-size:14px;
    font-weight:700;
}
.agro-nav a:hover{color:var(--agro-green-2)}
.agro-lang{
    display:flex;
    align-items:center;
    gap:7px;
    font-size:12px;
}
.agro-lang a{
    padding:4px 6px;
    border-radius:4px;
}
.agro-lang a.is-active{
    background:var(--agro-green);
    color:#fff;
}

main{min-height:60vh}

.agro-footer{
    margin-top:80px;
    background:var(--agro-green);
    color:#fff;
}
.agro-footer-main{
    padding:46px 0 34px;
    display:grid;
    grid-template-columns:1.4fr 1fr;
    gap:60px;
}
.agro-footer h3{
    margin:0 0 8px;
    font-family:Georgia,"Times New Roman",serif;
    font-size:25px;
}
.agro-footer p{
    margin:5px 0;
    color:rgba(255,255,255,.78);
}
.agro-footer a{color:#fff}
.agro-footer-legal{
    padding:15px 0;
    border-top:1px solid rgba(255,255,255,.15);
    font-size:12px;
    color:rgba(255,255,255,.68);
}
.agro-gold{color:var(--agro-gold)}

html[dir="rtl"] body{text-align:right}

@media(max-width:760px){
    .agro-topbar-inner,
    .agro-header-inner{
        align-items:flex-start;
        flex-direction:column;
        padding-top:12px;
        padding-bottom:12px;
    }
    .agro-nav{flex-wrap:wrap;gap:14px}
    .agro-footer-main{grid-template-columns:1fr;gap:25px}
}

/* === PRODUCT PREVIEW v0.1.15 === */

.product-hero{
    padding:78px 0 70px;
    background:
        radial-gradient(circle at 80% 20%,rgba(198,154,69,.16),transparent 32%),
        linear-gradient(135deg,#102f22,#174a34);
    color:#fff;
}
.product-hero p:first-child{
    margin:0 0 14px;
    color:var(--agro-gold);
    font-size:12px;
    letter-spacing:.16em;
    text-transform:uppercase;
}
.product-hero h1{
    max-width:780px;
    margin:0 0 16px;
    font:700 clamp(42px,6vw,72px)/1.02 Georgia,"Times New Roman",serif;
}
.product-hero>div>p:not(:first-child){
    max-width:720px;
    font-size:19px;
    color:rgba(255,255,255,.82);
}
.product-status{
    max-width:850px;
    margin-top:32px;
    padding:15px 18px;
    border:1px solid rgba(198,154,69,.45);
    background:rgba(255,255,255,.06);
    font-size:13px;
    color:#f3e2bd;
}

.product-summary{
    background:var(--agro-cream);
    padding:30px 0;
}
.product-spec-grid,
.packing-grid,
.season-grid{
    display:grid;
    gap:16px;
}
.product-spec-grid{grid-template-columns:repeat(3,1fr)}
.product-spec-grid article,
.packing-grid article,
.season-grid article{
    background:#fff;
    border:1px solid var(--agro-border);
    border-radius:10px;
    padding:20px;
}
.product-spec-grid small,
.packing-grid small{
    display:block;
    margin-bottom:6px;
    color:var(--agro-muted);
    font-size:11px;
    font-weight:700;
    letter-spacing:.1em;
    text-transform:uppercase;
}
.product-spec-grid strong,
.packing-grid strong{
    color:var(--agro-green);
    font-size:17px;
}

.product-details{padding:62px 0 10px}
.product-detail-block{
    padding:34px 0;
    border-bottom:1px solid var(--agro-border);
}
.product-detail-block h2,
.product-legal h2{
    margin:0 0 20px;
    color:var(--agro-green);
    font:700 30px/1.15 Georgia,"Times New Roman",serif;
}
.season-grid{grid-template-columns:repeat(3,1fr)}
.season-grid article strong{
    display:block;
    color:var(--agro-green);
    font-size:18px;
}
.season-grid article span{
    display:block;
    margin-top:5px;
    color:var(--agro-muted);
}
.packing-grid{grid-template-columns:repeat(4,1fr)}

.product-legal{
    margin-top:42px;
    padding:28px;
    background:var(--agro-cream);
    border-left:4px solid var(--agro-gold);
}
html[dir="rtl"] .product-legal{
    border-left:0;
    border-right:4px solid var(--agro-gold);
}

@media(max-width:800px){
    .product-hero{padding:54px 0}
    .product-spec-grid,
    .season-grid,
    .packing-grid{grid-template-columns:1fr}
}
