:root{
  --green:#198b2f;
  --green-dark:#0f6d22;
  --green-soft:#edf8ef;
  --ink:#17212b;
  --muted:#6f7a83;
  --line:#e8ece9;
  --surface:#fff;
  --shadow:0 18px 50px rgba(31,67,42,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--ink);
  background:#f8faf8;
}
button,input{font:inherit}
button{cursor:pointer}
a{text-decoration:none;color:inherit}
.page-shell{max-width:1500px;margin:0 auto;background:#fff;min-height:100vh}
.site-header{
  height:84px;display:flex;align-items:center;justify-content:space-between;
  padding:0 5vw;border-bottom:1px solid rgba(232,236,233,.7);position:sticky;top:0;
  z-index:20;background:rgba(255,255,255,.94);backdrop-filter:blur(18px)
}
.brand{display:flex;align-items:center;gap:10px}
.brand-mark{font-size:38px;font-weight:800;color:var(--green);letter-spacing:-3px}
.brand-leaf{font-size:30px;color:var(--green);transform:rotate(-18deg)}
.brand-copy{font-size:12px;font-weight:600;line-height:1.4}
.desktop-nav{display:flex;gap:34px;font-size:14px;font-weight:600}
.desktop-nav a:hover{color:var(--green)}
.header-actions{display:flex;gap:12px}
.ghost-button,.cart-button{
  border:1px solid var(--line);background:#fff;border-radius:999px;padding:12px 18px;font-weight:600
}
.cart-button{border-color:#9ed4a8;color:var(--green-dark)}
.cart-count{
  display:inline-grid;place-items:center;width:24px;height:24px;margin-left:8px;border-radius:50%;
  background:var(--green);color:#fff;font-size:12px
}
.hero{
  position:relative;overflow:hidden;min-height:560px;display:grid;place-items:center;
  padding:70px 5vw;background:
    radial-gradient(circle at 50% 45%,rgba(210,244,217,.65),transparent 28%),
    linear-gradient(#fff,#fbfdfb)
}
.hero-content{width:min(920px,100%);text-align:center;position:relative;z-index:2}
.eyebrow{text-transform:uppercase;letter-spacing:.16em;font-size:12px;font-weight:700;color:var(--green);margin:0 0 12px}
h1{font-size:clamp(42px,6vw,76px);line-height:1.02;letter-spacing:-.055em;margin:0}
h1 span{color:var(--green)}
.hero-subtitle{max-width:650px;margin:22px auto 34px;color:var(--muted);font-size:17px;line-height:1.6}
.search-wrap{
  position:relative;display:flex;align-items:center;gap:10px;background:#fff;border:1.5px solid #66b875;
  border-radius:999px;padding:10px 12px 10px 20px;box-shadow:0 14px 36px rgba(25,139,47,.14)
}
.search-wrap input{flex:1;border:0;outline:0;font-size:17px;background:transparent;min-width:0}
.search-icon{font-size:28px;color:#a26a14}
.voice-button,.search-button{border:0;border-radius:999px}
.voice-button{width:44px;height:44px;background:#f2f7f3;color:var(--green)}
.search-button{padding:14px 24px;background:var(--green);color:#fff;font-weight:700}
.search-button:hover,.checkout-button:hover{background:var(--green-dark)}
.search-suggestions{
  position:absolute;left:0;right:0;top:calc(100% + 10px);background:#fff;border:1px solid var(--line);
  border-radius:24px;box-shadow:var(--shadow);padding:12px;text-align:left;z-index:30
}
.suggestion{
  display:flex;justify-content:space-between;align-items:center;width:100%;border:0;background:#fff;padding:14px 16px;border-radius:14px
}
.suggestion:hover{background:var(--green-soft)}
.suggestion small{color:var(--muted)}
.quick-searches{display:flex;justify-content:center;gap:10px;align-items:center;flex-wrap:wrap;margin-top:20px;font-size:13px}
.quick-searches span{font-weight:600}
.quick-searches button{
  border:1px solid #dbe9de;background:#f6fbf7;border-radius:999px;padding:8px 14px;color:var(--green-dark)
}
.floating-produce{position:absolute;font-size:78px;line-height:1.2;filter:drop-shadow(0 18px 24px rgba(0,0,0,.12));opacity:.94}
.produce-left{left:-15px;bottom:60px;transform:rotate(-10deg)}
.produce-right{right:-10px;top:110px;transform:rotate(9deg)}
.section{padding:72px 5vw}
.section-heading{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:28px}
h2{font-size:clamp(30px,4vw,48px);letter-spacing:-.04em;margin:0}
.text-button{border:0;background:transparent;color:var(--green);font-weight:700}
.category-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:16px}
.category-card{
  text-align:left;border:1px solid var(--line);background:#fff;border-radius:24px;padding:0 0 18px;overflow:hidden;
  transition:.25s;box-shadow:0 8px 24px rgba(22,50,30,.04)
}
.category-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);border-color:#cfe7d4}
.category-art{display:grid;place-items:center;height:150px;font-size:48px}
.art-green{background:linear-gradient(135deg,#eef9ef,#d8f0dc)}
.art-yellow{background:linear-gradient(135deg,#fff8e8,#ffedbc)}
.art-red{background:linear-gradient(135deg,#fff1ef,#ffd8d2)}
.art-blue{background:linear-gradient(135deg,#eff8ff,#d9ecff)}
.art-milk{background:linear-gradient(135deg,#f7f7ff,#ececff)}
.art-bread{background:linear-gradient(135deg,#fff8ee,#f7e5c8)}
.category-name,.category-count{display:block;padding:0 16px}
.category-name{font-weight:700;margin-top:14px}
.category-count{font-size:12px;color:var(--muted);margin-top:6px}
.product-filters{display:flex;gap:8px;flex-wrap:wrap}
.filter{border:1px solid var(--line);background:#fff;padding:9px 14px;border-radius:999px}
.filter.active{background:var(--green);color:#fff;border-color:var(--green)}
.product-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.product-card{
  position:relative;border:1px solid var(--line);border-radius:24px;background:#fff;padding:14px;
  display:flex;flex-direction:column;min-height:385px;transition:.25s
}
.product-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.product-visual{
  height:190px;border-radius:18px;display:grid;place-items:center;font-size:80px;
  background:linear-gradient(145deg,#fafafa,#f0f4f0)
}
.product-card h3{font-size:17px;margin:16px 0 8px}
.rating{font-size:12px;color:#d88a00}
.meta{color:var(--muted);font-size:12px;margin-top:6px}
.bulk-price{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin-top:14px;padding:11px 12px;border-radius:15px;
  background:#f0f8f2;border:1px solid #d8eadc
}
.bulk-price-label{display:block;color:var(--muted);font-size:11px;margin-bottom:3px}
.bulk-price strong{display:block;color:var(--green-dark);font-size:17px;line-height:1.1}
.bulk-price strong small{font-size:11px;font-weight:600;color:#5f7464}
.bulk-badge{
  flex:0 0 auto;padding:5px 8px;border-radius:999px;background:#dff2e3;
  color:var(--green-dark);font-size:10px;font-weight:800;text-transform:uppercase;letter-spacing:.04em
}
.price-row{display:flex;justify-content:space-between;align-items:center;margin-top:auto;padding-top:16px}
.price{font-size:20px;font-weight:800}
.add-button{
  border:0;background:var(--green);color:#fff;border-radius:999px;padding:11px 15px;font-weight:700
}
.add-button:hover{background:var(--green-dark)}
.favorite{position:absolute;right:24px;top:24px;border:0;background:rgba(255,255,255,.88);width:36px;height:36px;border-radius:50%}
.benefits{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;background:#fbfcfb}
.benefits article{display:flex;gap:14px;border:1px solid var(--line);border-radius:22px;padding:24px;background:#fff}
.benefit-icon{font-size:32px}
.benefits h3{margin:0 0 8px;font-size:16px}
.benefits p{margin:0;color:var(--muted);font-size:13px;line-height:1.5}
.about-section{display:grid;grid-template-columns:1.1fr .9fr;gap:50px;align-items:center}
.about-copy>p:not(.eyebrow){font-size:17px;line-height:1.7;color:var(--muted);max-width:700px}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:30px}
.stats div{padding:20px;border:1px solid var(--line);border-radius:18px}
.stats strong,.stats span{display:block}
.stats strong{font-size:26px}
.stats span{font-size:12px;color:var(--muted);margin-top:6px}
.about-card{min-height:420px;border-radius:36px;background:linear-gradient(145deg,#eff9f1,#dff2e3);display:grid;place-items:center}
.about-orbit{position:relative;width:290px;height:290px;border:1px dashed #82c58e;border-radius:50%}
.about-orbit>span{position:absolute;font-size:46px}
.about-orbit>span:nth-child(1){left:10px;top:50px}
.about-orbit>span:nth-child(2){right:24px;top:22px}
.about-orbit>span:nth-child(3){right:0;bottom:48px}
.about-orbit>span:nth-child(4){left:40px;bottom:10px}
.about-center{
  position:absolute;inset:50%;transform:translate(-50%,-50%);width:120px;height:120px;border-radius:50%;
  background:#fff;display:grid;place-items:center;font-size:42px;font-weight:800;color:var(--green);box-shadow:var(--shadow)
}
footer{
  display:grid;grid-template-columns:2fr repeat(3,1fr);gap:40px;padding:60px 5vw;background:#122016;color:#fff
}
footer h4{margin:0 0 16px}
footer a,footer p{display:block;color:#b8c5bb;font-size:14px;margin:10px 0}
.footer-brand .brand-copy{color:#fff}
.drawer-backdrop{position:fixed;inset:0;background:rgba(11,26,16,.35);opacity:0;pointer-events:none;transition:.25s;z-index:40}
.drawer-backdrop.open{opacity:1;pointer-events:auto}
.cart-drawer{
  position:fixed;right:0;top:0;bottom:0;width:min(460px,100%);background:#fff;z-index:50;
  transform:translateX(100%);transition:.28s;display:flex;flex-direction:column;padding:26px
}
.cart-drawer.open{transform:translateX(0)}
.drawer-header{display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid var(--line);padding-bottom:18px}
.close-button{border:0;background:#f1f4f1;width:42px;height:42px;border-radius:50%;font-size:24px}
.cart-items{overflow:auto;display:grid;gap:12px;padding:18px 0}
.cart-item{display:grid;grid-template-columns:56px 1fr auto;gap:12px;align-items:center;border:1px solid var(--line);border-radius:16px;padding:10px}
.cart-item-visual{width:56px;height:56px;border-radius:12px;background:#f3f6f3;display:grid;place-items:center;font-size:28px}
.cart-item h4{margin:0 0 6px;font-size:14px}
.cart-item-main{min-width:0}
.cart-item.bulk-active{border-color:#b9ddc0;background:#fbfefb}
.cart-line-total{text-align:right;align-self:start;padding-top:2px}
.cart-line-total strong,.cart-line-total small{display:block}
.cart-line-total small{margin-top:4px;color:var(--green-dark);font-size:11px}
.cart-bulk-hint,.cart-bulk-applied{margin-top:8px;font-size:11px;line-height:1.35}
.cart-bulk-hint{color:var(--muted)}
.cart-bulk-applied{color:var(--green-dark);font-weight:700}
.cart-savings{margin-top:5px;color:var(--green-dark);font-size:10px;font-weight:800}
.quantity{display:flex;align-items:center;gap:8px}
.quantity button{border:1px solid var(--line);background:#fff;width:28px;height:28px;border-radius:50%}
.cart-empty{text-align:center;margin:auto;color:var(--muted)}
.cart-empty span{font-size:48px}
.cart-empty h3{color:var(--ink)}
.cart-footer{margin-top:auto;border-top:1px solid var(--line);padding-top:18px}
.cart-total{display:flex;justify-content:space-between;font-size:20px;margin-bottom:14px}
.checkout-button{width:100%;border:0;background:var(--green);color:#fff;padding:16px;border-radius:16px;font-weight:800}
.toast{
  position:fixed;left:50%;bottom:28px;transform:translate(-50%,20px);background:#122016;color:#fff;
  padding:12px 18px;border-radius:999px;opacity:0;pointer-events:none;transition:.25s;z-index:70
}
.toast.show{opacity:1;transform:translate(-50%,0)}
@media(max-width:1100px){
  .category-grid{grid-template-columns:repeat(3,1fr)}
  .product-grid{grid-template-columns:repeat(3,1fr)}
  .benefits{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:780px){
  .site-header{height:72px;padding:0 18px}
  .desktop-nav,.ghost-button,.brand-copy{display:none}
  .brand-mark{font-size:32px}
  .cart-button{padding:10px 14px}
  .hero{min-height:520px;padding:54px 18px}
  .floating-produce{font-size:54px;opacity:.5}
  .search-wrap{border-radius:24px;align-items:stretch;flex-wrap:wrap}
  .search-wrap input{width:calc(100% - 70px);min-height:44px}
  .search-button{width:100%}
  .quick-searches{justify-content:flex-start}
  .section{padding:54px 18px}
  .section-heading{align-items:flex-start;flex-direction:column}
  .category-grid{grid-template-columns:repeat(2,1fr)}
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .product-card{min-height:340px}
  .product-visual{height:150px;font-size:62px}
  .benefits{grid-template-columns:1fr}
  .about-section{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  footer{grid-template-columns:1fr 1fr;padding:48px 18px}
}
@media(max-width:520px){
  h1{font-size:42px}
  .hero-subtitle{font-size:15px}
  .category-grid,.product-grid{grid-template-columns:1fr}
  .category-art{height:180px}
  footer{grid-template-columns:1fr}
}

/* Кириллическая айдентика */
.brand-copy{
  max-width:165px;
  font-size:12px;
  line-height:1.25;
  text-transform:lowercase;
  color:#556159;
}
.footer-brand .brand-copy{
  color:#dce5de;
}



/* API-ready product images and service states */
.product-visual{
  overflow:hidden;
}
.product-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.catalog-status{
  grid-column:1/-1;
  padding:36px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  text-align:center;
  color:var(--muted);
}
.catalog-status strong{
  display:block;
  margin-bottom:8px;
  color:var(--ink);
}
.api-badge{
  display:inline-flex;
  align-items:center;
  gap:7px;
  font-size:12px;
  color:var(--muted);
}
.api-badge::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#6fa97a;
}

/* Product modal */
body.modal-open{overflow:hidden}
.product-modal-backdrop{position:fixed;inset:0;background:rgba(8,24,13,.56);backdrop-filter:blur(7px);opacity:0;pointer-events:none;transition:.25s;z-index:80}
.product-modal-backdrop.open{opacity:1;pointer-events:auto}
.product-modal{position:fixed;left:50%;top:50%;width:min(1040px,calc(100% - 32px));max-height:calc(100vh - 32px);overflow:auto;background:#fff;border-radius:30px;box-shadow:0 30px 100px rgba(10,35,17,.28);transform:translate(-50%,-47%) scale(.97);opacity:0;pointer-events:none;transition:.28s;z-index:90}
.product-modal.open{opacity:1;pointer-events:auto;transform:translate(-50%,-50%) scale(1)}
.product-modal-close{position:absolute;right:18px;top:18px;width:44px;height:44px;border:0;border-radius:50%;background:rgba(255,255,255,.94);font-size:28px;z-index:3;box-shadow:0 8px 24px rgba(0,0,0,.08)}
.product-modal-layout{display:grid;grid-template-columns:1fr 1fr;min-height:620px}
.product-modal-gallery{padding:28px;background:linear-gradient(145deg,#f6faf6,#edf5ee);border-radius:30px 0 0 30px}
.product-modal-main-visual{height:480px;border-radius:24px;background:#fff;display:grid;place-items:center;font-size:180px;overflow:hidden}
.product-modal-main-visual img,.product-modal-thumb img{width:100%;height:100%;object-fit:cover}
.product-modal-thumbs{display:flex;gap:10px;margin-top:14px}
.product-modal-thumb{width:72px;height:72px;border:2px solid transparent;border-radius:14px;background:#fff;display:grid;place-items:center;font-size:34px;overflow:hidden}
.product-modal-thumb.active{border-color:var(--green)}
.product-modal-info{padding:48px 42px 36px}
.product-modal-info h2{font-size:36px;line-height:1.05;margin:8px 0 10px}
.modal-rating{font-size:14px;color:#d88a00;margin-bottom:18px}
.modal-description{color:var(--muted);line-height:1.65;margin:0 0 24px}
.modal-price-panel{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:24px}
.modal-price-panel>div{border:1px solid var(--line);border-radius:18px;padding:16px}
.modal-price-label{display:block;color:var(--muted);font-size:12px;margin-bottom:7px}
.modal-price-panel strong{font-size:25px}
.modal-bulk-price{background:#eff8f1;border-color:#cfe6d4!important;position:relative}
.modal-bulk-price strong{color:var(--green-dark)}
.modal-bulk-price>span:last-child{position:absolute;right:12px;top:12px;background:#dff2e3;color:var(--green-dark);font-size:10px;font-weight:800;padding:5px 8px;border-radius:999px;text-transform:uppercase}
.modal-quantity-block{display:grid;grid-template-columns:1fr auto;gap:18px;align-items:end;border-top:1px solid var(--line);padding-top:22px}
.modal-quantity-control{display:flex;align-items:center;gap:14px}
.modal-quantity-control button{width:40px;height:40px;border:1px solid var(--line);border-radius:50%;background:#fff;font-size:20px}
.modal-quantity-control strong{min-width:46px;text-align:center;font-size:20px}
.modal-total-block{text-align:right}
.modal-total-block strong{font-size:30px}
.modal-progress{margin-top:18px;color:var(--muted);font-size:13px;background:#f5f7f5;border-radius:14px;padding:12px 14px}
.modal-progress.applied{background:#eff8f1;color:var(--green-dark);font-weight:700}
.modal-savings{min-height:24px;margin-top:8px;color:var(--green-dark);font-weight:800;font-size:13px}
.modal-add-button{width:100%;border:0;border-radius:16px;background:var(--green);color:#fff;padding:16px;font-weight:800;font-size:16px;margin-top:10px}
.modal-add-button:hover{background:var(--green-dark)}
.modal-benefits{display:grid;gap:10px;margin-top:20px}
.modal-benefits>div{display:flex;gap:12px;align-items:flex-start;padding:12px 0;border-top:1px solid var(--line)}
.modal-benefits span{font-size:22px}.modal-benefits p{margin:0;color:var(--muted);font-size:12px;line-height:1.5}.modal-benefits strong{color:var(--ink)}
.product-card{cursor:pointer}
.product-card-actions{display:flex;gap:8px;align-items:center;margin-top:auto;padding-top:16px}
.details-button{border:1px solid var(--line);background:#fff;border-radius:999px;padding:10px 13px;font-weight:700}
.product-card .price-row{margin-top:0;padding-top:0;gap:10px}
@media(max-width:780px){
  .product-modal{width:min(100% - 16px,680px);max-height:calc(100vh - 16px);border-radius:22px}
  .product-modal-layout{grid-template-columns:1fr}
  .product-modal-gallery{border-radius:22px 22px 0 0;padding:18px}
  .product-modal-main-visual{height:300px;font-size:110px}
  .product-modal-info{padding:28px 20px 24px}
  .product-modal-info h2{font-size:30px}
}
@media(max-width:520px){
  .modal-price-panel{grid-template-columns:1fr}
  .modal-quantity-block{grid-template-columns:1fr}
  .modal-total-block{text-align:left}
  .product-card-actions{align-items:stretch;flex-direction:column}
  .product-card .price-row{width:100%}
  .product-card .add-button{flex:1}
}

/* Checkout */
.checkout-backdrop{position:fixed;inset:0;background:rgba(8,24,13,.56);backdrop-filter:blur(6px);opacity:0;pointer-events:none;transition:.25s;z-index:95}
.checkout-backdrop.open{opacity:1;pointer-events:auto}
.checkout-modal{position:fixed;left:50%;top:50%;width:min(1080px,calc(100% - 32px));max-height:calc(100vh - 32px);overflow:auto;background:#fff;border-radius:28px;box-shadow:0 30px 100px rgba(10,35,17,.3);transform:translate(-50%,-47%) scale(.98);opacity:0;pointer-events:none;transition:.28s;z-index:100}
.checkout-modal.open{opacity:1;pointer-events:auto;transform:translate(-50%,-50%) scale(1)}
.checkout-header{display:flex;justify-content:space-between;align-items:center;padding:28px 32px;border-bottom:1px solid var(--line)}
.checkout-header h2{margin:4px 0 0}
.checkout-layout{display:grid;grid-template-columns:1.35fr .85fr;gap:0}
.checkout-form{display:grid;grid-template-columns:1fr 1fr;gap:18px;padding:30px 32px 34px}
.checkout-form>label,.payment-choice{display:block}
.checkout-form label>span,.payment-choice>span{display:block;font-size:13px;font-weight:700;margin-bottom:8px;color:var(--ink)}
.checkout-form input,.checkout-form select,.checkout-form textarea{width:100%;border:1px solid var(--line);border-radius:14px;padding:13px 14px;font:inherit;background:#fff;outline:none;transition:.2s}
.checkout-form input:focus,.checkout-form select:focus,.checkout-form textarea:focus{border-color:var(--green);box-shadow:0 0 0 3px rgba(45,126,65,.1)}
.checkout-form .invalid{border-color:#c84b4b}
.full-field{grid-column:1/-1}
.field-error{display:block;min-height:16px;margin-top:5px;color:#b33;font-size:11px}
.payment-choice{border:1px solid var(--line);border-radius:16px;padding:14px}
.payment-choice label{display:inline-flex;align-items:center;gap:8px;margin-right:20px;font-size:13px}
.payment-choice input{width:auto}
.checkout-consent{display:flex!important;gap:10px;align-items:flex-start}
.checkout-consent input{width:auto;margin-top:3px}
.checkout-consent span{margin:0!important;font-weight:500!important;color:var(--muted)!important}
.checkout-submit{border:0;background:var(--green);color:#fff;padding:16px;border-radius:16px;font-weight:800;font-size:16px}
.checkout-submit:disabled{opacity:.65;cursor:not-allowed}
.checkout-summary{background:#f7faf7;padding:30px 28px;border-radius:0 0 28px 0}
.checkout-summary h3{margin-top:0}
.checkout-items{display:grid;gap:10px;max-height:320px;overflow:auto;margin-bottom:18px}
.checkout-item{display:grid;grid-template-columns:44px 1fr auto;gap:10px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:14px;padding:9px}
.checkout-item-visual{width:44px;height:44px;border-radius:10px;background:#eef4ef;display:grid;place-items:center;font-size:22px;overflow:hidden}
.checkout-item-visual img{width:100%;height:100%;object-fit:cover}
.checkout-item h4{margin:0 0 3px;font-size:13px}
.checkout-item small{color:var(--muted)}
.checkout-summary-row{display:flex;justify-content:space-between;padding:11px 0;border-top:1px solid var(--line)}
.checkout-summary-row.total{font-size:20px;padding-top:16px}
.checkout-note{font-size:12px;color:var(--muted);line-height:1.5;margin:16px 0 0}
@media(max-width:820px){.checkout-layout{grid-template-columns:1fr}.checkout-summary{border-radius:0 0 28px 28px}.checkout-form{grid-template-columns:1fr}.full-field{grid-column:auto}}
@media(max-width:520px){.checkout-modal{width:calc(100% - 12px);max-height:calc(100vh - 12px);border-radius:20px}.checkout-header{padding:20px}.checkout-form,.checkout-summary{padding:22px 18px}.payment-choice label{display:flex;margin:10px 0 0}}

.saved-customer-options{display:flex;justify-content:space-between;gap:16px;align-items:center;border:1px solid var(--line);border-radius:16px;padding:14px;background:#f8faf8}
.remember-customer{display:flex!important;align-items:flex-start;gap:10px;margin:0}
.remember-customer input{width:auto!important;margin-top:3px}
.remember-customer span{margin:0!important;font-weight:600!important;color:var(--ink)!important}
.clear-customer-data{border:0;background:transparent;color:var(--green-dark);font-weight:700;font-size:12px;padding:6px;white-space:nowrap}
.clear-customer-data:hover{text-decoration:underline}
@media(max-width:620px){.saved-customer-options{align-items:flex-start;flex-direction:column}.clear-customer-data{padding-left:26px}}

/* Delivery slot picker */
.delivery-slot-field{min-width:0}
.delivery-slot-heading{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:10px}
.delivery-slot-heading>span{font-size:13px;font-weight:700;color:var(--ink)}
.delivery-slot-heading small{font-size:12px;color:var(--muted);text-align:right}
.delivery-slots{display:flex;gap:10px;overflow-x:auto;padding:2px 2px 10px;scroll-snap-type:x proximity;scrollbar-width:thin}
.delivery-slot{flex:0 0 auto;min-width:128px;border:1px solid var(--line);border-radius:14px;background:#fff;padding:12px 14px;font:inherit;font-weight:700;color:var(--ink);cursor:pointer;scroll-snap-align:start;transition:.2s}
.delivery-slot:hover:not(:disabled){border-color:var(--green);transform:translateY(-1px)}
.delivery-slot.selected{border-color:var(--green);background:rgba(45,126,65,.09);box-shadow:0 0 0 3px rgba(45,126,65,.09);color:var(--green)}
.delivery-slot:disabled{cursor:not-allowed;background:#f3f4f3;color:#a5aaa6;text-decoration:line-through;opacity:.85}
.delivery-slot .slot-status{display:block;margin-top:3px;font-size:11px;font-weight:600;text-decoration:none}
.delivery-slot.selected .slot-status{color:var(--green)}
.delivery-slots-note{margin:2px 0 0;font-size:12px;color:var(--muted)}
.delivery-slots-note.warning{color:#a45e12}
@media(max-width:520px){.delivery-slot-heading{display:block}.delivery-slot-heading small{display:block;text-align:left;margin-top:4px}.delivery-slot{min-width:118px}}

/* === Reference reconstruction === */
body{background:#fff;color:#111c2d}.page-shell{max-width:none}.site-header{height:82px;padding:0 34px;display:flex;align-items:center;gap:20px;border-bottom:1px solid #edf0f2;background:#fff;position:sticky;top:0;z-index:50}.ref-brand{min-width:72px}.ref-brand .brand-mark{font-size:48px;line-height:1;color:#087d36;font-weight:800;letter-spacing:-5px}.catalog-button{height:44px;border:0;border-radius:10px;background:#07823a;color:#fff;padding:0 20px;font-weight:600;font-size:14px;display:flex;gap:10px;align-items:center}.menu-icon{font-size:20px}.header-search{height:44px;max-width:460px;flex:1;border:1px solid #dce2e7;border-radius:10px;display:flex;align-items:center;padding:0 15px;gap:10px}.header-search input{border:0;outline:0;width:100%;font:inherit}.header-spacer{flex:1}.login-button,.ref-cart{border:0;background:transparent;color:#111c2d;height:44px;display:flex;align-items:center;gap:8px;font-weight:500}.ref-cart{position:relative}.ref-cart .cart-count{position:absolute;right:-7px;top:-1px;background:#087d36;color:#fff;border-radius:50%;min-width:18px;height:18px;display:grid;place-items:center;font-size:10px}.ref-hero{min-height:582px;background:url('assets/hero-food.jpg') center/cover no-repeat;display:flex;align-items:center;justify-content:center;padding:64px 20px}.ref-hero::before{display:none}.ref-hero-content{text-align:center;max-width:640px;margin:auto}.ref-hero h1{font-size:54px;line-height:1.06;letter-spacing:-2.3px;margin:0;color:#111c2d;font-weight:800}.ref-hero h1 span{color:#111c2d}.ref-hero .hero-subtitle{font-size:22px;color:#07823a;margin:18px 0 28px}.ref-search-wrap{width:470px;max-width:90vw;height:54px;background:#fff;border-radius:12px;box-shadow:0 12px 30px rgba(12,26,43,.08);display:flex;align-items:center;margin:auto;padding:0 10px 0 17px}.ref-search-wrap input{border:0;outline:0;flex:1;font-size:14px}.ref-search-wrap .search-button{width:auto;height:38px;padding:0 17px;border-radius:8px}.ref-section{padding:34px 32px 12px;max-width:1180px;margin:auto}.ref-heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}.ref-heading h2{font-size:21px;margin:0}.text-button{background:transparent;border:0;color:#087d36;font-weight:600}.ref-category-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}.ref-category-card{display:block;text-align:left;background:#fff;border:1px solid #e6eaed;border-radius:12px;overflow:hidden;padding:0;box-shadow:0 4px 14px rgba(12,26,43,.04)}.ref-category-card img{width:100%;height:178px;object-fit:cover;display:block}.ref-category-card .category-name{display:block;color:#111c2d;font-weight:700;font-size:13px;padding:14px 13px 5px}.ref-category-card .category-count{display:block;color:#07823a;font-size:11px;padding:0 13px 15px}.ref-product-grid{display:grid;grid-template-columns:repeat(8,1fr);gap:10px}.ref-product-grid .product-card{min-width:0;border:1px solid #e6eaed;border-radius:12px;box-shadow:none;padding:0 0 12px;overflow:hidden;min-height:0;position:relative}.ref-product-grid .product-visual{height:145px;border-radius:0;background:#f7f8f8}.ref-product-grid .product-card h3{font-size:12px;line-height:1.3;margin:11px 10px 5px;min-height:31px}.ref-product-grid .rating,.ref-product-grid .bulk-price,.ref-product-grid .details-button{display:none}.ref-product-grid .meta{font-size:11px;margin:0 10px 14px;color:#7c8790}.ref-product-grid .product-card-actions{margin-top:auto}.ref-product-grid .price-row{display:flex;align-items:center;justify-content:space-between;padding:0 10px}.ref-product-grid .price{font-size:15px;color:#07823a;font-weight:800}.ref-product-grid .add-button{width:38px;height:32px;border-radius:9px;padding:0;font-size:0}.ref-product-grid .add-button::before{content:'🛒';font-size:15px;filter:grayscale(1) brightness(0) invert(1)}.ref-product-grid .favorite{display:none}.ref-benefits{max-width:1180px;margin:30px auto 40px;background:#f5faf6;border-radius:14px;padding:28px 22px;display:grid;grid-template-columns:repeat(4,1fr);gap:22px}.ref-benefits article{display:flex;gap:14px;align-items:flex-start}.ref-benefits .benefit-icon{width:48px;height:48px;border:1px solid #b9dbc5;border-radius:50%;display:grid;place-items:center;color:#07823a;font-size:25px;background:#fff;flex:0 0 auto}.ref-benefits h3{font-size:13px;margin:2px 0 7px}.ref-benefits p{font-size:11px;line-height:1.55;margin:0;color:#4d5a62}.about-section{max-width:1180px;margin:auto}.quick-searches,.voice-button{display:none!important}
@media(max-width:1000px){.header-search{display:none}.ref-category-grid{grid-template-columns:repeat(3,1fr)}.ref-product-grid{grid-template-columns:repeat(4,1fr)}.ref-benefits{grid-template-columns:repeat(2,1fr)}}
@media(max-width:650px){.site-header{padding:0 16px;gap:10px}.catalog-button{font-size:0;width:44px;padding:0;justify-content:center}.login-button{display:none}.ref-brand .brand-mark{font-size:38px}.ref-hero{min-height:520px;background-position:center}.ref-hero h1{font-size:39px}.ref-hero .hero-subtitle{font-size:18px}.ref-category-grid{grid-template-columns:repeat(2,1fr)}.ref-category-card img{height:155px}.ref-product-grid{grid-template-columns:repeat(2,1fr)}.ref-benefits{grid-template-columns:1fr}.ref-section{padding-left:16px;padding-right:16px}}

/* Fresh produce service redesign */
:root{--fresh-cream:#f6f3ea;--fresh-deep:#173c2b;--fresh-lime:#dff2cb;--fresh-orange:#f29d4b}
body{background:#f2f3ef}
.page-shell{max-width:1600px}
.site-header{height:80px;padding:0 clamp(20px,4vw,64px)}
.ref-brand .brand-mark{font-size:42px}
.catalog-button{background:var(--fresh-deep)!important;border-color:var(--fresh-deep)!important}
.header-search{max-width:560px}
.fresh-hero{min-height:650px;display:grid;grid-template-columns:1fr 1.05fr;gap:50px;align-items:center;padding:70px clamp(22px,5vw,80px);background:var(--fresh-cream);overflow:hidden}
.fresh-hero-copy{max-width:690px;position:relative;z-index:2}
.fresh-kicker{margin:0 0 16px;text-transform:uppercase;letter-spacing:.16em;font-size:12px;font-weight:800;color:#56825f}
.fresh-hero h1{font-size:clamp(54px,6vw,92px);line-height:.94;color:var(--fresh-deep);letter-spacing:-.065em}
.fresh-lead{font-size:clamp(17px,1.6vw,22px);line-height:1.55;color:#59645d;max-width:610px;margin:28px 0}
.fresh-actions{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-bottom:28px}
.fresh-primary,.fresh-secondary{border-radius:999px;padding:15px 24px;font-weight:800}
.fresh-primary{border:0;background:var(--fresh-deep);color:#fff}
.fresh-primary:hover{background:#0e2c1e}
.fresh-secondary{border:1px solid #c8cbbf;background:rgba(255,255,255,.5);color:var(--fresh-deep)}
.fresh-search{max-width:650px;border-color:#ccd4c8;box-shadow:none;border-radius:18px}
.fresh-hero-visual{position:relative;min-height:520px;border-radius:42px;overflow:visible;background:#eaf1df}
.fresh-hero-visual>img{width:100%;height:100%;min-height:520px;object-fit:cover;border-radius:42px;display:block}
.fresh-note{position:absolute;background:#fff;border:1px solid rgba(31,70,46,.1);box-shadow:0 18px 45px rgba(22,56,38,.16);border-radius:20px;padding:14px 18px;display:grid;gap:4px}
.fresh-note strong{font-size:14px;color:var(--fresh-deep)}
.fresh-note span{font-size:11px;color:#78817b}
.fresh-note-one{left:-30px;bottom:58px}.fresh-note-two{right:-20px;top:52px}
.fresh-section{padding:90px clamp(22px,5vw,80px)}
.fresh-section-head{display:flex;justify-content:space-between;gap:40px;align-items:end;margin-bottom:34px}
.fresh-section-head h2,.fresh-story h2,.fresh-cta h2{font-size:clamp(38px,4.5vw,64px);color:var(--fresh-deep);line-height:1;letter-spacing:-.055em}
.fresh-section-copy{max-width:420px;color:#737d76;line-height:1.55;margin:0}
.fresh-categories{background:#fff}
.fresh-category-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.fresh-category-card{position:relative;min-height:310px;border:0;border-radius:30px;overflow:hidden;padding:0;background:#eef1ea;text-align:left}
.fresh-category-wide{grid-column:span 2}
.fresh-category-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;transition:transform .4s}
.fresh-category-card:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(12,35,22,.78))}
.fresh-category-card:hover img{transform:scale(1.04)}
.fresh-category-card span{position:absolute;left:24px;right:24px;bottom:22px;z-index:2;color:#fff;display:grid;gap:6px}
.fresh-category-card strong{font-size:24px}.fresh-category-card small{font-size:13px;color:rgba(255,255,255,.8)}
.fresh-catalog{background:#f7f8f4}
.fresh-product-grid{grid-template-columns:repeat(4,1fr)}
.fresh-product-grid .product-card{border:0;border-radius:26px;box-shadow:0 10px 35px rgba(32,55,40,.06);min-height:410px}
.fresh-product-grid .product-visual{height:230px;background:#f1f2ee}
.fresh-product-grid .product-visual img{object-fit:contain;padding:14px}
.fresh-product-grid .favorite{display:none}
.fresh-story{display:grid;grid-template-columns:.9fr 1.1fr;gap:70px;align-items:center;padding:100px clamp(22px,5vw,80px);background:var(--fresh-deep);color:#fff}
.fresh-story-photo{height:650px;border-radius:36px;overflow:hidden}.fresh-story-photo img{width:100%;height:100%;object-fit:cover;display:block}
.fresh-story .fresh-kicker{color:#a8cf9d}.fresh-story h2{color:#fff}.fresh-story-copy>p:not(.fresh-kicker){font-size:19px;line-height:1.65;color:#d1ddd5;max-width:650px}
.fresh-points{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:38px}
.fresh-points article{display:flex;gap:14px;padding:20px;border:1px solid rgba(255,255,255,.14);border-radius:20px;background:rgba(255,255,255,.04)}
.fresh-points article>span{font-weight:800;color:#a8cf9d}.fresh-points strong{display:block;margin-bottom:6px}.fresh-points p{margin:0;color:#b9c9be;font-size:13px;line-height:1.5}
.fresh-cta{margin:24px clamp(22px,5vw,80px) 90px;padding:52px 58px;border-radius:34px;background:var(--fresh-lime);display:flex;justify-content:space-between;align-items:center;gap:30px}
.fresh-cta h2{margin-bottom:12px}.fresh-cta p:not(.fresh-kicker){margin:0;color:#53675a}
@media(max-width:1100px){.fresh-hero{grid-template-columns:1fr}.fresh-hero-visual{min-height:430px}.fresh-hero-visual>img{min-height:430px}.fresh-category-grid{grid-template-columns:repeat(2,1fr)}.fresh-category-wide{grid-column:span 2}.fresh-product-grid{grid-template-columns:repeat(3,1fr)}.fresh-story{grid-template-columns:1fr}.fresh-story-photo{height:500px}}
@media(max-width:780px){.fresh-hero{padding:48px 18px}.fresh-hero h1{font-size:54px}.fresh-hero-visual,.fresh-hero-visual>img{min-height:340px}.fresh-note-two{right:8px}.fresh-note-one{left:8px}.fresh-section{padding:64px 18px}.fresh-section-head{align-items:flex-start;flex-direction:column}.fresh-category-grid{grid-template-columns:1fr}.fresh-category-wide{grid-column:auto}.fresh-category-card{min-height:280px}.fresh-product-grid{grid-template-columns:repeat(2,1fr)}.fresh-story{padding:72px 18px;gap:38px}.fresh-story-photo{height:400px}.fresh-points{grid-template-columns:1fr}.fresh-cta{margin:18px 18px 64px;padding:36px 26px;align-items:flex-start;flex-direction:column}}
@media(max-width:520px){.fresh-hero h1{font-size:46px}.fresh-actions>*{width:100%;text-align:center}.fresh-search{display:none}.fresh-product-grid{grid-template-columns:1fr}.fresh-story-photo{height:320px}.fresh-note{display:none}.fresh-cta h2{font-size:38px}}

/* v1.1 hero copy refinement */
.fresh-hero-copy > .fresh-lead {
  margin-top: 18px;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  color: #257142;
  line-height: 1.3;
}

/* v1.4 — более наполненная верхняя часть */
.service-bar{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:7px 20px;
  background:#0b6f35;
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:.01em;
}
.service-bar-separator{opacity:.55}
.site-header{
  height:86px;
  padding:0 clamp(20px,4vw,64px);
  justify-content:flex-start;
  gap:38px;
}
.ref-brand{
  min-width:auto;
  display:flex;
  align-items:center;
  gap:15px;
}
.header-brand-copy{
  display:block;
  max-width:110px;
  color:#647067;
  font-size:11px;
  font-weight:700;
  line-height:1.35;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.header-nav{
  display:flex;
  align-items:center;
  gap:30px;
  margin-left:clamp(8px,2vw,30px);
  font-size:14px;
  font-weight:600;
  color:#344139;
}
.header-nav a{position:relative;padding:12px 0}
.header-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:6px;
  height:2px;
  border-radius:2px;
  background:#087d36;
  transition:right .2s ease;
}
.header-nav a:hover{color:#087d36}
.header-nav a:hover::after{right:0}
.header-actions-compact{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:14px;
}
.login-button{
  border:1px solid #e0e6e1;
  border-radius:999px;
  padding:0 16px;
  background:#fff;
}
.ref-cart{
  min-width:116px;
  justify-content:center;
  border:1px solid #b9d8c2;
  border-radius:999px;
  padding:0 17px;
  background:#f8fcf9;
}
@media(max-width:900px){
  .header-nav{display:none}
  .site-header{gap:18px}
}
@media(max-width:650px){
  .service-bar{justify-content:flex-start;overflow:hidden;white-space:nowrap;font-size:11px}
  .service-bar-separator,.service-bar span:last-child{display:none}
  .header-brand-copy{display:none}
  .site-header{height:74px;padding:0 16px}
  .login-button{display:none}
  .ref-cart{min-width:0;padding:0 14px}
}

/* v1.5 — праздничный premium hero */
.fresh-hero{
  position:relative;
  isolation:isolate;
  min-height:690px;
  background:
    radial-gradient(circle at 8% 14%, rgba(255,255,255,.95) 0 8%, transparent 22%),
    radial-gradient(circle at 46% 88%, rgba(223,242,203,.75) 0 7%, transparent 24%),
    linear-gradient(135deg,#fbf8ef 0%,#f2f6e9 52%,#edf4e7 100%);
}
.fresh-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  opacity:.34;
  background-image:radial-gradient(#4e795e 1px,transparent 1px);
  background-size:26px 26px;
  mask-image:linear-gradient(90deg,#000 0 38%,transparent 68%);
}
.fresh-hero-copy{padding:34px 0}
.hero-season-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 14px;
  margin-bottom:22px;
  border:1px solid rgba(23,60,43,.13);
  border-radius:999px;
  background:rgba(255,255,255,.68);
  backdrop-filter:blur(10px);
  color:#345844;
  font-size:12px;
  font-weight:800;
  letter-spacing:.035em;
  box-shadow:0 8px 22px rgba(40,77,51,.06);
}
.hero-season-label span{
  width:8px;height:8px;border-radius:50%;background:#f29d4b;
  box-shadow:0 0 0 5px rgba(242,157,75,.15)
}
.fresh-hero h1{max-width:720px;text-shadow:0 1px 0 rgba(255,255,255,.7)}
.fresh-actions{margin-top:31px}
.fresh-primary{box-shadow:0 12px 28px rgba(23,60,43,.18);transition:transform .2s,box-shadow .2s}
.fresh-primary:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(23,60,43,.24)}
.fresh-secondary{background:rgba(255,255,255,.68);backdrop-filter:blur(10px)}
.fresh-search{background:rgba(255,255,255,.9);box-shadow:0 18px 45px rgba(39,69,47,.1);backdrop-filter:blur(12px)}
.fresh-hero-visual{
  min-height:555px;
  background:transparent;
  display:grid;
  place-items:center;
  overflow:visible;
}
.hero-image-frame{
  position:relative;
  z-index:2;
  width:min(100%,650px);
  height:555px;
  overflow:hidden;
  border-radius:52px 52px 120px 52px;
  border:10px solid rgba(255,255,255,.72);
  box-shadow:0 34px 80px rgba(29,63,39,.21),0 2px 0 rgba(255,255,255,.9) inset;
  transform:rotate(1.2deg);
}
.hero-image-frame img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.035)}
.hero-image-frame::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(155deg,rgba(255,255,255,.17),transparent 38%,rgba(18,50,29,.08));
}
.hero-orbit{position:absolute;border-radius:50%;z-index:0;filter:blur(.2px)}
.hero-orbit-one{width:180px;height:180px;right:-34px;top:-25px;background:#f4b25c;opacity:.85}
.hero-orbit-two{width:118px;height:118px;left:-25px;bottom:20px;background:#9fcf8d;opacity:.95}
.hero-mini-card{
  position:absolute;z-index:4;left:-25px;top:55px;
  padding:16px 20px;border-radius:19px;background:rgba(255,255,255,.9);
  border:1px solid rgba(255,255,255,.95);backdrop-filter:blur(12px);
  box-shadow:0 20px 44px rgba(31,63,40,.16);display:grid;gap:4px
}
.hero-mini-card strong{font-size:14px;color:#173c2b}.hero-mini-card span{font-size:11px;color:#778079}
.fresh-note-two{right:-14px;top:auto;bottom:54px;z-index:5;padding:16px 20px}
.fresh-categories{position:relative}
.fresh-categories::before{content:"";position:absolute;left:5%;right:5%;top:0;height:1px;background:linear-gradient(90deg,transparent,#dce7dc,transparent)}
.fresh-category-card{box-shadow:0 12px 30px rgba(28,58,36,.08)}
.fresh-category-card:hover{transform:translateY(-4px)}
.fresh-category-card{transition:transform .25s,box-shadow .25s}
.fresh-category-card:hover{box-shadow:0 20px 42px rgba(28,58,36,.14)}
@media(max-width:1100px){
  .fresh-hero::before{mask-image:linear-gradient(#000,transparent 55%)}
  .hero-image-frame{height:480px}
  .fresh-hero-visual{min-height:480px}
}
@media(max-width:780px){
  .fresh-hero{min-height:auto}
  .hero-image-frame{height:370px;border-radius:34px 34px 74px 34px;border-width:7px}
  .fresh-hero-visual{min-height:390px}
  .hero-mini-card{left:8px;top:25px}
  .hero-orbit-one{right:-20px;top:-10px;width:120px;height:120px}
  .hero-orbit-two{left:-10px;width:85px;height:85px}
}
@media(max-width:520px){
  .hero-season-label{font-size:10px;padding:8px 11px}
  .hero-image-frame{height:310px}
  .fresh-hero-visual{min-height:320px}
  .hero-mini-card{display:none}
}


/* v1.6 — refined header action icons */
.header-actions-compact{gap:10px}
.login-button,.ref-cart{
  position:relative;
  height:46px;
  padding:0 16px;
  border-radius:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-size:13px;
  font-weight:700;
  letter-spacing:-.01em;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,background .2s ease,color .2s ease;
}
.login-button{
  border:1px solid #e2e9e4;
  background:#fff;
  color:#20382a;
  box-shadow:0 6px 18px rgba(28,58,36,.055);
}
.login-button:hover{
  transform:translateY(-1px);
  border-color:#bcd4c2;
  background:#fbfefc;
  box-shadow:0 10px 24px rgba(28,58,36,.1);
}
.ref-cart{
  min-width:124px;
  padding-right:18px;
  border:1px solid #0a7c3b;
  background:linear-gradient(135deg,#0b873f,#087334);
  color:#fff;
  box-shadow:0 9px 22px rgba(8,115,52,.2);
}
.ref-cart:hover{
  transform:translateY(-1px);
  background:linear-gradient(135deg,#0b9145,#076d31);
  box-shadow:0 13px 28px rgba(8,115,52,.28);
}
.header-icon{
  width:22px;
  height:22px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.header-icon svg{width:100%;height:100%;display:block}
.ref-cart .cart-count{
  position:static;
  min-width:21px;
  height:21px;
  padding:0 5px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.2);
  color:#fff;
  font-size:10px;
  font-weight:800;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.2);
}
@media(max-width:650px){
  .ref-cart{min-width:48px;width:48px;padding:0;border-radius:14px}
  .ref-cart>span:nth-child(2){display:none}
  .ref-cart .cart-count{position:absolute;right:-5px;top:-6px;background:#f2a94b;color:#173c2b;box-shadow:0 3px 8px rgba(0,0,0,.14)}
}

/* v2.0 — full reference redesign */
:root{
  --ref-green:#0f8f36;
  --ref-green-dark:#08752a;
  --ref-mint:#eaf6ec;
  --ref-ink:#12311c;
  --ref-muted:#66766c;
  --ref-line:#e7ece8;
  --ref-soft:#f6f8f6;
  --ref-shadow:0 16px 44px rgba(24,68,35,.08);
}
body{background:#fff;color:var(--ref-ink);font-family:Inter,Arial,sans-serif}
.page-shell{max-width:none;margin:0;background:#fff;box-shadow:none}
.site-header{
  height:78px;padding:0 max(24px,6vw);border-bottom:1px solid var(--ref-line);
  background:rgba(255,255,255,.96);position:sticky;top:0;z-index:30;display:grid;
  grid-template-columns:auto 1fr auto;align-items:center;gap:42px
}
.ref-brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--ref-ink)}
.brand-mark{font-size:32px;font-weight:900;letter-spacing:-2px;color:var(--ref-green)}
.header-brand-copy{font-size:12px;font-weight:600;color:#849087;text-transform:none;letter-spacing:.01em}
.header-nav{justify-self:center;display:flex;gap:34px}
.header-nav a{font-size:14px;font-weight:600;color:#344a3a;text-decoration:none;transition:.2s}
.header-nav a:hover{color:var(--ref-green)}
.header-actions-compact{display:flex;align-items:center;gap:10px}
.login-button,.ref-cart{height:42px;border-radius:12px;padding:0 16px;font-weight:700;font-size:13px}
.login-button{border:1px solid var(--ref-line);background:#fff;color:#2e4434}
.ref-cart{border:0;background:var(--ref-green);color:#fff;box-shadow:none}
.ref-cart:hover{background:var(--ref-green-dark);transform:none}
.header-icon{width:19px;height:19px}.cart-count{background:#fff;color:var(--ref-green);min-width:20px;height:20px}
.fresh-hero{
  min-height:575px;padding:74px max(24px,6vw) 58px;background:var(--ref-mint);
  display:grid;grid-template-columns:minmax(430px,.95fr) minmax(470px,1.05fr);gap:48px;align-items:center;
  overflow:hidden;position:relative
}
.fresh-hero::before{content:"";position:absolute;width:520px;height:520px;border-radius:50%;background:rgba(255,255,255,.42);right:-100px;top:-150px}
.fresh-hero-copy{max-width:630px;position:relative;z-index:2}
.fresh-hero h1{font-size:clamp(54px,5.7vw,88px);line-height:.98;letter-spacing:-.065em;margin:0;color:#10361d;font-weight:800}
.fresh-lead{font-size:18px;line-height:1.6;color:#54665a;margin:24px 0 30px;max-width:470px;font-weight:400}
.fresh-actions{margin:0 0 26px}.fresh-primary{height:50px;padding:0 24px;border-radius:12px;background:var(--ref-green);font-size:14px;font-weight:800;box-shadow:none}
.fresh-primary:hover{background:var(--ref-green-dark);transform:none}
.fresh-search{max-width:560px;border:1px solid #dfe8e1;background:#fff;border-radius:14px;box-shadow:0 8px 22px rgba(22,62,30,.06);padding:6px}
.fresh-search .search-icon{color:#7d8d82;font-size:21px;margin-left:8px}.fresh-search input{font-size:14px}.fresh-search .search-button{height:40px;border-radius:10px;padding:0 19px;background:var(--ref-green)}
.fresh-hero-visual{min-height:470px;display:grid;place-items:center;position:relative;z-index:2}
.hero-image-frame{width:min(100%,590px);height:430px;border-radius:0;background:transparent;box-shadow:none;overflow:visible;transform:none}
.hero-image-frame img{width:100%;height:100%;object-fit:contain;filter:drop-shadow(0 24px 28px rgba(33,73,42,.16));border-radius:0}
.reference-benefits{padding:28px max(24px,6vw);display:grid;grid-template-columns:repeat(3,1fr);gap:18px;border-bottom:1px solid var(--ref-line);background:#fff}
.reference-benefits article{display:flex;align-items:center;gap:14px;padding:19px 20px;border:1px solid var(--ref-line);border-radius:16px;background:#fff}
.reference-benefit-icon{width:42px;height:42px;border-radius:50%;background:#e9f6eb;color:var(--ref-green);display:grid;place-items:center;font-weight:900;font-size:20px}
.reference-benefits strong{display:block;font-size:14px;margin-bottom:4px}.reference-benefits p{margin:0;color:var(--ref-muted);font-size:12px;line-height:1.4}
.fresh-section{padding:72px max(24px,6vw)}
.fresh-section-head{margin-bottom:28px;align-items:end}.fresh-kicker{color:var(--ref-green);font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;margin-bottom:8px}.fresh-section h2,.fresh-story h2,.fresh-cta h2{font-size:clamp(34px,4vw,52px);letter-spacing:-.045em;color:var(--ref-ink);margin:0}
.fresh-category-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:16px}
.fresh-category-card,.fresh-category-wide{grid-column:auto;min-height:230px;border:1px solid var(--ref-line);border-radius:18px;background:#fff;overflow:hidden;box-shadow:none;padding:0;text-align:left;transition:.22s}
.fresh-category-card:hover{transform:translateY(-3px);box-shadow:var(--ref-shadow);border-color:#dce5de}
.fresh-category-card img{width:100%;height:160px;object-fit:cover}.fresh-category-card span{display:block;padding:16px}.fresh-category-card strong{font-size:16px}.fresh-category-card small{display:block;color:var(--ref-muted);font-size:12px;margin-top:5px;line-height:1.4}
.fresh-catalog{background:var(--ref-soft)}
.fresh-product-grid{grid-template-columns:repeat(4,1fr);gap:18px}.product-card{border:1px solid var(--ref-line);border-radius:18px;background:#fff;box-shadow:none;padding:14px;min-height:370px}.product-card:hover{transform:translateY(-3px);box-shadow:var(--ref-shadow)}
.product-visual{height:210px;border-radius:14px;background:#f3f6f3}.product-info{padding:16px 4px 4px}.product-info h3{font-size:17px}.price{font-size:19px}.add-button{border-radius:10px;background:var(--ref-green)}
.fresh-story{margin:0;padding:84px max(24px,6vw);grid-template-columns:1fr 1fr;gap:64px;background:#fff}.fresh-story-photo{border-radius:22px;min-height:520px;overflow:hidden}.fresh-story-photo img{width:100%;height:100%;object-fit:cover}.fresh-story-copy>p{color:var(--ref-muted);font-size:16px;line-height:1.65}
.fresh-points article{border-top:1px solid var(--ref-line);padding:18px 0}.fresh-points article>span{color:var(--ref-green);font-size:12px}.fresh-points strong{font-size:15px}.fresh-points p{font-size:13px!important;margin-top:5px!important}
.fresh-cta{margin:0 max(24px,6vw) 72px;border-radius:22px;background:var(--ref-mint);padding:48px 52px;display:flex;align-items:center;justify-content:space-between;gap:30px}.fresh-cta p{color:var(--ref-muted)}
footer{padding:56px max(24px,6vw);background:#112b19;grid-template-columns:2fr repeat(3,1fr)}
@media(max-width:1100px){.fresh-hero{grid-template-columns:1fr;min-height:auto}.fresh-hero-visual{min-height:380px}.hero-image-frame{height:370px}.fresh-category-grid{grid-template-columns:repeat(3,1fr)}.fresh-product-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:780px){.site-header{height:68px;padding:0 18px;grid-template-columns:auto 1fr}.header-nav,.header-brand-copy,.login-button span:not(.header-icon),.ref-cart span:not(.header-icon):not(.cart-count){display:none}.header-actions-compact{justify-self:end}.login-button,.ref-cart{width:42px;padding:0;display:grid;place-items:center}.fresh-hero{padding:50px 18px 36px;gap:24px}.fresh-hero h1{font-size:48px}.fresh-lead{font-size:16px;margin:18px 0 24px}.fresh-actions .fresh-primary{width:100%}.fresh-search{max-width:none}.fresh-hero-visual{min-height:290px}.hero-image-frame{height:290px}.reference-benefits{padding:18px;grid-template-columns:1fr}.fresh-section{padding:54px 18px}.fresh-category-grid{grid-template-columns:repeat(2,1fr)}.fresh-category-card{min-height:210px}.fresh-product-grid{grid-template-columns:repeat(2,1fr)}.fresh-story{padding:54px 18px;grid-template-columns:1fr}.fresh-story-photo{min-height:340px}.fresh-cta{margin:0 18px 54px;padding:34px 24px;display:block}.fresh-cta button{margin-top:22px;width:100%}footer{padding:48px 18px}}
@media(max-width:520px){.fresh-category-grid,.fresh-product-grid{grid-template-columns:1fr}.fresh-category-card img{height:190px}.product-card{min-height:auto}}

/* v4.7: crisp approach image and reliable category interactions */
.exact-category-card{cursor:pointer}
.exact-category-card img{image-rendering:auto;backface-visibility:hidden;transform:translateZ(0)}
.fresh-story-photo{background:#eef4ef}
.fresh-story-photo img{object-position:center;filter:contrast(1.04) saturate(1.04);transform:scale(1.002);image-rendering:auto}
html{scroll-behavior:smooth;scroll-padding-top:92px}

/* v4.8 — ordered catalog, rebuilt approach section and unmistakable hero CTA */
.hero-copy-live .sketch-primary{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  overflow:visible !important;
}
.hero-copy-live .sketch-primary .hero-button-icon{
  background:#fff !important;
  color:#0b7f35 !important;
  box-shadow:0 7px 18px rgba(0,0,0,.16) !important;
  animation:heroArrowPulse 1.8s ease-in-out infinite !important;
}
.hero-copy-live .sketch-primary .hero-button-icon svg{
  stroke:#0b7f35 !important;
  stroke-width:2.3 !important;
}
@keyframes heroArrowPulse{
  0%,100%{transform:translateX(0);box-shadow:0 7px 18px rgba(0,0,0,.16)}
  50%{transform:translateX(5px);box-shadow:0 9px 22px rgba(0,0,0,.22)}
}
.hero-copy-live .sketch-primary:hover .hero-button-icon{
  animation:none !important;
  transform:translateX(7px) !important;
  background:#f4fbf5 !important;
}

.approach-section{
  display:block !important;
  max-width:1400px !important;
  margin:0 auto !important;
  padding:88px 72px 96px !important;
  background:#fff !important;
}
.approach-heading{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(300px,.65fr);
  gap:70px;
  align-items:end;
  margin-bottom:42px;
}
.approach-heading .fresh-kicker{margin:0 0 10px}
.approach-heading h2{max-width:760px}
.approach-intro{
  margin:0 0 5px;
  color:var(--ref-muted);
  font-size:16px;
  line-height:1.7;
  max-width:480px;
}
.approach-layout{
  display:grid;
  grid-template-columns:minmax(0,1.12fr) minmax(420px,.88fr);
  gap:26px;
  align-items:stretch;
}
.approach-photo{
  position:relative;
  min-height:560px !important;
  border-radius:24px !important;
  overflow:hidden;
  background:#edf4ee;
  box-shadow:0 18px 46px rgba(24,68,35,.1);
}
.approach-photo::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 55%,rgba(10,42,22,.42));
  pointer-events:none;
}
.approach-photo img{
  width:100%;height:100%;object-fit:cover;
  object-position:center center;
  filter:none !important;
  transform:none !important;
  image-rendering:auto;
}
.approach-photo-label{
  position:absolute;
  left:24px;bottom:22px;z-index:2;
  padding:11px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.93);
  color:var(--ref-ink);
  font-size:13px;font-weight:750;
  backdrop-filter:blur(8px);
}
.approach-points{
  display:grid !important;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.approach-points article{
  min-height:0;
  padding:24px !important;
  border:1px solid #e2eae3 !important;
  border-radius:20px;
  background:#f8faf8;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:26px;
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.approach-points article:hover{
  transform:translateY(-3px);
  border-color:#c8dbc9 !important;
  box-shadow:0 14px 32px rgba(24,68,35,.09);
}
.approach-points article>span{
  width:42px;height:42px;border-radius:50%;
  display:grid;place-items:center;
  background:#e6f4e8;
  color:var(--ref-green) !important;
  font-size:12px !important;font-weight:800;
}
.approach-points strong{font-size:16px !important;color:var(--ref-ink)}
.approach-points p{margin:8px 0 0 !important;font-size:13px !important;line-height:1.6;color:var(--ref-muted)}
@media(max-width:980px){
  .approach-section{padding:68px 32px 76px !important}
  .approach-heading{grid-template-columns:1fr;gap:18px}
  .approach-layout{grid-template-columns:1fr}
  .approach-photo{min-height:430px !important}
}
@media(max-width:620px){
  .approach-section{padding:54px 18px 62px !important}
  .approach-points{grid-template-columns:1fr}
  .approach-photo{min-height:330px !important;border-radius:18px !important}
  .approach-photo-label{left:14px;bottom:14px;font-size:12px}
}

/* v5.0.1 — cart/checkout product layout: keep text clear of images */
.cart-item{
  grid-template-columns:64px minmax(0,1fr) max-content;
  align-items:start;
  column-gap:12px;
}
.cart-item-visual{
  width:64px;
  height:64px;
  overflow:hidden;
  flex:0 0 64px;
}
.cart-item-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  max-width:100%;
}
.cart-item-main{
  min-width:0;
  overflow:hidden;
}
.cart-item-main h4{
  overflow-wrap:anywhere;
  word-break:normal;
  line-height:1.35;
}
.cart-line-total{
  min-width:max-content;
  white-space:nowrap;
}

.checkout-item{
  grid-template-columns:52px minmax(0,1fr) max-content;
  align-items:start;
  column-gap:10px;
}
.checkout-item-visual{
  width:52px;
  height:52px;
  flex:0 0 52px;
  overflow:hidden;
}
.checkout-item > div:nth-child(2){
  min-width:0;
  overflow:hidden;
}
.checkout-item h4{
  overflow-wrap:anywhere;
  line-height:1.35;
}
.checkout-item > strong{
  white-space:nowrap;
}

@media(max-width:520px){
  .cart-item{
    grid-template-columns:58px minmax(0,1fr);
    gap:10px;
    align-items:start;
  }
  .cart-item-visual{
    width:58px;
    height:58px;
  }
  .cart-line-total{
    grid-column:2;
    text-align:left;
    padding-top:4px;
  }
  .checkout-item{
    grid-template-columns:48px minmax(0,1fr);
  }
  .checkout-item-visual{
    width:48px;
    height:48px;
  }
  .checkout-item > strong{
    grid-column:2;
    justify-self:start;
    margin-top:2px;
  }
}

/* v5.0.4 web — richer product purchase flow */
.modal-price-panel{align-items:stretch}
.modal-price-panel>div{background:#fff;transition:.2s}
.modal-bulk-price{box-shadow:inset 0 0 0 1px rgba(35,108,61,.04)}
.modal-bulk-price>span:last-child{display:none}
.modal-quantity-block{background:#fbfcfb;border:1px solid var(--line);border-radius:20px;padding:18px;margin-top:4px}
.modal-quantity-block{border-top:1px solid var(--line)}
.modal-quantity-control button{cursor:pointer;transition:.18s}
.modal-quantity-control button:hover{background:#edf6ef;border-color:#bcd8c3;color:var(--green-dark)}
.modal-quick-qty{display:flex;align-items:center;gap:7px;flex-wrap:wrap;margin-top:13px}
.modal-quick-qty>span{font-size:11px;color:var(--muted);font-weight:700;margin-right:2px}
.modal-quick-qty button{border:1px solid var(--line);background:#fff;color:var(--ink);border-radius:999px;padding:7px 10px;font-size:11px;font-weight:800;cursor:pointer}
.modal-quick-qty button:hover,.modal-quick-qty button.active{border-color:#9dc7a7;background:#edf7ef;color:var(--green-dark)}
.modal-total-block{min-width:150px}
.modal-total-block strong{color:var(--green-dark)}
.modal-progress{margin-top:14px}
.modal-tier-progress{height:7px;margin:8px 2px 0;background:#e8eee9;border-radius:999px;overflow:hidden}
.modal-tier-progress span{display:block;width:0;height:100%;background:var(--green);border-radius:inherit;transition:width .25s ease}
.modal-tier-progress.applied span{background:#1f7a3f}
.modal-savings:not(:empty){display:inline-flex;align-items:center;background:#edf8f0;border-radius:999px;padding:7px 11px;margin-top:10px}
.modal-add-button{min-height:54px;box-shadow:0 10px 22px rgba(38,112,61,.16);cursor:pointer}
.modal-add-button:active{transform:translateY(1px)}

/* Actionable add-to-cart notification */
.toast{
  left:50%;bottom:28px;width:min(680px,calc(100% - 32px));
  transform:translate(-50%,20px);background:#fff;color:var(--ink);
  padding:14px 14px 14px 16px;border-radius:20px;opacity:0;pointer-events:none;
  transition:.25s;z-index:120;box-shadow:0 18px 60px rgba(11,41,20,.2);border:1px solid #dbe7dd;
  display:grid;grid-template-columns:42px minmax(0,1fr) auto;align-items:center;gap:12px
}
.toast.show{opacity:1;transform:translate(-50%,0);pointer-events:auto}
.toast-icon{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:#eaf7ed;color:var(--green-dark);font-size:21px;font-weight:900}
.toast-copy{min-width:0;display:flex;flex-direction:column;gap:3px}
.toast-copy strong{font-size:14px}
.toast-copy span{font-size:12px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.toast-cart-button{border:0;background:var(--green);color:#fff;padding:11px 16px;border-radius:13px;font-weight:800;cursor:pointer;white-space:nowrap}
.toast-cart-button:hover{background:var(--green-dark)}
@media(max-width:680px){
  .toast{grid-template-columns:38px 1fr;bottom:16px;padding:12px;border-radius:17px}
  .toast-icon{width:38px;height:38px}
  .toast-cart-button{grid-column:1/-1;width:100%}
  .modal-quantity-block{padding:15px}
  .modal-total-block{text-align:left;min-width:0}
}

/* v5.3.7 — standalone cart page */
.cart-page-body{
  background:
    radial-gradient(circle at 10% 18%, rgba(183,213,169,.72) 0, rgba(183,213,169,0) 32%),
    radial-gradient(circle at 88% 78%, rgba(229,199,145,.46) 0, rgba(229,199,145,0) 30%),
    linear-gradient(135deg,#dfead7 0%,#eee4cf 50%,#d7e7d4 100%);
  background-attachment:fixed;
}
.cart-page-header{background:#fff}
.cart-main-bar{min-height:82px}
.cart-back-catalog{justify-self:center;color:var(--ink);text-decoration:none;font-weight:650;font-size:14px;transition:.2s}
.cart-back-catalog:hover{color:var(--green)}
.cart-page-main{padding:46px 24px 80px}
.cart-page-section{width:min(1180px,100%);margin:0 auto}
.cart-page-title-row{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:28px}
.cart-page-eyebrow{margin:0 0 6px;color:var(--green);font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:.08em}
.cart-page-title-row h1{margin:0;font-family:"Playfair Display",serif;font-size:clamp(36px,5vw,56px);line-height:1;color:var(--ink)}
.cart-page-count-label{color:var(--muted);font-weight:650;margin-bottom:5px}
.cart-page-layout{display:grid;grid-template-columns:minmax(0,1fr) 340px;gap:28px;align-items:start}
.cart-page-products{min-width:0}
.cart-page-items{display:grid;gap:14px}
.cart-page-item{display:grid;grid-template-columns:118px minmax(0,1fr) auto 140px;gap:20px;align-items:center;background:#fff;border:1px solid var(--line);border-radius:22px;padding:16px 20px;box-shadow:0 8px 28px rgba(25,47,30,.04)}
.cart-page-item.bulk-active{border-color:#b9ddc0}
.cart-page-image{width:118px;height:96px;border-radius:16px;overflow:hidden;background:#f1f4ef;display:grid;place-items:center;text-decoration:none}
.cart-page-image img{width:100%;height:100%;object-fit:cover;display:block}
.cart-page-product-name{display:inline-block;color:var(--ink);font-weight:800;font-size:18px;line-height:1.25;text-decoration:none;margin-bottom:7px}
.cart-page-product-name:hover{color:var(--green)}
.cart-page-unit{margin:0;color:var(--muted);font-size:14px}
.cart-page-bulk{margin:8px 0 0;color:#8a6c1e;font-size:12px;line-height:1.4}
.cart-page-bulk.success{color:var(--green);font-weight:700}
.cart-remove-button{margin-top:10px;padding:0;border:0;background:none;color:#8d9690;font:inherit;font-size:12px;text-decoration:underline;text-underline-offset:3px;cursor:pointer}
.cart-remove-button:hover{color:#b33c3c}
.cart-page-qty{display:flex;align-items:center;border:1px solid var(--line);border-radius:14px;overflow:hidden;background:#fafbf9}
.cart-page-qty button{width:38px;height:40px;border:0;background:transparent;font-size:20px;cursor:pointer;color:var(--ink)}
.cart-page-qty button:hover{background:#eef4ef;color:var(--green)}
.cart-page-qty span{min-width:34px;text-align:center;font-weight:750}
.cart-page-line-price{text-align:right;min-width:120px}
.cart-page-line-price strong{display:block;font-size:19px;color:var(--ink)}
.cart-page-line-price small{display:block;margin-top:5px;color:var(--green);font-size:11px;font-weight:700}
.cart-page-summary{position:sticky;top:24px;background:#fff;border:1px solid var(--line);border-radius:24px;padding:24px;box-shadow:0 12px 36px rgba(25,47,30,.06)}
.cart-page-summary h2{margin:0 0 20px;font-size:24px}
.cart-summary-row{display:flex;justify-content:space-between;gap:20px;padding:12px 0;color:var(--muted);border-bottom:1px solid #edf0ec}
.cart-summary-row strong{color:var(--ink)}
.cart-summary-total{font-size:20px;color:var(--ink);border-bottom:0;padding-top:18px}
.cart-summary-total strong{font-size:24px}
.cart-checkout-button,.cart-primary-link{display:flex;align-items:center;justify-content:center;width:100%;min-height:52px;margin-top:18px;border:0;border-radius:15px;background:var(--green);color:#fff;text-decoration:none;font-weight:800;font-size:15px;cursor:pointer;transition:.2s}
.cart-checkout-button:hover,.cart-primary-link:hover{background:var(--green-dark)}
.cart-summary-note{margin:14px 0 0;color:var(--muted);font-size:12px;line-height:1.55}
.cart-page-empty{background:#fff;border:1px solid var(--line);border-radius:24px;text-align:center;padding:70px 24px}
.cart-empty-icon{font-size:42px;margin-bottom:14px}
.cart-page-empty h2{margin:0 0 8px;font-size:25px}
.cart-page-empty p{margin:0;color:var(--muted)}
.cart-page-empty .cart-primary-link{max-width:260px;margin:24px auto 0}
@media(max-width:900px){.cart-page-layout{grid-template-columns:1fr}.cart-page-summary{position:static}.cart-page-item{grid-template-columns:86px minmax(0,1fr) auto}.cart-page-image{width:86px;height:82px}.cart-page-line-price{grid-column:2/4;text-align:left;display:flex;gap:10px;align-items:center}.cart-page-line-price small{margin:0}.cart-main-bar{display:flex;justify-content:space-between;padding-left:20px;padding-right:20px}.cart-main-bar .header-spacer{display:none}}
@media(max-width:620px){.cart-page-main{padding:28px 12px 56px}.cart-page-title-row{align-items:start;flex-direction:column;gap:8px;margin-bottom:20px}.cart-page-item{grid-template-columns:76px 1fr;gap:14px;padding:14px}.cart-page-image{width:76px;height:76px}.cart-page-qty{grid-column:2;justify-self:start}.cart-page-line-price{grid-column:2;display:block}.cart-page-product-name{font-size:16px}.cart-back-catalog{font-size:12px}.cart-page-summary{padding:20px}.service-nav{display:none}}

/* v5.3.8 — softer cart section label */
.cart-page-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  margin:0 0 12px;
  padding:7px 13px;
  border:1px solid rgba(35,111,60,.12);
  border-radius:999px;
  background:rgba(35,111,60,.07);
  color:var(--green);
  font-size:12px;
  font-weight:700;
  line-height:1;
  letter-spacing:.035em;
  text-transform:none;
}


/* v5.3.9 — richer branded cart page */
.cart-page-body{
  background:
    radial-gradient(circle at 8% 12%, rgba(126,174,89,.16), transparent 27%),
    radial-gradient(circle at 93% 22%, rgba(232,206,137,.18), transparent 24%),
    linear-gradient(180deg,#f5f7ef 0%,#fbf8f0 48%,#f1f5eb 100%);
}
.cart-page-main{position:relative;overflow:hidden}
.cart-page-main::before,.cart-page-main::after{content:"";position:absolute;border-radius:999px;pointer-events:none;filter:blur(1px);z-index:0}
.cart-page-main::before{width:330px;height:330px;left:-180px;top:80px;background:rgba(50,126,69,.055)}
.cart-page-main::after{width:280px;height:280px;right:-150px;bottom:40px;background:rgba(222,185,92,.07)}
.cart-page-section{position:relative;z-index:1}
.cart-page-title-row{
  align-items:center;
  padding:26px 30px;
  margin-bottom:24px;
  border:1px solid rgba(35,111,60,.10);
  border-radius:28px;
  background:linear-gradient(120deg,rgba(255,255,255,.78),rgba(247,250,239,.88));
  box-shadow:0 16px 45px rgba(42,77,45,.055);
  backdrop-filter:blur(5px);
}
.cart-page-heading-copy{max-width:720px}
.cart-page-title-row h1{font-size:clamp(40px,5vw,58px)}
.cart-page-subtitle{margin:12px 0 0;color:#647066;font-size:14px;line-height:1.55;max-width:610px}
.cart-page-count-label{align-self:flex-start;margin:3px 0 0;padding:9px 14px;border-radius:999px;background:#eef5e9;color:#386246;font-size:12px;font-weight:750}
.cart-page-items{gap:16px}
.cart-page-item{
  border-color:rgba(35,111,60,.10);
  background:rgba(255,255,255,.9);
  box-shadow:0 10px 30px rgba(34,61,37,.055);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.cart-page-item:hover{transform:translateY(-2px);border-color:rgba(35,111,60,.20);box-shadow:0 16px 36px rgba(34,61,37,.075)}
.cart-page-item.bulk-active{background:linear-gradient(110deg,#fff 0%,#f6fbf1 100%);border-color:#aed3a8}
.cart-page-image{background:#edf3e9;box-shadow:inset 0 0 0 1px rgba(35,111,60,.06)}
.cart-page-qty{background:#f1f6ed;border-color:#dce8d7}
.cart-page-qty button:hover{background:#dfeeda}
.cart-page-summary{
  overflow:hidden;
  border:1px solid rgba(35,111,60,.13);
  background:linear-gradient(160deg,#fff 0%,#f7fbf3 72%,#edf5e7 100%);
  box-shadow:0 18px 48px rgba(34,70,40,.10);
}
.cart-page-summary::before{content:"";display:block;height:6px;margin:-24px -24px 22px;background:linear-gradient(90deg,var(--green),#77a85f,#d3b35e)}
.cart-summary-top{margin-bottom:8px}
.cart-summary-kicker{display:block;margin-bottom:5px;color:var(--green);font-size:11px;font-weight:800;letter-spacing:.07em;text-transform:uppercase}
.cart-page-summary h2{margin-bottom:14px;font-family:"Playfair Display",serif;font-size:29px}
.cart-summary-row{border-color:#e3eadf}
.cart-summary-total{margin-top:5px;padding:17px 15px;border-radius:15px;background:#edf5e8}
.cart-summary-total strong{color:var(--green-dark);font-size:26px}
.cart-checkout-button{min-height:56px;border-radius:16px;box-shadow:0 10px 22px rgba(14,118,57,.18)}
.cart-checkout-button:hover{transform:translateY(-1px);box-shadow:0 13px 26px rgba(14,118,57,.23)}
.cart-summary-benefits{display:grid;gap:9px;margin-top:18px;padding-top:17px;border-top:1px solid #e0e8dc}
.cart-summary-benefits>div{display:flex;align-items:center;gap:10px}
.cart-benefit-icon{width:24px;height:24px;flex:0 0 24px;border-radius:50%;display:grid;place-items:center;background:#e2f0dc;color:var(--green-dark);font-size:12px;font-weight:900}
.cart-summary-benefits strong,.cart-summary-benefits small{display:block}
.cart-summary-benefits strong{font-size:12px;color:#324037}
.cart-summary-benefits small{margin-top:1px;color:#7b867d;font-size:11px}
.cart-summary-note{padding:11px 12px;border-radius:12px;background:rgba(255,255,255,.63)}
.cart-page-empty{border-color:rgba(35,111,60,.11);background:linear-gradient(145deg,rgba(255,255,255,.94),rgba(243,249,239,.95));box-shadow:0 16px 38px rgba(34,61,37,.06)}
@media(max-width:620px){
  .cart-page-title-row{padding:20px;border-radius:22px}
  .cart-page-subtitle{font-size:13px}
  .cart-page-count-label{align-self:flex-start}
}

/* v5.4.0 — warmer, more food-retail cart page */
.cart-page-body{
  background:
    radial-gradient(circle at 10% 8%, rgba(123,161,75,.22), transparent 29%),
    radial-gradient(circle at 92% 16%, rgba(232,180,76,.18), transparent 27%),
    linear-gradient(180deg,#edf3e5 0%,#f5efe3 48%,#e9f0df 100%);
}
.cart-page-main{
  background:
    linear-gradient(rgba(247,248,239,.18),rgba(247,248,239,.18)),
    repeating-linear-gradient(135deg,rgba(64,111,56,.025) 0 1px,transparent 1px 18px);
}
.cart-page-title-row{
  border-color:rgba(48,104,55,.16);
  background:
    radial-gradient(circle at 88% 22%,rgba(218,180,76,.18),transparent 22%),
    linear-gradient(125deg,#e6efdc 0%,#f2f3dc 55%,#f4ead6 100%);
  box-shadow:0 18px 42px rgba(42,77,45,.09);
}
.cart-page-eyebrow{
  background:#d9e8cd;
  border-color:#c5d9b8;
  color:#2f633c;
}
.cart-page-count-label{
  background:#dce9d3;
  border:1px solid #c9dcc0;
  color:#315d3a;
}
.cart-page-item{
  border-color:rgba(75,112,60,.14);
  background:linear-gradient(145deg,#fff9ee 0%,#f7f2e7 100%);
  box-shadow:0 11px 28px rgba(75,76,49,.07);
}
.cart-page-item:nth-child(even){
  background:linear-gradient(145deg,#f3f7ea 0%,#edf3e4 100%);
}
.cart-page-item:hover{
  border-color:rgba(51,110,58,.28);
  box-shadow:0 17px 38px rgba(52,84,46,.11);
}
.cart-page-item.bulk-active{
  background:linear-gradient(130deg,#eef6e7 0%,#f8f1df 100%);
  border-color:#9fc894;
}
.cart-page-image{
  background:#e5ecd9;
  box-shadow:inset 0 0 0 1px rgba(50,96,53,.09),0 5px 14px rgba(65,82,49,.06);
}
.cart-page-qty{
  background:#e4eddb;
  border-color:#cad9c0;
}
.cart-page-qty button:hover{background:#d3e3c7}
.cart-page-summary{
  border-color:rgba(39,93,48,.22);
  background:
    radial-gradient(circle at 100% 0%,rgba(222,188,86,.18),transparent 31%),
    linear-gradient(160deg,#dfead4 0%,#edf1dc 58%,#efe5cc 100%);
  box-shadow:0 20px 50px rgba(45,76,42,.14);
}
.cart-page-summary::before{
  height:7px;
  background:linear-gradient(90deg,#236f3c 0%,#5f9850 48%,#cfad4e 100%);
}
.cart-summary-kicker{color:#315f3b}
.cart-summary-row{border-color:rgba(71,103,62,.16);color:#5e695f}
.cart-summary-total{
  background:linear-gradient(120deg,#cfe2c4,#e6dfbd);
  border:1px solid rgba(57,105,57,.13);
}
.cart-summary-benefits{border-top-color:rgba(71,103,62,.18)}
.cart-benefit-icon{background:#c8debd;color:#285c36}
.cart-summary-benefits strong{color:#2d4934}
.cart-summary-benefits small{color:#657268}
.cart-summary-note{
  background:rgba(255,248,230,.62);
  border:1px solid rgba(139,116,62,.08);
  color:#687069;
}
.cart-page-empty{
  border-color:rgba(53,105,57,.16);
  background:
    radial-gradient(circle at 50% 0%,rgba(207,176,77,.13),transparent 30%),
    linear-gradient(145deg,#eef5e7,#f7eddd);
  box-shadow:0 16px 38px rgba(48,78,44,.09);
}
@media(max-width:620px){
  .cart-page-item,.cart-page-item:nth-child(even){background:linear-gradient(145deg,#fff8eb,#eef4e7)}
}


/* v5.4.4 — cart page background: apply to the actual visible page layers */
body.cart-page-body {
  background: #dfe9d8 !important;
}
body.cart-page-body > .page-shell {
  background:
    radial-gradient(circle at 7% 18%, rgba(111,157,82,.20) 0, rgba(111,157,82,0) 31%),
    radial-gradient(circle at 92% 72%, rgba(217,178,100,.17) 0, rgba(217,178,100,0) 29%),
    linear-gradient(135deg,#e1ead8 0%,#eee6d4 48%,#dce9d7 100%) !important;
  min-height: 100vh;
}
body.cart-page-body .cart-page-main {
  background: transparent !important;
}


/* v5.4.5 — improve cart card separation from the new page background */
body.cart-page-body .cart-page-item {
  background: rgba(255,255,255,.97) !important;
  border: 1px solid rgba(58,92,62,.16) !important;
  box-shadow:
    0 10px 28px rgba(34,64,39,.08),
    0 2px 6px rgba(34,64,39,.035) !important;
}

body.cart-page-body .cart-page-summary {
  background: rgba(255,255,255,.98) !important;
  border: 1px solid rgba(58,92,62,.18) !important;
  box-shadow:
    0 14px 34px rgba(34,64,39,.10),
    0 2px 7px rgba(34,64,39,.04) !important;
}

body.cart-page-body .cart-page-title-row {
  background: rgba(255,255,255,.74) !important;
  border: 1px solid rgba(58,92,62,.12) !important;
  box-shadow: 0 8px 22px rgba(34,64,39,.045) !important;
  backdrop-filter: blur(6px);
}

body.cart-page-body .cart-page-qty {
  background:#f8faf6 !important;
  border-color:rgba(58,92,62,.14) !important;
}


/* v5.4.6 — unify both “Ваш заказ” labels */
body.cart-page-body .cart-summary-kicker {
  display:inline-flex !important;
  align-items:center;
  width:max-content;
  margin:0 0 12px !important;
  padding:7px 13px !important;
  border:1px solid #c5d9b8 !important;
  border-radius:999px !important;
  background:#d9e8cd !important;
  color:#2f633c !important;
  font-size:12px !important;
  font-weight:700 !important;
  line-height:1 !important;
  letter-spacing:.035em !important;
  text-transform:none !important;
}


/* v5.4.7 — align “Ваш заказ” and “Итого” in summary */
body.cart-page-body .cart-summary-top {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}
body.cart-page-body .cart-summary-kicker {
  margin-left:0 !important;
  margin-right:0 !important;
}
body.cart-page-body .cart-page-summary h2 {
  margin-left:0 !important;
  padding-left:0 !important;
}


/* v5.4.9 — true text alignment: “Ваш заказ” text and “Итого” */
body.cart-page-body .cart-page-summary .cart-summary-top h2 {
  margin-left:13px !important;
  padding-left:0 !important;
}

/* v5.5.1 — clear entire cart */
.cart-page-title-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}
.cart-clear-button{
  appearance:none;
  border:0;
  background:transparent;
  padding:2px 0;
  color:#657066;
  font:600 13px/1.2 Inter,Arial,sans-serif;
  cursor:pointer;
  text-decoration:underline;
  text-decoration-color:rgba(101,112,102,.38);
  text-underline-offset:4px;
  transition:color .18s ease,text-decoration-color .18s ease;
}
.cart-clear-button:hover{
  color:#285f36;
  text-decoration-color:#285f36;
}
.cart-clear-button[hidden]{display:none!important}
@media(max-width:720px){
  .cart-page-title-actions{align-items:flex-start}
}

/* v5.6.0 — editable product characteristics */
.product-characteristics{
  margin:18px 0 4px;
  padding:14px 16px;
  border:1px solid rgba(51,91,57,.13);
  border-radius:16px;
  background:#f7faf5;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:0 22px;
}
.product-characteristics[hidden]{display:none!important}
.product-characteristics>div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-bottom:1px solid rgba(51,91,57,.08);
  font-size:13px;
}
.product-characteristics>div:nth-last-child(-n+2){border-bottom:0}
.product-characteristics span{color:#788078}
.product-characteristics strong{text-align:right;color:#26352a}
.product-stock.out{color:#9b4444!important}
.product-page-add:disabled{opacity:.55;cursor:not-allowed}
@media(max-width:620px){.product-characteristics{grid-template-columns:1fr}.product-characteristics>div{border-bottom:1px solid rgba(51,91,57,.08)!important}.product-characteristics>div:last-child{border-bottom:0!important}}
