@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  --red: #ff3c2a;
  --red-dark: #e62e1d;
  --red-soft: #ffe8e5;
  --blue: #cfeaf6;
  --blue-soft: #e8f5fb;
  --blue-mid: #b7dff0;
  --blue-btn: #d4eef8;
  --white: #ffffff;
  --black: #111111;
  --text: #1c1c1c;
  --muted: #8a8a8a;
  --gray: #f3f3f3;
  --line: #ececec;
  --footer: #1b1b1b;
  --footer-2: #141414;
  --yellow: #e6c14a;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --container: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  border: 2px solid var(--red);
  min-height: 48px;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--white);
}

.btn-pill {
  border-radius: 40px;
}

.btn-light {
  background: var(--white);
  color: var(--text);
  border-color: var(--white);
}

.section {
  padding: 80px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 15px;
}

/* Header */
.topbar {
  background: var(--black);
  color: #ddd;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}

.topbar-social {
  display: flex;
  gap: 14px;
}

.topbar-social a:hover {
  color: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.footer-logo .logo-word {
  color: var(--white);
}

.footer-logo .logo-mark {
  width: 40px;
  height: 40px;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 92px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-word {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.logo-word .gifts {
  color: var(--red);
}

.logo-word .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  margin-left: 2px;
  transform: translateY(-10px);
}

.logo-sub {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.28em;
  color: var(--red);
  font-weight: 700;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  position: relative;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--red);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--blue-btn);
  color: var(--text);
  border-radius: 8px;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease;
}

.icon-btn:hover {
  background: var(--red);
  color: var(--white);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.menu-toggle {
  display: none;
}

.search-panel,
.mini-cart {
  position: absolute;
  right: 20px;
  top: 92px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  display: none;
  z-index: 60;
}

.search-panel.open,
.mini-cart.open {
  display: block;
}

.search-panel {
  width: min(420px, calc(100% - 40px));
  padding: 16px;
}

.search-panel form {
  display: flex;
  gap: 8px;
}

.search-panel input {
  flex: 1;
  border: 1px solid var(--line);
  padding: 12px 14px;
  border-radius: 4px;
}

.mini-cart {
  width: 340px;
  padding: 18px;
}

.mini-cart h4 {
  margin-bottom: 12px;
}

.mini-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.mini-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
}

.mini-empty {
  color: var(--muted);
  font-size: 13px;
}

.mini-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin: 12px 0;
}

/* Page hero */
.page-hero {
  height: 280px;
  background: center/cover no-repeat;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--white);
  text-align: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10, 10, 10, 0.45), rgba(10, 10, 10, 0.55));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.crumb {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.crumb a:hover {
  color: var(--red);
}

/* Home hero slider */
.hero-slider {
  position: relative;
  background: var(--blue-soft);
  overflow: hidden;
  min-height: 620px;
}

.hero-slide {
  display: none;
  min-height: 620px;
}

.hero-slide.active {
  display: block;
}

.hero-slide .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 620px;
  gap: 24px;
}

.eyebrow {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-copy h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-copy p {
  max-width: 480px;
  color: #555;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.play-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid var(--text);
  display: grid;
  place-items: center;
  background: var(--white);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}

.hero-circle {
  width: min(460px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.slider-nav button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

.slider-nav .prev {
  left: 12px;
}

.slider-nav .next {
  right: 12px;
}

/* Categories */
.cat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding: 70px 0 20px;
}

.cat-card {
  text-align: center;
}

.cat-img {
  width: 210px;
  height: 210px;
  margin: 0 auto 16px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 2px;
}

.cat-img .badge {
  top: 12px;
  left: 12px;
}

.cat-card h3 {
  font-size: 20px;
  font-weight: 800;
}

.cat-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-top: 4px;
}

/* Promo split */
.promo-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 40px 0 20px;
}

.promo-left {
  background: var(--blue-soft);
  padding: 42px 36px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-left h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}

.promo-thumbs {
  display: flex;
  gap: 14px;
  margin: 22px 0 28px;
}

.promo-thumbs img {
  width: 92px;
  height: 92px;
  object-fit: cover;
  background: var(--white);
  border-radius: 6px;
}

.promo-right {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.promo-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.timer-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  width: min(360px, 86%);
  margin: 70px auto 0;
  padding: 28px 24px;
  text-align: center;
}

.timer-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown div {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px 4px;
}

.countdown strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
}

.countdown span {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.product-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.product-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.product-card {
  background: var(--white);
}

.product-media {
  position: relative;
  background: var(--gray);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.product-media a,
.product-media img {
  width: 100%;
  height: 100%;
  display: block;
}

.product-media img {
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-media .badge {
  top: 12px;
  right: 12px;
  left: auto;
}

.product-actions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: 0.25s ease;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: none;
}

.product-actions .btn {
  flex: 1;
  min-height: 40px;
  font-size: 11px;
  padding: 0 10px;
}

.product-card .cat {
  color: var(--muted);
  font-size: 12px;
  margin-top: 12px;
  text-transform: lowercase;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0 6px;
}

.price {
  color: var(--red);
  font-weight: 700;
}

.price s {
  color: var(--muted);
  font-weight: 500;
  margin-left: 8px;
}

.center {
  text-align: center;
}

.mt-32 {
  margin-top: 32px;
}

/* Feature banner */
.feature-banner {
  background: linear-gradient(90deg, var(--blue-soft) 52%, var(--white) 52%);
  padding: 70px 0;
}

.feature-banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.feature-copy h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  margin: 10px 0 16px;
}

.feature-visual {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.feature-main {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
}

.feature-main img,
.feature-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-thumbs a {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

/* Split banners */
.split-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-item {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: grid;
  place-items: center;
}

.split-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-item.yellow {
  background: var(--yellow);
}

.split-item.crimson {
  background: #c81e32;
}

.split-copy {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px;
}

.split-copy h3 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 18px;
  max-width: 320px;
}

.video-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 22px;
}

/* Instagram */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.insta-grid a {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.insta-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-grid a::after {
  content: "♥";
  position: absolute;
  inset: 0;
  background: rgba(255, 60, 42, 0.55);
  color: var(--white);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: 0.25s ease;
  font-size: 22px;
}

.insta-grid a:hover::after {
  opacity: 1;
}

/* Trust / brands */
.trust-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  text-align: center;
  color: #9a9a9a;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
}

/* Newsletter */
.newsletter {
  background: var(--blue-soft);
  padding: 54px 0;
}

.newsletter .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.newsletter h2 {
  font-size: 32px;
  font-weight: 800;
}

.newsletter p {
  color: #666;
}

.news-form {
  display: flex;
  gap: 10px;
  width: min(520px, 100%);
  flex-wrap: wrap;
}

.news-form .form-error,
.news-form .form-success {
  width: 100%;
}

.product-actions,
.product-media .badge {
  z-index: 2;
}

.news-form input {
  flex: 1;
  border: 0;
  padding: 0 18px;
  min-height: 52px;
  border-radius: 40px;
}

.news-form .btn {
  border-radius: 40px;
}

.form-error {
  color: var(--red);
  font-size: 12px;
  margin-top: 8px;
  display: none;
}

.form-success {
  color: #1b7a3d;
  font-size: 13px;
  margin-top: 8px;
  display: none;
  font-weight: 600;
}

/* Lifestyle strip */
.life-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.life-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Footer */
.site-footer {
  background: var(--footer);
  color: #cfcfcf;
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 50px;
}

.site-footer h4 {
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.08em;
  font-size: 14px;
}

.site-footer p,
.site-footer li {
  font-size: 14px;
  line-height: 1.9;
}

.site-footer a:hover {
  color: var(--red);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  width: 38px;
  height: 38px;
  border: 1px solid #333;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.footer-bottom {
  background: var(--footer-2);
  padding: 16px 0;
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-links a {
  color: #aaa;
}

/* Filters */
.filter-bar {
  background: #f6f6f6;
  padding: 14px 0;
  margin: 30px 0 18px;
}

.filter-bar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.filter-bar select {
  border: 0;
  background: transparent;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 4px;
  cursor: pointer;
}

.filter-bar .spacer {
  margin-left: auto;
}

.active-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tag {
  background: var(--gray);
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 3px;
}

/* Product details */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--gray);
}

.detail-copy .cat {
  color: var(--muted);
  letter-spacing: 0.12em;
  font-size: 12px;
}

.detail-copy h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 8px 0 12px;
}

.detail-price {
  font-size: 28px;
  color: var(--red);
  font-weight: 800;
  margin-bottom: 18px;
}

.qty-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

.qty-row input {
  width: 72px;
  height: 48px;
  text-align: center;
  border: 1px solid var(--line);
}

.product-tabs {
  margin: 20px 0 60px;
}

.tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.tabs button {
  background: none;
  border: 0;
  padding: 12px 0;
  font-weight: 700;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.tabs button.active {
  color: var(--red);
  border-color: var(--red);
}

.tab-panel {
  display: none;
  color: #444;
}

.tab-panel.active {
  display: block;
}

.tab-panel p {
  margin-bottom: 14px;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 28px;
  padding: 50px 0 80px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 12px 8px;
  border-bottom: 1px solid var(--line);
}

.cart-table td {
  padding: 16px 8px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.cart-prod {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cart-prod img {
  width: 74px;
  height: 74px;
  object-fit: cover;
}

.cart-table input[type="number"] {
  width: 64px;
  height: 40px;
  text-align: center;
  border: 1px solid var(--line);
}

.remove-item {
  background: none;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font-weight: 700;
}

.summary {
  background: var(--blue-soft);
  padding: 28px;
  height: fit-content;
}

.summary h3 {
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.summary-row.total {
  font-weight: 800;
  font-size: 18px;
  border-top: 1px solid #cfe3ee;
  padding-top: 12px;
  margin-top: 12px;
}

.checkout-form {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.checkout-form input,
.checkout-form textarea,
.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 14px;
  min-height: 46px;
}

.success-box {
  display: none;
  background: var(--white);
  border: 2px solid var(--red);
  padding: 28px 20px;
  text-align: center;
  margin-top: 18px;
}

.success-box.show {
  display: block;
}

/* Content pages */
.content-wrap {
  padding: 60px 0 90px;
}

.rich-content h2,
.rich-content h3 {
  margin: 28px 0 12px;
}

.rich-content p,
.rich-content li {
  margin-bottom: 12px;
  color: #444;
}

.rich-content ul,
.rich-content ol {
  padding-left: 20px;
}

.rich-content ul {
  list-style: disc;
}

.rich-content ol {
  list-style: decimal;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  display: flex;
  gap: 14px;
  margin: 18px 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 18px 0;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-item .answer {
  display: none;
  padding: 0 0 18px;
  color: #555;
}

.faq-item.open .answer {
  display: block;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.about-intro img,
.two-col img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}

.stat {
  background: var(--blue-soft);
  padding: 24px 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 32px;
  color: var(--red);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.pagination button,
.pagination a {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-weight: 700;
  cursor: pointer;
}

.pagination .active {
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: none;
  z-index: 40;
}

.overlay.open {
  display: block;
}

.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--black);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 4px;
  display: none;
  z-index: 80;
}

.toast.show {
  display: block;
}

@media (max-width: 1100px) {
  .product-grid,
  .product-grid.cols-4,
  .product-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cat-row,
  .trust-row,
  .life-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid,
  .feature-banner .container,
  .promo-grid,
  .hero-slide .container,
  .product-detail,
  .cart-layout,
  .two-col,
  .about-intro {
    grid-template-columns: 1fr;
  }
  .feature-banner {
    background: var(--blue-soft);
  }
}

@media (max-width: 800px) {
  .header-inner {
    grid-template-columns: auto auto;
  }
  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 14px;
    box-shadow: var(--shadow);
  }
  .main-nav.open {
    display: flex;
  }
  .menu-toggle {
    display: grid;
  }
  .product-grid,
  .product-grid.cols-4,
  .product-grid.cols-3,
  .cat-row,
  .insta-grid,
  .form-row,
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .split-banners,
  .newsletter .container,
  .footer-bottom .container,
  .topbar .container {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
  }
  .hero-slider,
  .hero-slide,
  .hero-slide .container {
    min-height: auto;
  }
  .hero-visual {
    min-height: 320px;
  }
  .news-form {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .product-grid,
  .product-grid.cols-4,
  .product-grid.cols-3,
  .life-strip,
  .trust-row {
    grid-template-columns: 1fr;
  }
  .cat-img {
    width: 150px;
    height: 150px;
  }
}
