/* ═══════════════════════════════════════════════════════
   HIMOTHY — Premium Fashion Storefront
   ═══════════════════════════════════════════════════════ */

/* ─── HELVETICA W01 ROMAN ────────────────────────────── */

/* @font-face {
  font-family: "helvetica-w01-roman";
  src:
    local("Helvetica Neue"), local("HelveticaNeue"),
    local("HelveticaNeue-Roman"), local("Helvetica");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
} */

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
.space-grotesk-normal-400 {
  font-family: "Space Grotesk";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "HelveticaW1Roman";
  src: url("../fonts/Helvetica-W01-Bold/helvetica-w01-roman.woff2")
    format("woff2");
}

@font-face {
  font-family: "HelveticaW1Bold";
  src: url("../fonts/Helvetica-W01-Bold/Helvetica W01 Bold.woff2")
    format("woff2");
}

/* ─── DESIGN TOKENS ─────────────────────────────────── */

:root {
  /* Layer heights */
  --top-bar-h: 70px;
  /* Layer 1 — gray logo bar           */
  --ticker-h: 36px;
  /* Layer 2 — white marquee strip     */
  --nav-h: 58px;
  /* Layer 3 — transparent hero nav    */
  --fixed-h: calc(var(--top-bar-h) + var(--ticker-h));
  /* 106px */
  /* Fonts */
  --font-gothic: "UnifrakturMaguntia", cursive;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans:
    "helvetica-w01-roman", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-hero: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  /* Colour */
  --black: #282828;
  --white: #ffffff;
  --off-white: #fafaf8;
  --cream: #f3f0ea;
  --grey-mid: #888888;
  --top-bar-bg: #e8e4dc;
  /* warm stone gray — luxury top bar  */
  --border: rgba(11, 11, 11, 0.09);
  /* Motion — all header animations use these */
  --ease-luxury: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.18s;
  --dur-med: 0.38s;
  --dur-slow: 0.54s;
  --dur-slide: 0.44s;
  /* top-bar + ticker slide duration   */
  /* ─── SECTION HORIZONTAL SPACING ───────────────────
       Single source of truth for left/right padding.
       Use var(--section-px) on EVERY new section.
       clamp: min 20px → fluid 3.5% → max 66px         */
  --section-px: clamp(20px, 3.5%, 66px);
}

/* ─── RESET ──────────────────────────────────────────── */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--off-white);
  color: var(--black);
  overflow-x: hidden;
  /* Push all content below the fixed top bar */
  /* padding-top: var(--top-bar-h); */
  /* Constrain entire site to 1905px, centered */
  max-width: 1905px;
  margin-left: auto;
  margin-right: auto;
}

body.home-page {
  padding-top: var(--top-bar-h);
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  padding-top: var(--top-bar-h);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font-family: inherit;
  line-height: 1;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 1.5px solid var(--black);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════
   LAYER 1 — TOP BAR
   Fixed. Gray background. Gothic logo centered.
   Always sticky at page top — never hides.
   ═══════════════════════════════════════════════════════ */

.top-bar {
  position: fixed;
  top: 0;
  /* Center within 1905px max-width — matches body layout */
  left: 50%;
  width: min(100vw, 1905px);
  height: var(--top-bar-h);
  background-color: #ffffff;
  border-bottom: 1px solid rgba(11, 11, 11, 0.06);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Slide transform combined with centering translate */
  transform: translateX(-50%) translateY(0);
  transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.top-bar.hidden {
  transform: translateX(-50%) translateY(-100%);
}

.top-bar-logo-link {
  display: flex;
  align-items: center;
}

.top-bar-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ═══════════════════════════════════════════════════════
   LAYER 2 — TICKER BAR
   Normal page flow — NOT sticky. Scrolls away with the page.
   Sits right below the fixed top-bar (body padding-top handles gap).
   ═══════════════════════════════════════════════════════ */

.ticker-bar {
  position: relative;
  width: 100%;
  height: var(--ticker-h);
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ─── Marquee track — never stops ────────────────────── */

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  /* Animate continuously — pauses only on hover */
  animation: ticker-scroll 100s linear infinite;
  will-change: transform;
}

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

.ticker-item {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: rgb(40, 40, 40);
  text-transform: uppercase;
  padding: 0 2.4rem;
  flex-shrink: 0;
}

.ticker-sep {
  color: rgba(11, 11, 11, 0.25);
  font-size: 7px;
  flex-shrink: 0;
}

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

/* ─── HAMBURGER ──────────────────────────────────────── */

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border-radius: 4px;
  transition: background-color var(--dur-fast) ease;
}

.hamburger:hover {
  background-color: rgba(250, 250, 248, 0.15);
}

.ham-line {
  display: block;
  height: 1.5px;
  background-color: var(--white);
  border-radius: 2px;
  transition: width var(--dur-med) var(--ease-luxury);
}

.ham-line:nth-child(1) {
  width: 22px;
}

.ham-line:nth-child(2) {
  width: 22px;
}

.ham-line:nth-child(3) {
  width: 13px;
}

.hamburger:hover .ham-line:nth-child(3) {
  width: 22px;
}

/* ─── ICON BUTTONS (hero nav) ────────────────────────── */

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  position: relative;
  transition:
    color var(--dur-fast) ease,
    background-color var(--dur-fast) ease,
    transform var(--dur-fast) var(--ease-spring);
}

.icon-btn:hover {
  background-color: rgba(250, 250, 248, 0.14);
  transform: scale(1.08);
}

/* ─── CART BADGE ─────────────────────────────────────── */

.cart-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  background-color: var(--white);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.cart-badge.bump {
  animation: badge-bump 0.36s var(--ease-spring);
}

@keyframes badge-bump {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.55);
  }
  100% {
    transform: scale(1);
  }
}

/* ═══════════════════════════════════════════════════════
   DRAWER OVERLAY
   ═══════════════════════════════════════════════════════ */

.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(11, 11, 11, 0.52);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--dur-med) ease,
    visibility var(--dur-med) ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION DRAWER  — slides in from the RIGHT
   ═══════════════════════════════════════════════════════ */

.drawer {
  position: fixed;
  top: 0;
  left: 25px;
  width: min(672px, 86vw);
  height: 100%;
  height: 100dvh;
  background-color: #f5f5f5;
  z-index: 500;
  transform: translateX(40%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  transition:
    transform var(--dur-slow) var(--ease-luxury),
    opacity var(--dur-slow) ease,
    visibility 0s linear var(--dur-slow),
    box-shadow var(--dur-slow) ease;
  box-shadow: 8px 0 40px rgba(11, 11, 11, 0);
}

.drawer.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform var(--dur-slow) var(--ease-luxury),
    opacity var(--dur-slow) ease,
    visibility 0s linear 0s,
    box-shadow var(--dur-slow) ease;
  box-shadow: 8px 0 40px rgba(11, 11, 11, 0.14);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-height: 100dvh;
  position: relative;
}

.drawer-top {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px 40px;
  z-index: 2;
}

.drawer-close {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: var(--black);
  top: 73px;
  left: 14px;
  transition:
    color var(--dur-med) ease,
    transform var(--dur-med) var(--ease-luxury);
}

@media (max-width: 768px) {
  .split-text.reveal-left.visible {
    order: 2;
    justify-content: start;
    padding: 40px 15px;
  }
  .split-heading {
    line-height: 43px !important;
  }
  .drawer-close {
    top: 64px;
    left: -8px;
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .split-section {
    grid-template-rows: auto 300px !important;
  }
  .drawer-close {
    top: 56px;
    left: -6px;
    width: 26px;
    height: 26px;
  }
}

.drawer-close:hover {
  color: #1d1d1d;
  transform: rotate(90deg);
}

/* ─── Nav list ─────────────────────────────────────────── */

.drawer-nav {
  flex: 1;
  padding-top: 64px;
}

@media (max-width: 768px) {
  .drawer-nav {
    padding-top: 52px;
  }
}

@media (max-width: 480px) {
  .rewards-list {
    gap: 5px;
  }
  .split-section {
    padding-top: 14% !important;
  }
  .drawer-nav {
    padding-top: 44px;
  }
  .products-inner {
    padding: 10.5% var(--section-px) 10.5% !important;
  }
}

.drawer-nav-item {
  overflow: hidden;
}

.drawer-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 40px 13px 40px;
  font-family: "HelveticaW1Roman";
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 0.01em;
  color: var(--black);
  text-align: left;
  transition: color var(--dur-fast) ease;
}

.drawer-nav-link:hover,
.drawer-nav-link:focus-visible {
  color: #1d1d1d;
  outline: none;
}

.drawer-nav-item.active > .drawer-nav-link {
  color: #1d1d1d;
  font-style: normal;
}

.drawer-link-text {
  position: relative;
  display: inline-block;
}

.drawer-link-text::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1d1d1d;
  transition: width 0.32s ease;
}

.drawer-nav-link:hover .drawer-link-text::after,
.drawer-nav-link:focus-visible .drawer-link-text::after,
.drawer-nav-item.active > .drawer-nav-link .drawer-link-text::after {
  width: 100%;
}

/* ─── Dropdown arrow ────────────────────────────────────── */

.dropdown-arrow {
  flex-shrink: 0;
  color: var(--black);
  /* opacity: 0.5; */
  transition: transform var(--dur-med) var(--ease-out);
}

.has-dropdown.open > .drawer-dropdown-toggle .dropdown-arrow {
  transform: rotate(180deg);
}

/* ─── Dropdown panel ────────────────────────────────────── */

.drawer-dropdown {
  max-height: 0;
  overflow: hidden;
  background-color: #f5f5f5;
  transition: max-height 0.42s var(--ease-luxury);
}

.has-dropdown.open .drawer-dropdown {
  max-height: 400px;
}

.drawer-dropdown li {
  border-bottom: none;
}

.drawer-dropdown-link {
  display: block;
  font-family: "HelveticaW1Roman";
  padding: 4px 40px 4px 40px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: #0b0b0b !important;
  transition: color var(--dur-fast) ease;
}

.drawer-dropdown-link:hover {
  color: #1d1d1d !important;
}

.drawer-dropdown-link.active {
  color: #1d1d1d;
}

.drawer-dropdown-link:hover .drawer-link-text::after,
.drawer-dropdown-link.active .drawer-link-text::after {
  width: 100%;
}

/* ─── Footer & social icons ─────────────────────────────── */

.drawer-footer {
  padding: 28px 40px 36px 40px;
  flex-shrink: 0;
  margin-top: auto;
}

.drawer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  transition: opacity var(--dur-fast) ease;
}

.social-link:hover {
  opacity: 0.65;
}

/* ═══════════════════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════════════════ */

.products-section {
  background-color: var(--white);
}

h3.product-name a {
  font-weight: 600;
}

.products-inner {
  box-sizing: border-box;
  position: relative;
  padding: 6.5% var(--section-px) 4.5%;
}

.products-header {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.products-heading {
  font-family: "Space Grotesk";
  font-size: 34px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 41px;
}

.products-subhead {
  position: relative;
  font-family: "HelveticaW1Bold";
  font-size: clamp(14px, 1.2vw, 15px);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--black);
  letter-spacing: 0.01em;
  transition: color 0.18s ease;
}

.products-subhead::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #1d1d1d;
  transition: width 0.32s ease;
}

.products-subhead:hover {
  color: #1d1d1d;
}

.products-subhead:hover::after,
.products-subhead:focus-visible::after {
  width: 100%;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--cream);
  cursor: pointer;
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.product-img--primary {
  z-index: 1;
}

/* Hover image — fades in on card hover */

.product-img--hover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.42s cubic-bezier(0.76, 0, 0.24, 1);
}

.product-card:hover .product-img--hover {
  opacity: 1;
}

.product-card:hover .product-img--primary {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  font-family: var(--font-sans);
  font-size: 8.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--black);
  padding: 5px 10px;
  pointer-events: none;
}

.product-badge--sale {
  background-color: #1a1a1a;
  color: #e8d8b0;
}

.product-badge--limited {
  background-color: transparent;
  color: var(--black);
  border: 1px solid rgba(11, 11, 11, 0.35);
}

.product-info {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-info-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  font-family: "HelveticaW1Bold";
  letter-spacing: 0.01em;
  line-height: 17px;
}

.product-name a {
  font-family: "HelveticaW1Bold";
  transition: opacity var(--dur-fast) ease;
}

.product-name a:hover {
  opacity: 0.55;
}

.product-info-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: "Space Grotesk";
  font-size: clamp(12px, 0.95vw, 17px);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--black);
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — global breakpoints
   ═══════════════════════════════════════════════════════ */

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

@media (max-width: 560px) {
  :root {
    --top-bar-h: 56px;
    --ticker-h: 32px;
  }
  .top-bar-logo-img {
    height: 32px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .products-heading {
    font-size: 30px;
  }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.custom-footer {
  padding: 0px 20px 60px 20px;
  background-color: #fff;
}

.footer-container {
  background: #1d1d1d;
  border-radius: 8px;
  padding: 60px 80px 40px;
  max-width: 1730px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-column h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  line-height: 29px;
  font-family: "Space Grotesk";
}

.footer-column a,
.footer-column p {
  display: block;
  width: fit-content;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  opacity: 0.95;
  font-family: "HelveticaW1Roman";
}

.footer-column a::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.32s ease;
}

.footer-column a:hover {
  opacity: 1;
}

.footer-column a:hover::after,
.footer-column a:focus-visible::after {
  width: 100%;
}

.footer-column a.no-hover-line {
  width: auto;
}

.footer-column a.no-hover-line::after {
  display: none;
}

.footer-column a.no-hover-line:hover {
  opacity: 0.7;
}

.footer-column a.nav-active {
  opacity: 1;
}

.footer-column a.nav-active::after {
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-tagline {
  font-family: "HelveticaW1Roman", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
  letter-spacing: 0.01em;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-copy {
  font-family: "HelveticaW1Roman", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-policy-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-policy-links a {
  font-family: "HelveticaW1Roman", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-policy-links a:hover {
  color: #fff;
}

.footer-dot {
  color: rgba(255, 255, 255, 0.25);
  font-size: 14px;
  user-select: none;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: block;
  width: fit-content;
  pointer-events: auto;
}

.footer-logo-link::after,
.footer-logo-link:hover::after {
  display: none !important;
  width: 0 !important;
}

.footer-logo-link:hover,
.footer-logo-link:hover img {
  opacity: 1 !important;
  text-decoration: none !important;
}

.footer-logo {
  width: 160px;
  height: auto;
  display: block;
}

.footer-tagline {
  font-family: "HelveticaW1Roman", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin: 0;
  max-width: 260px;
}

.footer-contact-item {
  display: flex !important;
  align-items: center;
  gap: 10px;
  width: auto !important;
  line-height: 1.5;
}

.footer-contact-item.footer-contact-address {
  align-items: flex-start;
}

.footer-contact-item.footer-contact-address svg {
  margin-top: 3px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.footer-contact-item::after {
  display: none !important;
}

.footer-social-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 4px;
}

.footer-social-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content !important;
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-social-icon:hover {
  opacity: 1;
}

.footer-social-icon::after {
  display: none !important;
}

@media (max-width: 1200px) {
  .footer-grid {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .products-grid {
    gap: 10px;
  }
  .footer-container {
    padding: 50px 40px 40px;
  }
  .products-header {
    margin-bottom: 28px;
  }
  .products-heading {
    font-size: 28px;
  }
  .drawer-close {
    left: 15px;
  }
  .drawer-footer {
    padding: 28px 40px 36px 40px;
  }
  .drawer {
    left: 0px;
    width: 100% !important;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
  .footer-bottom {
    margin-top: 40px;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .custom-footer {
    padding: 30px 15px;
  }
  .footer-container {
    padding: 50px 25px 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px !important;
  }
  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer-column a,
  .footer-column p {
    font-size: 15px;
  }
  .footer-bottom {
    margin-top: 36px;
    gap: 14px;
  }
  .footer-copy,
  .footer-policy-links a,
  .footer-tagline {
    font-size: 13px;
  }
}

/* ═══════════════════════════════════════════════════════
   RELATED PRODUCTS SLIDER
   ═══════════════════════════════════════════════════════ */

.related-products-section {
  background-color: var(--white);
  padding: 3.5% 0;
  /* border-top: 1px solid rgba(11, 11, 11, 0.05); */
}

.related-products-inner {
  padding: 0 var(--section-px);
  max-width: 1905px;
  margin: 0 auto;
}

.related-products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.related-products-heading {
  font-family: "Space Grotesk";
  font-size: 34px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
  line-height: 41px;
  text-transform: uppercase;
}

.related-products-arrows {
  display: flex;
  gap: 12px;
}

.related-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 11, 11, 0.2);
  background: transparent;
  color: var(--black);
  transition: all var(--dur-fast) ease;
}

.related-arrow:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.related-products-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.related-products-slider::-webkit-scrollbar {
  display: none;
}

.related-slide {
  flex: 0 0 calc((100% - 45px) / 4);
  min-width: 0;
}

.related-product-card {
  height: 100%;
}

@media (max-width: 1200px) {
  .related-slide {
    flex: 0 0 calc((100% - 30px) / 3);
  }
}

@media (max-width: 900px) {
  .related-slide {
    flex: 0 0 calc((100% - 15px) / 2);
  }
  .related-products-heading {
    font-size: 26px;
  }
  .related-products-header {
    margin-bottom: 32px;
  }
  .related-products-section {
    padding: 1% 0 5% 0;
  }
}

@media (max-width: 560px) {
  .related-slide {
    flex: 0 0 100%;
  }
  .related-products-heading {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 0px;
  }
  .related-products-header {
    margin-bottom: 22px;
  }
  .related-arrow {
    width: 36px;
    height: 36px;
  }
}
