:root {
  --yellow: #febb02;
  --yellow-deep: #e5a400;
  --cream: #fdfbf4;
  --cream-2: #f8f4ef;
  --cream-3: #f6efe4;
  --black: #111111;
  --ink: #1a1a1a;
  --muted: #777777;
  --line: #e8e2d8;
  --white: #ffffff;
  --pink: #ff6b9d;
  --purple: #c9b8ff;
  --red: #ee2d4f;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
  --header: 88px;
  --font: "Poppins", sans-serif;
  --serif: "Playfair Display", serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 15px;
}

body.lock { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 { margin: 0 0 12px; color: var(--black); line-height: 1.2; font-weight: 700; }

p { margin: 0 0 14px; color: var(--muted); }

.container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.container-wide {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.top-announce {
  background: var(--black);
  color: #fff;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 251, 244, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-inner {
  position: relative;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  position: relative;
}

.main-nav a.active,
.main-nav a:hover { color: var(--yellow-deep); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
  font-size: 16px;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--black);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--black); color: var(--black); }
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-deep); }
.btn-white { background: #fff; color: var(--red); font-weight: 700; }
.btn-block { width: 100%; }

.hero {
  padding: 28px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.55fr;
  gap: 22px;
  align-items: center;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.hero-price strong {
  font-size: 28px;
}

.swatches { display: flex; gap: 8px; }
.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-photo {
  position: relative;
}

.hero-photo img,
.hero-side img,
.rounded-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 36px;
}

.hero-photo img { height: 620px; }
.hero-side { position: relative; }
.hero-side img { height: 620px; border-radius: 36px; }

.vertical-label {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-size: 64px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-transform: uppercase;
  pointer-events: none;
}

.star-deco {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--black);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.star-deco.s1 { top: 40px; left: -10px; }
.star-deco.s2 { bottom: 80px; right: 40px; background: var(--yellow); }

.featured-bar {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  margin: 28px 0 10px;
  border-radius: 28px;
  overflow: hidden;
  min-height: 130px;
}

.featured-visual {
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.featured-visual img {
  height: 110px;
  width: auto;
  object-fit: contain;
}

.featured-cta {
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  font-size: 28px;
  font-weight: 700;
}
.featured-cta:hover { color: #fff; }

.circle-arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.promo-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 70px 0 30px;
}

.promo-split img { border-radius: 32px; height: 560px; object-fit: cover; width: 100%; }

.promo-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 22px;
}

.promo-thumbs img {
  height: 180px;
  border-radius: 22px;
}

.section-kicker {
  color: var(--yellow-deep);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  margin: 20px 0 10px;
  background: var(--cream);
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: tick 22s linear infinite;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 32px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.product-card { background: transparent; }

.product-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream-2);
}

.product-media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}

.product-actions {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translate(20px, -50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: 0.25s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translate(0, -50%);
}

.product-actions a,
.product-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.product-actions .active { color: var(--red); }

.product-info { padding: 14px 4px 0; }
.product-info h3 { font-size: 16px; margin-bottom: 4px; }
.price { font-weight: 600; color: var(--black); }
.price del { color: var(--muted); font-weight: 400; margin-left: 6px; }

.saving-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #eef4ea;
  border-radius: 32px;
  overflow: hidden;
  align-items: center;
}

.saving-banner img { height: 420px; width: 100%; object-fit: cover; }
.saving-copy { padding: 48px; }
.saving-copy h2 { font-size: 42px; }

.luxury-block {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: center;
}

.year-badge {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 2px dashed var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.luxury-block img { border-radius: 28px; height: 380px; width: 100%; object-fit: cover; }

.page-banner {
  min-height: 280px;
  background: linear-gradient(rgba(70, 42, 24, 0.48), rgba(70, 42, 24, 0.48)), url("../images/page-banner.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-banner h1 { color: #fff; font-size: clamp(36px, 5vw, 56px); }
.page-banner p, .page-banner a { color: #fff; }
.page-banner span { opacity: 0.7; margin: 0 8px; }

.page-banner.soft-banner {
  background: var(--cream-2);
  min-height: 220px;
}
.page-banner.soft-banner h1,
.page-banner.soft-banner p,
.page-banner.soft-banner a { color: var(--black); }

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.founder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 28px;
}

.founder img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .faq-body {
  display: none;
  padding: 0 22px 18px;
  color: var(--muted);
}

.faq-item.open .faq-body { display: block; }

.masonry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.masonry img {
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.masonry img:nth-child(1) { height: 180px; }
.masonry img:nth-child(2) { height: 280px; grid-row: span 2; }
.masonry img:nth-child(3) { height: 320px; }
.masonry img:nth-child(4) { height: 200px; }

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
}

.filter-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  margin-bottom: 16px;
}

.filter-card h4 { margin-bottom: 12px; font-size: 16px; }
.filter-card label {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--muted);
  cursor: pointer;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.product-detail img {
  width: 100%;
  border-radius: 28px;
  height: 620px;
  object-fit: cover;
}

.qty-box {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-box button, .qty-box input {
  border: 0;
  background: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
}

.size-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }
.size-pills button {
  min-width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.size-pills button.active { background: var(--black); color: #fff; border-color: var(--black); }

.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 18px; overflow: hidden; }
.cart-table th, .cart-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item img { width: 84px; height: 84px; object-fit: cover; border-radius: 12px; }

.cart-layout, .checkout-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 28px;
}

.summary-card, .form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.team-grid, .voucher-grid, .blog-grid, .faq-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
}

.team-card h3 { margin-top: 14px; font-size: 18px; margin-bottom: 2px; }
.team-card p { margin: 0; }

.voucher-card img, .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
}

.blog-card, .voucher-card, .faq-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
}

.faq-card { padding: 28px; }
.show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 600;
  cursor: pointer;
}
.show-more i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.search-faq {
  max-width: 560px;
  margin: 0 auto 40px;
  display: flex;
  border: 1px solid #ddd;
  border-radius: 40px;
  overflow: hidden;
  background: #fff;
}
.search-faq input {
  flex: 1;
  border: 0;
  padding: 16px 22px;
  outline: none;
  background: transparent;
}
.search-faq button {
  border: 0;
  background: transparent;
  padding: 0 18px;
  cursor: pointer;
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border-radius: 0;
  overflow: hidden;
}

.faq-side {
  background: #fdf5eb;
  padding: 60px 40px;
}

.cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.cat-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 16px 12px;
  cursor: pointer;
  font-weight: 600;
}
.cat-btn.active { border-color: var(--red); }

.faq-main { background: #fff; padding: 50px 40px; }

.contact-page {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.contact-info h2 { font-size: 42px; }
.map-watermark {
  position: absolute;
  right: -20px;
  bottom: 40px;
  font-size: 120px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px #d9d0c4;
  pointer-events: none;
  letter-spacing: 0.04em;
}

.world-map {
  position: absolute;
  right: 4%;
  top: 120px;
  width: min(52vw, 680px);
  opacity: 0.35;
}

.contact-form-card {
  position: relative;
  z-index: 2;
  width: min(420px, 100%);
  margin-left: auto;
  background: var(--black);
  color: #fff;
  border-radius: 28px;
  padding: 36px 28px;
}

.contact-form-card label { color: #fff; font-size: 13px; }
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #444;
  color: #fff;
  padding: 10px 0 12px;
  margin-bottom: 8px;
  outline: none;
}

.legal {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 44px;
  border: 1px solid var(--line);
}

.legal h2 { margin-top: 28px; font-size: 22px; }
.legal h3 { margin-top: 18px; font-size: 17px; }

.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.is-invalid { border-color: var(--red) !important; }
.field-error { color: var(--red); font-size: 12px; display: block; min-height: 16px; }
.form-success {
  background: #eef8e9;
  border: 1px solid #cde8c4;
  color: #215c16;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.site-footer {
  background: var(--cream-2);
  padding-top: 64px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr 0.9fr;
  gap: 28px;
  padding-bottom: 40px;
}

.footer-about, .footer-mail { font-size: 14px; }
.footer-links, .footer-posts { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-posts a { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-weight: 600; }
.footer-posts img { width: 54px; height: 54px; object-fit: cover; border-radius: 8px; }
.footer-posts small { font-weight: 400; color: var(--muted); }

.news-row { display: flex; gap: 8px; }
.news-row input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}
.news-row button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: var(--yellow);
  cursor: pointer;
}

.socials { display: flex; gap: 8px; flex-wrap: wrap; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.socials a:hover { background: var(--yellow); border-color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  font-size: 13px;
}

.search-layer, .overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 60;
  display: none;
}
.search-layer.open, .overlay.open, .cart-drawer.open { display: block; }
.search-layer { display: none; align-items: center; justify-content: center; }
.search-layer.open { display: flex; }
.search-box {
  width: min(640px, 90%);
  display: flex;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
}
.search-box input { flex: 1; border: 0; padding: 18px 22px; outline: none; font-size: 16px; }
.search-box button { border: 0; background: var(--yellow); width: 64px; cursor: pointer; }
.close-layer {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 92vw);
  height: 100%;
  background: #fff;
  z-index: 70;
  display: none;
  flex-direction: column;
}
.cart-drawer.open { display: flex; }
.drawer-head, .drawer-foot { padding: 20px; border-bottom: 1px solid var(--line); }
.drawer-foot { border-bottom: 0; border-top: 1px solid var(--line); margin-top: auto; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; }
.drawer-head button { border: 0; background: none; font-size: 28px; cursor: pointer; }
.drawer-body { padding: 16px 20px; overflow: auto; flex: 1; }
.mini-cart-item { display: flex; gap: 12px; margin-bottom: 16px; }
.mini-cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; }
.drawer-total { display: flex; justify-content: space-between; margin-bottom: 8px; }
.drawer-foot .btn { width: 100%; margin-top: 8px; }
.link-btn { border: 0; background: none; color: var(--red); cursor: pointer; padding: 0; }
.empty-note { color: var(--muted); }

.kp-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--black);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 80;
}
.kp-toast.show { opacity: 1; transform: translate(-50%, 0); }

.black-cta {
  background: var(--black);
  color: #fff;
  border-radius: 24px 24px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  gap: 16px;
}
.black-cta p { color: #fff; margin: 0; }

.success-panel {
  text-align: center;
  background: #fff;
  border-radius: 24px;
  padding: 60px 30px;
  border: 1px solid var(--line);
}
.success-panel i { font-size: 48px; color: #2f9e44; }

.blog-detail img.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  margin-bottom: 28px;
}

@media (max-width: 1100px) {
  .hero-grid, .promo-split, .saving-banner, .luxury-block, .two-col, .shop-layout, .product-detail, .cart-layout, .checkout-layout, .faq-shell, .footer-grid,
  .contact-page .container {
    grid-template-columns: 1fr !important;
  }
  .product-grid, .team-grid, .voucher-grid, .blog-grid, .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-photo img, .hero-side img { height: 420px; }
  .world-map { display: none; }
  .contact-form-card { margin: 30px auto 0; }
}

@media (max-width: 800px) {
  .header-inner { grid-template-columns: auto auto; }
  .main-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; padding: 16px 24px 24px; gap: 12px; }
  .menu-toggle { display: inline-flex; }
  .featured-bar { grid-template-columns: 1fr; }
  .product-grid, .team-grid, .voucher-grid, .blog-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 38px; }
  .black-cta { flex-direction: column; text-align: center; }
  .legal { padding: 24px; }
}

@media (hover: none) {
  .product-actions {
    opacity: 1;
    transform: translate(0, -50%);
  }
}
