:root {
  --text: #f6f6f6;
  --muted: rgba(246, 246, 246, 0.6);
  --accent: #D2824B;
  --font-system: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;

  --left-ratio: 7;
  --right-ratio: 6;
  --section-gap: 40px;
  --card-max-vh: 36vh;

  --radius-lg: 18px;
  --radius-sm: 12px;
  --transition: 320ms cubic-bezier(.2, .9, .3, 1);

  --visible-desktop: 4;
  --visible-tablet: 3;
  --visible-mobile: 1;
  --card-gap: 18px;
  --slider-speed: 0.85;

  --bg: #000;
  --transition2: cubic-bezier(.2, .9, .3, 1);
  --colorGold: #D2824B;

  --grid-gap: 12px;
  --page-padding-x: 3rem;
  --page-padding-y: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--font-system);
  background: var(--bg) !important;
  background-color: #000 !important;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.flex.justify-center.space-x-4.mb-8 {
  text-align: center !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  z-index: 80;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
}

.nav {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  width: 100%;
}

.brand {
  font-weight: 700;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 90vh; /* requested height */
  min-height: 420px;
  width: 100%;
  overflow: hidden;
  background: #000;
  color: #fff;
}

/* Video wrapper */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Desktop vs mobile */
.hero-media video.desktop {
  display: block;
}

.hero-media video.mobile {
  display: none;
}

@media (max-width: 768px) {
  .hero-media video.desktop {
    display: none;
  }
  .hero-media video.mobile {
    display: block;
  }
}

/* Slightly lighter overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.55)
  );
  z-index: 1;
}

/* center tagline text */
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 16px;
}

.hero-content {
  max-width: 720px;
  margin: 0 auto;
}

/* bottom center section */
.hero-bottom-cta {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column; /* stack text + button */
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
}

/* Play Now button */
.hero-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-play-btn i {
  font-size: 0.85rem;
}

.hero-play-btn:hover {
  background: var(--accent, #D2824B);
  border-color: var(--accent, #D2824B);
  color: #000;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-bottom-cta {
    bottom: 20px;
    width: 90%;
    padding: 12px 16px;
  }

  .hero-bottom-text {
    font-size: 0.8rem;
  }
}

/* CATEGORIES */
.categories {
  margin: 0;
  padding: 40px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  width: 100%;
}

.category {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
  transition: all 400ms cubic-bezier(.2, .9, .3, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  --color: transparent;
  min-height: 330px;
}

.category .media {
  position: absolute;
  inset: 0;
}

.category .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2, .9, .3, 1);
}

.cat-actions {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.cat-actions .badge {
  padding: 8px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  text-transform: uppercase;
}

.cat-actions .btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.65);
  background: transparent;
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.category:hover {
  background: var(--color);
  border-radius: 48% / 42%;
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.category:hover .media img {
  transform: scale(0.96);
  filter: saturate(0.98) contrast(0.95);
}

.category:hover .cat-actions .badge,
.category:hover .cat-actions .btn {
  border-color: rgba(255, 255, 255, 0.95);
  color: #fff;
}

.category::after {
  content: '';
  position: absolute;
  inset: 0;
  mix-blend-mode: multiply;
}

@media (max-width: 540px) {
  .category {
    min-height: 350px;
  }
}

/* FLEX BANNER SECTION */
.flex-section {
  display: flex;
  gap: var(--grid-gap);
  padding: var(--page-padding-y) var(--page-padding-x);
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  color: #fff;
}

.col {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--grid-gap);
  margin-left: -20px;
}

/* Common wrappers */
.inner,
.basic1,
.basic2 .inbas {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

/* Images */
.inner img,
.basic1 img,
.inbas img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* Left column proportions */
.first .inner1 {
  flex: 2;
}

.first .inner2 {
  flex: 1;
}

/* Right column parent */
.col.second {
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  flex: 1;
  min-width: 0;
}

/* Top block on right (inner3) */
.col.second .inner3 {
  flex: 1 1 0;
  min-height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

/* Bottom part on right: basic (left big + right two small) */
.col.second .basic {
  display: flex;
  flex-direction: row;
  gap: var(--grid-gap);
  flex: 1 1 0;
  min-height: 0;
}

/* Left inside basic (tall image) */
.basic1 {
  flex: 1 1 0;
  min-width: 0;
}

/* Right inside basic (two stacked) */
.basic2 {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: var(--grid-gap);
  min-width: 0;
}

/* The two stacked boxes */
.basic2 .inbas {
  flex: 1 1 0;
  min-height: 0;
}

/* Hover micro-scale */
.basic1 img:hover,
.basic2 .inbas img:hover,
.inner img:hover {
  transform: scale(1.03);
}

/* Tablet & small laptops */
@media (max-width: 980px) {
  .flex-section {
    flex-direction: column;
    padding: 1rem;
  }

  .col {
    gap: var(--grid-gap);
  }

  .col.second .basic {
    flex-direction: column;
  }

  .basic2 {
    flex-direction: row;
  }
}

/* Mobile phones */
@media (max-width: 520px) {
  .flex-section {
    padding: 0.75rem;
  }

  .col.second .basic {
    flex-direction: column;
  }

  .basic2 {
    flex-direction: column;
  }

  .inner img,
  .basic1 img,
  .inbas img {
    height: auto;
  }
}

/* ===== PRODUCT HERO SECTION ===== */
.product-section {
  display: flex;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 32px 32px;
  box-sizing: border-box;
  gap: 16px;
  background: #000 !important;
  color: #f9fafb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  margin-inline: auto;
}

/* LEFT IMAGE / HERO */
.product-left {
  flex: 0 0 58%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: #000;
  min-height: 420px;
}

.product-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 900ms var(--transition), filter 900ms var(--transition);
  will-change: transform;
}

.product-left:hover img {
  transform: scale(1.04);
}

/* gradient for text readability */
.product-left::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 20%,
    rgba(0, 0, 0, 0.7) 100%
  );
  pointer-events: none;
}

/* OVERLAY PANEL */
.left-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  pointer-events: none;
}

.left-overlay .panel {
  pointer-events: auto;
  padding: 16px 18px;
  border-radius: 18px;
  backdrop-filter: blur(16px);
  background: #000;
  color: #f9fafb;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.left-overlay .eyebrow {
  color: var(--accent);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 6px;
}

.left-overlay .title {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.left-overlay .subtitle {
  margin: 0 0 12px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.left-overlay .cta {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffffff, #e8e0d4);
  color: #111;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.left-overlay .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
}

/* RIGHT COLUMN – three cards */
.product-right {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* CARD */
.product-card {
  flex: 1;
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8);
  transition: 0.25s;
  min-height: 0;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 1);
}

/* CARD IMAGE */
.product-card .thumb {
  flex: 0 0 35%;
  border-radius: 14px;
  overflow: hidden;
  background: #000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover .thumb img {
  transform: scale(1.05);
}

/* CARD CONTENT */
.product-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* meta row / pills */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.pill {
  font-size: 10px;
  padding: 4px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  border: 1px solid transparent;
}

.pill-accent {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #111827;
}

.pill-soft {
  background: rgba(148, 163, 184, 0.15);
  color: #e5e7eb;
  border-color: rgba(148, 163, 184, 0.4);
}

.product-card .title {
  font-size: 1rem;
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 4px;
}

.product-card .title a {
  color: inherit;
  text-decoration: none;
}

.product-card .title a:hover {
  text-decoration: underline;
}

.product-card .desc {
  color: #d1d5db;
  font-size: 0.9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding-left: 16px;
  margin: 8px 0 0;
  color: #e5e7eb;
  font-size: 0.8rem;
  line-height: 1.4;
}

.feature-list li {
  position: relative;
  margin-bottom: 3px;
}

.feature-list li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: -10px;
}

/* CARD FOOTER */
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}

.price {
  background: linear-gradient(90deg, #f6c36a, #f3b84a);
  color: #1a1004;
  font-weight: 900;
  font-size: 0.9rem;
  padding: 7px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.btn-cart {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #111;
  background: linear-gradient(135deg, #f97316, #facc15);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.7);
  transition: transform 160ms, box-shadow 160ms;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.9);
}

.actions {
  display: flex;
  gap: 8px;
}

/* TABLETS & SMALL LAPTOPS */
@media (max-width: 1200px) {
  .product-section {
    padding: 24px 20px;
    gap: 16px;
  }

  .product-left {
    min-height: 380px;
  }
}

@media (max-width: 1024px) {
  .product-section {
    flex-direction: column;
    min-height: auto;
    padding: 24px 16px 28px;
  }

  .product-left {
    width: 100%;
    min-height: 380px;
  }

  .product-right {
    width: 100%;
    height: auto;
    gap: 16px;
  }

  .product-card {
    min-height: 190px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .product-section {
    flex-direction: column;
    min-height: auto;
    gap: 16px;
    padding: 20px 14px 24px;
  }

  .product-left {
    min-height: 320px;
  }

  .left-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .left-overlay .panel {
    padding: 14px 14px;
  }

  .left-overlay .title {
    font-size: 18px;
  }

  .left-overlay .subtitle {
    font-size: 12px;
  }

  .product-right {
    flex-direction: column;
    gap: 14px;
  }

  .product-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 14px;
  }

  .product-card .thumb {
    width: 100%;
    flex: 0 0 auto;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .product-card .card-body {
    gap: 10px;
  }

  .card-footer {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .btn-cart {
    flex: 1;
    text-align: center;
  }
}

/* SMALL PHONES */
@media (max-width: 480px) {
  .product-section {
    padding: 16px 10px 20px;
  }

  .product-left {
    min-height: 280px;
  }

  .product-card {
    padding: 12px;
  }

  .product-card .thumb {
    aspect-ratio: 1 / 1;
  }

  .product-card .title {
    font-size: 0.95rem;
  }

  .product-card .desc {
    -webkit-line-clamp: unset;
  }

  .btn-cart {
    font-size: 0.75rem;
    padding: 9px 0;
  }
}

/* PRODUCT TABS / SLIDER SECTION */
.slider-viewport {
  --card-gap: 1.25rem;
  --cards-per-view: 4;
}

.products-tabs {
  padding: 32px 0 18px;
  text-align: center;
  color: var(--text, #f8fafc);
}

.products-title {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

/* TABS WRAP */
.tabs-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  justify-content: center;
}

/* TAB BUTTONS */
.tab {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted, #9ca3af);
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 160ms var(--transition, ease),
    background 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease;
}

.tab:hover {
  border-color: rgba(210, 130, 75, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.tab[aria-selected="true"],
.tab.active {
  background: radial-gradient(
    circle at top left,
    rgba(210, 130, 75, 0.22),
    rgba(20, 20, 20, 0.95)
  );
  border-color: rgba(210, 130, 75, 0.8);
  transform: translateY(-3px);
  color: #e9ffee;
}

/* SLIDER VIEWPORT BOX */
.slider-viewport {
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  padding: 14px;
  border-radius: 18px;
  box-sizing: border-box;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.02),
    rgba(0, 0, 0, 0.95)
  );
}

.slider-viewport:focus-visible {
  outline: 2px solid rgba(210, 130, 75, 0.8);
  outline-offset: 2px;
}

/* SLIDER TRACK (note: HTML uses .product-grid + JS may set .slider-track) */
.slider-track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--card-gap);
  align-items: stretch;
  overflow: hidden !important;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

/* INLINE PRODUCT CARDS */
.product-card-inline {
  position: relative;
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  flex: 0 0 auto !important;
  min-width: 260px !important;
  max-width: 260px !important;
  opacity: 0.98;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.7);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card-inline:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 96px rgba(0, 0, 0, 0.8);
  opacity: 1;
  border-color: rgba(210, 130, 75, 0.65);
}

/* SQUARE IMAGE AREA */
.p-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  overflow: hidden;
  background: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition:
    transform 420ms var(--transition, ease),
    opacity 220ms ease;
  opacity: 0.9;
}

.product-card-inline:hover .p-image img {
  transform: scale(1.03);
  opacity: 1;
}

/* TITLE & DESC */
.p-title {
  font-size: 0.98rem;
  font-weight: 800;
  margin: 6px 0 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  text-align: left;
  color: #ffffff;
}

.p-title a {
  color: inherit;
  text-decoration: none;
}

.p-title a:hover {
  color: #ffd9a2;
}

.p-desc {
  margin: 2px 0 0;
  font-size: 0.86rem;
  color: var(--muted, #9ca3af);
  max-height: 2.8em;
  overflow: hidden;
  text-align: left;
}

/* BOTTOM ROW */
.p-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.p-price {
  font-weight: 900;
  color: #041b00;
  padding: 7px 11px;
  border-radius: 10px;
  background: var(--colorGold, #facc15);
  font-size: 0.9rem;
}

.p-buy {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text, #f9fafb);
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.p-buy:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* TAG */
.p-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--text, #f9fafb);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* DRAGGING STATE */
.slider-viewport.dragging {
  cursor: grabbing;
}

/* RESPONSIVE: slider cards per view */
@media (max-width: 1200px) {
  .slider-viewport {
    --cards-per-view: 3;
  }
}

@media (max-width: 900px) {
  .slider-viewport {
    --cards-per-view: 2;
  }

  .products-tabs {
    padding: 24px 0 16px;
  }

  .slider-viewport {
    padding: 12px;
  }
}

@media (max-width: 640px) {
  .slider-viewport {
    --cards-per-view: 1.2;
    padding: 10px;
  }

  .product-card-inline {
    padding: 10px;
  }

  .p-image {
    border-radius: 12px;
  }

  .p-title {
    font-size: 0.95rem;
  }

  .p-desc {
    font-size: 0.84rem;
    max-height: none;
  }

  .p-bottom {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 400px) {
  .slider-viewport {
    --cards-per-view: 1.05;
    padding: 8px;
  }

  .product-card-inline {
    padding: 8px;
    gap: 8px;
  }

  .p-price {
    font-size: 0.82rem;
    padding: 6px 9px;
  }

  .p-buy {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
 
  padding: 10px 0px 0px 48px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* VIEW ALL */
.view-all-container {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 25px;
}

.view-all-btn {
  background: #d2824b !important;
  color: white !important;
  margin-right: 58px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-block;
  box-shadow: 0 6px 16px rgba(210, 130, 75, 0.45);
}

.view-all-btn:hover {
  background: #b66d3e !important;
  box-shadow: 0 10px 20px rgba(210, 130, 75, 0.55);
  transform: translateY(-3px);
}

/* MAIN BANNER (not used in current HTML but kept intact) */
.mainbanner {
  width: 100%;
  height: 80vh;
  background-image: url(./assets/dog.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* BEST SELLER SECTION */
.best-seller-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(2.5rem, 4vw, 3.5rem) 1rem;
  color: var(--text);
}

.best-seller-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.best-seller-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.best-seller-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.best-seller-subtitle {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Grid */
.best-seller-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* Card */
.best-seller-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 0.9rem;
  
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.best-seller-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.75);
  border-color: rgba(210, 130, 75, 0.6);
}

/* Badge */
.best-seller-badge {
  position: absolute;
  top: 22px;
  left: 25px;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent), #f3b27a);
  color: #050609;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 470px;
}

/* Media (image + overlay) */
.best-seller-media {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}

.best-seller-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.best-seller-card:hover .best-seller-media img {
  transform: scale(1.06);
}

.best-seller-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.best-seller-card:hover .best-seller-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* Body */
.best-seller-body {
  padding: 0.9rem 0.3rem 0.1rem;
}

/* Name */
.best-seller-name {
  font-size: 0.98rem;
  margin: 0.4rem 0 0.6rem;
  text-align: left;
  min-height: 2.4em;
}

.best-seller-name a {
  color: var(--text);
  text-decoration: none;
}

.best-seller-name a:hover {
  color: var(--accent);
}

/* Price + rating row */
.best-seller-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

/* Price */
.best-seller-price {
  margin: 0;
  font-size: 0.95rem;
  text-align: left;
  white-space: nowrap;
}

.old-price {
  text-decoration: line-through;
  color: var(--muted);
  margin-right: 0.35rem;
  font-size: 0.85rem;
}

.current-price {
  font-weight: 600;
  color: #f5f5f5;
}

/* Rating (structure kept for future use) */
.best-seller-rating {
  font-size: 0.8rem;
  color: #f1c750;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.best-seller-rating .rating-count {
  color: var(--muted);
  font-size: 0.75rem;
}

/* Colors */
.best-seller-colors {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.2rem;
}

.color-option {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  outline: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 1px rgba(5, 6, 9, 0.9);
  cursor: pointer;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .best-seller-section {
    padding-inline: 1.2rem;
  }
  .best-seller-card {
    padding: 0.8rem;
  }
}

@media (max-width: 480px) {
  .best-seller-title {
    letter-spacing: 0.16em;
  }
  .best-seller-grid {
    gap: 1.2rem;
  }
}

/* BACKGROUND VIDEO SECTION */
.bg-video-section {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* VIDEO */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform-origin: center;
  z-index: 0;
  animation: vid-pan 18s ease-in-out infinite alternate;
}

@keyframes vid-pan {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.03);
  }
}

/* Overlay */
.video-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  background: var(
    --overlay-gradient,
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25)
    )
  );
  pointer-events: none;
}

.overlay-inner {
  pointer-events: auto;
  text-align: center;
  color: #fff;
  max-width: 920px;
}

.overlay-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  transform: none;
  opacity: 1;
  transition: transform 0.7s var(--transition-ease, ease),
    opacity 0.7s var(--transition-ease, ease);
}

.overlay-sub {
  margin: 0 0 1rem;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255, 255, 255, 0.92);
  transform: none;
  opacity: 1;
  transition: transform 0.75s var(--transition-ease, ease) 0.05s,
    opacity 0.75s var(--transition-ease, ease) 0.05s;
}

.overlay-cta {
  display: inline-block;
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transform: none;
  opacity: 1;
  transition: transform 0.75s var(--transition-ease, ease) 0.1s,
    opacity 0.75s var(--transition-ease, ease) 0.1s,
    box-shadow 0.2s;
}

.overlay-cta:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .bg-video {
    animation: none;
    transform: none;
  }

  .overlay-title,
  .overlay-sub,
  .overlay-cta {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* Mobile for video section */
@media (max-width: 640px) {
  .bg-video-section {
    height: 52vh;
    min-height: 300px;
  }

  .video-overlay {
    padding: 1.2rem;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12),
      rgba(0, 0, 0, 0.55)
    );
  }

  .overlay-cta {
    padding: 0.55rem 0.9rem;
  }
}

/* DOG IMAGE SECTION */
.dogimage img {
  display: block;
}

/* NEWSLETTER SECTION */
.newsletter-dark {
  background: #000;
  color: var(--nl-text);
  padding: 60px 20px 52px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
}

.nl-shell {
  max-width: 1120px;
  margin: 0 auto;
}

/* MAIN 2-COL LAYOUT */
.nl-main {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 32px;
  padding: 26px 26px 24px;
  border-radius: 22px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.65);
}

/* COPY SIDE */
.nl-copy {
  text-align: left;
}

.nl-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}

.nl-heading {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nl-sub {
  color: var(--nl-muted);
  max-width: 520px;
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.nl-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.1rem;
  color: var(--nl-muted);
  font-size: 0.9rem;
}

.nl-bullets li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.25rem;
}

.nl-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

/* SOCIAL ICONS */
.nl-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nl-social .s {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: var(--accent);
  text-decoration: none;
  transition:
    transform 0.15s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.nl-social .s i {
  font-size: 0.9rem;
}

.nl-social .s:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

/* contact cards icons */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0b0b0d;
  margin: 0 auto 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.32);
}

.card-icon i {
  font-size: 1.3rem;
}

/* FORM SIDE */
.nl-form-dark {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.nl-inputs {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 14px;
}

.nl-field {
  position: relative;
}

.nl-inputs input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 11px 14px;
  color: #fff;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    transform 0.12s ease;
}

.nl-inputs input::placeholder {
  color: rgba(255, 255, 255, 0.65);
}

.nl-inputs input:focus {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.7);
  box-shadow: 0 0 0 1px rgba(210, 130, 75, 0.6);
  transform: translateY(-1px);
}

/* SUBMIT BUTTON */
.nl-submit {
  margin-top: 4px;
  background: linear-gradient(135deg, #ffffff, #e8e4dd);
  color: #111111;
  border: none;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
}

.nl-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55);
  background: #ffffff;
}

.nl-note {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.nl-feedback {
  margin-top: 6px;
  font-weight: 600;
  color: #dff6e7;
  min-height: 1.1em;
  font-size: 0.85rem;
}

/* CONTACT CARDS */
.nl-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.card {
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 18px;
  border-radius: 14px;
  text-align: center;
  color: var(--nl-text);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.card h4 {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card .muted {
  color: var(--nl-muted);
  font-size: 0.9rem;
  margin: 0;
}

.card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* RESPONSIVE NEWSLETTER */
@media (max-width: 900px) {
  .nl-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .nl-copy {
    text-align: center;
  }

  .nl-sub,
  .nl-bullets {
    margin-left: auto;
    margin-right: auto;
  }

  .nl-bullets {
    max-width: 420px;
    text-align: left;
  }

  .nl-social {
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .nl-inputs {
    grid-template-columns: minmax(0, 1fr);
  }

  .newsletter-dark {
    padding-inline: 16px;
  }

  .nl-main {
    padding-inline: 18px;
  }

  .nl-cards {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* SR-ONLY HELPER */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
