/* Дом Цветов — точное соответствие Figma-макету (Montserrat, бордо #7B2D3E) */

:root {
  --primary: #7B2D3E;
  --primary-dark: #6a2535;
  --foreground: #1c1410;
  --background: #ffffff;
  --secondary: #F5F2EF;
  --muted-foreground: #8a7d74;
  --border: #E5DFD8;
  --card: #ffffff;
  --stone-100: #f5f5f4;
  --stone-300: #d6d3d1;
  --stone-700: #44403c;
  --radius: 0px;
  --sans: 'Montserrat', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .wrap { padding: 0 48px; } }

h1, h2, h3 { font-family: var(--sans); margin: 0; }
.ic { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.8; vertical-align: -3px; }
.ic-sm { width: 12px; height: 12px; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); }
.topbar { border-bottom: 1px solid rgba(28,20,16,.08); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; height: 34px; font-size: 12px; color: var(--muted-foreground); }
.topbar-left, .topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar-right { display: none; }
@media (min-width: 768px) { .topbar-right { display: flex; } }
.topbar a.help { color: var(--primary); font-weight: 500; }

.mainbar { display: flex; align-items: center; gap: 16px; height: 64px; }
@media (min-width: 768px) { .mainbar { height: 80px; } }
.burger { background: none; border: none; padding: 6px; color: var(--foreground); }
.burger svg { width: 20px; height: 20px; }
@media (min-width: 768px) { .burger { display: none; } }

.logo { display: flex; flex-direction: column; line-height: 1.1; margin-right: auto; }
.logo-name { font-size: 20px; font-weight: 600; letter-spacing: 0.02em; color: var(--foreground); }
.logo-city { font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted-foreground); margin-top: 2px; }

.mainnav { display: none; gap: 32px; font-size: 14px; font-weight: 500; }
.mainnav a { color: rgba(28,20,16,.7); }
.mainnav a:hover, .mainnav a.active { color: var(--primary); }
@media (min-width: 960px) { .mainnav { display: flex; margin-right: 24px; } }

.mainbar-actions { display: flex; gap: 12px; align-items: center; }
.icon-btn { position: relative; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--foreground); background: none; border: none; }
.icon-btn:hover { color: var(--primary); }
.cart-count { position: absolute; top: -2px; right: -2px; background: var(--primary); color: #fff; font-size: 10px; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* mobile catalog drawer */
.catalog-drawer { position: fixed; inset: 0; z-index: 100; background: var(--background); display: none; overflow-y: auto; }
.catalog-drawer.open { display: block; }
.catalog-drawer-inner { padding: 24px; }
.catalog-drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.catalog-drawer-head button { background: none; border: none; }
.catalog-cat-list { list-style: none; margin: 0; padding: 0; }
.catalog-cat-list li a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 17px; font-weight: 500; }
.catalog-drawer-foot { padding-top: 20px; color: var(--muted-foreground); font-size: 14px; display: flex; align-items: center; gap: 8px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 26px; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; border: none; cursor: pointer; transition: background .2s, transform .15s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-dark { background: transparent; color: var(--foreground); border: 1px solid var(--foreground); text-transform: none; letter-spacing: normal; font-weight: 500; }
.btn-outline-dark:hover { background: var(--foreground); color: #fff; }
.btn-outline { background: transparent; color: var(--muted-foreground); border: 1px solid var(--border); text-transform: none; letter-spacing: normal; font-weight: 500; font-size: 14px; }
.btn-outline:hover { border-color: rgba(123,45,62,.4); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; height: 88vh; min-height: 500px; background: var(--stone-300); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,5,3,.60) 0%, rgba(8,5,3,.18) 40%, transparent 68%); }
.hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 48px; }
@media (min-width: 768px) { .hero-content { padding-bottom: 80px; } }
.hero-eyebrow { color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 12px; }
.hero h1 { color: #fff; font-size: clamp(1.75rem, 3.6vw, 3.2rem); font-weight: 600; line-height: 1.18; letter-spacing: -0.018em; margin-bottom: 24px; }
.hero h1 .light { font-weight: 300; opacity: .88; }
.hero-bottom-row { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 640px) { .hero-bottom-row { flex-direction: row; align-items: center; gap: 28px; } }
.hero-divider { display: none; height: 1px; width: 40px; background: rgba(255,255,255,.3); flex-shrink: 0; }
@media (min-width: 640px) { .hero-divider { display: block; } }
.hero-desc { color: rgba(255,255,255,.55); font-size: 14px; line-height: 1.6; max-width: 280px; margin: 0; }
.hero-cta { flex-shrink: 0; }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-stats .num { color: #fff; font-size: 14px; font-weight: 600; margin: 0; }
.hero-stats .lbl { color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: 0.05em; margin: 2px 0 0; }

/* ---------- Sections ---------- */
section.block { padding: 48px 0; }
@media (min-width: 768px) { section.block { padding: 64px 0; } }
.block-lg { padding: 64px 0; } @media (min-width: 768px) { .block-lg { padding: 96px 0; } }
.bg-secondary-section { background: var(--secondary); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 32px; gap: 16px; flex-wrap: wrap; }
.section-head h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; }
@media (min-width: 768px) { .section-head h2 { font-size: 30px; } }
.section-head .viewall { font-size: 14px; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }

/* ---------- Category grid ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(8, 1fr); gap: 16px; } }
.cat-tile { display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 20px 8px; border: 1px solid transparent; border-radius: 16px; background: transparent; text-align: center; transition: border-color .2s, box-shadow .2s; }
.cat-tile:hover { border-color: var(--stone-300); box-shadow: 0 4px 12px rgba(0,0,0,.06); }
.cat-icon-box { width: 48px; height: 48px; border-radius: 16px; display: flex; align-items: center; justify-content: center; transition: transform .2s; }
@media (min-width: 768px) { .cat-icon-box { width: 56px; height: 56px; } }
.cat-tile:hover .cat-icon-box { transform: scale(1.1); }
.cat-icon-box svg { width: 22px; height: 22px; stroke-width: 1.8; }
.cat-name { font-size: 10px; color: rgba(28,20,16,.7); font-weight: 500; line-height: 1.3; }
@media (min-width: 768px) { .cat-name { font-size: 12px; } }
.cat-tile:hover .cat-name { color: var(--foreground); }

/* ---------- Product cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }
.product-grid.cols-3 { grid-template-columns: repeat(2,1fr); } @media (min-width: 768px){ .product-grid.cols-3 { grid-template-columns: repeat(3,1fr); } }

.product-card { display: block; }
.product-media { position: relative; aspect-ratio: 3/4; background: var(--stone-100); overflow: hidden; margin-bottom: 12px; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-like { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.8); backdrop-filter: blur(4px); border: none; display: flex; align-items: center; justify-content: center; }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .05em; padding: 2px 8px; border-radius: 2px; }
.badge-хит { background: #fef3c7; color: #92400e; }
.badge-акция { background: #fee2e2; color: #b91c1c; }
.badge-wow { background: #f3e8ff; color: #6b21a8; }
.badge-премиум { background: #292524; color: #fff; }
.product-type { font-size: 11px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.product-title { font-weight: 500; margin-bottom: 4px; line-height: 1.3; font-size: 14px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 17px; font-weight: 600; }
.product-add { font-size: 11px; border: 1px solid rgba(28,20,16,.2); background: none; padding: 6px 12px; transition: all .2s; }
.product-add:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- Delivery/payment ---------- */
.trust-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px; border: 1px solid var(--border); }
.trust-icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(123,45,62,.08); margin-bottom: 20px; }
.trust-icon svg { width: 20px; height: 20px; color: var(--primary); }
.trust-item h3 { font-weight: 500; margin-bottom: 12px; font-size: 16px; }
.trust-item p { font-size: 14px; color: var(--muted-foreground); line-height: 1.6; margin: 0; }

/* ---------- About ---------- */
.about-section { background: var(--foreground); color: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-eyebrow { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.about-title { font-size: 30px; font-weight: 500; line-height: 1.2; margin-bottom: 24px; }
@media (min-width: 768px) { .about-title { font-size: 48px; } }
.about-title em { font-style: italic; }
.about-text { color: rgba(255,255,255,.6); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.about-stats .n { font-size: 30px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.about-stats .l { font-size: 11px; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .05em; }
.about-photo { position: relative; min-height: 320px; background: var(--stone-700); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; opacity: .7; position: absolute; inset: 0; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.blog-card img { aspect-ratio: 3/2; object-fit: cover; margin-bottom: 16px; background: var(--stone-100); }
.blog-cat { font-size: 11px; color: var(--primary); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.blog-title { font-weight: 500; line-height: 1.35; margin-bottom: 8px; }
.blog-date { font-size: 11px; color: var(--muted-foreground); }
.blog-excerpt { font-size: 12px; color: var(--muted-foreground); line-height: 1.6; }
.blog-featured { display: grid; grid-template-columns: 1fr; border: 1px solid var(--border); margin-bottom: 48px; overflow: hidden; }
@media (min-width: 768px) { .blog-featured { grid-template-columns: 1fr 1fr; } }
.blog-featured img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.blog-featured-text { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 768px) { .blog-featured-text { padding: 48px; } }
.blog-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.blog-tag-btn { font-size: 12px; font-weight: 500; padding: 8px 16px; border: 1px solid var(--border); background: none; }
.blog-tag-btn.active { border-color: var(--primary); background: var(--primary); color: #fff; }

/* ---------- FAQ ---------- */
.faq-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.faq-tab-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; font-size: 14px; font-weight: 500; border: 1px solid rgba(28,20,16,.14); background: #fff; color: var(--foreground); }
.faq-tab-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.faq-grid2 { display: grid; grid-template-columns: 1fr; column-gap: 64px; }
@media (min-width: 768px) { .faq-grid2 { grid-template-columns: 1fr 1fr; } }
.faq-item { border-top: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; background: none; border: none; text-align: left; font-weight: 500; font-size: 15px; }
.faq-q:hover { color: var(--primary); }
.faq-dot { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(28,20,16,.18); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.faq-item.open .faq-dot { background: var(--primary); border-color: var(--primary); }
.faq-item.open .faq-dot svg { transform: rotate(180deg); color: #fff; }
.faq-a { display: none; font-size: 14px; color: var(--muted-foreground); line-height: 1.6; padding: 0 40px 20px 0; }
.faq-item.open .faq-a { display: block; }
.faq-q svg { transition: transform .2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-nav { display: none; flex-direction: column; gap: 6px; position: sticky; top: 112px; align-self: flex-start; }
@media (min-width: 768px) { .faq-nav { display: flex; } }
.faq-nav a { font-size: 14px; color: var(--muted-foreground); padding: 6px 0; }
.faq-nav a:hover { color: var(--primary); }
.faq-page-layout { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .faq-page-layout { grid-template-columns: 220px 1fr; } }
.faq-cat-block { margin-bottom: 48px; }
.faq-cat-block h2 { font-size: 20px; font-weight: 500; margin-bottom: 20px; }

/* ---------- Contacts ---------- */
.contacts-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 768px) { .contacts-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon { width: 40px; height: 40px; background: rgba(123,45,62,.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.contact-icon svg { width: 16px; height: 16px; color: var(--primary); }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-foreground); margin-bottom: 4px; }
.contact-value { font-weight: 500; }

/* ---------- Catalog page ---------- */
.page-eyebrow { font-size: 12px; color: var(--muted-foreground); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.page-title { font-size: 32px; font-weight: 500; }
@media (min-width: 768px) { .page-title { font-size: 48px; } }
.catalog-layout { display: flex; gap: 40px; align-items: flex-start; }
.catalog-sidebar { display: none; width: 224px; flex-shrink: 0; }
@media (min-width: 900px) { .catalog-sidebar { display: block; } }
.sidebar-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-foreground); margin-bottom: 16px; }
.sidebar-cats { display: flex; flex-direction: column; gap: 2px; margin-bottom: 32px; }
.sidebar-cats a { font-size: 14px; padding: 8px 0 8px 12px; border-left: 2px solid transparent; color: rgba(28,20,16,.6); }
.sidebar-cats a.active { border-color: var(--primary); color: var(--primary); font-weight: 500; }
.sidebar-cats a:hover { color: var(--foreground); }
.mobile-filter-btn { display: flex; align-items: center; gap: 8px; font-size: 14px; border: 1px solid var(--border); padding: 10px 16px; margin-bottom: 24px; background: none; }
@media (min-width: 900px) { .mobile-filter-btn { display: none; } }
.catalog-main { flex: 1; min-width: 0; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.catalog-toolbar select { font-size: 14px; border: 1px solid var(--border); background: var(--background); padding: 8px 12px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); font-size: 14px; }
.pagination a.active { border-color: var(--primary); background: var(--primary); color: #fff; }

/* ---------- Product detail ---------- */
.pd-layout { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 80px; }
@media (min-width: 768px) { .pd-layout { grid-template-columns: 1fr 1fr; gap: 64px; } }
.breadcrumb { display: flex; gap: 8px; font-size: 12px; color: var(--muted-foreground); margin-bottom: 32px; }
.breadcrumb a:hover { color: var(--foreground); }
.pd-gallery { display: flex; gap: 12px; }
.pd-thumbs-col { display: none; flex-direction: column; gap: 8px; }
@media (min-width: 768px) { .pd-thumbs-col { display: flex; } }
.pd-thumbs-col img { width: 64px; height: 80px; object-fit: cover; border: 2px solid transparent; opacity: .7; cursor: pointer; }
.pd-thumbs-col img.active { border-color: var(--primary); opacity: 1; }
.pd-main-photo { flex: 1; position: relative; aspect-ratio: 3/4; background: var(--stone-100); overflow: hidden; }
.pd-main-photo img { width: 100%; height: 100%; object-fit: cover; }
.pd-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; background: rgba(255,255,255,.8); border: none; display: flex; align-items: center; justify-content: center; }
.pd-arrow.left { left: 8px; } .pd-arrow.right { right: 8px; }
.pd-sku { font-size: 12px; color: var(--muted-foreground); }
.pd-title { font-size: 30px; font-weight: 500; margin: 12px 0 8px; line-height: 1.2; }
@media (min-width: 768px) { .pd-title { font-size: 36px; } }
.pd-stars { display: flex; align-items: center; gap: 2px; margin-bottom: 16px; }
.pd-stars svg { width: 14px; height: 14px; }
.pd-stars .filled { fill: #fbbf24; color: #fbbf24; }
.pd-stars .empty { color: var(--stone-300); }
.pd-reviews { font-size: 12px; color: var(--muted-foreground); margin-left: 6px; }
.pd-desc { color: var(--muted-foreground); font-size: 14px; line-height: 1.6; margin-bottom: 24px; }
.pd-size-label { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-foreground); margin-bottom: 12px; }
.variant-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 24px; }
.variant-opt { padding: 12px 8px; border: 1px solid var(--border); text-align: center; font-size: 12px; background: none; }
.variant-opt.active { border-color: var(--primary); background: rgba(123,45,62,.05); color: var(--primary); }
.variant-opt strong { display: block; font-weight: 600; margin-bottom: 2px; }
.variant-opt .vf { color: var(--muted-foreground); }
.variant-opt.active .vf { color: var(--primary); }
.variant-opt .vp { margin-top: 4px; color: var(--foreground); }
.pd-details { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; font-size: 14px; }
.pd-details-box { background: var(--secondary); padding: 12px; }
.pd-details-box .lbl { font-size: 12px; color: var(--muted-foreground); margin-bottom: 2px; }
.pd-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.pd-price { font-size: 36px; font-weight: 600; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); }
.qty-control button { width: 40px; height: 40px; background: none; border: none; display: flex; align-items: center; justify-content: center; }
.qty-control button:hover { background: var(--secondary); }
.qty-control span { width: 40px; text-align: center; font-size: 14px; font-weight: 500; }
.pd-cta-col { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.btn-secondary-cta { width: 100%; border: 1px solid var(--border); padding: 12px; font-size: 14px; color: var(--muted-foreground); background: none; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-secondary-cta:hover { border-color: rgba(123,45,62,.4); }
.freshness-box { background: var(--secondary); padding: 16px; font-size: 14px; color: var(--muted-foreground); line-height: 1.6; }
.freshness-box .t { font-weight: 500; color: var(--foreground); margin-bottom: 4px; display: block; }

.addon-scroll { display: flex; gap: 16px; overflow-x: auto; padding-bottom: 8px; }
.addon-item { flex-shrink: 0; width: 128px; }
.addon-media { position: relative; aspect-ratio: 1; background: var(--stone-100); overflow: hidden; margin-bottom: 8px; }
.addon-media img { width: 100%; height: 100%; object-fit: cover; }
.addon-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: transparent; border: none; }
.addon-overlay.checked { background: rgba(123,45,62,.8); }
.addon-overlay svg { width: 24px; height: 24px; color: #fff; display: none; }
.addon-overlay.checked svg { display: block; }
.addon-title { font-size: 12px; font-weight: 500; }
.addon-price { font-size: 12px; color: var(--muted-foreground); }

/* ---------- Cart / checkout ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 400px; } }
.cart-section { margin-bottom: 40px; }
.cart-section h2 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-foreground); margin-bottom: 20px; font-weight: 600; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.cart-item img { width: 80px; height: 96px; object-fit: cover; background: var(--stone-100); flex-shrink: 0; }
.cart-item-title { font-weight: 500; margin-bottom: 4px; }
.cart-item-variant { font-size: 12px; color: var(--muted-foreground); margin-bottom: 12px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; }
.cart-item-price { font-weight: 600; }
.cart-item-remove { color: var(--muted-foreground); background: none; border: none; align-self: flex-start; }

.auth-box, .bonus-box { background: var(--secondary); padding: 20px; }
.auth-box p { font-size: 14px; margin: 0 0 16px; }
.auth-row { display: flex; gap: 12px; }
.auth-row input { flex: 1; }

.form-grid2 { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-grid2 { grid-template-columns: 1fr 1fr; } }
.form-grid2 .span2 { grid-column: 1 / -1; }
label.field-label { display: block; font-size: 12px; color: var(--muted-foreground); margin-bottom: 6px; }
input[type=text], input[type=tel], input[type=email], input[type=date], input[type=number], select, textarea {
  width: 100%; border: 1px solid var(--border); background: #fff; padding: 10px 12px; font-family: var(--sans); font-size: 14px; color: var(--foreground);
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary); }
textarea { resize: vertical; min-height: 70px; }
.link-btn { font-size: 14px; color: var(--primary); text-decoration: underline; text-underline-offset: 4px; background: none; border: none; margin-top: 12px; }

.method-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.method-opt { padding: 16px; border: 1px solid var(--border); background: none; display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; }
.method-opt.active { border-color: var(--primary); background: rgba(123,45,62,.05); color: var(--primary); }
.method-opt svg { width: 20px; height: 20px; }

.summary-box { border: 1px solid var(--border); padding: 24px; background: var(--card); position: sticky; top: 112px; }
.summary-box h2 { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-foreground); margin-bottom: 24px; font-weight: 600; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; }
.summary-row .muted { color: var(--muted-foreground); }
.summary-row.discount { color: var(--primary); }
.summary-total { border-top: 1px solid var(--border); margin-top: 12px; padding-top: 12px; display: flex; justify-content: space-between; font-weight: 600; font-size: 16px; }
.consent-row { display: flex; gap: 12px; align-items: flex-start; margin: 24px 0; font-size: 12px; color: var(--muted-foreground); line-height: 1.5; }
.consent-row input { margin-top: 3px; }
.consent-row a { text-decoration: underline; color: var(--foreground); }

/* ---------- Account ---------- */
.account-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 16px; }
.account-tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 40px; overflow-x-auto; }
.account-tab { display: flex; align-items: center; gap: 8px; padding: 12px 20px; font-size: 14px; font-weight: 500; border: none; background: none; border-bottom: 2px solid transparent; margin-bottom: -1px; color: var(--muted-foreground); white-space: nowrap; }
.account-tab.active { border-color: var(--primary); color: var(--primary); }
.account-tab:hover { color: var(--foreground); }
.order-row { display: flex; align-items: center; gap: 16px; border: 1px solid var(--border); padding: 16px; margin-bottom: 12px; }
.order-row img { width: 64px; height: 80px; object-fit: cover; background: var(--stone-100); }
.order-status { font-size: 12px; background: #dcfce7; color: #15803d; padding: 4px 8px; }
.address-row { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); padding: 16px; margin-bottom: 12px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--foreground); color: rgba(255,255,255,.8); margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 64px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; } }
.footer-logo-name { font-size: 20px; font-weight: 600; color: #fff; }
.footer-logo-city { font-size: 9px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-top: 2px; }
.footer-about { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.6; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: rgba(255,255,255,.6); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-col a:hover { color: #fff; }
.footer-contact-line { display: flex; align-items: flex-start; gap: 8px; }
.footer-contact-line svg { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0; display: flex; flex-direction: column; gap: 12px; font-size: 12px; color: rgba(255,255,255,.3); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; background: var(--foreground); color: #fff; padding: 16px 20px; display: none; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-banner.show { display: flex; }
.cookie-banner p { font-size: 14px; color: rgba(255,255,255,.7); max-width: 640px; margin: 0; line-height: 1.5; }
.cookie-banner a, .cookie-banner u { text-decoration: underline; color: rgba(255,255,255,.9); }
.cookie-banner button { flex-shrink: 0; background: var(--primary); color: #fff; border: none; padding: 10px 24px; font-size: 14px; }
.cookie-banner button:hover { background: var(--primary-dark); }

/* ---------- Misc ---------- */
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted-foreground); }
.alert { padding: 14px 16px; font-size: 13px; margin-bottom: 16px; }
.alert-success { background: #dcfce7; color: #15803d; }
.alert-error { background: #fee2e2; color: #b91c1c; }
