:root {
  --ink: #111111;
  --muted: #6d6a64;
  --line: #e8e1d8;
  --paper: #fbfaf7;
  --soft: #f1eee8;
  --accent: #e31d93;
  --accent-dark: #2454c6;
  --yellow: #f5cd21;
  --red: #d72d20;
  --green: #20b45b;
  --danger: #b92f2f;
  --shadow: 0 18px 50px rgba(17, 17, 17, .12);
  --mobile-nav-top: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}
body.panel-open { overflow: hidden; }
body.panel-open .quick-contact { display: none; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; display: block; }

.announcement-bar {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 6vw, 72px);
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 17, 17, .08);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
}
.brand { min-width: 0; display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: 0; }
.brand-logo {
  width: 62px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}
.brand-text {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  white-space: nowrap;
  font-family: "Arial Black", Montserrat, Inter, Arial, sans-serif;
  font-weight: 900;
  line-height: .95;
}
.brand-name {
  display: inline-flex;
  font-size: 24px;
  letter-spacing: -1.5px;
  text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}
.brand-sub {
  color: #c9962e;
  font-size: 14px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.c-blue { color: #0b61c9; }
.c-pink { color: #ef1689; }
.c-red { color: #ef2727; }
.c-yellow { color: #d9a900; }
.c-purple { color: #5b2bb8; }
.desktop-nav { display: flex; gap: 22px; color: #3b3834; font-weight: 800; font-size: 13px; text-transform: uppercase; }
.desktop-nav a:hover, .mobile-nav a:hover { color: var(--accent-dark); }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-dropdown a {
  padding: 10px 12px;
  border-radius: 6px;
  text-transform: none;
  font-size: 13px;
}
.nav-dropdown a:hover { background: var(--soft); color: var(--ink); }
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.cart-icon {
  width: 19px;
  height: 18px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 5px 5px;
}
.cart-icon::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 15px;
  width: 12px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 9px 9px 0 0;
}
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 22px;
}
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.menu-btn span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); }
.mobile-nav {
  position: fixed;
  top: var(--mobile-nav-top);
  left: 0;
  right: 0;
  z-index: 45;
  display: none;
  grid-template-columns: 1fr 1fr;
  max-height: calc(100dvh - var(--mobile-nav-top));
  overflow: auto;
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
  box-shadow: 0 18px 34px rgba(17, 17, 17, .12);
}
.mobile-nav a { padding: 15px 20px; background: #fff; font-weight: 700; }
.mobile-nav.open { display: grid; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  align-items: stretch;
  min-height: clamp(560px, calc(100dvh - 112px), 760px);
  scroll-margin-top: 88px;
  background:
    radial-gradient(circle at 78% 18%, rgba(227, 29, 147, .12), transparent 22%),
    linear-gradient(135deg, #fbfaf7 0%, #f5efe7 58%, #111 58.2%, #111 100%);
  background-size: cover;
  background-position: center;
}
.hero-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.2vw, 58px) clamp(22px, 6vw, 74px) clamp(34px, 5vw, 64px);
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(38px, 5.6vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}
h2 { margin: 0; font-size: clamp(28px, 4vw, 46px); line-height: 1.05; letter-spacing: 0; }
.hero-copy { max-width: 590px; margin: 18px 0 0; color: #4b4741; font-size: 17px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(17,17,17,.12); }
.btn.primary { color: #fff; background: var(--ink); }
.btn.secondary { color: var(--ink); background: #fff; border-color: var(--line); }
.hero-visual { position: relative; min-height: 430px; display: grid; place-items: center; padding: 34px; overflow: hidden; }
.hero-stage {
  position: relative;
  width: min(500px, 88vw);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #111;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero-tag {
  position: absolute;
  right: -10px;
  bottom: 28px;
  z-index: 2;
  padding: 16px 18px;
  border-radius: 8px;
  color: #111;
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px clamp(18px, 4vw, 56px) 8px;
  background: #fff;
}
.quick-categories a {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.66)), var(--cat-img);
  background-size: cover;
  background-position: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.quick-categories a:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quick-categories span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.quick-categories strong {
  margin-top: 4px;
  font-size: 22px;
}

.shop-shortcuts {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 18px clamp(18px, 4vw, 56px) 8px;
  background: #fff;
}
.shop-shortcuts a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.shop-shortcuts a:hover { border-color: var(--ink); background: var(--ink); color: #fff; }


.trend-showcase {
  padding: clamp(42px, 7vw, 82px) clamp(18px, 4vw, 56px);
  background: #fff;
}
.trend-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, minmax(210px, 1fr));
  gap: 16px;
}
.trend-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.72)), var(--trend-img);
  background-size: cover;
  background-position: center;
}
.trend-card.large { grid-row: span 2; min-height: 440px; }
.trend-card span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.trend-card strong { margin-top: 6px; font-size: clamp(24px, 3vw, 42px); line-height: 1.05; }

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}
.trust-band article { padding: 24px clamp(18px, 3vw, 38px); background: #fff; }
.trust-band strong { display: block; margin-bottom: 5px; }
.trust-band span { color: var(--muted); font-size: 14px; }

.section, .contact-section, .campaign-section {
  padding: clamp(54px, 8vw, 96px) clamp(18px, 4vw, 56px);
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.section-head > span { color: var(--muted); font-weight: 700; }
.filters {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) auto;
  gap: 12px;
  margin-bottom: 24px;
}
label span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}
input, select { height: 46px; padding: 0 13px; }
textarea { padding: 12px 13px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(227, 29, 147, .14); }
.check-filter { align-self: end; display: flex; align-items: center; gap: 9px; height: 46px; padding: 0 13px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.check-filter input { width: 17px; height: 17px; }
.check-filter span { margin: 0; color: var(--ink); white-space: nowrap; }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.product-card:hover { transform: translateY(-4px); border-color: #d2c5b6; box-shadow: var(--shadow); }
.product-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  background: linear-gradient(140deg, var(--tone, #eee), #fff 74%);
}
.product-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  padding: 0;
}
.badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}
.product-body { padding: 16px; }
.product-meta { color: var(--muted); font-size: 13px; font-weight: 700; }
.product-title { min-height: 48px; margin: 8px 0 8px; font-size: 18px; line-height: 1.3; }
.price-row { display: flex; align-items: baseline; gap: 9px; margin-bottom: 12px; }
.price { font-size: 20px; font-weight: 900; }
.old-price { color: #999; text-decoration: line-through; }
.product-desc { min-height: 42px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.option-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 14px 0; }
.option-row select { height: 40px; font-size: 14px; }
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.small-btn {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 800;
}
.small-btn.add { color: #fff; border-color: var(--ink); background: var(--ink); }
.empty-state { padding: 34px; border: 1px dashed var(--line); border-radius: 8px; text-align: center; color: var(--muted); background: #fff; }
.section-link { font-weight: 900; color: var(--accent-dark); }
.campaign-products { background: #fff; }
.compact-grid .product-card:nth-child(n+9) { display: none; }

.info-drawer-section {
  display: grid;
  gap: 10px;
  padding: clamp(38px, 6vw, 76px) clamp(18px, 4vw, 56px);
  background: #fff;
}
.info-drawer-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}
.info-drawer-section summary {
  padding: 18px 20px;
  font-size: 17px;
}
.info-drawer-section p {
  max-width: 900px;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.category-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.category-card {
  min-height: 130px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: left;
}
.category-card strong { display: block; margin-bottom: 8px; font-size: 18px; }
.category-card span { color: var(--muted); }

.campaign-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
  background: linear-gradient(135deg, #121212, #3c2a1d);
}
.campaign-section p:not(.eyebrow) { max-width: 720px; color: rgba(255,255,255,.76); line-height: 1.7; }
.campaign-section .eyebrow { color: #e9c79f; }
.campaign-section .btn.primary { background: #fff; color: #111; }
details { border: 1px solid var(--line); border-radius: 8px; background: #fff; }
summary { padding: 18px; font-weight: 800; cursor: pointer; }
details p { margin: 0; padding: 0 18px 18px; color: var(--muted); line-height: 1.7; }

.contact-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 22px; background: var(--soft); }
.contact-info, .map { min-height: 390px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.contact-info { padding: clamp(24px, 4vw, 40px); }
.contact-info ul { display: grid; gap: 13px; padding: 0; margin: 20px 0; list-style: none; color: var(--muted); line-height: 1.6; }
.contact-info strong { color: var(--ink); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a { padding: 10px 13px; border: 1px solid var(--line); border-radius: 8px; font-weight: 800; background: #fff; }
.map { width: 100%; }
.map-card {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    repeating-linear-gradient(90deg, #efe7dd 0 2px, transparent 2px 64px),
    repeating-linear-gradient(0deg, #efe7dd 0 2px, #fbfaf7 2px 64px);
}
.map-frame {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  background: transparent;
}
.map-note {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}
.map-note strong { color: var(--ink); }
.map-note a { width: max-content; font-weight: 800; color: var(--accent-dark); }


.footer {
  display: block;
  padding: 0;
  color: #ddd;
  background: #111;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.2fr) repeat(4, minmax(140px, .65fr));
  gap: clamp(22px, 4vw, 52px);
  padding: clamp(38px, 6vw, 68px) clamp(18px, 4vw, 56px);
}
.footer-logo { margin-bottom: 18px; color: #fff; }
.footer-logo .brand-logo { width: 68px; height: 52px; }
.footer-logo .brand-name { text-shadow: none; }
.footer-logo .brand-sub { color: #f8d36b; }
.footer p { max-width: 520px; color: #aaa; line-height: 1.7; }
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.footer-badges span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.06);
  font-size: 13px;
  font-weight: 800;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-col h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 15px;
}
.footer-col a,
.footer-col button {
  border: 0;
  padding: 0;
  color: #aaa;
  background: transparent;
  text-align: left;
  line-height: 1.5;
}
.footer-col a:hover,
.footer-col button:hover { color: #fff; }
.footer-contact p { margin: 4px 0 0; }
.newsletter p { margin: 0; }
.footer-cta {
  margin-top: 6px;
  padding: 10px 12px !important;
  border-radius: 8px;
  color: #111 !important;
  background: #fff !important;
  font-weight: 900;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #8f8f8f;
  font-size: 13px;
}

.cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 80;
  display: flex;
  flex-direction: column;
  width: min(560px, 100vw);
  height: 100dvh;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0,0,0,.18);
  transform: translateX(105%);
  transition: transform .25s ease;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header, .cart-footer { padding: 18px; border-bottom: 1px solid var(--line); }
.cart-header { display: flex; align-items: center; justify-content: space-between; }
.cart-header span { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.close-btn, .modal-close { font-size: 28px; line-height: 1; }
.cart-body {
  flex: 1;
  min-height: 0;
  overflow: auto;
  background: #fbfaf7;
}
.cart-list-section, .order-form {
  margin: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.cart-list-section h3, .order-form h3 { margin: 0 0 12px; font-size: 18px; }
.cart-items { display: grid; gap: 10px; }
.cart-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.cart-thumb {
  width: 88px;
  height: 74px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--soft);
}
.cart-item h4 { margin: 0 0 5px; font-size: 15px; line-height: 1.25; }
.cart-item p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.qty { display: flex; align-items: center; gap: 7px; margin-top: 8px; }
.qty button, .remove-item { border: 1px solid var(--line); border-radius: 7px; background: #fff; font-weight: 900; }
.qty button { width: 30px; height: 30px; }
.remove-item { width: 34px; height: 34px; color: var(--danger); }
.cart-empty { padding: 18px; color: var(--muted); line-height: 1.6; border: 1px dashed var(--line); border-radius: 8px; background: #fff; }
.order-form label { display: block; margin-bottom: 10px; }
.order-form label { color: var(--muted); font-size: 13px; font-weight: 800; }
.order-form input { height: 44px; }
.order-form textarea { min-height: 62px; }
.order-form input, .order-form textarea { margin-top: 6px; }
.form-alert { min-height: 20px; margin: 0; color: var(--danger); font-weight: 800; font-size: 13px; }
.cart-footer { border-top: 1px solid var(--line); border-bottom: 0; background: #fff; box-shadow: 0 -10px 26px rgba(17,17,17,.06); }
.total-row { display: flex; justify-content: space-between; margin-bottom: 13px; font-size: 18px; }
.whatsapp-order { width: 100%; background: var(--green); color: #fff; }
.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  background: rgba(17,17,17,.42);
}
.overlay.open { display: block; }

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(17,17,17,.52);
}
.product-modal.open { display: grid; }
.modal-card {
  position: relative;
  width: min(1060px, 100%);
  max-height: min(92dvh, 780px);
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.modal-close { position: absolute; right: 14px; top: 14px; z-index: 2; }
.modal-product { display: grid; grid-template-columns: .92fr 1.08fr; max-height: min(92dvh, 780px); }
.modal-product .product-image { min-height: 420px; height: 100%; align-content: center; overflow: hidden; }
.modal-product .product-photo { height: min(58dvh, 460px); object-fit: cover; padding: 0; }
.modal-info { padding: clamp(24px, 5vw, 48px); }
.modal-info p { color: var(--muted); line-height: 1.7; }
.modal-info ul { color: var(--muted); line-height: 1.9; }

.quick-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.quick-btn {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.quick-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(17,17,17,.22); filter: saturate(1.08); }
.quick-btn.phone { background: linear-gradient(135deg, #1d7cff, #0757c8); }
.quick-btn.whats { background: var(--green); }
.quick-btn svg { width: 30px; height: 30px; }
.quick-btn.phone svg { width: 26px; height: 26px; }

@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .filters { grid-template-columns: 1fr 1fr; }
  .quick-categories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .announcement-bar { flex-wrap: wrap; gap: 6px 18px; }
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding-top: 34px; padding-bottom: 20px; }
  .hero-visual { min-height: 350px; padding-top: 0; }
  .hero-tag { right: 18px; bottom: 18px; max-width: calc(100% - 36px); }
  .trust-band { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-section, .modal-product { grid-template-columns: 1fr; }
  .modal-card { overflow: auto; }
  .modal-product { max-height: none; }
  .modal-product .product-image { min-height: 260px; }
  .modal-product .product-photo { height: 260px; }
  .campaign-section { align-items: flex-start; flex-direction: column; }
  .trend-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .trend-card.large { min-height: 320px; }
}
@media (max-width: 620px) {
  .announcement-bar { padding: 7px 10px; font-size: 11px; }
  .announcement-bar span:nth-child(2) { display: none; }
  .announcement-bar span:nth-child(3) { display: none; }
  .site-header { min-height: 66px; padding-inline: 12px; }
  .mobile-nav { grid-template-columns: 1fr; }
  .brand { gap: 7px; }
  .brand-logo { width: 50px; height: 40px; }
  .brand-name { font-size: 19px; letter-spacing: -1.2px; }
  .brand-sub { font-size: 11px; letter-spacing: 1.5px; }
  .eyebrow { max-width: 340px; font-size: 11px; line-height: 1.5; }
  h1 { max-width: 340px; font-size: 32px; line-height: 1.06; }
  .hero-copy { max-width: 340px; font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .card-actions, .option-row { grid-template-columns: 1fr; }
  .hero-actions { max-width: 340px; }
  .hero-actions .btn { width: 100%; }
  .hero-content { width: 100%; padding: 28px 22px 16px; overflow: hidden; }
  .hero-visual { min-height: auto; padding: 0 22px 36px; overflow: visible; }
  .hero-stage { width: 100%; max-width: 346px; }
  .hero-tag { left: 14px; right: 14px; bottom: 14px; max-width: none; padding: 12px 14px; font-size: 14px; }
  .quick-categories { grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px 12px 0; }
  .quick-categories a { min-height: 150px; padding: 12px; }
  .quick-categories strong { font-size: 16px; }
  .shop-shortcuts { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-inline: 12px; }
  .shop-shortcuts a { flex: 0 0 auto; font-size: 12px; }
  .trend-showcase { padding: 36px 12px; }
  .trend-grid { gap: 10px; }
  .trend-card { min-height: 160px; padding: 16px; }
  .trend-card.large { min-height: 260px; }
  .filters, .product-grid, .category-grid, .trust-band { grid-template-columns: 1fr; }
  .check-filter span { white-space: normal; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .product-image { min-height: 205px; }
  .product-photo { height: 205px; }
  .contact-info, .map { min-height: 320px; }
  .cart-list-section, .order-form { margin: 10px; padding: 12px; }
  .cart-item { grid-template-columns: 72px minmax(0, 1fr) 32px; gap: 9px; padding: 9px; }
  .cart-thumb { width: 72px; height: 62px; }
  .cart-item h4 { font-size: 14px; }
  .quick-contact { right: 12px; bottom: 12px; }
  .quick-btn { width: 50px; height: 50px; }
  .cart-footer { padding: 14px; }
}

@media (max-width: 380px) {
  .brand-logo { width: 44px; height: 34px; }
  .brand-name { font-size: 17px; letter-spacing: -1px; }
  .brand-sub { display: none; }
  .icon-btn, .menu-btn { width: 40px; height: 40px; }
  .header-actions { gap: 7px; }
  h1 { font-size: 29px; }
  .quick-categories { grid-template-columns: 1fr; }
}






/* Product detail page */
.product-detail-page { background: #f7f4ef; }
.detail-header { position: sticky; top: 0; }
.detail-cart-link { display: inline-flex; align-items: center; gap: 6px; min-height: 42px; padding: 0 14px; border: 1px solid var(--line); border-radius: 8px; font-weight: 800; background: #fff; }
.product-detail-shell { width: min(1240px, 100%); margin: 0 auto; padding: clamp(18px, 4vw, 42px) clamp(14px, 4vw, 44px) 64px; }
.back-link { display: inline-flex; margin-bottom: 18px; color: var(--muted); font-weight: 800; }
.product-detail { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(22px, 4vw, 52px); align-items: start; }
.detail-gallery { display: grid; gap: 12px; }
.detail-main-image { aspect-ratio: 4 / 5; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; background: #f1eee8; }
.detail-main-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: 10px; }
.detail-thumbs button { aspect-ratio: 1; padding: 0; border: 2px solid transparent; border-radius: 8px; overflow: hidden; background: #fff; cursor: pointer; }
.detail-thumbs button.active { border-color: #111; }
.detail-thumbs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.detail-info { position: sticky; top: 104px; display: grid; gap: 16px; }
.detail-info h1 { margin: 0; font-size: clamp(30px, 5vw, 56px); line-height: .98; letter-spacing: 0; }
.detail-desc { margin: 0; color: var(--muted); line-height: 1.7; }
.detail-discount { display: inline-flex; align-items: center; min-height: 30px; padding: 0 10px; border-radius: 999px; color: #fff; background: var(--blue); font-size: 13px; font-weight: 900; }
.detail-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.detail-options label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; font-weight: 900; }
.detail-options select { width: 100%; height: 48px; border: 1px solid var(--line); border-radius: 8px; padding: 0 12px; background: #fff; font: inherit; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.detail-notes { display: grid; gap: 8px; margin: 4px 0 0; padding-left: 20px; color: var(--muted); line-height: 1.5; }
.related-section { padding-left: 0; padding-right: 0; }
.toast { position: fixed; right: 18px; bottom: 18px; z-index: 80; transform: translateY(14px); opacity: 0; pointer-events: none; padding: 14px 16px; border-radius: 8px; color: #fff; background: #111; font-weight: 900; box-shadow: 0 18px 40px rgba(0,0,0,.2); transition: opacity .2s ease, transform .2s ease; }
.toast.show { transform: translateY(0); opacity: 1; }
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
  .detail-info { position: static; }
}
@media (max-width: 620px) {
  .detail-header .desktop-nav { display: none; }
  .product-detail-shell { padding-inline: 14px; }
  .detail-options, .detail-actions { grid-template-columns: 1fr; }
  .detail-actions .btn { width: 100%; }
}