@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0a1f5c;
  --teal: #0f9cb0;
  --ink: #17181c;
  --grey: #6b6f76;
  --line: #e6e7ea;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #fff;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* ---------- Header ---------- */

.site-header {
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

.header-inner {
  height: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  transform: translateY(-5.6px);
}

.logo img {
  height: 34px;
  display: block;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: 27px;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transform: translateY(3.6px);
}

.main-nav {
  flex: 1;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.main-nav a {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s ease;
}

.main-nav a:hover {
  color: var(--teal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
}

.action-item svg {
  flex-shrink: 0;
}

.action-item:hover {
  color: var(--teal);
}

.action-item span {
  white-space: nowrap;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2.63 / 1;
  min-height: 340px;
  max-height: 760px;
  overflow: hidden;
  background: var(--ink);
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 20, 0.65) 0%, rgba(8, 10, 20, 0.35) 38%, rgba(8, 10, 20, 0) 62%),
    linear-gradient(0deg, rgba(10, 15, 30, 0.82) 0%, rgba(10, 15, 30, 0.35) 45%, rgba(10, 15, 30, 0.08) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 56px;
  margin-bottom: 64px;
  color: #fff;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--ink);
}

/* Slide transitions */

.hero-slide {
  opacity: 1;
}

/* Arrows */

.hero-arrow {
  position: absolute;
  bottom: 40px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.hero-arrow-prev { left: 56px; }
.hero-arrow-next { left: 108px; }

/* Dots */

.hero-dots {
  position: absolute;
  right: 56px;
  bottom: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-dot.is-active {
  background: #fff;
  transform: scale(1.25);
}

/* ---------- Page Hero (small, text-only) ---------- */

.page-hero {
  position: relative;
  min-height: 280px;
  background-color: #1a1c22;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  overflow: hidden;
}

.page-hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, 0.45);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

/* ---------- Brand Marquee ---------- */

.brand-marquee {
  background: #eeeeef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  overflow: hidden;
}

.brand-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brand-marquee-scroll 34s linear infinite;
}

.brand-marquee:hover .brand-marquee-track {
  animation-play-state: paused;
}

.brand-marquee-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
}

.brand-marquee-logo-box {
  width: 220px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-marquee-logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  filter: grayscale(100%);
}

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

@media (max-width: 640px) {
  .brand-marquee-item {
    padding: 0 22px;
  }
  .brand-marquee-logo-box {
    width: 150px;
    height: 46px;
  }
}

/* ---------- Why Shop ---------- */

.why-shop {
  padding: 32px 0 48px;
}

.why-shop-heading {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  padding: 0 24px;
}

.why-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 20px;
}

.why-card-image {
  width: 100%;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: var(--line);
}

.why-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-card {
  padding: 0 24px;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 14px 0 6px;
}

.why-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  max-width: 42ch;
}

@media (max-width: 860px) {
  .why-shop-grid {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
  .why-card-image {
    aspect-ratio: 16 / 9;
  }
}

/* ---------- Product Shelves ---------- */

.shelf {
  padding: 40px 24px 8px;
  max-width: 1520px;
  margin: 0 auto;
}

.shelf-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
}

.shelf-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.shelf-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.shelf-controls {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.shelf-view-all {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.shelf-view-all:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.shelf-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.shelf-arrow:hover {
  border-color: var(--ink);
  color: var(--teal);
}

.shelf-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 260px;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.shelf-track::-webkit-scrollbar {
  display: none;
}

/* Shop by Category has a variable item count per tab, so it needs fixed-width
   cards instead of the 1fr stretch the other shelves use. */
.category-track {
  grid-auto-columns: 260px;
}

.product-card {
  scroll-snap-align: start;
}

.product-image {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.product-image svg {
  width: 42%;
  height: 42%;
  color: var(--ink);
  opacity: 0.75;
}

.tint-mint { background: #dff3ee; }
.tint-lavender { background: #e8e4f7; }
.tint-sky { background: #dfeef8; }
.tint-sand { background: #f6ece0; }

.product-image-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.4;
  margin-bottom: 8px;
  min-height: 2.8em;
}

.stars {
  position: relative;
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  color: var(--line);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.stars-bg {
  color: #d8d9dd;
}

.stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f2b632;
}

.product-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 640px) {
  .shelf-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .shelf-track {
    grid-auto-columns: minmax(160px, 65%);
    gap: 16px;
  }
}

/* ---------- Shop by Category ---------- */

.category-shop {
  padding: 40px 24px 60px;
  max-width: 1520px;
  margin: 0 auto;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}

.category-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  padding-bottom: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.category-tab:hover {
  color: var(--ink);
}

.category-tab.is-active {
  color: var(--ink);
  border-bottom-color: var(--teal);
}

@media (max-width: 640px) {
  .category-tabs {
    gap: 20px;
  }
}

/* ---------- Spotlight ---------- */

.spotlight {
  max-width: 1520px;
  margin: 0 auto;
  padding: 48px 24px 8px;
}

.spotlight-heading {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.spotlight-visual {
  position: relative;
  height: 460px;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  background: #111;
}

.spotlight-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 16, 0.92) 0%, rgba(8, 10, 16, 0.55) 40%, transparent 75%);
}

.spotlight-visual-text {
  position: relative;
  z-index: 2;
  padding: 32px;
  color: #fff;
}

.spotlight-visual-text p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

.spotlight-visual-note {
  margin-top: 14px;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.85);
}

.spotlight-card {
  background: #f7f7f8;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}

.spotlight-product-image {
  width: 42%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 20px;
}

.spotlight-product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spotlight-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.spotlight-price {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 24px;
}

.spotlight-btn {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.spotlight-btn:hover {
  background: var(--ink);
  color: #fff;
}

@media (max-width: 860px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
  }
  .spotlight-visual {
    min-height: 320px;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .main-nav ul {
    gap: 18px;
  }
  .action-item span {
    display: none;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .hero-content {
    padding: 0 24px;
    margin-bottom: 56px;
  }
  .hero-arrow-prev { left: 24px; }
  .hero-arrow-next { left: 76px; }
  .hero-dots { right: 24px; }
}

/* ---------- Shop Page (grid + filters) ---------- */

.shop-page {
  max-width: 1520px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.shop-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.shop-count {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.6;
}

#shop-count-value {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--grey);
}

.shop-sort select {
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.shop-filters h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.filter-group {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.filter-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-group-toggle svg {
  transition: transform 0.2s ease;
}

.filter-group.is-collapsed .filter-group-toggle svg {
  transform: rotate(180deg);
}

.filter-group.is-collapsed .filter-group-body {
  display: none;
}

.filter-group-body {
  margin-top: 18px;
}

.price-range {
  display: flex;
  gap: 14px;
}

.price-field {
  flex: 1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--grey);
}

.price-input {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
}

.price-input span:first-child {
  color: var(--grey);
  font-size: 13px;
}

.price-input input {
  font: inherit;
  font-size: 13px;
  border: none;
  outline: none;
  width: 100%;
  color: var(--ink);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  padding: 6px 0;
  cursor: pointer;
}

.filter-checkbox input {
  width: 15px;
  height: 15px;
  accent-color: var(--teal);
  cursor: pointer;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.shop-empty {
  grid-column: 1 / -1;
  color: var(--grey);
  font-size: 14px;
  padding: 40px 0;
}

@media (max-width: 1080px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

@media (max-width: 480px) {
  .shop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Blog ---------- */

.blog-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 40px;
}

.blog-card-image {
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 18px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.blog-card-image:hover img {
  transform: scale(1.03);
}

.blog-card-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 10px;
}

.blog-card-category {
  color: var(--teal);
}

.blog-card h2 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}

.blog-card h2 a:hover {
  color: var(--teal);
}

.blog-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grey);
  max-width: 52ch;
}

@media (max-width: 720px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 40px;
}

.footer-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 56px 32px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer-brand img {
  height: 30px;
  filter: brightness(0) invert(1);
}

.footer-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
}

.footer-newsletter {
  text-align: center;
  padding: 8px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 36px;
}

.footer-newsletter .footer-heading {
  text-align: center;
}

.newsletter-form {
  display: flex;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 16px;
  font: inherit;
  font-size: 13px;
  color: var(--ink);
}

.newsletter-form button {
  padding: 14px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

.newsletter-form button:hover {
  color: var(--teal);
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 36px 0;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: left;
}

.footer-badge svg {
  flex-shrink: 0;
  color: var(--teal);
}

.footer-badge span {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-top-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.footer-top-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-badges {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ---------- Product Detail Page ---------- */

.product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 32px 0;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 32px;
}

.product-breadcrumb a:hover {
  color: var(--teal);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.product-gallery-main {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f7f7f8;
  margin-bottom: 16px;
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
}

.gallery-thumb {
  width: 68px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
}

.gallery-thumb.is-active {
  border-color: var(--teal);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-brand {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.product-info h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}

.product-price-large {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #1a9c5c;
  margin-bottom: 28px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.qty-stepper button {
  width: 40px;
  height: 44px;
  font-size: 16px;
  color: var(--ink);
}

.qty-stepper button:hover {
  background: #f7f7f8;
}

.qty-stepper span {
  width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.product-add-cart {
  flex: 1;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 14px 28px;
}

.product-add-cart:hover {
  background: var(--teal);
}

.product-add-cart:disabled {
  opacity: 0.8;
  cursor: default;
}

.product-buy-now {
  display: block;
  width: 100%;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  padding: 14px 28px;
  margin-bottom: 24px;
}

.product-buy-now:hover {
  background: var(--ink);
  color: #fff;
}

.product-shortnote {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
}

.product-accordion {
  max-width: 760px;
  border-top: 1px solid var(--line);
  margin-bottom: 64px;
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
}

.accordion-toggle svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.accordion-item.is-open .accordion-toggle svg {
  transform: rotate(180deg);
}

.accordion-body {
  display: none;
  padding: 0 4px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--grey);
}

.accordion-item.is-open .accordion-body {
  display: block;
}

.accordion-body a:hover {
  color: var(--teal);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list li span:first-child {
  font-weight: 600;
  color: var(--ink);
}

.related-products {
  padding-bottom: 64px;
}

.related-products h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

@media (max-width: 860px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ---------- About / Our Brand ---------- */

.about-intro {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  text-align: center;
}

.about-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
}

.about-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}

.about-copy {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey);
}

.brand-video {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 32px 64px;
}

.brand-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
  display: block;
}

.brand-products {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 72px;
  text-align: center;
}

.brand-products-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  display: inline-block;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--teal);
  margin-bottom: 40px;
}

.brand-products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.brand-tile {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.brand-tile:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.brand-tile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-tile-viewall {
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}

.brand-tile-viewall:hover {
  color: var(--teal);
}

@media (max-width: 900px) {
  .brand-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .brand-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
