:root {
  --cream: #fee0e0;
  --cream-dark: #fac8c8;
  --ink: #3a2f26;
  --ink-soft: #6b5b4b;
  --muted: #9a8975;
  --terracotta: #c97b4d;
  --terracotta-dark: #a8623b;
  --rose: #d9a68f;
  --rosu-eva: #c23233;
  --roz-eva: #fee0e0;
  --line: #e4ddd0;
  --white: #ffffff;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 500; line-height: 1.2; margin: 0 0 .6em; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(36px, 4.2vw, 54px); }
h2 { font-size: clamp(26px, 3vw, 38px); }
h3 { font-size: 20px; }
a { color: var(--ink); text-decoration: none; transition: color .2s; }
a:hover { color: var(--terracotta); }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.eyebrow { display: inline-block; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; margin-bottom: 12px; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 14.3px; color: var(--ink-soft); text-decoration: none; padding: 6px 0; transition: color .15s; }
.back-btn strong { font-weight: 700; }
.back-btn:hover { color: var(--rosu-eva); }
.back-btn::before { content: '←'; font-size: 17.6px; line-height: 1; }
.back-btn-row { padding-top: 18px; }
.eyebrow.eyebrow-roz { color: var(--rosu-eva); }
hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }

/* Header */
.top-bar { background: var(--cream); color: var(--ink-soft); padding: 8px 0; font-size: 13px; }
.top-bar .container { display: flex; justify-content: center; align-items: center; gap: 24px; position: relative; }
.top-bar a { color: var(--ink-soft); }
.top-bar a:hover { color: var(--terracotta); }
.top-bar-text { text-align: center; }
.top-bar-close { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: transparent; border: 0; color: var(--muted); font-size: 16px; line-height: 1; padding: 4px 8px; cursor: pointer; border-radius: 4px; }
.top-bar-close:hover { color: var(--ink); background: rgba(0,0,0,.04); }
.top-bar-reopen {
  position: fixed; top: 0; left: 50%; transform: translateX(-50%);
  background: var(--cream); color: var(--ink);
  border: 1px solid var(--line); border-top: 0; border-radius: 0 0 8px 8px;
  width: 36px; height: 18px; padding: 0;
  cursor: pointer; z-index: 260;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  display: inline-flex; align-items: center; justify-content: center;
}
.top-bar-reopen:hover { background: var(--cream-dark); }
.top-bar-reopen[hidden] { display: none; }
.top-bar-reopen::before {
  content: ''; display: inline-block; width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 6px solid var(--ink);
}

.header { background: var(--white); border-bottom: 0; position: sticky; top: 0; z-index: 100; transition: box-shadow .3s; }
.header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.04); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 104px; width: auto; }
.logo-text { font-family: 'Playfair Display', serif; font-size: 24px; color: var(--ink); font-weight: 500; letter-spacing: -.01em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 14px; font-size: 14px; color: var(--ink-soft); font-weight: 500; border-radius: 6px; }
.nav a:hover, .nav a.active { color: var(--ink); background: var(--roz-eva); }
.nav-cta { background: var(--roz-eva); color: var(--ink) !important; padding: 10px 22px !important; border-radius: 100px; font-weight: 600 !important; font-size: 13px; letter-spacing: .02em; }
.nav-cta:hover { background: #fbc4c4; color: var(--ink) !important; }
.mobile-toggle { display: none; background: none; border: 1px solid #000; padding: 8px 10px; border-radius: 6px; cursor: pointer; font-size: 0; line-height: 0; }
.mobile-toggle .dot { display: block; width: 10px; height: 7px; border-radius: 50%; background: var(--rosu-eva); margin: 1.8px 0; transform: rotate(-45deg); }
.mobile-toggle .dot:first-child { margin-top: 0; }
.mobile-toggle .dot:last-child { margin-bottom: 0; }

/* Hero */
.hero { padding: 80px 0 60px; text-align: center; background: var(--white); position: relative; overflow: hidden; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero p.lead { font-size: 18px; color: var(--ink-soft); max-width: 560px; margin: 12px auto 28px; }
.hero.hero-img { padding: 140px 0 120px; background-image: url('/assets/hero.jpg'); background-size: cover; background-position: center; color: #fff; }
.hero.hero-img .hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(58,47,38,0.55) 0%, rgba(58,47,38,0.35) 100%); z-index: 1; }
.hero.hero-img .hero-content { position: relative; z-index: 2; }
.hero.hero-img h1 { color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero.hero-img h1 em { color: #f2c9a8; }
.hero.hero-img .eyebrow { color: #f2c9a8; }
.hero.hero-img p.lead { color: rgba(255,255,255,0.9); }
.hero-cta { display: inline-flex; align-items: center; gap: 10px; background: var(--roz-eva); color: var(--ink); padding: 16px 32px; border-radius: 100px; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; font-size: 13px; transition: all .3s; }
.hero-cta:hover { background: #fbc4c4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,50,51,.2); color: var(--ink); }

/* Section */
.section { padding: 80px 0; }
.section-cream { background: var(--cream-dark); }
.section-title { text-align: center; margin-bottom: 48px; }
.section-title h2 { margin-bottom: 8px; }
.section-title p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; }

/* Product grid */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card { background: var(--white); border-radius: 8px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(58,47,38,.08); }
.product-card a { display: block; color: inherit; }
.product-card .img-wrap { aspect-ratio: 1; overflow: hidden; background: var(--cream-dark); }
.product-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.product-card:hover .img-wrap img { transform: scale(1.05); }
.product-card .body { padding: 20px 22px 24px; }
.product-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; margin: 0 0 6px; font-weight: 500; }
.product-card .cat { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; display: block; }
.product-card .price { font-size: 17px; color: var(--rosu-eva); font-weight: 500; }
.product-card .oos { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

/* Product detail */
.product-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; padding: 60px 0; }
.product-gallery .main-img { aspect-ratio: 1; overflow: hidden; border-radius: 8px; background: var(--cream-dark); margin-bottom: 12px; }
.product-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery .thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.product-gallery .thumbs button { border: 2px solid var(--line); padding: 0; background: none; cursor: pointer; aspect-ratio: 1; overflow: hidden; border-radius: 4px; }
.product-gallery .thumbs button.active { border-color: var(--terracotta); }
.product-gallery .thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info .breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.product-info .breadcrumb a { color: var(--muted); }
.product-info h1 { font-size: 36px; margin-bottom: 12px; }
.product-info .price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-info .price { font-size: 28px; font-family: 'Playfair Display', serif; color: var(--rosu-eva); }
.product-info .stock { font-size: 13px; color: var(--ink-soft); }
.product-info .stock.out { color: #c23a3a; }
.product-info .description { color: var(--ink-soft); line-height: 1.8; margin: 24px 0; }
.product-info .description p { margin: 0 0 14px; }
.order-btn { display: inline-flex; align-items: center; gap: 10px; background: var(--rosu-eva); color: #fff; padding: 16px 36px; border-radius: 100px; font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .03em; transition: all .3s; }
.order-btn:hover { background: #a82a2b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,50,51,.3); color: #fff; }
.order-btn svg { width: 22px; height: 22px; }
.order-btn-arrow { font-size: 18px; line-height: 1; }
.order-btn-logo { height: 28px; width: auto; background: #fff; border-radius: 50%; padding: 2px; }
.order-btn.disabled { background: var(--muted); pointer-events: none; }

/* Buy row (product page) */
.buy-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.stock-chip { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 500; color: #2f7a3e; background: #eaf4ec; padding: 8px 12px; border-radius: 100px; white-space: nowrap; }
.stock-chip.out { color: #c23a3a; background: #fae8e8; }
.qty-form { display: inline-flex; align-items: stretch; border: 1px solid var(--line); border-radius: 100px; background: #fff; overflow: hidden; }
.qty-form .qbtn { background: none; border: none; padding: 0 14px; font-size: 18px; cursor: pointer; color: var(--ink-soft); transition: background .2s; }
.qty-form .qbtn:hover { background: var(--cream-dark); color: var(--ink); }
.qty-form input[type=number] { border: none; width: 50px; text-align: center; font: inherit; font-size: 15px; background: transparent; outline: none; -moz-appearance: textfield; color: var(--ink); }
.qty-form input[type=number]::-webkit-inner-spin-button, .qty-form input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.add-btn { padding: 12px 24px !important; border-radius: 0 !important; margin: 0 0 0 8px !important; background: var(--roz-eva) !important; color: var(--ink) !important; font-size: 14px !important; }
.add-btn:hover { background: #fbc4c4 !important; }
.order-btn-inline { padding: 12px 24px; font-size: 13px; }

/* Cart icon in header */
.nav-cart { position: relative; padding: 10px 12px !important; color: var(--ink) !important; border-radius: 6px; display: inline-flex; align-items: center; }
.nav-cart:hover, .nav-cart.active { background: var(--roz-eva); color: var(--ink) !important; }
.cart-count { position: absolute; top: 3px; right: 2px; background: var(--roz-eva); color: var(--rosu-eva); font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; padding: 0 5px; }

/* Cart page */
.cart-list { background: #fff; border-radius: 10px; box-shadow: 0 2px 8px rgba(0,0,0,.03); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 90px 1fr 150px 110px 30px; align-items: center; gap: 16px; padding: 20px; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: none; }
.cart-img { display: block; aspect-ratio: 1; border-radius: 6px; overflow: hidden; background: var(--cream-dark); }
.cart-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-meta { display: flex; flex-direction: column; gap: 4px; }
.cart-title { font-weight: 600; color: var(--ink); font-size: 16px; text-decoration: none; font-family: 'Playfair Display', serif; }
.cart-title:hover { color: var(--terracotta); }
.cart-sku { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.cart-price { font-size: 13px; color: var(--rosu-eva); }
.cart-warn { font-size: 12px; color: #c23a3a; margin-top: 2px; }
.qty-inline { justify-self: start; }
.cart-sub { font-weight: 600; font-size: 16px; color: var(--rosu-eva); text-align: right; }
.cart-del button { background: none; border: 1px solid var(--line); width: 30px; height: 30px; border-radius: 50%; color: var(--muted); cursor: pointer; font-size: 14px; line-height: 1; transition: all .2s; }
.cart-del button:hover { background: #c23a3a; color: #fff; border-color: #c23a3a; }
.cart-foot { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 24px; padding: 20px 0; border-top: 1px solid var(--line); gap: 24px; flex-wrap: wrap; }
.cart-summary { min-width: 280px; flex: 0 1 320px; }
.cart-line { display: flex; justify-content: space-between; align-items: baseline; padding: 6px 0; font-size: 14.5px; color: var(--ink-soft); }
.cart-line + .cart-line { border-top: 1px dashed var(--cream-dark); }
.cart-line span:last-child { font-weight: 600; color: var(--ink); }
.cart-line-total { padding-top: 12px; margin-top: 6px; border-top: 2px solid var(--ink) !important; }
.cart-line-total span:first-child { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; align-self: center; }
.cart-line-total span:last-child { font-size: 26px; font-family: 'Playfair Display', serif; color: var(--rosu-eva); font-weight: 500; }
.cart-line-note { color: var(--muted) !important; font-size: 13px !important; font-style: italic; }
.cart-line-note span { color: var(--muted) !important; font-weight: 700 !important; }

/* Info cards (livrare + plata) */
.cart-info-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 32px;
}
@media (min-width: 720px) {
  .cart-info-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
.cart-info-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px;
}
.cart-info-title {
  font-family: 'Playfair Display', serif; font-size: 20px; margin: 0 0 10px;
  display: flex; align-items: center; gap: 10px;
}
.cart-info-title::before {
  content: ''; display: inline-block; width: 6px; height: 22px;
  background: var(--rosu-eva); border-radius: 3px;
}
.cart-info-text { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0 0 10px; }
.cart-info-list { list-style: none; padding: 0; margin: 0 0 14px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }
.cart-info-list li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.cart-info-list li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; background: var(--rosu-eva); border-radius: 50%;
}
.cart-info-fee {
  font-size: 14px; color: var(--ink-soft); margin: 0 0 14px;
  background: var(--cream-dark); padding: 10px 14px; border-radius: 8px;
}
.cart-info-fee strong { color: var(--terracotta); font-size: 16px; }
.cart-carrier-name {
  font-size: 15px; color: var(--ink); margin: 14px 0 6px;
}
.cart-info-logos {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  padding-top: 14px; border-top: 1px solid var(--cream-dark);
}
.cart-info-logos img {
  display: block; height: 50px; width: auto; object-fit: contain;
  border-radius: 6px;
}
.cart-info-logos img.logo-easybox { height: 113px; }
.cart-info-logos img.logo-postaromana { height: 63px; }

@media (max-width: 700px) {
  .cart-row { grid-template-columns: 70px 1fr 30px; grid-template-rows: auto auto; gap: 12px; }
  .cart-img { grid-row: span 2; }
  .cart-meta { grid-column: 2; }
  .qty-inline { grid-column: 2; justify-self: start; }
  .cart-sub { grid-column: 2; text-align: left; font-size: 15px; }
  .cart-del { grid-column: 3; grid-row: 1; }
  .buy-row { flex-direction: column; }
  .buy-row .qty-form, .buy-row .order-btn-inline, .buy-row .add-btn { width: 100%; justify-content: center; }
  .cart-info-logos { justify-content: center; }
}

/* About / Contact */
.page-header { padding: 60px 0 40px; text-align: center; }

/* Footer */
.footer { background: var(--roz-eva); color: #000; padding: 60px 0 30px; margin-top: 80px; }
.footer .grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer h4 { color: #000; font-family: 'Inter', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 18px; font-weight: 700; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: #000; }
.footer a:hover { color: var(--rosu-eva); }
.footer-tagline { color: #000; font-size: 14px; line-height: 1.7; margin: 0; font-weight: 400; }
.footer-brand { display: flex; align-items: center; gap: 18px; height: 81px; margin-bottom: 32px; }
.footer-brand-logo { height: 100%; width: auto; flex-shrink: 0; display: block; }
.footer-brand .footer-tagline { font-size: 22px; line-height: 1.3; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(0,0,0,.12); font-size: 13px; color: #000; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { display: inline-flex; align-items: center; gap: 8px; }
.footer-logo { height: 32px; width: auto; display: inline-block; vertical-align: middle; }
.footer-fidens { display: inline-flex; align-items: center; opacity: .85; transition: opacity .2s; }
.footer-fidens:hover { opacity: 1; }
.footer-fidens img { display: block; height: 32px; width: auto; }

/* Compliance badges row (Netopia / ANPC / SOL) — all uniform 2.5:1 ratio */
.footer-badges {
  display: flex; flex-wrap: nowrap; gap: 12px; justify-content: center;
  align-items: center; padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,.1);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.footer-badges::-webkit-scrollbar { display: none; }
.footer-badges a {
  display: block; flex-shrink: 0; line-height: 0;
  border-radius: 6px; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.footer-badges a:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.footer-badges img {
  display: block;
  width: 140px; height: 56px;        /* 2.5:1 ratio, uniform across all badges */
  object-fit: cover;
}

/* Legal pages */
.legal-page { padding: 20px 0 80px; }
.legal-page h2 { font-size: 20px; margin: 32px 0 8px; }
.legal-page h2:first-of-type { margin-top: 12px; }
.legal-page p, .legal-page ul, .legal-page ol { color: var(--ink-soft); line-height: 1.7; margin: 0 0 12px; }
.legal-page ul, .legal-page ol { padding-left: 22px; }
.legal-page li { margin-bottom: 6px; }
.legal-page a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-page a:hover { color: var(--terracotta-dark); }
.legal-updated { font-size: 13px; color: var(--muted); font-style: italic; margin-bottom: 24px; }

/* Forms */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 6px;
  font-family: inherit; font-size: 15px; background: #fff; color: var(--ink);
}
.form-row input:focus, .form-row textarea:focus, .form-row select:focus { outline: none; border-color: var(--terracotta); }
.form-row textarea { resize: vertical; min-height: 100px; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .25s; font-family: inherit; }
.btn-primary { background: var(--roz-eva); color: var(--ink); }
.btn-primary:hover { background: #fbc4c4; }
.btn-secondary { background: var(--cream-dark); color: var(--ink); }
.btn-secondary:hover { background: var(--line); }
.btn-danger { background: #c23a3a; color: #fff; }
.btn-danger:hover { background: #9e2c2c; }

.alert { padding: 12px 16px; border-radius: 6px; margin-bottom: 18px; font-size: 14px; }
.alert-success { background: #e8f5ea; color: #1f5a2a; border: 1px solid #b8dfbe; }
.alert-error { background: #fae8e8; color: #842020; border: 1px solid #e8b8b8; }

/* ======================================================================
   Homepage v2 — blop-inspired layout (cu paleta caldă a Eva)
   Sections: search · hero (8/4) · benefits · categories · popular
   ====================================================================== */

/* Search bar (refolosit) */
.home-search { padding: 26px 0 8px; }
.home-search .container { display: flex; justify-content: center; }
.search-form {
  display: flex; align-items: center; width: 100%; max-width: 560px;
  background: #fff; border: 1px solid var(--roz-eva); border-radius: 10px;
  padding: 4px 18px; box-shadow: 0 1px 3px rgba(58,47,38,.04);
  transition: border-color .2s, box-shadow .2s;
}
.search-form:focus-within { border-color: var(--terracotta); box-shadow: 0 4px 14px rgba(201,123,77,.12); }
.search-form .search-icon { color: var(--muted); flex-shrink: 0; }
.search-form input[type="search"] {
  flex: 1; border: none; outline: none; background: transparent;
  padding: 6px 12px; font: inherit; font-size: 15px; color: var(--ink);
  -webkit-appearance: none; appearance: none;
}
.search-form input[type="search"]::-webkit-search-cancel-button { display: none; }
.search-form .search-go {
  background: var(--roz-eva); color: var(--ink); border: none;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: 18px; cursor: pointer; transition: background .2s;
  display: inline-flex; align-items: center; justify-content: center;
}
.search-form .search-go:hover { background: #fbc4c4; }

/* Generic placeholder for missing images */
.img-placeholder {
  width: 100%; height: 100%; background: var(--cream-dark); position: relative;
}
.img-placeholder::after {
  content: 'Imagine'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
}

/* Heading-block (titlu centrat + subtitlu + divider) — ca pe blop */
.heading-block { text-align: center; margin: 0 auto 40px; }
.heading-block .heading {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15;
  margin: 0 0 12px; color: var(--ink);
}
.heading-block .subheading {
  color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin: 0 0 20px;
}
.heading-block .divider {
  position: relative;
  display: block; width: calc(100% - 30px); margin: 24px auto 0; height: 2px;
  background: linear-gradient(to right, #000 0% 40%, transparent 40% 60%, #000 60% 100%);
  border-radius: 2px;
}
.heading-block .divider::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 18px; height: 12px; border-radius: 50%;
  background: var(--rosu-eva);
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ============ HERO IMAGE CAROUSEL (sub bara de search) ============ */
.hero-carousel { padding: 22px 0 0; }

/* Latime unificata pentru zonele de pe homepage */
.hero-carousel > .container,
.home-search > .container,
.benefits-v2 > .container,
.info-carousel > .container-sm,
.categories-v2 > .container { max-width: 1200px; padding: 0 12px; }
@media (min-width: 700px) {
  .hero-carousel > .container,
  .home-search > .container,
  .benefits-v2 > .container,
  .info-carousel > .container-sm,
  .categories-v2 > .container { padding: 0 16px; }
}
.hc-viewport {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--cream-dark);
  box-shadow: 0 6px 22px rgba(58,47,38,.08);
}
.hc-track {
  display: flex;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.hc-slide { flex: 0 0 100%; min-width: 0; }
.hc-link {
  display: block; position: relative; line-height: 0;
  color: inherit; text-decoration: none;
}
.hc-link img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 16 / 10; display: block;
}
.hc-link .img-placeholder { aspect-ratio: 16 / 10; }

/* Optional overlay text on top of slide */
.hc-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 22px 30px;
  background: linear-gradient(180deg, transparent 0%, rgba(58,47,38,.7) 100%);
  color: #fff; line-height: 1.3;
}
.hc-title {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(22px, 3.4vw, 36px); margin: 0 0 4px; color: #fff;
}
.hc-subtitle { font-size: 14.7px; margin: 0; color: rgba(255,255,255,.92); max-width: 520px; }

/* Side arrows (hidden on small screens — swipe instead) */
.hc-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.85); color: var(--ink);
  border: 0; font-size: 22px; line-height: 1; cursor: pointer;
  display: none; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(58,47,38,.15);
  transition: background .2s;
  z-index: 2;
}
.hc-nav:hover { background: #fff; }
.hc-prev { left: 14px; }
.hc-next { right: 14px; }
@media (min-width: 700px) { .hc-nav { display: inline-flex; } }

/* Dots */
.hc-dots {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; gap: 8px; justify-content: center;
  z-index: 2;
}
.hc-dots button {
  width: 8px; height: 8px; border-radius: 50%; padding: 0;
  background: var(--rosu-eva); opacity: .55; border: none; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.hc-dots button.active { opacity: 1; transform: scale(1.3); }

/* Larger screens — wider aspect, push overlay up a bit */
@media (min-width: 700px) {
  .hc-link img,
  .hc-link .img-placeholder { aspect-ratio: 21 / 9; }
  .hc-overlay { padding: 36px 40px 36px; max-width: 60%; background: linear-gradient(90deg, rgba(58,47,38,.7) 0%, transparent 100%); }
  .hc-dots { justify-content: flex-start; padding-left: 24px; bottom: 16px; }
}

/* ============ BENEFITS BAND ============ */
.benefits-v2 { padding: 22px 0 4px; }
.benefits-v2-row {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--roz-eva); border: 0; border-radius: 12px;
  padding: 4px 12px;
}
.benefit-block {
  display: flex; align-items: center; justify-content: flex-start; gap: 6px; flex-wrap: nowrap;
  padding: 7px 0;
  border-top: 0;
  min-width: 0;
}
.benefit-block:first-child { border-top: 0; }
.benefit-icon {
  flex-shrink: 0; width: 25.2px; height: 25.2px;
  background: var(--cream-dark); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; line-height: 1; overflow: hidden;
}
.benefit-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.benefit-icon:has(img) { background: transparent; border-radius: 0; }
.benefit-block > div:not(.benefit-icon) {
  flex: 1 1 auto; min-width: 0;
  text-align: left; padding: 0; margin: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.benefit-title {
  display: inline;
  font-family: 'Playfair Display', serif; font-weight: 500; font-size: 14.7px;
  margin: 0; color: var(--ink); letter-spacing: .01em;
}
.benefit-title::after { content: ' · '; color: var(--muted); font-weight: 400; }
.benefit-title:last-child::after { content: ''; }
.benefit-title-link { display: inline; color: var(--ink); text-decoration: none; transition: color .15s; padding: 0; margin: 0; font-size: clamp(22px, 3.4vw, 36px); }
.benefit-title-link:hover { color: var(--rosu-eva); }
.benefit-desc {
  display: inline;
  font-family: 'Playfair Display', serif;
  color: var(--ink-soft); font-size: 14.7px; line-height: 1.3; margin: 0;
}

/* ============ INFO-CARDS CAROUSEL (livrare, plata, retur) ============ */
.info-carousel { padding: 32px 0 8px; }
.ic-viewport {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  overflow: hidden;
}
.ic-track {
  display: flex; transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.ic-slide {
  flex: 0 0 100%; min-width: 0;
  display: flex; align-items: center; gap: 18px;
  padding: 22px 26px 36px;
}
.ic-icon {
  flex-shrink: 0; width: 56px; height: 56px;
  background: var(--cream-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; line-height: 1; overflow: hidden;
}
.ic-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ic-icon:has(img) { background: transparent; border-radius: 0; }
.ic-body { min-width: 0; }
.ic-title {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 20px; line-height: 1.2; margin: 0 0 6px; color: var(--ink);
}
.ic-desc { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }

.ic-dots {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; gap: 8px; justify-content: center;
}
.ic-dots button {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  background: var(--rosu-eva); opacity: .35; border: none; cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.ic-dots button.active { opacity: 1; transform: scale(1.3); }

@media (min-width: 700px) {
  .ic-slide { padding: 28px 36px 40px; gap: 22px; }
  .ic-icon { width: 64px; height: 64px; font-size: 34px; }
  .ic-title { font-size: 22px; }
  .ic-desc { font-size: 15px; }
}

/* ============ CATEGORIES GRID ============ */
.categories-v2 { padding: 60px 0 0; }
.page-home .footer { margin-top: 40px; }
.page-produse .footer { margin-top: 24px; }
.cat-grid-v2 {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
  max-width: 720px; margin-left: auto; margin-right: auto;
}
@media (min-width: 700px) {
  .cat-grid-v2 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    max-width: none;
  }
}
.cat-tile {
  display: block; text-align: center; color: var(--ink);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: #fff; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.cat-tile:hover {
  transform: translateY(-3px); border-color: var(--terracotta);
  box-shadow: 0 12px 26px rgba(58,47,38,.08); color: var(--ink);
}
.cat-tile-img { aspect-ratio: 1; overflow: hidden; background: var(--cream-dark); }
.cat-tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-tile:hover .cat-tile-img img { transform: scale(1.04); }
.cat-tile-name {
  padding: 12px 10px 16px;
  background: var(--roz-eva);
  font-family: 'Playfair Display', serif; font-size: 18.8px; font-weight: 700;
}

/* ============ POPULAR PRODUCTS ============ */
.popular-v2 { padding: 50px 0 80px; }
.popular-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.pop-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pop-card:hover { transform: translateY(-3px); border-color: var(--terracotta); box-shadow: 0 12px 26px rgba(58,47,38,.08); }
.pop-card-link { display: block; color: inherit; }
.pop-card-img { aspect-ratio: 1; overflow: hidden; background: var(--cream-dark); }
.pop-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pop-card:hover .pop-card-img img { transform: scale(1.04); }
.pop-card-body { padding: 12px 14px 16px; text-align: center; }
.pop-card-cat { display: block; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.pop-card-name { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 500; margin: 0 0 6px; line-height: 1.3; }
.pop-card-price { color: var(--rosu-eva); font-weight: 600; font-size: 15px; }
.pop-card-oos { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.btn-v2-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 100px;
  border: 1.5px solid var(--ink); color: var(--ink); background: transparent;
  font-weight: 600; font-size: 13px; letter-spacing: .04em; text-transform: uppercase;
  transition: all .2s;
}
.btn-v2-outline:hover { background: var(--ink); color: #fff; }

/* ============ TABLET (>= 700px) ============ */
@media (min-width: 700px) {
  .benefits-v2-row {
    grid-template-columns: repeat(3, 1fr); padding: 18px 24px; gap: 0;
  }
  .benefit-block {
    padding: 4px 18px; border-top: 0; border-right: 0;
    align-items: center; flex-wrap: wrap;
  }
  .benefit-icon { width: 29.4px; height: 29.4px; }
  .benefit-block:last-child { border-right: 0; }
  .benefit-block > div:not(.benefit-icon) { display: flex; flex-direction: column; gap: 2px; align-items: flex-start; white-space: normal; overflow: visible; }
  .benefit-title { white-space: normal; display: block; }
  .benefit-title::after { display: none; }
  .benefit-desc { white-space: normal; overflow: visible; line-height: 1.5; display: block; }

  .popular-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* ============ MOBILE BOTTOM BAR (Shop · Newsletter · Meniu · WhatsApp) ============ */
.mobile-bottombar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  display: flex; align-items: stretch;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(58,47,38,.06);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bottombar .mbb-item {
  flex: 1; min-width: 0;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; padding: 10px 6px;
  font: 600 11px 'Inter', sans-serif; letter-spacing: .02em;
  color: var(--ink-soft); background: transparent; border: 0; cursor: pointer;
  text-decoration: none; transition: color .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-bottombar .mbb-item:hover,
.mobile-bottombar .mbb-item:active { color: var(--terracotta); background: rgba(201,123,77,.06); }
.mobile-bottombar .mbb-item svg { display: block; }
.mobile-bottombar .mbb-icon-wrap { position: relative; display: inline-flex; }
.mobile-bottombar .mbb-badge { position: absolute; top: -6px; right: -10px; background: var(--rosu-eva); color: #fff; font-size: 10px; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; display: inline-flex; align-items: center; justify-content: center; padding: 0 4px; }
.mobile-bottombar .mbb-item span {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}

/* Hide on desktop, show on mobile */
.mobile-bottombar { display: none; }
@media (max-width: 768px) {
  .mobile-bottombar { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
  .footer { margin-bottom: 0; }
}

/* ============ MOBILE SHEETS (slide-up panels) ============ */
.m-sheet {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: flex-end; justify-content: center;
}
.m-sheet[hidden] { display: none; }
.m-sheet-backdrop {
  position: absolute; inset: 0; background: rgba(58,47,38,.45);
  opacity: 0; transition: opacity .25s ease;
}
.m-sheet.is-open .m-sheet-backdrop { opacity: 1; }
.m-sheet-panel {
  position: relative; z-index: 1; width: 100%; max-width: 560px;
  background: #fff; padding: 22px 22px 28px;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -10px 40px rgba(58,47,38,.18);
  transform: translateY(100%); transition: transform .28s cubic-bezier(.2,.8,.2,1);
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  max-height: 90vh; overflow-y: auto;
}
.m-sheet.is-open .m-sheet-panel { transform: translateY(0); }
.m-sheet-x {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-dark); border: 0; color: var(--ink-soft);
  font-size: 22px; line-height: 1; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.m-sheet-x:hover { background: var(--line); color: var(--ink); }

.m-sheet-title { font-family: 'Playfair Display', serif; font-size: 22px; margin: 4px 0 8px; }

/* ============ MOBILE FULLSCREEN MENU SHEET ============ */
.m-sheet-full {
  border-radius: 0; max-width: none; padding: 0;
  height: 100vh; height: 100dvh; max-height: none; overflow: hidden;
  background: var(--white);
  display: flex; flex-direction: column;
}
.m-sheet-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(18px + env(safe-area-inset-top)) 22px 14px;
  border-bottom: 1px solid var(--line);
}
.m-sheet-logo { display: inline-flex; align-items: center; line-height: 0; }
.m-sheet-logo img { height: 50px; width: auto; display: block; }

/* The menu fills the available middle space and centers items vertically */
.m-sheet-menu {
  flex: 1; min-height: 0;
  list-style: none; padding: 18px 22px; margin: 0;
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  overflow-y: auto;
}
.m-sheet-menu li { border-bottom: 1px solid var(--cream-dark); }
.m-sheet-menu li:last-child { border-bottom: 0; }
.m-sheet-menu a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 6px;
  font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 500;
  color: var(--ink);
  transition: color .15s, transform .15s, padding .15s;
}
.m-sheet-menu a:hover,
.m-sheet-menu a:active { color: var(--terracotta); padding-left: 12px; }
.m-sheet-arrow {
  font-family: 'Inter', sans-serif; font-size: 20px; color: var(--muted);
  transition: transform .15s, color .15s;
}
.m-sheet-menu a:hover .m-sheet-arrow,
.m-sheet-menu a:active .m-sheet-arrow { color: var(--terracotta); transform: translateX(4px); }
.m-sheet-badge {
  display: inline-block; background: var(--roz-eva); color: var(--rosu-eva);
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; font-style: normal;
  padding: 2px 7px; border-radius: 100px; vertical-align: middle; margin-left: 4px;
}

/* Footer of the menu sheet — sticks to bottom, has WhatsApp CTA + meta */
.m-sheet-footer {
  display: flex; flex-direction: column; gap: 12px; align-items: stretch;
  padding: 18px 22px calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
}
.m-sheet-meta {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center;
  font-size: 13px; color: var(--ink-soft);
}
.m-sheet-meta a { color: var(--ink-soft); text-decoration: none; }
.m-sheet-meta a:hover { color: var(--terracotta); }
.m-sheet-meta span { color: var(--muted); }

/* ============ CONTACT ============ */
.contact-text { text-align: center; }
.contact-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--ink);
  margin: 0 0 18px;
}
.contact-text p:last-child { margin-bottom: 0; }
.contact-mail {
  color: var(--rosu-eva); font-weight: 700; text-decoration: underline;
  text-underline-offset: 3px; word-break: break-word;
}
.contact-mail:hover { color: #a82a2b; }
.contact-wa {
  display: inline-flex; align-items: center; vertical-align: middle;
  color: #25D366; transition: color .15s, transform .15s;
}
.contact-wa:hover { color: #1fa754; transform: translateY(-1px); }
.contact-wa svg { width: 22px; height: 22px; display: block; }

/* ============ ABOUT / DESPRE ============ */
.about-story { padding: 10px 0 100px; }
.about-story-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--ink);
  margin: 0 0 16px; text-align: justify; hyphens: auto;
}
.about-story-text p:last-child { margin-bottom: 0; }

/* ============ CHECKOUT / COMANDA ============ */
.checkout-section { padding: 18px 0 80px; }
.checkout-grid {
  display: grid; grid-template-columns: 1fr 360px; gap: 32px;
  max-width: 1080px; margin: 0 auto;
}

/* Form */
.checkout-form { display: flex; flex-direction: column; gap: 22px; }
.checkout-block {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 22px 18px;
  box-shadow: 0 1px 3px rgba(58,47,38,.04);
}
.checkout-block h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 19px; margin: 0 0 14px; color: var(--ink);
}
.ck-row { margin-bottom: 14px; }
.ck-row:last-child { margin-bottom: 4px; }
.ck-row label {
  display: block; font-size: 13.5px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px; letter-spacing: .01em;
}

/* Order details block — header (logo + order number), section titles, acord block */
.ck-details[hidden] { display: none !important; }
.ck-head {
  display: flex; align-items: center; gap: 18px;
  padding-bottom: 14px; margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.ck-head-logo { height: 81px; width: auto; flex-shrink: 0; display: block; }
.ck-head-order {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 18px; color: var(--ink); line-height: 1.3;
}
.ck-head-order strong { color: var(--rosu-eva); font-weight: 600; letter-spacing: .02em; }
@media (max-width: 540px) {
  .ck-head-logo { height: 56px; }
  .ck-head-order { font-size: 15px; }
}
.ck-section-title {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 18px; margin: 22px 0 12px; color: var(--ink);
}
.ck-section-title:first-child { margin-top: 0; }
.ck-fields[hidden] { display: none !important; }
.ck-address-pf[hidden] { display: none !important; }
.ck-easybox-locker[hidden] { display: none !important; }
.ck-hint { margin: 6px 0 0; color: var(--ink-soft); font-size: 12.5px; line-height: 1.5; }
.ck-hint a { color: var(--rosu-eva); text-decoration: underline; text-underline-offset: 2px; }
.ck-hint a:hover { text-decoration: none; }
.ck-products { margin-bottom: 16px; }
.ck-acord { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); margin-bottom: 18px; }
.ck-row .req { color: var(--rosu-eva); font-weight: 700; }
.ck-row input[type="text"],
.ck-row input[type="tel"],
.ck-row input[type="email"],
.ck-row textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; font: inherit; font-size: 14.5px;
  color: var(--ink); transition: border-color .15s, box-shadow .15s;
}
.ck-row input:focus, .ck-row textarea:focus {
  outline: none; border-color: var(--rosu-eva);
  box-shadow: 0 0 0 3px rgba(194,50,51,.12);
}
.ck-row textarea { min-height: 86px; resize: vertical; line-height: 1.5; }
.ck-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-err {
  display: block; margin-top: 6px;
  color: var(--rosu-eva); font-size: 12.5px; font-weight: 500;
}

/* Customer type cards (PF / PJ) — same look as shipping radio cards */
.customer-type-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ctype-card {
  position: relative; display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s;
  background: #fff;
}
.ctype-card:hover { border-color: #f0bdbd; background: #fff7f7; }
.ctype-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.ctype-radio {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line); margin-top: 3px; background: #fff;
  position: relative;
}
.ctype-card.is-selected { border-color: var(--rosu-eva); background: #fff5f5; box-shadow: 0 2px 10px rgba(194,50,51,.08); }
.ctype-card.is-selected .ctype-radio { border-color: var(--rosu-eva); }
.ctype-card.is-selected .ctype-radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--rosu-eva);
}
.ctype-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.ctype-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.ctype-desc { color: var(--ink-soft); font-size: 13px; line-height: 1.45; }

/* Inline checkbox row inside form blocks (e.g., "adresa livrare = sediu") */
.ck-inline-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 14px; color: var(--ink); padding: 4px 0; }
.ck-inline-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--rosu-eva); cursor: pointer; flex-shrink: 0; }

@media (max-width: 540px) {
  .customer-type-options { grid-template-columns: 1fr; }
}

/* Shipping cards */
.shipping-options { display: flex; flex-direction: column; gap: 10px; }
.ship-card {
  position: relative; display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s;
  background: #fff;
}
.ship-card:hover { border-color: #f0bdbd; background: #fff7f7; }
.ship-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.ship-radio {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--line); margin-top: 3px;
  background: #fff; transition: all .15s;
  position: relative;
}
.ship-card.is-selected { border-color: var(--rosu-eva); background: #fff5f5; box-shadow: 0 2px 10px rgba(194,50,51,.08); }
.ship-card.is-selected .ship-radio { border-color: var(--rosu-eva); }
.ship-card.is-selected .ship-radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%;
  background: var(--rosu-eva);
}
.ship-card-body { flex: 1; min-width: 0; display: block; }
.ship-card-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-bottom: 4px;
}
.ship-card-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.ship-card-fee { font-weight: 700; font-size: 15px; color: var(--rosu-eva); white-space: nowrap; }
.ship-card-desc { display: block; margin: 0; color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }

/* Agreements */
.agree-row {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; cursor: pointer; font-size: 14px; color: var(--ink); line-height: 1.5;
}
.agree-row + .agree-row { border-top: 1px dashed var(--cream-dark); }
.agree-row input[type="checkbox"] {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px;
  accent-color: var(--rosu-eva); cursor: pointer;
}
.agree-row a { color: var(--rosu-eva); text-decoration: underline; text-underline-offset: 3px; }
.agree-row .req { color: var(--rosu-eva); font-weight: 700; }

/* Submit */
.checkout-submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--rosu-eva); color: #fff; border: 0;
  padding: 16px 36px; border-radius: 100px;
  font-weight: 700; font-size: 15px; letter-spacing: .03em; text-transform: uppercase;
  cursor: pointer; transition: background .2s, transform .15s, box-shadow .2s;
  align-self: flex-start;
}
.checkout-submit:hover { background: #a82a2b; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(194,50,51,.25); }
.checkout-submit-arrow { font-size: 18px; line-height: 1; }
.checkout-foot { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Sticky summary aside */
.checkout-summary {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 22px; align-self: start; position: sticky; top: 100px;
  box-shadow: 0 4px 14px rgba(58,47,38,.06);
}
.checkout-summary h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 19px; margin: 0 0 14px; color: var(--ink);
}
.checkout-items { list-style: none; padding: 0; margin: 0 0 14px; display: flex; flex-direction: column; gap: 12px; }
.checkout-items li {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 12px; border-bottom: 1px dashed var(--cream-dark);
}
.checkout-items li:last-child { border-bottom: 0; padding-bottom: 0; }
.ci-img {
  position: relative; flex-shrink: 0; width: 56px; height: 56px;
  border-radius: 8px; overflow: hidden; background: var(--cream-dark);
}
.ci-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ci-img .ci-qty {
  position: absolute; top: -6px; right: -6px;
  background: var(--rosu-eva); color: #fff;
  font-size: 11px; font-weight: 700; min-width: 18px; height: 18px;
  border-radius: 9px; display: inline-flex; align-items: center; justify-content: center;
  padding: 0 5px;
}
.ci-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.ci-name { font-size: 14px; font-weight: 600; color: var(--ink); line-height: 1.35; }
.ci-unit { font-size: 12px; color: var(--muted); }
.ci-price { flex-shrink: 0; font-size: 14px; font-weight: 700; color: var(--ink); }

.checkout-totals { border-top: 1px solid var(--line); padding-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.checkout-totals > div { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; color: var(--ink-soft); }
.checkout-totals > div span:last-child { color: var(--ink); font-weight: 600; }
.checkout-total {
  margin-top: 6px; padding-top: 12px; border-top: 2px solid var(--ink);
}
.checkout-total span:first-child { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); align-self: center; }
.checkout-total span:last-child {
  font-size: 24px !important; font-family: 'Playfair Display', serif; font-weight: 500 !important;
  color: var(--rosu-eva) !important;
}

/* Success / thank-you */
.checkout-success { text-align: center; padding: 16px 0 32px; }
.checkout-success-icon {
  width: 96px; height: 96px; margin: 0 auto 22px;
  background: var(--roz-eva); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(194,50,51,.18);
}
.checkout-success-icon img { width: 64px; height: 64px; object-fit: contain; }
.checkout-success h1 {
  margin: 0 0 12px; font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(28px, 4vw, 40px); color: var(--ink); line-height: 1.2;
}
.checkout-success-lead {
  max-width: 540px; margin: 0 auto 30px; color: var(--ink-soft);
  font-size: 15px; line-height: 1.65;
}
.checkout-success-card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 26px; text-align: left; box-shadow: 0 6px 20px rgba(58,47,38,.06);
  max-width: 580px; margin: 0 auto 28px;
}
.checkout-success-card h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: 18px; margin: 0 0 14px; color: var(--ink);
}
.checkout-success-card h3 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 18px 0 10px;
}
.cs-info { display: grid; grid-template-columns: 1fr; gap: 6px; margin-bottom: 4px; }
.cs-info > div { display: flex; gap: 12px; font-size: 14px; line-height: 1.5; padding: 4px 0; border-bottom: 1px dashed var(--cream-dark); }
.cs-info > div:last-child { border-bottom: 0; }
.cs-label { flex-shrink: 0; width: 78px; color: var(--muted); }
.cs-value { color: var(--ink); font-weight: 500; }
.cs-multiline { white-space: pre-line; }
.cs-items { list-style: none; padding: 0; margin: 0; }
.cs-items li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 8px 0; font-size: 14px; border-bottom: 1px dashed var(--cream-dark);
}
.cs-items li:last-child { border-bottom: 0; }
.cs-it-qty { color: var(--muted); font-weight: 400; }
.cs-it-sub { font-weight: 700; color: var(--ink); white-space: nowrap; }
.cs-totals { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; }
.cs-totals > div { display: flex; justify-content: space-between; font-size: 14px; color: var(--ink-soft); }
.cs-totals > div span:last-child { color: var(--ink); font-weight: 600; }
.cs-total {
  margin-top: 6px; padding-top: 12px; border-top: 2px solid var(--ink);
}
.cs-total span:first-child { font-size: 13px !important; text-transform: uppercase; letter-spacing: .1em; color: var(--muted) !important; align-self: center; font-weight: 400 !important; }
.cs-total span:last-child {
  font-size: 22px !important; font-family: 'Playfair Display', serif; font-weight: 500 !important;
  color: var(--rosu-eva) !important;
}
.checkout-success-foot {
  max-width: 540px; margin: 0 auto 18px; color: var(--ink-soft);
  font-size: 13.5px; line-height: 1.6;
}
.checkout-success-cta { padding: 14px 32px !important; border-radius: 100px !important; }

/* Responsive */
@media (max-width: 880px) {
  .checkout-grid { grid-template-columns: 1fr; gap: 22px; }
  .checkout-summary { position: static; order: -1; }
  .ck-row-2 { grid-template-columns: 1fr; }
  .checkout-submit { width: 100%; }
}

/* ============ DESKTOP (>= 992px) ============ */
@media (min-width: 992px) {
  .popular-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Mobile */
@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .nav { display: none; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); padding: 16px 24px; align-items: stretch; gap: 4px; }
  .nav.open a { padding: 12px 16px; text-align: left; }
  .mobile-toggle { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; margin-right: 50px; margin-top: 5px; }
  .header .logo { margin-left: 10px; margin-top: 5px; }
  .home-search { padding: 18px 0 8px; }
  .footer .grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-badges { justify-content: center; gap: 8px; padding: 14px 0; }
  .footer-badges img { width: 105px; height: 42px; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 40px; }
  .section { padding: 50px 0; }
  .container { padding: 0 32px; }
  h1 { font-size: 28px; }
  .product-info h1 { font-size: 28px; }
  .product-info .price { font-size: 24px; }
}
