:root {
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-sans: "IBM Plex Sans", Arial, sans-serif;
  --brand: #96211f;
  --brand-dark: #591614;
  --brand-deep: #451110;
  --brand-tint: #f6edeb;
  --graphite: #24262b;
  --graphite-soft: #33363c;
  --steel: #565b63;
  --ink: #26272b;
  --muted: #74787f;
  --paper: #f5f5f4;
  --line: #e5e4e1;
  --white: #ffffff;
  --radius-s: 8px;
  --radius-m: 12px;
  --radius-l: 16px;
  --radius-xl: 20px;
  --product-image-ratio: 4 / 3;
  --shadow-s: 0 6px 18px -8px rgba(36, 38, 43, 0.22);
  --shadow-m: 0 18px 40px -18px rgba(36, 38, 43, 0.32);
  --shadow-l: 0 40px 80px -32px rgba(36, 38, 43, 0.42);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
ul {
  list-style: none;
}

.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--graphite);
  margin: 0;
  position: relative;
  padding-left: 1.05em;
}
/* Hinomaru: czerwony punkt sygnaturowy przy tytułach sekcji. */
h2.section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 0.52em;
  height: 0.52em;
  border-radius: 50%;
  background: var(--brand);
}

/* ---------- TOP BAR ---------- */
.topbar {
  background: var(--brand);
  color: #f2dedd;
  font-size: 0.82rem;
  font-weight: 500;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 1rem;
}
.topbar a {
  transition: color 0.25s var(--ease);
}
.topbar a:hover {
  color: #fff;
}
.topbar .tb-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.topbar .tb-right {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}
.tb-pill {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  padding: 0.2rem 0.7rem;
  border-radius: var(--radius-s);
  font-weight: 700;
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
@media (max-width: 780px) {
  .topbar .tb-left span:not(.tb-pill) {
    display: none;
  }
}
@media (max-width: 640px) {
  .topbar .wrap {
    height: auto;
    min-height: 38px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .topbar .tb-right a:not(:first-child) {
    display: none;
  }
  .topbar {
    font-size: 0.76rem;
  }
}

/* ---------- HEADER ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled {
  box-shadow: var(--shadow-s);
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  height: 92px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}
.logo img {
  height: 58px;
  width: auto;
}

.search {
  flex: 1;
  max-width: 560px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-m);
  padding: 0.3rem 0.3rem 0.3rem 1.05rem;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
.search:hover {
  border-color: #d6d4d0;
}
.search:focus-within {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px var(--brand-tint);
}
.search-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--muted);
}
.search input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: none;
  color: var(--ink);
  text-overflow: ellipsis;
}
.search input::placeholder {
  color: var(--muted);
}
.search button {
  flex-shrink: 0;
  background: var(--graphite);
  color: #fff;
  border-radius: calc(var(--radius-m) - 4px);
  height: 44px;
  padding: 0 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.search button svg {
  width: 19px;
  height: 19px;
}
.search button:hover {
  background: var(--brand);
  box-shadow: 0 6px 16px -6px rgba(150, 33, 31, 0.55);
}
@media (max-width: 1080px) {
  .search button .search-btn-label {
    display: none;
  }
  .search button {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
}

.hdr-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-s);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--graphite);
  transition: background 0.2s var(--ease);
  position: relative;
}
.icon-btn:hover {
  background: var(--brand-tint);
}
.icon-btn svg {
  width: 24px;
  height: 24px;
}
.cart-count {
  position: absolute;
  top: 0.2rem;
  right: 0.45rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 4px;
  border: 2px solid var(--white);
}
.burger {
  display: none;
}
@media (max-width: 920px) {
  .search {
    display: none;
  }
  .burger {
    display: flex;
  }
}
@media (max-width: 640px) {
  .header .wrap {
    height: 72px;
    gap: 0.8rem;
  }
  .logo img {
    height: 44px;
  }
  .hdr-actions {
    gap: 0.15rem;
  }
  .icon-btn {
    padding: 0.45rem 0.55rem;
  }
  .hdr-actions .icon-btn:nth-child(1),
  .hdr-actions .icon-btn:nth-child(2) {
    display: none;
  }
}

/* ---------- NAV ---------- */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  height: 56px;
  position: relative;
}
.nav .wrap::-webkit-scrollbar {
  display: none;
}
@media (max-width: 760px) {
  .nav .wrap {
    overflow-x: auto;
  }
}
.nav-all {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.2rem;
  border-radius: var(--radius-s);
  margin-right: 0.6rem;
  transition: background 0.25s var(--ease);
}
.nav-all:hover {
  background: var(--brand-dark);
}
.nav-link {
  flex-shrink: 0;
  padding: 0.6rem 0.95rem;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--graphite);
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.nav-link:hover {
  background: var(--paper);
  color: var(--brand);
}
.nav-link.hot {
  color: var(--brand);
}
.nav-link.hot:hover {
  background: var(--brand-tint);
}

/* ---------- MEGA MENU ---------- */
.nav-all-wrap {
  flex-shrink: 0;
  margin-right: 0.6rem;
}
.nav-all-wrap .nav-all {
  margin-right: 0;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.nav-all .chev {
  transition: transform 0.3s var(--ease);
}
.nav-all-wrap.open .chev {
  transform: rotate(180deg);
}
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
  display: grid;
  grid-template-columns: 290px 1fr;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.26s var(--ease),
    transform 0.26s var(--ease),
    visibility 0.26s var(--ease);
  z-index: 80;
}
.nav-all-wrap.open .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 38px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}
.mega-list {
  background: var(--paper);
  border-right: 1px solid var(--line);
  padding: 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mega-cat {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--graphite);
  cursor: pointer;
  transition: background 0.18s var(--ease);
}
.mega-cat .mega-cat-ico {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.mega-cat .mega-cat-arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.18s var(--ease),
    transform 0.18s var(--ease);
}
.mega-cat:hover,
.mega-cat.active {
  background: var(--brand-tint);
}
.mega-cat.active {
  color: var(--brand);
}
.mega-cat.active .mega-cat-arrow {
  opacity: 1;
  transform: translateX(0);
}
.mega-panels {
  position: relative;
  padding: 1.5rem 1.6rem;
}
.mega-panel {
  display: none;
  gap: 2rem;
  align-items: stretch;
}
.mega-panel.active {
  display: flex;
  animation: megaFade 0.3s var(--ease);
  height: 100%;
}
.mega-panel > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
}
.mega-panel h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}
.mega-subs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.1rem 0.8rem;
  align-content: start;
}
.mega-subs a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 0.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition:
    background 0.16s var(--ease),
    color 0.16s var(--ease);
}
.mega-subs a::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
  transition: transform 0.16s var(--ease);
}
.mega-subs a:hover {
  background: var(--brand-tint);
  color: var(--brand);
}
.mega-subs a:hover::before {
  transform: scale(1.7);
}
.mega-feature {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  display: block;
  width: 380px;
  flex-shrink: 0;
  min-height: 230px;
}
.mega-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.mega-feature:hover img {
  transform: scale(1.07);
}
.mega-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(36, 38, 43, 0.92) 0%,
    rgba(36, 38, 43, 0.1) 55%,
    transparent 100%
  );
}
.mega-feature-txt {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 2;
  color: #fff;
}
.mega-feature-txt span {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}
.mega-feature-txt strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}
.mega-foot {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
}
.mega-foot span {
  color: var(--muted);
  font-weight: 500;
}
.mega-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand);
  font-weight: 700;
}
.mega-foot a:hover {
  color: var(--brand-dark);
}
@media (max-width: 760px) {
  .mega {
    display: none;
  }
}

/* ---------- HERO ---------- */
.hero {
  padding: 34px 0 10px;
  position: relative;
}

.hero-slider {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
}
.hero-track {
  display: flex;
  transition: transform 0.8s var(--ease);
}
.hero-slide {
  flex: 0 0 100%;
  display: block;
  position: relative;
  background: #fff;
}
.hero-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1200/414;
  object-fit: cover;
  background: #fff;
}
.hero-content {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: min(42%, 470px);
  transform: translateY(-50%);
  color: var(--graphite);
}
.hero-slide--copy-left .hero-content {
  left: clamp(3.5rem, 7vw, 7rem);
}
.hero-slide--copy-right .hero-content {
  right: clamp(3.5rem, 7vw, 7rem);
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-kicker::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--brand);
}
.hero-content h1,
.hero-content h2 {
  margin: 0.45rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}
.hero-content p {
  max-width: 400px;
  margin: 0 0 1.15rem;
  color: #555960;
  font-size: clamp(0.86rem, 1.25vw, 1.05rem);
  font-weight: 600;
  line-height: 1.45;
}
.hero-content .btn {
  padding: 0.72rem 1.15rem;
  font-size: 0.86rem;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  color: var(--graphite);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-s);
  transition:
    background 0.25s var(--ease),
    color 0.25s var(--ease);
}
.hero-arrow svg {
  width: 24px;
  height: 24px;
}
.hero-arrow:hover {
  background: var(--brand);
  color: #fff;
}
.hero-arrow.prev {
  left: 18px;
}
.hero-arrow.next {
  right: 18px;
}
@media (max-width: 560px) {
  .hero-slide img {
    aspect-ratio: 4/5;
    object-position: center;
  }
  .hero-slide::after {
    content: "";
    position: absolute;
    inset: 42% 0 0;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(255, 255, 255, 0.96) 28%
    );
  }
  .hero-content,
  .hero-slide--copy-left .hero-content,
  .hero-slide--copy-right .hero-content {
    top: auto;
    right: 1.3rem;
    bottom: 1.4rem;
    left: 1.3rem;
    width: auto;
    transform: none;
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: clamp(1.8rem, 9vw, 2.55rem);
  }
  .hero-content p {
    margin-bottom: 0.85rem;
  }
  .hero-arrow {
    width: 38px;
    height: 38px;
  }
  .hero-arrow.prev {
    left: 10px;
  }
  .hero-arrow.next {
    right: 10px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-s);
  transition:
    background 0.25s var(--ease),
    transform 0.15s var(--ease);
}
.btn:active {
  transform: scale(0.98);
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(150, 33, 31, 0.7);
}
.btn-primary:hover {
  background: var(--brand-dark);
}
.btn-dark {
  background: var(--graphite);
  color: #fff;
}
.btn-dark:hover {
  background: var(--graphite-soft);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.hero-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(36, 38, 43, 0.28);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.hero-dots span.on {
  width: 32px;
  border-radius: 5px;
  background: var(--brand);
}

/* ---------- TRUST STRIP ---------- */
.trust {
  padding: 48px 0 20px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1.2rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.trust-ic {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-s);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.trust-ic svg {
  width: 24px;
  height: 24px;
}
.trust-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--graphite);
}
.trust-card span {
  font-size: 0.8rem;
  color: var(--muted);
}
@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* ---------- CATEGORIES ---------- */
.section {
  padding: 88px 0;
}
@media (max-width: 720px) {
  .section {
    padding: 60px 0;
  }
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head p {
  color: var(--muted);
  max-width: 52ch;
  margin-top: 0.5rem;
  font-size: 0.98rem;
}
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--brand);
  font-size: 0.95rem;
  transition:
    gap 0.25s var(--ease),
    color 0.25s var(--ease);
}
.link-more:hover {
  gap: 0.8rem;
  color: var(--brand-dark);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.cat {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease);
}
.cat:hover {
  border-color: var(--brand);
}
.cat-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper);
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.cat:hover .cat-img img {
  transform: scale(1.07);
}
.cat-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36, 38, 43, 0.12), transparent 42%);
}
.cat-body {
  padding: 1rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cat-body b {
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: var(--graphite);
  line-height: 1.2;
}
.cat-body span {
  font-size: 0.8rem;
  color: var(--muted);
}
.cat-body .go {
  margin-top: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.25s var(--ease);
}
.cat-body .go svg {
  width: 14px;
  height: 14px;
}
.cat:hover .cat-body .go {
  gap: 0.6rem;
}
@media (max-width: 980px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- PROMO BANNER ---------- */
.promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  height: 480px;
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-m);
}
.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.promo:hover .promo-bg {
  transform: scale(1.04);
}
.promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    100deg,
    var(--graphite) 0%,
    rgba(36, 38, 43, 0.96) 26%,
    rgba(36, 38, 43, 0.6) 46%,
    rgba(36, 38, 43, 0) 66%
  );
}
.promo-text {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 4vw, 3.6rem);
  max-width: 620px;
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}
.promo-text .eyebrow {
  color: #e8b6b3;
}
.promo-text h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0.5rem 0 0.6rem;
  line-height: 1.06;
}
.promo-text p {
  color: #c9cbcf;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}
.promo-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
  background: var(--brand);
  color: #fff;
  text-align: center;
  border-radius: var(--radius-s);
  padding: 0.6rem 1.1rem;
  box-shadow: var(--shadow-m);
  transform: rotate(-3deg);
}
.promo-badge small {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.promo-badge b {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1.1;
}
@media (max-width: 720px) {
  .promo {
    height: 460px;
  }
  .promo-overlay {
    background: linear-gradient(
      180deg,
      rgba(36, 38, 43, 0.55) 0%,
      rgba(36, 38, 43, 0.88) 55%,
      var(--graphite) 100%
    );
  }
  .promo-text {
    max-width: none;
    align-self: flex-end;
    text-align: center;
  }
  .promo-text .eyebrow {
    justify-content: center;
  }
}

/* ---------- PRODUCTS ---------- */
.tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.tab {
  padding: 0.6rem 1.15rem;
  border-radius: var(--radius-s);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--graphite);
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: all 0.25s var(--ease);
}
.tab:hover {
  border-color: var(--brand);
}
.tab.on {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.card {
  background: var(--white);
  border: 1px solid #dedbd4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -28px rgba(36, 38, 43, 0.45);
  transition:
    border-color 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.card:hover {
  border-color: #c9c5bd;
  box-shadow: 0 24px 48px -30px rgba(36, 38, 43, 0.42);
  transform: translateY(-3px);
}
.card-img {
  position: relative;
  aspect-ratio: var(--product-image-ratio);
  background: var(--paper);
  overflow: hidden;
  isolation: isolate;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  transition: transform 0.45s var(--ease);
}
.card:hover .card-img img {
  transform: scale(1.06);
}
.tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  min-width: 62px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  padding: 0.78rem 0.95rem;
  border-radius: 999px;
  text-transform: uppercase;
  box-shadow: 0 9px 22px -12px rgba(20, 21, 23, 0.7);
}
.tag.new {
  background: var(--graphite);
  color: #fff;
}
.tag.sale {
  background: var(--brand);
  color: #fff;
}
.tag.top {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--brand);
}
.wish {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-s);
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.wish:hover {
  color: var(--brand);
  transform: scale(1.1);
}
.wish.active {
  color: var(--brand);
}
.wish.active svg {
  fill: currentColor;
}
.wish svg {
  width: 18px;
  height: 18px;
}
.card-body {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding: 1.35rem 1.3rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 230px;
}
.card-cat {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d8b85;
}
.card-body h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--graphite);
  margin: 0.52rem 0 0.85rem;
  line-height: 1.18;
  letter-spacing: -0.018em;
}
.spec {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 1.15rem;
}
.spec span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: #5e5c57;
  background: #faf9f6;
  border: 1px solid #ddd9d1;
  border-radius: var(--radius-s);
  padding: 0.34rem 0.58rem;
}
.spec i {
  display: none;
}
.price-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  column-gap: 0.55rem;
  row-gap: 0.08rem;
  margin-top: auto;
  padding-right: 66px;
}
.price {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.9vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--brand);
}
.price-old {
  font-size: 0.9rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-net {
  grid-column: 1 / -1;
  color: #92908a;
  font-size: 0.82rem;
  line-height: 1.2;
}
.quick-view {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-m);
  background: rgba(36, 38, 43, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.25s var(--ease),
    background 0.25s var(--ease);
}
.quick-view svg {
  width: 18px;
  height: 18px;
  flex: none;
}
.card:hover .quick-view,
.quick-view:focus-visible {
  opacity: 1;
  transform: none;
}
.quick-view:hover {
  background: var(--brand);
}
.quick-view:active {
  transform: scale(0.98);
}
@media (hover: none) {
  .quick-view {
    opacity: 1;
    transform: none;
  }
}
.add-cart {
  position: absolute;
  right: 1.3rem;
  bottom: 1.35rem;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-m);
  display: grid;
  place-items: center;
  background: var(--graphite);
  color: #fff;
  transition:
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.add-cart svg {
  width: 22px;
  height: 22px;
}
.add-cart:hover {
  background: var(--brand);
  transform: translateY(-2px);
}
.add-cart:active {
  transform: scale(0.96);
}
.quick-view:focus-visible,
.add-cart:focus-visible,
.qv-dialog button:focus-visible,
.qv-dialog a:focus-visible {
  outline: 3px solid rgba(150, 33, 31, 0.36);
  outline-offset: 3px;
}
@media (max-width: 980px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- QUICK VIEW ---------- */
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(27, 28, 29, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease);
}
.qv-overlay.open {
  opacity: 1;
  visibility: visible;
}
.qv-dialog {
  width: min(1180px, 100%);
  max-height: min(820px, calc(100dvh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 24px;
  box-shadow: 0 45px 100px -35px rgba(13, 14, 16, 0.74);
  transform: translateY(20px) scale(0.985);
  transition: transform 0.38s var(--ease);
  background-color: white;
}
.qv-overlay.open .qv-dialog {
  transform: none;
}
.qv-gallery {
  --qv-media-max-height: min(640px, calc(100dvh - 48px));
  position: relative;
  min-width: 0;
  min-height: var(--qv-media-max-height);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #e8e7e2;
}
.qv-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #deddd8;
}
.qv-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.16s ease;
}
.qv-stage img.changing {
  opacity: 0.35;
}
.qv-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.92);
  border: 1px solid rgba(222, 219, 212, 0.9);
  color: var(--graphite);
  box-shadow: 0 12px 26px -16px rgba(36, 38, 43, 0.6);
  transform: translateY(-50%);
  opacity: 0;
  transition:
    opacity 0.22s var(--ease),
    background 0.22s var(--ease),
    color 0.22s var(--ease);
}
.qv-arrow svg {
  width: 20px;
  height: 20px;
}
.qv-gallery:hover .qv-arrow,
.qv-arrow:focus-visible {
  opacity: 1;
}
.qv-arrow:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
@media (hover: none) {
  .qv-arrow {
    opacity: 1;
  }
}
.qv-prev {
  left: 18px;
}
.qv-next {
  right: 18px;
}
.qv-gallery.single .qv-arrow {
  display: none;
}
.qv-thumbs {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 3;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 10px;
  border-radius: var(--radius-l);
  background: rgba(7, 7, 7, 0.32);
  box-shadow: 0 15px 36px -24px rgba(36, 38, 43, 0.5);
  scrollbar-width: thin;
}
.qv-thumb {
  width: 72px;
  height: auto;
  aspect-ratio: var(--product-image-ratio);
  flex: 0 0 72px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: var(--radius-s);
  background: #e8e7e2;
  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.qv-thumb:hover {
  transform: translateY(-1px);
}
.qv-thumb.active {
  border-color: var(--brand);
}
.qv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qv-info {
  position: relative;
  min-width: 0;
  min-height: min(640px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: clamp(2.1rem, 4vw, 3.25rem);
}
.qv-close {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  z-index: 4;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(251, 250, 247, 0.92);
  color: var(--graphite);
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease);
}
.qv-close svg {
  width: 18px;
  height: 18px;
}
.qv-close:hover {
  color: #fff;
  background: var(--brand);
}
.qv-brand {
  max-width: calc(100% - 48px);
  color: #8c8983;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.qv-info h3 {
  max-width: calc(100% - 30px);
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--graphite);
}
.qv-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-top: 1.45rem;
}
.qv-price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--brand);
}
.qv-net {
  color: #8e8b85;
  font-size: 0.95rem;
}
.qv-specs {
  margin-top: clamp(2rem, 5vh, 3.1rem);
  overflow: hidden;
  border: 1px solid #dedbd4;
  border-radius: var(--radius-m);
  background: var(--white);
}
.qv-spec-head {
  padding: 0.85rem 1rem;
  background: #f0eee9;
  color: #85827c;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.qv-spec-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.85fr) minmax(0, 1.15fr);
  gap: 1rem;
  align-items: center;
  padding: 0.78rem 1rem;
}
.qv-spec-row + .qv-spec-row {
  border-top: 1px solid #ebe8e2;
}
.qv-spec-row dt {
  color: #88857f;
  font-size: 0.88rem;
}
.qv-spec-row dd {
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: right;
}
.qv-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.8rem;
}
.qv-cart,
.qv-link {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-m);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  transition:
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease),
    transform 0.22s var(--ease);
}
.qv-cart svg,
.qv-link svg {
  width: 19px;
  height: 19px;
  flex: none;
}
.qv-cart {
  background: var(--brand);
  color: #fff;
}
.qv-cart:hover {
  background: var(--brand-dark);
}
.qv-link {
  border: 1px solid #d3cfc7;
  color: var(--graphite);
  background: transparent;
}
.qv-link:hover {
  border-color: var(--graphite);
  background: var(--white);
}
.qv-cart:active,
.qv-link:active {
  transform: scale(0.98);
}
body.qv-locked {
  overflow: hidden;
}
@media (max-width: 880px) {
  .qv-overlay {
    align-items: end;
    padding: 12px;
  }
  .qv-dialog {
    max-height: calc(100dvh - 12px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 46dvh) minmax(0, 1fr);
    border-radius: 22px 22px 0 0;
  }
  .qv-gallery,
  .qv-info {
    min-height: 0;
  }
  .qv-gallery {
    --qv-media-max-height: 46dvh;
  }
  .qv-info {
    padding: 1.5rem;
  }
  .qv-specs {
    margin-top: 1.5rem;
  }
}
@media (max-width: 560px) {
  .card-body {
    min-height: 218px;
  }
  .qv-overlay {
    padding: 0;
  }
  .qv-dialog {
    max-height: 100dvh;
    min-height: 100dvh;
    grid-template-rows: 42dvh minmax(0, 58dvh);
    border: 0;
    border-radius: 0;
  }
  .qv-gallery {
    --qv-media-max-height: 42dvh;
  }
  .qv-thumbs {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .qv-info {
    padding: 1.35rem 1.2rem 1.6rem;
  }
  .qv-close {
    top: 0.85rem;
    right: 0.85rem;
  }
  .qv-info h3 {
    font-size: 1.55rem;
  }
  .qv-price-wrap {
    margin-top: 1rem;
  }
  .qv-specs {
    margin-top: 1.25rem;
  }
  .qv-actions {
    grid-template-columns: 1fr;
  }
  .qv-cart,
  .qv-link {
    min-height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .card,
  .card-img img,
  .quick-view,
  .add-cart,
  .qv-overlay,
  .qv-dialog,
  .qv-stage img {
    transition: none;
  }
}

/* ---------- BRANDS ---------- */
.brands {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 84px 0;
  margin: 34px 0;
}
.brands h3 {
  text-align: center;
  color: var(--graphite);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 1.8rem;
}
.brand-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: stretch;
  gap: clamp(0.7rem, 1.4vw, 1.2rem);
}
.brand-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 1rem 1.2rem;
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.brand-chip:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-s);
}
.brand-chip:focus-visible {
  outline: 3px solid rgba(150, 33, 31, 0.32);
  outline-offset: 4px;
}
.brand-chip img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  object-position: center;
  display: block;
}
@media (max-width: 1100px) {
  .brand-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .brands {
    padding: 38px 0;
  }
  .brand-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }
  .brand-chip {
    min-height: 64px;
  }
}

/* ---------- SERVICE CTA ---------- */
.service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.service-card {
  border-radius: var(--radius-l);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
  min-height: 240px;
}
.service-card.s1 {
  color: #fff;
}
.service-card.s1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      160deg,
      rgba(36, 38, 43, 0.68) 0%,
      rgba(28, 29, 33, 0.94) 80%
    ),
    url("assets/service-warsztat-2026.png") center/cover no-repeat;
  transition: transform 0.6s var(--ease);
}
.service-card.s1:hover::before {
  transform: scale(1.06);
}
.service-card.s1 > * {
  position: relative;
  z-index: 1;
}
.service-card.s2 {
  color: var(--graphite);
  border: 1px solid #e5ddd5;
}
.service-card.s2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      270deg,
      rgba(255, 250, 244, 0.98) 0%,
      rgba(255, 250, 244, 0.9) 45%,
      rgba(255, 250, 244, 0) 72%
    ),
    url("assets/doradztwo-traktorek-2026.png") center/cover no-repeat;
  transition: transform 0.6s var(--ease);
}
.service-card.s2:hover::before {
  transform: scale(1.04);
}
.service-card.s2 > * {
  position: relative;
  z-index: 1;
  width: 52%;
  margin-left: auto;
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 0.96rem;
  line-height: 1.55;
  opacity: 0.9;
  margin-top: 0.5rem;
}
.service-card.s1 p {
  color: #d4d6da;
  opacity: 1;
}
.service-card .btn {
  align-self: flex-start;
}
@media (max-width: 720px) {
  .service {
    grid-template-columns: 1fr;
  }
  .service-card.s2::before {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 244, 0.25) 0%,
        rgba(255, 250, 244, 0.96) 56%
      ),
      url("assets/doradztwo-traktorek-2026.png") center/cover no-repeat;
  }
  .service-card.s2 > * {
    width: 100%;
    margin-left: 0;
  }
}

/* ---------- BLOG / PORADY ---------- */
.post {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.post:hover {
  transform: translateY(-5px);
  border-color: #d9c4c1;
}
.post-img {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}
.post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.post:hover .post-img img {
  transform: scale(1.06);
}
.post-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--white);
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.42rem 0.85rem;
  border-radius: 4px;
  box-shadow: var(--shadow-s);
}
.post-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.5rem;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.post-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line);
}
.post h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--graphite);
  margin: 0;
}
.post p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.post-read {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--brand);
  transition: gap 0.25s var(--ease);
}
.post-read svg {
  width: 16px;
  height: 16px;
}
.post:hover .post-read {
  gap: 0.75rem;
}
.blog-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}
.post-card {
  min-height: 100%;
}
.post-card .post-img {
  aspect-ratio: 16 / 10;
}
.post-card .post-body {
  flex: 1;
  padding: 1.35rem;
}
.post-card h3 {
  font-size: 1.16rem;
}
.post-card p {
  font-size: 0.9rem;
}
.post-card .post-read {
  margin-top: auto;
  padding-top: 0.1rem;
}
@media (max-width: 1060px) {
  .blog-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .blog-three {
    grid-template-columns: 1fr;
  }
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 3.5rem;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 120px;
}
.faq-intro p {
  color: var(--muted);
  max-width: 44ch;
  margin-top: 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
}
.faq-contact {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.faq-contact span {
  font-size: 0.88rem;
  color: var(--muted);
}
.faq-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--graphite);
  transition: color 0.25s var(--ease);
}
.faq-contact a:hover {
  color: var(--brand);
}
.faq-contact a svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.faq-item.expanded {
  border-color: var(--brand);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--graphite);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--brand);
}
.faq-item summary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--brand);
  transition: transform 0.3s var(--ease);
}
.faq-item.expanded summary svg {
  transform: rotate(180deg);
}
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq-item.expanded .faq-body {
  grid-template-rows: 1fr;
}
.faq-body p {
  overflow: hidden;
  min-height: 0;
  padding: 0 1.25rem;
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--steel);
  opacity: 0;
  transform: translateY(-4px);
  transition:
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease),
    padding 0.4s var(--ease);
}
.faq-item.expanded .faq-body p {
  padding: 0 1.25rem 1.2rem;
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .faq-body,
  .faq-body p {
    transition: none;
  }
}
@media (max-width: 860px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-intro {
    position: static;
  }
}

/* ---------- NEWSLETTER ---------- */
.news {
  background: var(--graphite);
  border-radius: var(--radius-l);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.news h3 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #fff;
}
.news p {
  color: #b9bcc2;
  margin: 0.6rem 0 1.6rem;
}
.news-form {
  display: flex;
  gap: 0.6rem;
  max-width: 480px;
  margin: 0 auto;
}
.news-form input {
  flex: 1;
  border: 1.5px solid var(--graphite-soft);
  background: var(--graphite-soft);
  color: #fff;
  border-radius: var(--radius-s);
  padding: 0.95rem 1.3rem;
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.25s var(--ease);
}
.news-form input::placeholder {
  color: #9a9ea6;
}
.news-form input:focus {
  border-color: var(--brand);
}
@media (max-width: 520px) {
  .news-form {
    flex-direction: column;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--graphite);
  color: #b3b6bc;
  margin-top: 80px;
  padding: 96px 0 0;
  border-top: 4px solid var(--brand);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.6rem;
}
.foot-brand img {
  height: 58px;
  background: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-s);
  margin-bottom: 1rem;
}
.foot-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 34ch;
}
.foot-col h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.foot-col a {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s var(--ease);
}
.foot-col a:hover {
  color: #fff;
}
.foot-contact {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
  align-items: flex-start;
}
.foot-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #c96a66;
  margin-top: 2px;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 72px;
  padding: 34px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.foot-pay {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.foot-pay span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}
@media (max-width: 860px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- REVEAL ANIM ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.08s;
}
.reveal[data-d="2"] {
  transition-delay: 0.16s;
}
.reveal[data-d="3"] {
  transition-delay: 0.24s;
}
.reveal[data-d="4"] {
  transition-delay: 0.32s;
}
.reveal[data-d="5"] {
  transition-delay: 0.4s;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-track {
    transition: none;
  }
}

/* ---------- MOBILE MENU ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--graphite);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}
.mobile-menu.open {
  transform: none;
}
.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.mm-head img {
  height: 48px;
  background: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-s);
}
.mm-head button {
  color: #fff;
}
.mobile-menu a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 140%);
  background: var(--graphite);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-l);
  z-index: 200;
  transition: transform 0.4s var(--ease);
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.toast.show {
  transform: translate(-50%, 0);
}
.toast svg {
  width: 20px;
  height: 20px;
  color: #c96a66;
}

/* ---------- CART DRAWER ---------- */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(21, 22, 25, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s var(--ease),
    visibility 0.4s var(--ease);
}
.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: min(420px, 100vw);
  background: var(--white);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-l);
  transform: translateX(105%);
  transition: transform 0.45s var(--ease);
}
.cart-drawer.open {
  transform: none;
}
.cd-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem 1.4rem;
  border-bottom: 1px solid var(--line);
}
.cd-head h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--graphite);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.cd-count {
  background: var(--brand);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 6px;
}
.cd-close {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-s);
  display: grid;
  place-items: center;
  color: var(--graphite);
  transition: background 0.2s var(--ease);
}
.cd-close:hover {
  background: var(--paper);
}
.cd-close svg {
  width: 20px;
  height: 20px;
}
.cd-items {
  flex: 1;
  overflow-y: auto;
  padding: 0.6rem 1.4rem;
}
.cd-item {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  animation: cdItemIn 0.35s var(--ease);
}
@keyframes cdItemIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
}
.cd-item:last-child {
  border-bottom: none;
}
.cd-item img {
  width: 84px;
  height: 63px;
  object-fit: cover;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.cd-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cd-item-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.25;
  color: var(--graphite);
}
.cd-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand);
}
.cd-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
}
.cd-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  overflow: hidden;
}
.cd-qty button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--graphite);
  transition: background 0.2s var(--ease);
}
.cd-qty button:hover {
  background: var(--paper);
}
.cd-qty span {
  min-width: 30px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
}
.cd-remove {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-s);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease);
}
.cd-remove:hover {
  color: var(--brand);
  background: var(--brand-tint);
}
.cd-remove svg {
  width: 17px;
  height: 17px;
}
.cd-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  padding: 2rem;
  color: var(--muted);
}
.cd-empty svg {
  width: 52px;
  height: 52px;
  color: var(--line);
  margin-bottom: 0.6rem;
}
.cd-empty b {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--graphite);
}
.cd-empty span {
  font-size: 0.88rem;
}
.cart-drawer.has-items .cd-empty {
  display: none;
}
.cart-drawer:not(.has-items) .cd-items,
.cart-drawer:not(.has-items) .cd-foot {
  display: none;
}
.cd-foot {
  border-top: 1px solid var(--line);
  padding: 1.15rem 1.4rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  background: var(--paper);
}
.cd-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.35rem;
}
.cd-total span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.cd-total b {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--graphite);
}
.cd-btn {
  justify-content: center;
  width: 100%;
}
body.drawer-locked {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .cart-drawer,
  .drawer-overlay {
    transition: none;
  }
  .cd-item {
    animation: none;
  }
}
