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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --bg: #ffffff;
  --grey: #f4f4f4;
  --mid-grey: #767676;
  --accent: #e8d5b0;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--black);
  overflow-x: hidden;
  max-width: 100vw;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  width: 100%;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ─── ANNOUNCEMENT BAR ─── */
.announce-bar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  overflow: hidden;
}
.announce-bar span {
  display: inline-block;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}
@keyframes marquee {
  0% {
    transform: translateX(60vw);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e5e5e5;
  box-shadow: none;
}

/* Top row: hamburger | logo | icons */
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: flex-end;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

/* Logo */
.logo {
  justify-self: center;
}
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-icons button,
.header-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  transition: opacity 0.2s;
}
.header-icons button svg,
.header-icons a svg {
  width: 20px;
  height: 20px;
}

/* ─── MINIMALIST SEARCH BAR TRIGGER ─── */
.header-icons .header-search-trigger {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border: 1px solid var(--black) !important;
  padding: 0 14px !important;
  height: 36px !important;
  background: transparent !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
  margin-right: 12px !important;
  min-width: 180px;
}
.header-search-trigger span {
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.3px;
  white-space: nowrap;
  font-family: var(--font-body);
}
.header-search-trigger svg {
  width: 16px;
  height: 16px;
  stroke: var(--black);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.header-search-trigger:hover {
  opacity: 0.6;
}

.header-icons button:hover,
.header-icons a:hover {
  opacity: 0.45;
}
.cart-icon {
  position: relative;
}
.hidden-badge { display: none !important; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SEARCH OVERLAY ─── */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 10, 10, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  backdrop-filter: blur(4px);
}
.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2001;
  background: var(--white);
  transform: translateY(-100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}
.search-panel.open {
  transform: translateY(0);
}

.search-panel-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
}
.search-panel input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 20px;
  font-family: var(--font-body);
  color: var(--black);
  background: none;
}
.search-panel input::placeholder {
  color: var(--mid-grey);
}
.search-panel-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  font-size: 20px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.search-panel-close:hover {
  opacity: 0.5;
}
.search-panel-icon {
  color: var(--mid-grey);
  display: flex;
  align-items: center;
}

.search-tags {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 0 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.search-tag {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
  color: var(--black);
}
.search-tag:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ─── CATEGORY BAR (below header) ─── */
.cat-nav-bar {
  border-top: 1px solid #efefef;
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--white);
}
.cat-nav-bar::-webkit-scrollbar {
  display: none;
}
.cat-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 0;
  align-items: center;
}
.cat-nav-item {
  flex-shrink: 0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  transition: color 0.2s;
}
.cat-nav-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.cat-nav-item:hover {
  color: var(--black);
}
.cat-nav-item:hover::after {
  transform: scaleX(1);
}
.cat-nav-item.active::after {
  transform: scaleX(1);
}
.cat-nav-item.active {
  color: var(--black);
}
.cat-nav-badge {
  display: inline-block;
  background: #e63946;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  margin-left: 5px;
  vertical-align: middle;
}

/* ─── SIDEBAR DRAWER ─── */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}
.sidebar-overlay.open {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  height: 100dvh;
  background: #fff;
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid #e5e5e5;
  box-shadow: 4px 0 24px rgba(0,0,0,0.08);
}
.sidebar.open {
  transform: translateX(0);
}

/* Header strip — white with border */
.sidebar-head {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 56px;
  flex-shrink: 0;
}
.sidebar-head-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  display: block;
}
.sidebar-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  border-radius: 2px;
  transition: background 0.2s;
}
.sidebar-close:hover {
  background: #0a0a0a;
  color: #fff;
}

/* Tagline bar */
.sidebar-tagline {
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: 3px;
  color: #0a0a0a;
  text-transform: uppercase;
  border-bottom: 1px solid #e5e5e5;
  flex-shrink: 0;
  user-select: none;
  background: #fafafa;
}

/* Nav links — big, bold, display font */
.sidebar-nav {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  padding: 8px 0;
}
.sidebar-nav::-webkit-scrollbar {
  display: none;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1.5px;
  color: rgba(0, 0, 0, 0.75);
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition:
    color 0.22s,
    padding-left 0.22s,
    background 0.22s;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
.sidebar-nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0a0a0a;
  transform: scaleY(0);
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-nav-sale {
  color: rgba(230, 57, 70, 0.9);
}
.sidebar-nav-link:hover {
  color: #0a0a0a;
  padding-left: 28px;
  background: #f7f7f7;
}
.sidebar-nav-link:hover::before {
  transform: scaleY(1);
}
.sidebar-nav-link .s-badge {
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 700;
  background: #0a0a0a;
  color: #fff;
  padding: 3px 7px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sidebar-nav-link .s-badge-red {
  background: #e63946;
  color: #fff;
}
.sidebar-nav-link i {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.2);
  transition: color 0.2s;
}
.sidebar-nav-link:hover i {
  color: #0a0a0a;
}

/* Footer */
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid #e5e5e5;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fafafa;
}
.sidebar-footer-contact {
  display: flex;
  gap: 16px;
}
.sidebar-footer-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}
.sidebar-footer-contact a:hover {
  color: #0a0a0a;
}
.sidebar-footer-contact i {
  color: #0a0a0a;
  font-size: 13px;
}
.sidebar-social {
  display: flex;
  gap: 14px;
}
.sidebar-social a {
  font-size: 17px;
  color: rgba(0, 0, 0, 0.35);
  transition: color 0.2s;
}
.sidebar-social a:hover {
  color: #0a0a0a;
}

/* Sidebar — featured drop banner */
.sidebar-drop-banner {
  display: flex;
  height: 110px;
  margin: 0 14px 2px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}
.sidebar-drop-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.5s ease;
}
.sidebar-drop-banner:hover .sidebar-drop-img {
  transform: scale(1.05);
}
.sidebar-drop-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 40%,
    rgba(0, 0, 0, 0.1)
  );
}
.sidebar-drop-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 16px;
  gap: 3px;
}
.sidebar-drop-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}
.sidebar-drop-title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
}
.sidebar-drop-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
  transition: color 0.2s;
}
.sidebar-drop-banner:hover .sidebar-drop-cta {
  color: var(--accent);
}

/* Sidebar — quick category row */
.sidebar-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 8px 14px 10px;
  flex-shrink: 0;
}
.sidebar-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}
.sidebar-cat-img {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
  transition: transform 0.3s ease;
  border: 1px solid #e5e5e5;
}
.sidebar-cat:hover .sidebar-cat-img {
  transform: scale(1.04);
}
.sidebar-cat span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.2s;
}
.sidebar-cat:hover span {
  color: #0a0a0a;
}

/* ─── HERO CENTER CTA ─── */
.hero-center-cta {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-center-btn {
  display: inline-block;
  padding: 1rem 3rem;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero-center-btn:hover {
  background: #fff;
  color: var(--black);
}

/* ─── HERO SLIDER ─── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
}

/* Background slides */
.slide-track {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.2s ease,
    transform 6s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 45%);
  z-index: 1;
}

/* Content layer */
.hero-content {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-60%);
  z-index: 2;
  padding: 0 60px;
  max-width: 680px;
  width: 100%;
}

/* Text slides — all stacked, only active shown */
.slide-text {
  display: none;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease 0.3s,
    transform 0.8s ease 0.3s;
}
.slide-text.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 88px;
  left: 60px;
  z-index: 3;
  display: flex;
  gap: 10px;
}
.dot-btn {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition:
    background 0.3s,
    width 0.3s;
  padding: 0;
}
.dot-btn.active {
  background: var(--accent);
  width: 48px;
}

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 3;
}
.slide-progress-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width linear;
}

.hero-model {
  display: none;
}
.hero-model-2 {
  display: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.hero h1 span {
  color: var(--accent);
}
.hero p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  max-width: 400px;
  margin-bottom: 24px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid var(--black);
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: border-color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--white);
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  right: 60px;
  z-index: 3;
  display: flex;
  gap: 40px;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── HERO 3-PANEL CAROUSEL ─── */
.hero3 {
  position: relative;
  width: 100%;
  background: #ffffff;
}
.hero3-viewport {
  overflow: hidden;
  width: 100%;
}
.hero3-track {
  display: flex;
  gap: 6px;
  transition: transform 0.6s cubic-bezier(0.34, 1.12, 0.64, 1);
  will-change: transform;
  cursor: grab;
}
.hero3-track:active { cursor: grabbing; }
.hero3-card {
  flex: 0 0 calc(33.333% - 4px);
  height: 78vh;
  min-height: 480px;
  max-height: 820px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.34, 1.12, 0.64, 1),
              opacity 0.6s ease;
}
.hero3-card.hero3-entering {
  animation: hero3snap 0.6s cubic-bezier(0.34, 1.12, 0.64, 1) forwards;
}
@keyframes hero3snap {
  0%   { transform: scale(0.96); opacity: 0.7; }
  60%  { transform: scale(1.02); opacity: 1; }
  100% { transform: scale(1);    opacity: 1; }
}

.hero3-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero3-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transition: transform 0.7s ease;
}
.hero3-card:hover .hero3-bg { transform: scale(1.04); }
.hero3-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero3-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%);
}
.hero3-info {
  position: absolute;
  bottom: 28px;
  left: 24px;
  right: 24px;
  z-index: 2;
}
.hero3-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.hero3-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 44px);
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.hero3-cta {
  display: inline-block;
  background: #fff;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.hero3-cta:hover { background: #0a0a0a; color: #fff; }

.hero3-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 10px;
  background: #fff;
}
.hero3-dot {
  width: 24px;
  height: 3px;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}
.hero3-dot.active { background: #0a0a0a; width: 40px; }

/* Tablet: 2 cards visible */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero3-card { flex: 0 0 calc(50% - 3px); height: 55vw; max-height: 600px; }
}
/* Mobile: 1 card visible */
@media (max-width: 767px) {
  .hero3-card { flex: 0 0 100%; height: 70vw; min-height: 320px; max-height: 520px; }
  .hero3-title { font-size: clamp(24px, 7vw, 40px); }
}

/* ─── SECTION COMMON ─── */
section {
  padding: 60px 0;
}
section.hero3 { padding: 0; }
.section-inner {
  max-width: 100%;
  padding: 0 24px;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-sub {
  font-size: 12px;
  color: var(--mid-grey);
  font-weight: 400;
  max-width: 300px;
  line-height: 1.6;
  text-align: right;
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.view-all:hover {
  opacity: 0.5;
}

/* ─── CATEGORY TILES ─── */
.categories {
  background: var(--white);
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--black);
}
.cat-card:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}
.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.cat-card:hover .cat-bg {
  transform: scale(1.05);
}

.cat-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1617137968427-85924c800a22?w=900&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.cat-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1583743814966-8936f5b7be1a?w=700&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.cat-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1542272604-787c3835535d?w=700&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.cat-bg-4 {
  background-image: url("https://images.unsplash.com/photo-1503341733017-1901578f9f1e?w=700&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.cat-bg-5 {
  background-image: url("https://images.unsplash.com/photo-1548863227-3af567fc3b27?w=700&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.cat-bg-6 {
  background-image: url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?w=700&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.cat-bg-7 {
  background-image: url("https://images.unsplash.com/photo-1556306535-0f09a537f0a3?w=700&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
}
.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}
.cat-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.cat-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.cat-card:first-child .cat-name {
  font-size: 42px;
}
.cat-count {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}
.cat-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transform: rotate(-45deg);
  transition:
    background 0.2s,
    border-color 0.2s;
}
.cat-card:hover .cat-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

/* ─── NEW ARRIVALS ─── */
.arrivals-scroll {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.arrivals-scroll::-webkit-scrollbar {
  display: none;
}

.product-card,
.arrivals-scroll .pcard-outer {
  flex: 0 0 260px;
  cursor: pointer;
}
.arrivals-scroll .pcard-outer .pcard { width: 100%; }
.product-img {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--grey);
  overflow: hidden;
  margin-bottom: 14px;
}
.product-img-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-bg {
  transform: scale(1.04);
}

.p-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.p-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1473966968600-fa801b869a1a?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.p-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1596755094514-f87e34085b2c?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.p-bg-4 {
  background-image: url("https://images.unsplash.com/photo-1509942774463-acf339cf87d5?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.p-bg-5 {
  background-image: url("https://images.unsplash.com/photo-1598033129183-c4f50c736f10?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.newsletter-visual {
  flex: 1;
  background-image: url('https://images.unsplash.com/photo-1558304970-abd589baebe5?w=1200&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
}
.p-bg-6 {
  background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.p-bg-graphic {
  background-image: url("https://images.unsplash.com/photo-1503341504253-dff4815485f1?w=600&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 1;
}
.product-badge.sale {
  background: #e63946;
}
.product-badge.new {
  background: var(--accent);
  color: var(--black);
}

.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px;
  text-align: center;
  transform: translateY(100%);
  transition: all 0.3s ease;
  z-index: 2;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.product-quick-add:hover {
  background: var(--white);
  color: var(--black);
}
.product-card:hover .product-quick-add {
  transform: translateY(0);
}

.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 1;
  transition: background 0.2s;
  cursor: pointer;
}
.product-wishlist:hover {
  background: #fce4e4;
}

.product-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-type {
  font-size: 11px;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-current {
  font-size: 15px;
  font-weight: 700;
}
.price-original {
  font-size: 13px;
  color: var(--mid-grey);
  text-decoration: line-through;
}
.price-off {
  font-size: 11px;
  font-weight: 700;
  color: #e63946;
}

.color-dots {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}
.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  cursor: pointer;
  transition: transform 0.15s;
}
.dot:hover {
  transform: scale(1.2);
}
.dot.active {
  border-color: var(--black);
}

/* ─── MID BANNER ─── */
.mid-banner {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}
.mid-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.mid-banner-visual {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1571945153237-4929e783af4a?w=900&q=80&fit=crop");
  background-size: cover;
  background-position: center 20%;
  overflow: hidden;
}
.mid-banner-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
}
.mid-banner-visual::after {
  display: none;
}
.mid-banner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
}
.mid-banner-text .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.mid-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}
.mid-banner-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.7;
  max-width: 340px;
  margin-bottom: 36px;
}

/* ─── SHOP BY STYLE ─── */
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.style-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  cursor: pointer;
  background: var(--black);
}
.style-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}
.style-card:hover .style-card-bg {
  transform: scale(1.05);
}
.s-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=800&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.s-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=800&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.s-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1539185441755-769473a23570?w=800&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.style-card-bg::before,
.style-card-bg::after {
  display: none;
}

.style-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 55%);
}
.style-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
}
.style-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.style-name {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 12px;
}
.style-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
}

/* ─── BESTSELLERS ─── */
.bestsellers {
  background: var(--white);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

/* ─── DROP 01 BANNER ─── */
.drop-banner {
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 60px 40px;
  text-align: center;
}
.drop-banner-inner {
  max-width: 600px;
  margin: 0 auto;
}
.drop-banner-label {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent, #c0a060);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.drop-banner-title {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}
.drop-banner-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 32px;
}
.drop-banner-cta {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
}
.drop-banner-cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

/* ─── BRAND STORY ─── */
.brand-story {
  background: #0a0a0a;
  padding: 100px 40px;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}
.brand-story-inner {
  max-width: 560px;
  margin: 0 auto;
}
.brand-story-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--accent, #c0a060);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.brand-story-title {
  font-size: 80px;
  font-weight: 900;
  letter-spacing: -3px;
  color: #fff;
  line-height: 1;
  margin-bottom: 40px;
}
.brand-story-body p {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.brand-story-closing {
  color: rgba(255,255,255,0.8) !important;
  font-size: 18px !important;
  margin-top: 8px;
  margin-bottom: 40px !important;
}
.brand-story-closing strong {
  color: #fff;
}

/* ─── BRAND STRIP ─── */
.brand-strip {
  background: var(--accent);
  padding: 20px 0;
  overflow: hidden;
}
.brand-strip-inner {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-strip-item {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.brand-strip-item::after {
  content: "✦";
  font-size: 14px;
}

/* ─── INSTAGRAM GRID ─── */
.insta-section {
  padding: 80px 0 0;
}
.insta-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 0 32px;
}
.insta-handle {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid-grey);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.insta-cell {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.insta-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.4s ease;
}
.insta-cell:hover .insta-bg {
  transform: scale(1.08);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  font-size: 24px;
  color: var(--white);
  opacity: 0;
}
.insta-cell:hover .insta-overlay {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.i-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1551803091-e20673f15770?w=500&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.i-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=500&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.i-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1516826957135-700dedea698c?w=500&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.i-bg-4 {
  background-image: url("https://images.unsplash.com/photo-1506794778202-cad84cf45f1d?w=500&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}
.i-bg-5 {
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=500&q=80&fit=crop");
  background-size: cover;
  background-position: center;
}
.i-bg-6 {
  background-image: url("https://images.unsplash.com/photo-1487222477894-8943e31ef7b2?w=500&q=80&fit=crop");
  background-size: cover;
  background-position: center top;
}

/* ─── NEWSLETTER ─── */
.newsletter {
  position: relative;
  overflow: hidden;
  background: var(--grey);
  padding: 0;
  border-top: 1px solid #e5e5e5;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.newsletter-visual {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1558304970-abd589baebe5?w=1200&q=80&fit=crop");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.newsletter-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--grey) 100%);
}
.newsletter-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 72px 64px;
  position: relative;
  z-index: 1;
}
.newsletter-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #767676;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.newsletter-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--black);
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  color: var(--black);
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.newsletter h2 span {
  color: var(--black);
}
.newsletter-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.newsletter p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 400px;
}
.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 460px;
  gap: 0;
  border: 1.5px solid var(--black);
}
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  font-size: 13px;
  font-family: var(--font-body);
  border: none;
  background: var(--white);
  color: var(--black);
  outline: none;
}
.newsletter-form input::placeholder {
  color: #999;
}
.newsletter-form input:focus {
  border-color: var(--black);
}
.newsletter-form button {
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 15px 28px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.newsletter-form button:hover {
  background: #333;
}
.newsletter-note {
  font-size: 11px;
  color: #999;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--white);
  color: var(--black);
  padding: 0;
  border-top: 1px solid #e5e5e5;
}
.footer-top-bar {
  background: #0a0a0a;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-top-bar span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.footer-top-bar a {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-decoration: underline;
  letter-spacing: 0.5px;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.footer-brand .footer-logo {
  margin-bottom: 20px;
}
.footer-brand .footer-logo img {
  height: 52px;
  width: auto;
  filter: none;
}
.footer-brand-tagline {
  font-family: var(--font-display);
  font-size: 20px;
  color: #767676;
  letter-spacing: 3px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer-brand p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  max-width: 290px;
  margin-bottom: 28px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #666;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: var(--black);
}
.footer-contact a i {
  width: 18px;
  color: var(--black);
  font-size: 14px;
  text-align: center;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--black);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
  cursor: pointer;
}
.social-link:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul li a {
  font-size: 14px;
  color: #666;
  transition:
    color 0.2s,
    padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: "›";
  color: var(--black);
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.footer-col ul li a:hover {
  color: var(--black);
  padding-left: 6px;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-payments {
  padding: 24px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-payments-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #767676;
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-chip {
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #444;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.payment-chip i {
  font-size: 14px;
  color: #888;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #999;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: #666;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--black);
}
.footer-made {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 13px;
}
.footer-made i {
  color: #e63946;
  font-size: 11px;
}

/* ─── LOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}
#loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  width: 180px;
  animation: loaderPulse 1.2s ease-in-out infinite alternate;
}
@keyframes loaderPulse {
  from {
    opacity: 0.5;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.loader-bar {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width 1.8s ease;
}
.loader-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
}

/* ─── CUSTOM CURSOR ─── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.1s ease,
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 213, 176, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition:
    transform 0.12s ease,
    width 0.25s,
    height 0.25s,
    border-color 0.2s,
    opacity 0.2s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--accent);
}
@media (hover: none) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ─── ACCOUNT DRAWER ─── */
.account-overlay {
  position: fixed;
  inset: 0;
  z-index: 1800;
  background: rgba(10, 10, 10, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}
.account-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.account-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 820px;
  max-width: calc(100vw - 32px);
  max-height: 92vh;
  background: var(--white);
  z-index: 1900;
  border-radius: 20px;
  transform: translate(-50%, -46%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.28s ease;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.22);
}
.account-drawer.open {
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: all;
}

/* Left visual panel */
.account-visual {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  background: url("https://images.unsplash.com/photo-1509631179647-0177331693ae?w=700&q=80")
    center/cover no-repeat;
  display: flex;
  align-items: flex-end;
}
.account-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 10, 10, 0.35) 0%,
    rgba(10, 10, 10, 0.78) 100%
  );
}
.account-visual-content {
  position: relative;
  z-index: 1;
  padding: 36px 28px;
  color: #fff;
}
.account-visual-logo {
  height: 28px;
  filter: invert(1) brightness(2);
  margin-bottom: 32px;
  display: block;
}
.account-visual-tagline {
  font-family: var(--font-display);
  font-size: 38px;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 28px;
}
.account-visual-tagline span {
  color: var(--accent);
}
.account-visual-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.account-visual-perk {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  gap: 9px;
}
.account-visual-perk i {
  color: var(--accent);
  font-size: 12px;
}

/* Right form panel */
.account-form-panel {
  flex: 1;
  overflow-y: auto;
  padding: 32px 32px 36px;
  position: relative;
}

/* Close button */
.account-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  transition: background 0.15s;
  z-index: 2;
}
.account-drawer-close:hover {
  background: var(--accent);
}

/* Welcome */
.account-welcome {
  margin-bottom: 24px;
}
.account-welcome-title {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1px;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.account-welcome-sub {
  font-size: 13px;
  color: var(--mid-grey);
}

/* Tabs */
.account-tabs {
  display: flex;
  border-bottom: 2px solid #f0f0f0;
  margin-bottom: 24px;
}
.account-tab {
  flex: 1;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-grey);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.15s,
    border-color 0.15s;
}
.account-tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

/* Tab panels */
.account-panel {
  display: none;
}
.account-panel.active {
  display: block;
}

/* Two-column form row */
.account-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Form fields */
.account-form-group {
  margin-bottom: 14px;
}
.account-form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 6px;
}
.account-form-group input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--black);
  background: #fff;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  box-sizing: border-box;
}
.account-form-group input:focus {
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
}
.account-form-group input::placeholder {
  color: #bbb;
}

/* Password row with show/hide */
.account-pw-wrap {
  position: relative;
}
.account-pw-wrap input {
  padding-right: 48px;
}
.account-pw-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mid-grey);
  font-size: 14px;
  padding: 0;
  transition: color 0.15s;
}
.account-pw-toggle:hover {
  color: var(--black);
}

.account-forgot {
  display: block;
  text-align: right;
  font-size: 11px;
  color: var(--mid-grey);
  margin-top: -8px;
  margin-bottom: 20px;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: color 0.15s;
}
.account-forgot:hover {
  color: var(--black);
}

/* Submit button */
.account-submit-btn {
  width: 100%;
  height: 50px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition:
    background 0.2s,
    transform 0.1s;
  margin-bottom: 16px;
}
.account-submit-btn:hover {
  background: var(--accent); color: var(--black);
  transform: translateY(-1px);
}
.account-submit-btn:active {
  transform: translateY(0);
}

/* Divider */
.account-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #ccc;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.account-divider::before,
.account-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #efefef;
}

/* Social login */
.account-social-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.account-social-btn {
  width: 100%;
  height: 46px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  cursor: pointer;
  font-family: var(--font-body);
  transition:
    border-color 0.2s,
    background 0.15s;
}
.account-social-btn:hover {
  border-color: var(--black);
  background: #fafafa;
}
.account-social-btn i {
  font-size: 16px;
}
.account-social-btn .fa-google {
  color: #ea4335;
}
.account-social-btn .fa-apple {
  color: var(--black);
}

/* Benefits strip (shown in signup) */
.account-benefits {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 20px;
}
.account-benefits-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 10px;
}
.account-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #444;
  margin-bottom: 8px;
  font-weight: 500;
}
.account-benefit-item:last-child {
  margin-bottom: 0;
}
.account-benefit-item i {
  color: #22a350;
  font-size: 12px;
  width: 14px;
  flex-shrink: 0;
}

/* Guest note */
.account-guest-note {
  text-align: center;
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}
.account-guest-note a {
  color: var(--black);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

/* Mobile — hide left panel, go single column */
@media (max-width: 640px) {
  .account-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .account-drawer {
    width: calc(100vw - 24px);
    max-height: 94vh;
    border-radius: 16px;
    flex-direction: column;
  }
  .account-visual {
    display: none;
  }
  .account-form-panel {
    padding: 48px 22px 32px;
  }
  .account-welcome-title {
    font-size: 26px;
  }
}

/* ─── TRUST BADGES ─── */
.trust-strip {
  background: var(--white);
  border-bottom: 1.5px solid #ececec;
  padding: 20px 32px;
}
.trust-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  min-width: 160px;
}
.trust-icon {
  font-size: 24px;
  flex-shrink: 0;
  color: var(--black);
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
}
.trust-sub {
  font-size: 11px;
  color: var(--mid-grey);
  font-weight: 400;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: #e0e0e0;
  flex-shrink: 0;
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--white);
  padding: 80px 0;
}
.reviews .section-header {
  border-bottom-color: #e5e5e5;
}
.reviews .section-title {
  color: var(--black);
}
.reviews .section-sub {
  color: var(--mid-grey);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: #f4f4f4;
  border: 1px solid #e5e5e5;
  padding: 28px;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.review-card:hover {
  border-color: var(--black);
  background: #eeeeee;
}
.review-stars {
  color: #f0a500;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
}
.review-meta {
  font-size: 11px;
  color: #999;
  margin-top: 2px;
}
.review-badge {
  margin-left: auto;
  background: #e5e5e5;
  color: #555;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.summary-big {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--white);
  line-height: 1;
}
.summary-stars {
  font-size: 22px;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.summary-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.summary-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}
.bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ─── ANIMATIONS ─── */

/* Fade up — default reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fade in (no movement) */
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reveal-fade.visible {
  opacity: 1;
}

/* Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for children */
.stagger > *:nth-child(1) {
  transition-delay: 0s;
}
.stagger > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger > *:nth-child(3) {
  transition-delay: 0.2s;
}
.stagger > *:nth-child(4) {
  transition-delay: 0.3s;
}
.stagger > *:nth-child(5) {
  transition-delay: 0.4s;
}
.stagger > *:nth-child(6) {
  transition-delay: 0.5s;
}
.stagger > *:nth-child(7) {
  transition-delay: 0.6s;
}

/* Hero text entrance */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: heroFadeUp 0.8s ease 0.2s both;
}
.hero h1 {
  animation: heroFadeUp 0.9s ease 0.4s both;
}
.hero p {
  animation: heroFadeUp 0.8s ease 0.65s both;
}
.hero-ctas {
  animation: heroFadeUp 0.8s ease 0.85s both;
}
.hero-stats {
  animation: heroFadeUp 0.8s ease 1s both;
}

/* Ticker pulse */
.brand-strip {
  animation: heroFadeUp 0.6s ease 0.1s both;
}

/* ─── RESPONSIVE ─── */

/* ── TABLET (max 1024px) ── */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-card:first-child {
    grid-row: span 1;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .newsletter-visual {
    min-height: 260px;
  }
  .newsletter-visual::after {
    background: linear-gradient(to top, var(--black) 0%, transparent 60%);
  }
}

/* ── MOBILE (max 768px) ── */
@media (max-width: 768px) {
  /* Header */
  .header-inner {
    padding: 0 16px;
    height: 56px;
  }
  .logo img {
    height: 40px;
  }
  .header-icons {
    gap: 12px;
  }
  .header-icons button svg,
  .header-icons a svg {
    width: 18px;
    height: 18px;
  }

  /* Hero */
  .hero {
    height: 100svh;
    min-height: 560px;
  }
  .hero-content {
    padding: 0 20px;
    top: 45%;
    transform: translateY(-55%);
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(38px, 10vw, 56px);
  }
  .hero p {
    font-size: 13px;
    max-width: 100%;
  }
  .hero-stats {
    display: none;
  }
  .slide-dots {
    left: 20px;
    bottom: 60px;
  }

  /* Sections */
  section {
    padding: 48px 0;
  }
  .section-inner {
    padding: 0 16px;
  }
  .section-header {
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .section-sub {
    display: none;
  }

  /* Category tiles */
  .categories {
    padding: 40px 0;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .cat-card:first-child {
    grid-row: span 1;
  }
  .cat-info {
    padding: 16px 14px;
  }
  .cat-name {
    font-size: 22px;
  }
  .cat-card:first-child .cat-name {
    font-size: 26px;
  }

  /* New arrivals */
  .arrivals-scroll {
    padding: 0 16px 8px;
    gap: 12px;
  }
  .product-card {
    flex: 0 0 180px;
  }

  /* Mid banner */
  .mid-banner-inner {
    grid-template-columns: 1fr;
  }
  .mid-banner-visual {
    min-height: 220px;
    display: block;
  }
  .mid-banner-text {
    padding: 36px 20px;
  }
  .mid-banner-text h2 {
    font-size: clamp(32px, 8vw, 48px);
  }

  /* Shop by style */
  .style-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .style-name {
    font-size: 28px;
  }
  .style-info {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  /* Bestsellers — horizontal scroll on mobile like New Arrivals */
  .bestsellers .product-grid {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 12px;
    padding-bottom: 12px;
  }
  .bestsellers .product-grid::-webkit-scrollbar { display: none; }
  .bestsellers .product-grid > .pcard-outer {
    flex: 0 0 44vw;
    min-width: 0;
  }
  .bestsellers .product-grid > .pcard-outer .pcard { width: 100%; }
  .product-name {
    font-size: 13px;
  }

  /* Brand strip */
  .brand-strip-item {
    font-size: 18px;
  }

  /* Trust */
  .trust-strip {
    padding: 16px;
  }
  .trust-inner {
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  .trust-divider {
    display: none;
  }
  .trust-item {
    flex: 0 0 50%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 12px 8px;
    border-bottom: 1px solid #ebebeb;
  }
  .trust-item:nth-child(odd) {
    border-right: 1px solid #ebebeb;
  }

  /* Reviews */
  .reviews {
    padding: 48px 0;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }
  .reviews-summary {
    flex-direction: column;
    gap: 32px;
    padding: 32px 20px;
    text-align: center;
  }
  .summary-big {
    font-size: 64px;
  }
  .summary-bars {
    width: 100%;
  }

  /* Instagram */
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
  }
  .insta-header {
    padding: 0 16px;
  }

  /* Newsletter */
  .newsletter-inner {
    grid-template-columns: 1fr;
  }
  .newsletter-visual {
    min-height: 240px;
  }
  .newsletter-text {
    padding: 48px 20px;
    align-items: center;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
    gap: 12px;
  }
  .newsletter-form input {
    width: 100%;
    text-align: center;
  }
  .newsletter-form button {
    width: 100%;
    padding: 16px;
  }

  /* Footer */
  .footer-top-bar {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  .footer-inner {
    padding: 0 16px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding: 40px 0 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
    margin-bottom: 8px;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .footer-bottom-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-payments {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .payment-icons {
    gap: 8px;
  }
  .header-icons .header-search-trigger {
    border: none !important;
    padding: 6px !important;
    margin-right: 0 !important;
    height: auto !important;
    min-width: auto !important;
    background: none !important;
    gap: 0 !important;
  }
  .header-icons .header-search-trigger span {
    display: none !important;
  }
  .header-icons .header-search-trigger svg {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2 !important;
  }
  .cat-nav-inner {
    padding: 0 12px;
  }
  .cat-nav-item {
    padding: 10px 14px;
    font-size: 11px;
  }
  .payment-chip {
    padding: 6px 12px;
    font-size: 11px;
  }
}

/* ── SMALL PHONES (max 480px) ── */
@media (max-width: 480px) {
  /* Header */
  .header-inner {
    padding: 0 12px;
  }
  .header-icons {
    gap: 10px;
  }

  /* Hero */
  .hero-content {
    padding: 0 16px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 44px);
  }
  .hero-ctas {
    gap: 8px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 11px 18px;
    font-size: 11px;
  }

  /* Sections */
  .section-inner {
    padding: 0 12px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
  }
  .footer-col:last-child {
    border-bottom: none;
  }
  .footer-col h5 {
    margin-bottom: 16px;
  }
  .cat-name {
    font-size: 18px;
  }

  /* Products */
  .product-grid {
    gap: 2px;
  }
  .bestsellers .product-grid > .pcard-outer {
    flex: 0 0 42vw;
  }
  .product-card {
    flex: 0 0 155px;
  }

  /* Style grid — single column on very small screens */
  .style-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Trust — keep 2 per row even on small phones */
  .trust-item {
    flex: 0 0 50%;
  }
  .trust-item:nth-child(odd) {
    border-right: 1px solid #ebebeb;
  }

  /* Reviews */
  .review-card {
    padding: 18px;
  }

  /* Mid banner */
  .mid-banner-text h2 {
    font-size: 30px;
  }
  .mid-banner-text {
    padding: 28px 16px;
  }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-inner {
    padding: 0 12px;
  }

  /* Sidebar */
  .sidebar {
    width: 100vw;
  }
  .sidebar-tagline {
    font-size: 18px;
  }

  /* Announce bar */
  .announce-bar {
    font-size: 10px;
  }
}

/* ─── COUPON POPUP ─── */
.coupon-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,0.65);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
  backdrop-filter: blur(4px);
}
.coupon-overlay.open { opacity: 1; pointer-events: all; }

.coupon-popup {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  z-index: 3001;
  width: 780px; max-width: 95vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  overflow: hidden;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s, transform 0.4s;
}
.coupon-popup.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%); }

.coupon-close {
  position: absolute; top: 14px; right: 16px;
  background: rgba(0,0,0,0.4); border: none;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 14px; color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.coupon-close:hover { background: rgba(0,0,0,0.7); }

/* Left image side */
.coupon-img-side {
  position: relative; min-height: 420px; overflow: hidden;
}
.coupon-img-side img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.coupon-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
}
.coupon-img-brand {
  font-family: var(--font-display);
  font-size: 36px; color: #fff; letter-spacing: 4px; line-height: 1;
}
.coupon-img-tagline {
  font-size: 11px; color: rgba(255,255,255,0.7);
  letter-spacing: 3px; font-weight: 600; margin-top: 4px;
}

/* Right content side */
.coupon-content-side {
  padding: 40px 32px 32px;
  display: flex; flex-direction: column;
  justify-content: center; text-align: center;
}
.coupon-eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: #999; margin-bottom: 12px;
}
.coupon-title {
  font-family: var(--font-display);
  font-size: 52px; letter-spacing: 2px;
  color: var(--black); margin-bottom: 12px; line-height: 1;
}
.coupon-sub {
  font-size: 13px; color: #666; margin-bottom: 20px; line-height: 1.7;
}
.coupon-code-wrap {
  display: flex; align-items: center;
  border: 2px dashed var(--black);
  margin-bottom: 8px; overflow: hidden;
}
.coupon-code {
  flex: 1; padding: 12px 16px;
  font-size: 22px; font-weight: 800; letter-spacing: 4px;
  color: var(--black); font-family: var(--font-display);
}
.coupon-copy-btn {
  padding: 12px 18px; background: var(--black); color: #fff;
  border: none; font-size: 12px; font-weight: 700;
  letter-spacing: 1px; cursor: pointer; text-transform: uppercase;
  transition: opacity 0.2s; white-space: nowrap;
}
.coupon-copy-btn:hover { opacity: 0.8; }
.coupon-copied {
  font-size: 12px; color: #2ecc71; font-weight: 600;
  height: 16px; opacity: 0; transition: opacity 0.3s; margin-bottom: 4px;
}
.coupon-copied.show { opacity: 1; }
.coupon-shop-btn {
  display: block; background: var(--accent); color: var(--black);
  padding: 14px; font-size: 14px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  text-decoration: none; margin: 14px 0 10px;
  transition: opacity 0.2s;
}
.coupon-shop-btn:hover { opacity: 0.85; }
.coupon-note { font-size: 11px; color: #aaa; letter-spacing: 0.5px; }

@media (max-width: 600px) {
  .coupon-popup {
    grid-template-columns: 1fr;
    width: 88vw;
    max-height: 90vh;
    overflow-y: auto;
  }
  .coupon-img-side {
    min-height: 160px;
    max-height: 160px;
  }
  .coupon-img-brand { font-size: 24px; }
  .coupon-img-tagline { font-size: 9px; }
  .coupon-content-side {
    padding: 20px 18px 20px;
  }
  .coupon-eyebrow { font-size: 10px; margin-bottom: 8px; }
  .coupon-title { font-size: 28px; margin-bottom: 8px; white-space: nowrap; }
  .coupon-sub { font-size: 12px; margin-bottom: 14px; }
  .coupon-code { font-size: 16px; padding: 10px 12px; letter-spacing: 3px; }
  .coupon-copy-btn { padding: 10px 14px; font-size: 11px; }
  .coupon-shop-btn { padding: 12px; font-size: 13px; margin: 12px 0 8px; }
  .coupon-note { font-size: 10px; }
}

@media (max-width: 768px) {
  .drop-banner { padding: 48px 24px; }
  .drop-banner-title { font-size: 48px; }
  .drop-banner-lines { font-size: 14px; gap: 4px; }
  .brand-story { padding: 60px 20px; }
  .brand-story-title { font-size: 56px; }
  .brand-story-body p { font-size: 15px; }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM UI UPGRADES
   ═══════════════════════════════════════════════════════════ */

/* ─── NAVBAR SCROLL STATE ─── */
header {
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ─── HAMBURGER → X MORPH ─── */
.menu-toggle span {
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.25s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── HERO 3-PANEL — BIGGER, BOLDER ─── */
.hero3-title {
  font-size: clamp(32px, 4.5vw, 68px) !important;
  letter-spacing: 3px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero3-eyebrow {
  color: var(--accent) !important;
  display: flex !important;
  align-items: center;
  gap: 8px;
  letter-spacing: 3px !important;
}
.hero3-eyebrow::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero3-info {
  bottom: 36px !important;
}
.hero3-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.04) 100%) !important;
}
.hero3-cta {
  position: relative;
  overflow: hidden;
  transition: background 0.25s, color 0.25s, letter-spacing 0.2s !important;
}
.hero3-cta:hover {
  letter-spacing: 2px;
}
.hero3-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: -100%;
  width: 100%; height: 2px;
  background: var(--accent);
  transition: left 0.3s ease;
}
.hero3-cta:hover::after { left: 0; }
@media (max-width: 767px) {
  .hero3-title { font-size: clamp(26px, 8vw, 42px) !important; }
  .hero3-info { bottom: 20px !important; left: 16px !important; right: 16px !important; }
  .hero3-eyebrow { font-size: 9px !important; }
}

/* ─── PRODUCT CARD — HOVER LIFT + SHIMMER SKELETON ─── */
.pcard-outer {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pcard-outer:hover {
  transform: translateY(-4px);
}
.pcard-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  height: 0;
  padding-top: 133.33%;
}
.pcard-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: cardShimmer 1.6s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.pcard-img-wrap.img-loaded::before { display: none; }
@keyframes cardShimmer {
  100% { transform: translateX(200%); }
}
.pcard-img {
  transition: transform 0.55s ease;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pcard-outer:hover .pcard-img { transform: scale(1.04); }

/* ─── BTN-PRIMARY PREMIUM ANIMATION ─── */
.btn-primary {
  position: relative;
  overflow: hidden;
  transition: background 0.22s, color 0.22s, transform 0.15s !important;
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.btn-primary:hover::before { width: 100%; }

/* ─── VIEW-ALL UNDERLINE ANIMATION ─── */
.view-all {
  position: relative !important;
  border-bottom: none !important;
}
.view-all::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--black);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.view-all:hover { opacity: 1 !important; }
.view-all:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/* ─── SECTION TITLE TIGHTER ─── */
.section-title { letter-spacing: -0.01em !important; }

/* ─── CAT ARROW MICRO ANIMATION ─── */
.cat-arrow {
  transition: background 0.2s, border-color 0.2s, transform 0.25s ease !important;
}
.cat-card:hover .cat-arrow {
  transform: rotate(-45deg) translate(3px, -3px) !important;
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: var(--black) !important;
}

/* ─── STYLE CARD CTA UNDERLINE ─── */
.style-cta { position: relative; }
.style-cta::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}
.style-card:hover .style-cta::after { width: 100%; }

/* ─── REVIEW CARD HOVER DEPTH ─── */
.review-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s !important;
}
.review-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.08) !important;
}

/* ─── SOCIAL LINK HOVER LIFT ─── */
.social-link {
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.2s !important;
}
.social-link:hover { transform: translateY(-2px) !important; }

/* ─── SEARCH TAG SPRING ─── */
.search-tag {
  transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.search-tag:hover { transform: translateY(-2px); }

/* ─── SMOOTHER REVEAL EASING ─── */
@media (prefers-reduced-motion: no-preference) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1) !important;
  }
}

/* ─── FOOTER IMPROVEMENTS ─── */
.footer-col ul li a {
  transition: color 0.2s, padding-left 0.22s !important;
}
.footer-contact a { transition: color 0.2s, transform 0.2s; }
.footer-contact a:hover { transform: translateX(3px); }

/* ─── LARGE DESKTOP >1440px ─── */
@media (min-width: 1440px) {
  .section-inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
  }
  .hero3-card { height: 72vh; }
  .product-grid { grid-template-columns: repeat(5, 1fr); }
}

/* ─── TABLET 768–1024px IMPROVEMENTS ─── */
@media (min-width: 768px) and (max-width: 1024px) {
  .header-inner { padding: 0 20px; }
  .cat-nav-inner { padding: 0 20px; }
  .section-inner { padding: 0 20px; }
  .style-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }
  .mid-banner-text { padding: 40px 36px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ─── CHECKOUT IMPROVEMENTS ─── */
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: var(--black) !important;
  box-shadow: 0 0 0 3px rgba(10,10,10,0.06) !important;
}

/* ─── GLOBAL LINK TRANSITIONS ─── */
a { transition: color 0.2s, opacity 0.2s; }
button { transition: background 0.2s, color 0.2s, transform 0.15s, opacity 0.2s; }

/* ─── BRAND STORY SECTION ─── */
.nyok-brand-story {
  background: #0a0a0a;
  padding: 100px 0;
  overflow: hidden;
}
.nyok-bs-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nyok-bs-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nyok-bs-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--accent);
}
.nyok-bs-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 88px);
  color: #fff;
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 28px;
}
.nyok-bs-title span { color: var(--accent); }
.nyok-bs-body {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 380px;
  margin-bottom: 16px;
}
.nyok-bs-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.nyok-bs-cta:hover { color: var(--accent); border-color: var(--accent); }
.nyok-bs-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}
.nyok-bs-stat {
  padding: 32px 28px;
  background: #0a0a0a;
  text-align: center;
  transition: background 0.3s;
}
.nyok-bs-stat:hover { background: #111; }
.nyok-bs-stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.nyok-bs-stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.nyok-bs-quote {
  border-left: 2px solid var(--accent);
  padding: 16px 24px;
}
.nyok-bs-quote blockquote {
  font-family: var(--font-display);
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 6px;
}
.nyok-bs-quote cite {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  font-style: normal;
}
@media (max-width: 1024px) {
  .nyok-bs-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .nyok-brand-story { padding: 64px 0; }
  .nyok-bs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .nyok-bs-title { font-size: clamp(40px, 10vw, 64px); }
  .nyok-bs-body { max-width: 100%; }
  .nyok-bs-stat-num { font-size: 40px; }
  .nyok-bs-stat { padding: 20px 16px; }
}

/* ─── PLP BREADCRUMB ─── */
.plp-breadcrumb {
  padding: 10px 24px;
  font-size: 12px;
  color: var(--mid-grey);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  border-bottom: 1px solid #f0f0f0;
}
.plp-breadcrumb a {
  color: var(--mid-grey);
  text-decoration: none;
  transition: color 0.2s;
}
.plp-breadcrumb a:hover { color: var(--black); }
.plp-bc-sep { color: #ccc; font-size: 14px; }
.plp-bc-current { color: var(--black); font-weight: 500; }
