:root {
  --ink: #233229;
  --sage: #687961;
  --deep: #33453a;
  --cream: #f6f2e8;
  --paper: #fffdf8;
  --terracotta: #c97050;
  --line: #dad9cf;
  --muted: #6f756f;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); }
body.drawer-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.demo-ribbon { min-height: 38px; display: flex; justify-content: center; align-items: center; gap: 30px; padding: 8px 24px; background: var(--deep); color: #fff; font-size: 12px; letter-spacing: .02em; }
.demo-ribbon > a { display: inline-flex; gap: 8px; align-items: center; color: #dce8dd; font-weight: 700; }
.izprati-mark { display: inline-flex; align-items: center; gap: 2px; white-space: nowrap; }
.izprati-mark b { color: #65af68; font-size: 11px; }
.izprati-mark svg { width: 30px; height: 8px; overflow: visible; }
.izprati-mark path:first-child { fill: #db3a31; }
.izprati-mark path:last-child { fill: #b82f28; }

.site-header { height: 78px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(24px, 6vw, 92px); border-bottom: 1px solid rgba(35,50,41,.12); background: rgba(255,253,248,.94); backdrop-filter: blur(14px); position: relative; z-index: 40; }
.site-header nav { display: flex; justify-content: center; gap: 34px; font-size: 14px; font-weight: 600; }
.site-header nav a:hover { color: var(--terracotta); }
.brand { font-family: "Playfair Display", serif; font-size: 21px; font-weight: 700; letter-spacing: .13em; }
.brand-leaf { color: var(--terracotta); font-family: sans-serif; }
.cart-button { justify-self: end; border: 0; background: transparent; color: var(--ink); font-weight: 700; cursor: pointer; }
.cart-button span { display: inline-grid; place-items: center; width: 23px; height: 23px; margin-left: 8px; border-radius: 50%; background: var(--ink); color: #fff; font-size: 11px; }

.hero { min-height: 690px; display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); overflow: hidden; }
.hero-copy { align-self: center; padding: 80px clamp(30px, 8vw, 130px); }
.eyebrow { color: var(--terracotta); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: "Playfair Display", serif; font-weight: 600; letter-spacing: -.035em; }
.hero h1 { max-width: 650px; margin: 20px 0 24px; font-size: clamp(48px, 5.8vw, 88px); line-height: .98; }
.hero h1 em { color: var(--terracotta); font-weight: inherit; }
.hero-copy > p { max-width: 560px; margin: 0 0 32px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.primary-button { min-height: 52px; display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; border: 0; border-radius: 2px; padding: 0 23px; background: var(--deep); color: #fff; font-weight: 700; cursor: pointer; box-shadow: 0 8px 28px rgba(35,50,41,.12); }
.primary-button:hover { background: #24352b; transform: translateY(-1px); }
.text-button { border: 0; border-bottom: 1px solid var(--ink); padding: 6px 0; background: transparent; color: var(--ink); font-weight: 700; cursor: pointer; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 54px; color: var(--sage); font-size: 12px; font-weight: 700; }
.hero-visual { position: relative; display: grid; place-items: center; min-height: 610px; background: #87927a; overflow: hidden; }
.hero-visual .sun { position: absolute; width: 72%; aspect-ratio: 1; border-radius: 50%; background: #d8d0a5; opacity: .74; }
.hero-visual img { position: relative; z-index: 1; width: min(68%, 650px); aspect-ratio: 1; object-fit: cover; border-radius: 48% 48% 5px 5px; box-shadow: 0 35px 90px rgba(20,35,25,.3); }
.floating-note { position: absolute; z-index: 2; right: 9%; bottom: 12%; display: grid; place-items: center; width: 118px; height: 118px; border-radius: 50%; background: var(--terracotta); color: #fff; text-align: center; font-family: "Playfair Display", serif; transform: rotate(7deg); }

.intro { max-width: 1120px; display: grid; grid-template-columns: .7fr 1fr 1fr; gap: 50px; align-items: start; margin: 0 auto; padding: 120px 30px; }
.intro h2 { margin: 0; font-size: clamp(40px, 5vw, 66px); line-height: 1.04; }
.intro p { margin: 4px 0 0; color: var(--muted); font-size: 17px; line-height: 1.8; }
.products { padding: 95px clamp(30px, 8vw, 130px) 120px; background: #eef0e8; }
.section-heading { display: flex; align-items: end; justify-content: space-between; max-width: 1120px; margin: 0 auto 42px; }
.section-heading h2 { margin: 10px 0 0; font-size: 52px; }
.section-heading > span { color: var(--muted); font-size: 13px; }
.product-card { max-width: 580px; margin: 0 auto; }
.product-image { position: relative; overflow: hidden; background: #dde1d6; }
.product-image img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.025); }
.product-image span { position: absolute; top: 18px; left: 18px; padding: 8px 12px; background: var(--paper); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-copy { display: flex; justify-content: space-between; gap: 30px; padding: 21px 0 18px; }
.product-copy h3 { margin: 0 0 6px; font-family: "Playfair Display", serif; font-size: 25px; }
.product-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.secondary-button { width: 100%; min-height: 50px; border: 1px solid var(--deep); background: transparent; color: var(--deep); font-weight: 750; cursor: pointer; }
.secondary-button:hover { background: var(--deep); color: #fff; }
.delivery-story { display: grid; grid-template-columns: 1fr 1fr auto; gap: 60px; align-items: center; padding: 95px clamp(30px, 8vw, 130px); background: #d8c9b6; }
.delivery-story h2 { max-width: 540px; margin: 10px 0 0; font-size: 48px; line-height: 1.05; }
.delivery-story p { max-width: 520px; color: #525850; line-height: 1.7; }

footer { display: grid; grid-template-columns: 1fr 1fr auto; gap: 50px; padding: 70px clamp(30px, 8vw, 130px); background: var(--ink); color: #fff; }
footer p { max-width: 360px; color: #abb7ae; font-size: 13px; line-height: 1.6; }
footer .izprati-mark { margin-top: 5px; }

.cart-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(18,27,21,.46); opacity: 0; pointer-events: none; transition: opacity .25s; }
.cart-scrim.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer { position: fixed; z-index: 91; top: 0; right: 0; width: min(480px, 100%); height: 100dvh; display: flex; flex-direction: column; padding: 32px; background: var(--paper); transform: translateX(102%); transition: transform .3s ease; box-shadow: -20px 0 60px rgba(17,29,20,.2); }
.cart-drawer.is-open { transform: translateX(0); }
.drawer-head { display: flex; align-items: start; justify-content: space-between; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { margin: 4px 0 0; font-size: 38px; }
.drawer-head button { border: 0; background: transparent; font-size: 34px; cursor: pointer; }
.drawer-product { display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: start; padding: 28px 0; }
.drawer-product img { width: 96px; height: 112px; object-fit: cover; }
.drawer-product b, .drawer-product span { display: block; }
.drawer-product span { margin-top: 6px; color: var(--muted); font-size: 12px; }
.qty { display: inline-flex; align-items: center; margin-top: 15px; border: 1px solid var(--line); }
.qty button { width: 34px; height: 30px; border: 0; background: transparent; cursor: pointer; }
.qty span { min-width: 26px; margin: 0; text-align: center; color: var(--ink); }
.drawer-bottom { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.drawer-bottom > div { display: flex; justify-content: space-between; font-size: 17px; }
.drawer-bottom p { color: var(--muted); font-size: 12px; }
.drawer-bottom .primary-button { width: 100%; margin-top: 16px; }

.product-page { padding: 60px clamp(30px, 8vw, 130px) 100px; }
.back-link, .checkout-heading > a { font-size: 13px; font-weight: 700; color: var(--muted); }
.product-detail { max-width: 1180px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(45px, 7vw, 100px); align-items: center; margin: 50px auto 0; }
.product-detail-image { background: #e3e5dc; padding: 45px; }
.product-detail-image img { width: 100%; }
.product-detail-copy h1 { margin: 16px 0; font-size: clamp(48px, 5vw, 70px); line-height: 1.02; }
.stars { color: var(--terracotta); letter-spacing: .08em; }
.stars span { color: var(--muted); font-size: 12px; letter-spacing: 0; }
.product-detail-copy > p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.product-detail-copy ul { margin: 26px 0; padding: 0; list-style: none; }
.product-detail-copy li { padding: 10px 0; border-bottom: 1px solid var(--line); }
.buy-row { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 30px; }
.buy-row > strong { font-family: "Playfair Display", serif; font-size: 32px; }
.product-note { margin-top: 22px; padding: 16px; background: var(--cream); color: var(--muted); font-size: 13px; }

.checkout-page { min-height: calc(100vh - 116px); padding: 46px clamp(24px, 6vw, 92px) 90px; background: #f4f3ee; }
.checkout-heading { max-width: 1240px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; margin: 0 auto 36px; }
.checkout-heading > div:nth-child(2) { text-align: center; }
.checkout-heading h1 { margin: 6px 0 0; font-size: 44px; }
.stepper { justify-self: end; display: grid; grid-template-columns: auto 54px auto; align-items: center; column-gap: 8px; }
.stepper span { display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid #aeb4ae; border-radius: 50%; font-size: 11px; }
.stepper span.active { background: var(--deep); border-color: var(--deep); color: #fff; }
.stepper i { height: 1px; background: #c8ccc7; }
.stepper b { margin-top: 7px; color: var(--muted); font-size: 9px; font-weight: 600; text-align: center; }
.checkout-layout { max-width: 1240px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .8fr); gap: 26px; align-items: start; margin: 0 auto; }
.checkout-form, .order-summary { background: #fff; border: 1px solid #e2e1dc; box-shadow: 0 18px 55px rgba(39,48,40,.055); }
.checkout-form { padding: clamp(24px, 4vw, 48px); }
.checkout-section { display: flex; gap: 18px; align-items: start; margin: 32px 0 20px; padding-top: 30px; border-top: 1px solid var(--line); }
.checkout-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.checkout-section h2 { margin: -2px 0 3px; font-family: "Manrope", sans-serif; font-size: 20px; letter-spacing: -.02em; }
.checkout-section p { margin: 0; color: var(--muted); font-size: 12px; }
.section-number { display: grid; place-items: center; flex: 0 0 30px; height: 30px; border-radius: 50%; background: var(--cream); color: var(--terracotta); font-size: 10px; font-weight: 800; }
.field-grid, .native-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-grid .form-field:first-child { grid-column: 1 / -1; }
.form-field { display: grid; gap: 7px; }
.form-field span { color: #555e57; font-size: 11px; font-weight: 700; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 48px; border: 1px solid #cfd2cc; border-radius: 6px; background: #fff; padding: 0 14px; color: var(--ink); outline: none; }
.form-field input:focus, .form-field select:focus { border-color: var(--terracotta); box-shadow: 0 0 0 3px rgba(201,112,80,.12); }
.octava-field { display: none; }
.native-shipping { margin-top: 14px; }
.payment-card { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--deep); border-radius: 8px; background: #f8faf7; }
.payment-card input { accent-color: var(--deep); }
.payment-card small { display: block; margin-top: 3px; color: var(--muted); }
.payment-card > strong { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--deep); color: #fff; font-size: 12px; }
.submit-button { width: 100%; margin-top: 25px; }
.submit-button:disabled { cursor: not-allowed; opacity: .45; transform: none; }
.privacy-note { text-align: center; color: var(--muted); font-size: 11px; }
.order-summary { position: sticky; top: 24px; padding: 34px; }
.order-summary h2 { margin: 7px 0 25px; font-size: 34px; }
.summary-product { display: grid; grid-template-columns: 78px 1fr auto; gap: 14px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.summary-product img { width: 78px; height: 86px; object-fit: cover; }
.summary-product span { display: block; margin-top: 5px; color: var(--muted); font-size: 11px; }
.promo { display: flex; margin: 22px 0; }
.promo input { min-width: 0; flex: 1; height: 44px; border: 1px solid var(--line); padding: 0 12px; }
.promo button { border: 0; background: var(--ink); color: #fff; padding: 0 16px; }
.order-summary dl { margin: 0; }
.order-summary dl > div { display: flex; justify-content: space-between; padding: 9px 0; color: var(--muted); font-size: 13px; }
.order-summary dl .checkout-total { margin-top: 8px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--ink); font-size: 19px; font-weight: 800; }
.summary-help { display: flex; gap: 13px; align-items: start; margin-top: 28px; padding: 17px; background: var(--cream); }
.summary-help > span { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border: 1px solid var(--sage); border-radius: 50%; }
.summary-help p { margin: 3px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }

.complete-page { min-height: 70vh; display: grid; place-items: center; padding: 70px 24px; background: var(--cream); }
.complete-card { width: min(620px, 100%); padding: 60px; background: #fff; text-align: center; box-shadow: 0 20px 70px rgba(35,50,41,.1); }
.complete-icon { display: grid; place-items: center; width: 66px; height: 66px; margin: 0 auto 24px; border-radius: 50%; background: #e3ede2; color: var(--sage); font-size: 26px; }
.complete-card h1 { margin: 10px 0 16px; font-size: 56px; }
.complete-card > p { color: var(--muted); line-height: 1.7; }
.complete-details { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin: 30px 0; padding: 22px; background: var(--cream); text-align: left; font-size: 13px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .intro { grid-template-columns: 1fr; gap: 20px; }
  .delivery-story { grid-template-columns: 1fr; gap: 20px; }
  .checkout-heading { grid-template-columns: 1fr auto; }
  .checkout-heading > div:nth-child(2) { grid-column: 1 / -1; grid-row: 1; }
  .checkout-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; grid-row: 1; }
  .product-detail { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .demo-ribbon { align-items: flex-start; gap: 7px; flex-direction: column; padding: 9px 16px; }
  .site-header { height: 66px; padding: 0 18px; }
  .brand { font-size: 17px; }
  .hero-copy { padding: 60px 24px; }
  .hero h1 { font-size: 49px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .trust-row { gap: 11px; flex-direction: column; }
  .hero-visual { min-height: 420px; }
  .hero-visual img { width: 76%; }
  .floating-note { width: 92px; height: 92px; right: 5%; font-size: 13px; }
  .intro, .products, .delivery-story { padding: 70px 22px; }
  .section-heading h2, .delivery-story h2 { font-size: 40px; }
  .product-page, .checkout-page { padding-left: 16px; padding-right: 16px; }
  .product-detail-image { padding: 20px; }
  .buy-row { align-items: stretch; flex-direction: column; }
  .checkout-heading { display: flex; align-items: flex-start; flex-direction: column; }
  .checkout-heading > div:nth-child(2) { text-align: left; }
  .stepper { align-self: stretch; justify-content: end; }
  .checkout-form, .order-summary { padding: 22px 17px; }
  .field-grid, .native-fields { grid-template-columns: 1fr; }
  .field-grid .form-field:first-child { grid-column: auto; }
  .summary-product { grid-template-columns: 66px 1fr; }
  .summary-product > strong { grid-column: 2; }
  .complete-card { padding: 42px 24px; }
  .complete-card h1 { font-size: 44px; }
}

