/* ============================================
   SINKLY — Main Stylesheet
   Brand: Dark navy #011120 · Taupe #b7aca2 · Light gray #f4f4f4
   Fonts: DM Sans (headings) · Jost (body)
   ============================================ */

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

:root {
  --navy:     #141920;
  --taupe:    #b7aca2;
  --taupe-dk: #797068;
  --bg:       #f4f4f4;
  --text:     #2b2c2d;
  --white:    #ffffff;
  --border:   #e0dbd7;

  --font-body: 'Jost', sans-serif;
  --font-head: 'DM Sans', sans-serif;

  --max-w: 1300px;
  --section-pad: 90px 0;
  --radius: 8px;
  --radius-lg: 14px;

  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ============================================
   PLACEHOLDER IMAGES (remove when adding real imgs)
   ============================================ */
.placeholder-img {
  background: linear-gradient(135deg, #ddd8d3 0%, #c9c2bb 100%);
  width: 100%;
  height: 100%;
}

/* ============================================
   UTILITY
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-pad); }

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

.section--taupe {
  background: var(--taupe);
  color: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header--light h2,
.section-header--light .section-label { color: var(--white); }

.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe-dk);
  margin-bottom: 10px;
}

.section-header--light .section-label { color: var(--taupe); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.2;
}

h2 { font-size: clamp(28px, 3vw, 40px); }

.section-cta {
  text-align: center;
  margin-top: 52px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn--primary {
  background: var(--taupe);
  color: var(--navy);
  border: 2px solid var(--taupe);
}
.btn--primary:hover {
  background: var(--taupe-dk);
  border-color: var(--taupe-dk);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--taupe);
}
.btn--outline-light:hover {
  background: var(--taupe);
  color: var(--navy);
}

.btn--small {
  padding: 9px 18px;
  font-size: 12px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
}
.btn--small:hover {
  background: transparent;
  color: var(--navy);
}

.arrow-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--taupe-dk);
  transition: color var(--transition);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo tile — flush left, no separate box */
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 120px;
  height: 72px;
  padding: 0 16px;
}

.header__logo img {
  height: 96px;
  width: 96px;
  object-fit: contain;
  border-radius: 50%;
}

/* Left-aligned nav */
.nav {
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.nav ul {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav__item { position: relative; }

.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link--active {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255,255,255,0.5);
}

.nav__chevron {
  transition: transform var(--transition);
  opacity: 0.5;
  flex-shrink: 0;
}

.nav__item--has-drop:hover .nav__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  /* padding-top bridges the gap so hover isn't lost mid-move */
  padding-top: 10px;
  background: transparent;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  transform: translateY(-6px);
}

.nav__dropdown__inner {
  background: #1e2530;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  padding: 6px;
}

.nav__item--has-drop:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__dropdown__inner a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.nav__dropdown__inner a:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

/* Right actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding-right: 20px;
}

.region-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.region-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.header__divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
  margin: 0 6px;
}

.icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.cart-btn { position: relative; }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--taupe);
  color: var(--navy);
  font-size: 8px;
  font-weight: 700;
  width: 15px; height: 15px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
  margin-left: 4px;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
  display: block;
  width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open { display: block; }

.mobile-nav__inner {
  padding: 8px 20px 24px;
}

.mobile-nav li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--white); }

.mobile-nav__label {
  display: block;
  padding: 14px 0 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
}

.mobile-nav__sub {
  padding: 10px 0 10px 12px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  border-bottom: none !important;
}

.mobile-nav__group {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 8px;
  margin-bottom: 4px;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1e2530 60%, #2a3140 100%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.page-hero__heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  max-width: 440px;
  font-weight: 300;
}

/* Light product cards (for category pages) */
.products__grid--light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card--light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card--light:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(1,17,32,0.08);
}

.product-card--light .btn--small {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.product-card--light .btn--small:hover {
  background: transparent;
  color: var(--navy);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: calc(100vh - 112px);
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1c2228 50%, #323841 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b7aca2' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__left { flex: 0 0 auto; max-width: 480px; }

.hero__right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  align-self: stretch;
}

/* ── Hero Rotator ───────────────────────── */
.hero-rotator {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-rotator__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 10px;
  padding-left: 2px;
}

.hero-rotator__track {
  position: relative;
  height: 540px;
  border-radius: 14px;
  overflow: hidden;
}

.hero-rotator__card {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-rotator__card.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-rotator__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.hero-rotator__card.active:hover .hero-rotator__img { transform: scale(1.04); }

.hero-rotator__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 24px;
  background: linear-gradient(to top, rgba(3,8,18,0.92) 0%, rgba(3,8,18,0.5) 45%, transparent 75%);
}

.hero-rotator__badge {
  display: inline-block;
  width: fit-content;
  background: #c9a84c;
  color: #0d1117;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hero-rotator__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.hero-rotator__name {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2px;
}

.hero-rotator__finish {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}

.hero-rotator__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-rotator__sale-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
}

.hero-rotator__orig-price {
  font-size: 16px;
  color: rgba(255,255,255,0.38);
  text-decoration: line-through;
}

.hero-rotator__cad {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.hero-rotator__cta {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}

.hero-rotator__dots {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-left: 2px;
}

.hero-rotator__dot {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.hero-rotator__dot.active {
  background: var(--white);
  width: 40px;
}

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}

.hero__heading {
  font-family: var(--font-head);
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 300;
}

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

/* ============================================
   CATEGORIES
   ============================================ */
.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: 12px;
}

.category-card {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
  transition: transform var(--transition);
}

.category-card:hover { transform: translateY(-4px); }
.category-card:hover .arrow-link { color: var(--navy); }

.category-card--tall {
  grid-row: 1 / 3;
  grid-column: 2;
}

.category-card__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card__img img { transform: scale(1.06); }

.category-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(1,17,32,0.7) 0%, transparent 100%);
  color: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.category-card__body h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.category-card__body .arrow-link {
  color: var(--taupe);
  font-size: 13px;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.product-card__img {
  height: 260px;
  background: linear-gradient(135deg, rgba(183,172,162,0.15) 0%, rgba(183,172,162,0.05) 100%);
}

.product-card__body {
  padding: 18px 18px 20px;
}

.product-card__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 6px;
}

.product-card__body h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}

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

.price {
  font-size: 15px;
  font-weight: 600;
  color: var(--taupe);
}

/* ============================================
   BRAND STRIP
   ============================================ */
.brand-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-strip__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

.brand-strip__item:last-child { border-right: none; }
.brand-strip__item:hover { background: var(--white); }

.brand-strip__item svg { color: var(--taupe); flex-shrink: 0; }

.brand-strip__item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.brand-strip__item p {
  font-size: 12px;
  color: var(--taupe-dk);
}

/* ============================================
   ABOUT
   ============================================ */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__img {
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__text .section-label { display: block; margin-bottom: 12px; }

.about__text h2 { margin-bottom: 20px; }

.about__text p {
  color: var(--taupe-dk);
  margin-bottom: 16px;
  font-size: 15px;
}

.about__text .btn { margin-top: 12px; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__inner h2 { margin-bottom: 12px; color: var(--navy); }

.newsletter__inner p {
  margin-bottom: 32px;
  color: var(--navy);
  opacity: 0.75;
}

.newsletter__form {
  display: flex;
  gap: 10px;
}

.newsletter__form input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid rgba(1,17,32,0.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: rgba(255,255,255,0.5);
  color: var(--navy);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter__form input:focus { border-color: var(--navy); }
.newsletter__form input::placeholder { color: rgba(1,17,32,0.45); }

/* ============================================
   SHOP PAGE CARDS
   ============================================ */
.shop-group { margin-bottom: 64px; }

.shop-group__title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.shop-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.shop-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(1,17,32,0.08);
}

.shop-card__img {
  height: 300px;
  overflow: hidden;
}
.shop-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.shop-card:hover .shop-card__img img { transform: scale(1.05); }

.shop-card__footer {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.shop-card__footer span {
  color: var(--taupe-dk);
  transition: transform var(--transition);
}

.shop-card:hover .shop-card__footer span { transform: translateX(4px); }

/* ============================================
   SALE PAGE
   ============================================ */
.sale-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: #e85d4a;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 1;
}

.product-card { position: relative; }

.price-original {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-left: 6px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
}

.footer__top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  height: 72px;
  width: 72px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 220px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}

.footer__socials a:hover {
  border-color: var(--taupe);
  color: var(--taupe);
  background: rgba(183,172,162,0.1);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }

.footer__col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--taupe); }

.footer__group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
  padding-bottom: 2px;
}

.footer__group-label:first-child { margin-top: 0; }

.footer__sub {
  padding-left: 8px !important;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ============================================
   REGION LABEL (replaces CAD dropdown)
   ============================================ */
.region-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  padding: 4px 8px;
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.search-overlay__inner {
  background: #1a2030;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  margin: 0 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  transform: translateY(-12px);
  transition: transform 0.2s ease;
}

.search-overlay.open .search-overlay__inner {
  transform: translateY(0);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.search-box .search-icon { color: rgba(255,255,255,0.4); flex-shrink: 0; }

#searchInput {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--white);
  caret-color: var(--taupe);
}

#searchInput::placeholder { color: rgba(255,255,255,0.3); }

.search-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.search-close:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.search-results {
  max-height: 420px;
  overflow-y: auto;
  padding: 8px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--white);
  transition: background var(--transition);
}
.search-result:hover { background: rgba(255,255,255,0.06); }

.search-result__img {
  width: 52px; height: 52px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}

.search-result__info { flex: 1; }

.search-result__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 3px;
}

.search-result__name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--taupe);
}

.search-price-orig {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: line-through;
  margin-left: 4px;
}

.search-result__cad {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-left: 2px;
}

.search-badge {
  background: #e85d4a;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 3px;
}

.search-result__arrow { color: rgba(255,255,255,0.25); flex-shrink: 0; }
.search-result:hover .search-result__arrow { color: var(--taupe); }

.search-empty {
  padding: 28px 20px;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}
.search-empty strong { color: rgba(255,255,255,0.7); }

/* ============================================
   CART TOAST
   ============================================ */
#cart-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 12px 24px;
  border-radius: 50px;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
}

#cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}

.cart-page-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--navy);
}

.cart-empty {
  text-align: center;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cart-empty h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.cart-empty p {
  color: var(--taupe-dk);
  font-size: 14px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding-bottom: 80px;
}

.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item__img {
  width: 88px; height: 88px;
  border-radius: 10px;
  flex-shrink: 0;
}

.cart-item__img--photo {
  background: #f6f4f2;
  overflow: hidden;
}

.cart-item__sku {
  font-size: 11px;
  color: var(--taupe-dk);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.cart-item__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-dk);
  margin-bottom: 4px;
}

.cart-item__name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}

.cart-item__price {
  font-size: 13px;
  color: var(--taupe-dk);
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--bg); }

.qty-value {
  width: 36px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  line-height: 32px;
}

.cart-item__subtotal {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  min-width: 80px;
  text-align: right;
}

.cart-item__remove {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,0.25);
  border-radius: 6px;
  transition: all var(--transition);
}
.cart-item__remove:hover { color: #e85d4a; background: rgba(232,93,74,0.08); }

.cart-summary {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  color: var(--taupe-dk);
  border-bottom: 1px solid var(--border);
}

.cart-summary__row:last-of-type { border-bottom: none; }

.cart-summary__total {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  padding-top: 14px;
}

.free-ship { color: #2ecc71; font-weight: 600; }

.cart-continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: var(--taupe-dk);
  transition: color var(--transition);
}
.cart-continue:hover { color: var(--navy); }

@media (max-width: 768px) {
  .cart-layout { grid-template-columns: 1fr; }
  .cart-item { grid-template-columns: 72px 1fr auto; grid-template-rows: auto auto; gap: 12px; }
  .cart-item__subtotal { grid-column: 2; }
  .cart-item__remove { grid-column: 3; grid-row: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }

  .brand-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-strip__item:nth-child(2) { border-right: none; }
  .brand-strip__item:nth-child(3),
  .brand-strip__item:nth-child(4) { border-top: 1px solid var(--border); }

  .footer__top { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .region-btn { display: none; }
  .header__divider { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .hero { height: 90svh; min-height: 480px; }

  .categories__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px 200px;
  }

  .category-card--tall {
    grid-row: auto;
    grid-column: auto;
  }

  .products__grid { grid-template-columns: repeat(2, 1fr); }

  .brand-strip__grid { grid-template-columns: 1fr 1fr; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__img { height: 300px; }

  .newsletter__form { flex-direction: column; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }

  .products__grid { grid-template-columns: 1fr; }

  .brand-strip__grid { grid-template-columns: 1fr; }
  .brand-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
  .brand-strip__item:last-child { border-bottom: none; }

  .footer__links { grid-template-columns: 1fr 1fr; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}

/* ============================================
   COLOR SWATCHES — product cards
   ============================================ */
.color-swatches {
  display: flex;
  gap: 6px;
  margin: 8px 0 4px;
}

.color-swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
}

.color-swatch.active,
.color-swatch:hover {
  border-color: var(--navy);
  transform: scale(1.15);
}

/* Keep product-card__img-link full-width */
.product-card__img-link {
  display: block;
  position: relative;
}

/* ============================================
   PRODUCT DETAIL PAGE (PDP)
   ============================================ */
.pdp-breadcrumb {
  padding: 24px 0 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(16px, 5vw, 60px);
  padding-right: clamp(16px, 5vw, 60px);
  font-size: 13px;
  color: var(--taupe-dk);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pdp-breadcrumb a {
  color: var(--taupe-dk);
  text-decoration: none;
  transition: color 0.2s;
}

.pdp-breadcrumb a:hover { color: var(--navy); }

.pdp-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px clamp(16px, 5vw, 60px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.pdp-gallery {
  position: sticky;
  top: 100px;
}

.pdp-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.pdp-badge {
  top: 16px !important;
  left: 16px !important;
}

.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdp-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe-dk);
}

.pdp-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
}

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.pdp-price {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
}

.pdp-cad {
  font-size: 13px;
  font-weight: 400;
  color: var(--taupe-dk);
}

.pdp-price-orig {
  font-size: 18px;
  color: var(--taupe-dk);
  text-decoration: line-through;
}

.pdp-savings {
  font-size: 13px;
  font-weight: 600;
  color: #c0392b;
  background: rgba(192, 57, 43, 0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.pdp-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pdp-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-dk);
}

/* PDP color swatches */
.pdp-swatches {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pdp-swatch-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.pdp-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: block;
  border: 3px solid transparent;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
  transition: border-color 0.15s, transform 0.15s;
}

.pdp-swatch.selected,
.pdp-swatch-label:hover .pdp-swatch {
  border-color: var(--navy);
  transform: scale(1.08);
}

.pdp-swatch-name {
  font-size: 10px;
  color: var(--taupe-dk);
  text-align: center;
  max-width: 56px;
  line-height: 1.2;
}

.pdp-selected-color {
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

/* PDP qty */
.pdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

/* PDP action buttons */
.pdp-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.pdp-atc {
  flex: 1;
  min-width: 160px;
  text-align: center;
}

.pdp-back-btn {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.pdp-back-btn:hover {
  background: var(--navy);
  color: #fff;
}

.pdp-meta {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pdp-meta p {
  font-size: 13px;
  color: var(--taupe-dk);
}

/* PDP SKU */
.pdp-sku {
  font-size: 12px;
  color: var(--taupe-dk);
  letter-spacing: 0.04em;
}

.pdp-sku strong {
  color: var(--navy);
  font-weight: 600;
}

/* PDP image gallery */
.pdp-gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #f6f4f2;
}

.pdp-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}

.pdp-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: #f6f4f2;
  transition: border-color 0.15s;
  flex-shrink: 0;
}

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

.pdp-thumb.active,
.pdp-thumb:hover {
  border-color: var(--navy);
}

/* PDP features / specs list */
.pdp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.pdp-features li {
  font-size: 13px;
  color: var(--navy);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pdp-features li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--taupe-dk);
  flex-shrink: 0;
  margin-top: 2px;
}

/* product card with real photo */
.product-card__img--photo {
  background: #f6f4f2;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pdp-gallery { position: static; }
}

@media (max-width: 960px) {
  .hero__right { display: none; }
  .hero__left { max-width: 100%; }
}

/* Phone: hide text, show slideshow only */
@media (max-width: 640px) {
  .hero__left { display: none; }
  .hero__right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero-rotator {
    width: 100%;
    max-width: 420px;
  }
}

