:root {
  --red: #d0102a;
  --red-dark: #9a0c1f;
  --red-deep: #5c0814;
  --ink: #141414;
  --ink-soft: #3a3a3a;
  --muted: #6b6b6b;
  --line: #e6e6e6;
  --bg: #f4f4f4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --font-display: "Oswald", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

p { margin: 0 0 1rem; }
.container { width: min(100% - 2rem, var(--container)); margin-inline: auto; }
.narrow { max-width: 760px; }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--red);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
}
.lead { font-size: 1.125rem; color: var(--ink-soft); }
.tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--outline-light { border-color: rgba(255,255,255,0.7); color: #fff; background: transparent; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--ghost-light {
  background: #fff;
  color: var(--red);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

/* Topbar */
.topbar {
  background: var(--red);
  color: #fff;
  padding: 0.65rem 0;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
}
.topbar__links a:hover { opacity: 0.85; }

.search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  overflow: hidden;
  min-width: min(100%, 320px);
  flex: 1;
  max-width: 420px;
}
.search input {
  border: 0;
  outline: 0;
  padding: 0.65rem 1rem;
  width: 100%;
  color: var(--ink);
}
.search button {
  border: 0;
  background: var(--red-dark);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin: 3px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 150px;
  padding: 0.4rem 0;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo__img {
  display: block;
  height: 132px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  object-position: left center;
}
.logo--footer .logo__img {
  height: 100px;
  max-width: 240px;
  background: #fff;
  border-radius: 10px;
  padding: 6px;
}
.logo__text {
  display: none; /* full brand name is already inside the logo image */
}
@media (min-width: 1100px) {
  .logo__img {
    height: 148px;
    max-width: 340px;
  }
}
@media (max-width: 860px) {
  .logo__img {
    height: 92px;
    max-width: 210px;
  }
}
.product-art--pending {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #ececec, #f7f7f7);
  color: #888;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}
.product-art--pending::before { display: none; }
.product-art--pending span {
  border: 1px dashed #bbb;
  padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.7);
}
.brand-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.product-type {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.45rem !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-snippet {
  color: var(--muted) !important;
  font-size: 0.86rem !important;
  margin-bottom: 0.65rem !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__link {
  display: block;
  color: inherit;
  height: 100%;
}
.card-cta {
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}
.catalog-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.5rem 1.6rem;
  margin-bottom: 1.5rem;
}
.catalog-intro h2 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}
.catalog-intro p {
  margin: 0;
  max-width: 52rem;
  color: var(--ink-soft);
}
.breadcrumb {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.breadcrumb a { color: var(--red); font-weight: 600; }
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.product-detail__media {
  position: sticky;
  top: calc(150px + 1.25rem);
  align-self: start;
  z-index: 2;
  max-height: calc(100vh - 150px - 2.5rem);
  overflow: hidden;
  background: #fafafa;
  border: 1px solid var(--line);
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.product-detail__frame {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__photo {
  width: 100%;
  max-height: min(460px, calc(100vh - 150px - 4rem));
  object-fit: contain;
  display: block;
}
.product-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(42%, 180px);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  user-select: none;
  z-index: 2;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 1px rgba(255,255,255,0.5));
}
.product-detail__media img {
  width: 100%;
  max-height: min(460px, calc(100vh - 150px - 4rem));
  object-fit: contain;
}
.product-detail h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0.35rem 0;
}
.product-detail__type {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.product-detail__desc {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
.product-specs {
  margin: 1.25rem 0;
  border: 1px solid var(--line);
  background: #fafafa;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}
.spec-table th,
.spec-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.spec-table th {
  width: 42%;
  color: var(--muted);
  font-weight: 600;
}
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: none; }
.spec-fallback {
  margin: 1rem 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
.product-features {
  margin-top: 1.5rem;
}
.product-features h3,
.product-accessories h3 {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.feature-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--ink-soft);
  line-height: 1.65;
}
.feature-list li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.feat-num {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.product-accessories {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.product-accessories p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.detail-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.detail-cols h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.detail-cols ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
.detail-cols li { margin-bottom: 0.35rem; }
@media (max-width: 860px) {
  .product-detail,
  .detail-cols { grid-template-columns: 1fr; }
  .product-detail__media {
    position: static;
    max-height: none;
    overflow: visible;
  }
}
.price-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.7rem;
}
.price-block--lg {
  margin: 1rem 0 1.25rem;
}
.price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.price-block--lg .price { font-size: 1.8rem; color: var(--red); }
.price-vat {
  color: var(--muted);
  font-size: 0.82rem;
}
.product-card__media img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 0;
  background: transparent;
}
.featured__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fafafa;
  min-height: 320px;
  padding: 1.5rem;
}
.product-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}
.brand-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 1.1rem 0.8rem;
  text-align: center;
  transition: 0.2s ease;
}
.brand-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.brand-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
.brand-card small { color: var(--muted); }
.filters h3 + .filter-list { margin-bottom: 1.25rem; }
@media (max-width: 1024px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
}

.logo__text {
  display: none;
}
.logo__text strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}
.logo__text em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav__link {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.7rem 0.85rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.nav__link:hover,
.nav__link.is-active { color: var(--red); }

.nav__dropdown { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-40%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: min(720px, 90vw);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  z-index: 60;
}
.nav__dropdown.is-open .mega,
.nav__dropdown:hover .mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-40%) translateY(0);
}
.mega__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}
.mega__grid a {
  padding: 0.75rem 0.85rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.mega__grid a:hover {
  border-color: #f0c8cf;
  background: #fff5f6;
}
.mega__grid span {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
}
.mega__grid small { color: var(--muted); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  overflow: hidden;
  color: #fff;
}
.hero--photo .hero__slide,
.hero__slide--photo {
  background-color: #f4f4f4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero--lite {
  min-height: clamp(380px, 58vh, 520px);
  color: #fff;
  background: #1a0a0e;
}
.hero__lite-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(166, 28, 46, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(90, 10, 20, 0.6) 0%, transparent 50%),
    linear-gradient(135deg, #0f0809 0%, #2a0e14 40%, #1a1012 100%);
}
.hero__lite-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.02) 48px,
    rgba(255, 255, 255, 0.02) 49px
  );
}
.hero__lite-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
  min-height: clamp(380px, 58vh, 520px);
  padding: 3rem 0 3.5rem;
}
.hero--lite .hero__sub strong {
  color: #ffc8cf;
  font-weight: 600;
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
}
.hero__chips a {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, border-color 0.2s;
}
.hero__chips a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero__lite-art {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.95;
}
.hero__lite-art img {
  width: min(100%, 420px);
  height: auto;
}
@media (max-width: 900px) {
  .hero__lite-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2.5rem 0 2rem;
  }
  .hero__lite-art {
    order: -1;
    max-width: 280px;
    margin: 0 auto;
    opacity: 0.75;
  }
  .hero--lite .hero__actions,
  .hero__chips {
    justify-content: center;
  }
  .hero--lite .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__slides { height: 100%; }
.hero__slide {
  display: none;
  min-height: clamp(420px, 72vh, 640px);
  background: var(--hero-bg, #7a0f1a);
  position: relative;
  align-items: center;
  padding: 4rem 0 5rem;
}
.hero__slide.is-active {
  display: grid;
  animation: heroIn 0.7s ease;
}
@keyframes heroIn {
  from { opacity: 0.4; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__eyebrow {
  font-family: var(--font-display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffb3bf;
  margin-bottom: 0.8rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero__sub {
  font-size: 1.15rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.6rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__visual {
  position: absolute;
  right: 4%;
  bottom: 8%;
  width: min(42vw, 460px);
  aspect-ratio: 1;
  opacity: 0.9;
  z-index: 1;
}
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 3;
}
.hero__nav--prev { left: 1rem; }
.hero__nav--next { right: 1rem; }
.hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 3;
}
.hero__dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
}
.hero__dots button.is-active { background: #fff; }

/* Tool silhouettes */
.tool-silhouette,
.product-art {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 45%),
    linear-gradient(145deg, #2a2a2a, #111);
  position: relative;
  overflow: hidden;
}
.tool-silhouette::before,
.product-art::before {
  content: "";
  position: absolute;
  inset: 18% 22%;
  background: linear-gradient(160deg, var(--red), #ff5a6e 40%, #222 41%, #111);
  clip-path: polygon(15% 20%, 70% 10%, 88% 35%, 75% 80%, 30% 90%, 10% 55%);
  opacity: 0.95;
}
.tool-silhouette--drill::before,
.product-art--drill::before {
  clip-path: polygon(20% 35%, 55% 20%, 78% 28%, 85% 55%, 60% 75%, 25% 70%);
}
.tool-silhouette--saw::before,
.product-art--saw::before,
.product-art--chainsaw::before,
.product-art--miter::before,
.product-art--cutter::before {
  clip-path: polygon(10% 40%, 55% 15%, 90% 45%, 70% 80%, 20% 75%);
  background: linear-gradient(160deg, #eee, #999 35%, var(--red) 36%, var(--red-dark));
}
.product-art--pump::before {
  clip-path: polygon(20% 25%, 70% 18%, 85% 45%, 78% 80%, 25% 85%, 12% 50%);
}
.product-art--vacuum::before,
.product-art--blower::before {
  clip-path: polygon(25% 20%, 65% 15%, 80% 50%, 70% 85%, 30% 80%, 15% 45%);
}
.product-art--laser::before {
  background: linear-gradient(160deg, #1ad67a, #0a8f4a 40%, #222 41%);
}
.product-art--disc::before {
  clip-path: circle(38% at 50% 50%);
  background: conic-gradient(from 20deg, #333, #bbb, #333, #eee, #333);
}
.product-art--weld::before {
  background: linear-gradient(160deg, #3aa0ff, #1050a0 40%, #222 41%);
}

/* Sections */
.section { padding: 4.5rem 0; }
.section--muted { background: var(--bg); }
.section--about-teaser { padding: 4rem 0; background: linear-gradient(#fff, var(--bg)); }
.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.section__head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: 0; }
.section__head a { color: var(--red); font-weight: 600; }

.page-hero {
  background: linear-gradient(120deg, var(--red-deep), var(--red));
  color: #fff;
  padding: 3.5rem 0;
}
.page-hero .eyebrow { color: #ffc2cb; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); }

/* Featured */
.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}
.featured__media { min-height: 320px; background: #fafafa; padding: 1.5rem; }
.featured__body { padding: 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.featured__body h3 { font-size: 1.7rem; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.product-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-card__media {
  aspect-ratio: 1;
  min-height: 220px;
  padding: 0.35rem;
  background: #fafafa;
  border-bottom: 1px solid var(--line);
}
.product-card__body { padding: 1rem 1.1rem 1.25rem; }
.product-card__body h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__body p {
  color: var(--muted);
  font-size: 0.92rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.product-card__body a {
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
}

/* Stats */
.stats {
  background:
    linear-gradient(120deg, rgba(20,20,20,0.88), rgba(90,10,20,0.85)),
    radial-gradient(circle at 20% 20%, #444, #111);
  color: #fff;
  padding: 3.5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #ffb7c1;
  margin-bottom: 0.35rem;
}
.stats__item span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--line);
  transition: 0.25s ease;
  min-height: 150px;
  display: flex;
  flex-direction: column;
}
.cat-card__main {
  display: block;
  padding: 1.35rem 1.1rem;
  color: inherit;
  flex: 1;
}
.cat-card__subs {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  background: #fafafa;
}
.cat-card__subs a {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.cat-card__subs a:last-child { border-bottom: 0; }
.cat-card__subs a:hover {
  color: var(--red);
  background: #fff5f6;
}
.cat-card__subs small {
  color: var(--muted);
  font-weight: 500;
}
.cat-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-card__icon {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, var(--red), var(--red-deep));
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}
.cat-card strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.cat-card small { color: var(--muted); }

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.chip {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.55rem 0.95rem;
  font-size: 0.92rem;
  transition: 0.2s ease;
}
.chip:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Testimonials */
.testimonial-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  min-height: 180px;
}
.testimonial {
  display: none;
  animation: fadeUp 0.45s ease;
}
.testimonial.is-active { display: block; }
.testimonial p {
  font-size: 1.25rem;
  color: var(--ink-soft);
}
.testimonial cite {
  font-style: normal;
  color: var(--red);
  font-weight: 600;
}
.testimonial-controls {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.testimonial-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  font-size: 1.3rem;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA */
.cta-banner {
  background: linear-gradient(110deg, var(--ink), var(--red-deep) 70%, var(--red));
  color: #fff;
  padding: 3rem 0;
}
.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-banner h2 { margin-bottom: 0.4rem; }
.cta-banner p { margin: 0; opacity: 0.9; }

/* Footer */
.footer {
  background: #0f0f0f;
  color: #d8d8d8;
  padding-top: 3rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}
.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}
.footer a, .footer p {
  display: block;
  margin-bottom: 0.45rem;
  color: #bdbdbd;
  font-size: 0.95rem;
}
.footer a:hover { color: #fff; }
.logo--footer .logo__text strong { color: #fff; }
.logo--footer .logo__text em { color: #999; }
.footer__bottom {
  border-top: 1px solid #2a2a2a;
  padding: 1rem 0;
  font-size: 0.88rem;
  color: #888;
}

/* About / contact */
.content-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}
.content-panel {
  background: var(--bg);
  border-left: 4px solid var(--red);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
}
.content-panel ul { margin: 0; padding-left: 1.1rem; }
.content-panel li { margin-bottom: 0.55rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
}
.contact-details { list-style: none; padding: 0; }
.contact-details li { margin-bottom: 0.85rem; }
.contact-details strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  color: var(--muted);
}
.contact-form {
  background: var(--bg);
  padding: 1.5rem;
  display: grid;
  gap: 0.9rem;
}
.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
}
.form-note { color: var(--red); font-weight: 600; margin: 0; }

/* Products page */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
  align-items: start;
}
.filters {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.1rem;
  position: sticky;
  top: 90px;
}
.filters h3 {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.filter-list { display: grid; gap: 0.25rem; }
.filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-left: 3px solid transparent;
  color: var(--ink-soft);
}
.filter-list a small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}
.filter-list a:hover,
.filter-list a.is-active {
  background: #fff5f6;
  border-left-color: var(--red);
  color: var(--red);
}
.filter-list a.is-active small { color: var(--red); }
.filter-list__sub {
  padding-left: 1.35rem !important;
  font-size: 0.9rem;
}
.filter-list__parent {
  font-weight: 700;
}
.filter-note {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  background: #fff8e6;
  border: 1px solid #f0dfa8;
  color: #6a5a20;
  border-radius: 4px;
}
.products-meta {
  margin-bottom: 1rem;
  color: var(--muted);
}
.empty { padding: 2rem; background: var(--bg); }
.empty-state {
  padding: 2rem;
  background: var(--bg);
  text-align: center;
}
.empty-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__visual { opacity: 0.35; }
}

@media (max-width: 860px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0 0 auto auto;
    top: 160px;
    max-height: calc(100vh - 160px);
    right: 0;
    width: min(100%, 320px);
    background: #fff;
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    transform: translateX(105%);
    transition: 0.25s ease;
    max-height: calc(100vh - 120px);
    overflow: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .mega {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0.25rem 0 0.5rem;
    display: none;
  }
  .nav__dropdown.is-open .mega { display: block; opacity: 1; visibility: visible; transform: none; }
  .mega__grid { grid-template-columns: 1fr; }
  .featured,
  .content-split,
  .contact-layout,
  .products-layout { grid-template-columns: 1fr; }
  .filters { position: static; }
  .product-grid,
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .topbar__links a:not(.btn) { display: none; }
}

@media (max-width: 560px) {
  .product-grid,
  .cat-grid,
  .footer__grid { grid-template-columns: 1fr; }
  .hero__nav { display: none; }
  .search { max-width: none; min-width: 0; width: 100%; }
}


.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: #fff;
}
.cart-badge {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: #fff;
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
}
.cart-feedback {
  margin-top: 0.85rem;
  color: var(--red);
  font-weight: 600;
}
.checkout-layout { min-height: 280px; }
.checkout-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--bg);
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
}
.checkout-cart,
.checkout-side {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.25rem;
}
.checkout-form {
  display: grid;
  gap: 0.75rem;
}
.checkout-form h2,
.checkout-cart h2 {
  font-size: 1.25rem;
  margin: 0;
}
.checkout-form label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
  font-size: 0.92rem;
}
.checkout-form input,
.checkout-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.7rem 0.8rem;
  border-radius: var(--radius);
  font: inherit;
}
.checkout-totals {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  display: grid;
  gap: 0.45rem;
}
.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.checkout-hint {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 400;
}
.cart-list { display: grid; gap: 0.85rem; }
.cart-row {
  display: grid;
  grid-template-columns: 88px 1fr auto auto;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0.75rem;
}
.cart-row__media {
  width: 88px;
  height: 88px;
  background: #fafafa;
  display: grid;
  place-items: center;
}
.cart-row__media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cart-row__info {
  display: grid;
  gap: 0.15rem;
}
.cart-row__info small { color: var(--muted); }
.cart-row__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
}
.cart-row__qty button,
.cart-row__qty input {
  border: 0;
  background: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  font: inherit;
}
.cart-row__qty input {
  width: 48px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.cart-row__total {
  text-align: right;
  display: grid;
  gap: 0.35rem;
  justify-items: end;
}
.cart-remove {
  border: 0;
  background: none;
  color: var(--red);
  cursor: pointer;
  font: inherit;
  font-size: 0.85rem;
}
.linkish {
  border: 0;
  background: none;
  color: var(--red);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 900px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .cart-row {
    grid-template-columns: 72px 1fr;
  }
  .cart-row__qty,
  .cart-row__total {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .cart-row__total { justify-items: start; }
}


/* Sticky cart drawer */
.sticky-cart {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 120;
  pointer-events: none;
}
.sticky-cart__tab {
  pointer-events: auto;
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  background: var(--red);
  color: #fff;
  padding: 0.85rem 0.9rem 0.85rem 1rem;
  border-radius: 10px 0 0 10px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.sticky-cart.has-items .sticky-cart__tab { display: inline-flex; }
.sticky-cart.is-open .sticky-cart__tab { display: none; }
.sticky-cart__tab .cart-badge {
  background: #fff;
  color: var(--red);
}
.sticky-cart__backdrop {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.sticky-cart.is-open .sticky-cart__backdrop {
  pointer-events: auto;
  opacity: 1;
}
.sticky-cart__panel {
  pointer-events: auto;
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: #fff;
  box-shadow: -12px 0 40px rgba(0,0,0,0.18);
  transform: translateX(105%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
}
.sticky-cart.is-open .sticky-cart__panel {
  transform: translateX(0);
}
.sticky-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.sticky-cart__head strong {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sticky-cart__close {
  border: 0;
  background: var(--bg);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.sticky-cart__body {
  flex: 1;
  overflow: auto;
  padding: 0.85rem 1.1rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}
.sticky-cart__empty {
  color: var(--muted);
  text-align: center;
  padding: 2rem 0.5rem;
}
.sticky-cart__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.7rem;
  border: 1px solid var(--line);
  padding: 0.55rem;
}
.sticky-cart__thumb {
  width: 64px;
  height: 64px;
  background: #fafafa;
  display: grid;
  place-items: center;
}
.sticky-cart__thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.sticky-cart__meta {
  display: grid;
  gap: 0.2rem;
}
.sticky-cart__meta small { color: var(--muted); }
.sticky-cart__qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.sticky-cart__qty button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.sticky-cart__remove {
  border: 0 !important;
  background: none !important;
  color: var(--red) !important;
  width: auto !important;
  margin-left: auto;
  font-size: 0.8rem;
}
.sticky-cart__foot {
  border-top: 1px solid var(--line);
  padding: 1rem 1.1rem 1.2rem;
  display: grid;
  gap: 0.55rem;
}
.sticky-cart__totals {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
body.sticky-cart-open { overflow: hidden; }
@media (max-width: 560px) {
  .sticky-cart__panel { width: 100%; }
}
