/* ─── LIGHTSPEED RESET OVERRIDES (scoped to .redesign body) ─── */
body.redesign a { color: inherit; text-decoration: none; }
body.redesign a:hover { color: inherit; }
body.redesign ul, body.redesign ol { list-style: none; }
body.redesign img { max-width: 100%; display: block; }
body.redesign button { font-family: inherit; }
.rd-main { display: block; }

/* Flash messages (from snippets/messages.rain) */
.rd-main .messages { max-width: 1200px; margin: 16px auto; padding: 0 40px; }
.rd-main .messages ul { list-style: none; padding: 12px 16px; border-radius: 4px; margin-bottom: 8px; }
.rd-main .messages .success { background: #e8f5e8; color: #2d4a3e; border-left: 3px solid #2d4a3e; }
.rd-main .messages .error { background: #fdecea; color: #b5451b; border-left: 3px solid #b5451b; }
.rd-main .messages .info { background: #f5f0eb; color: #5a5a5a; border-left: 3px solid #d4a76a; }

/* Header search */
#site-header .rd-search input {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text-light);
  font-family: inherit;
  min-width: 140px;
}
#site-header .rd-search input:focus { outline: none; border-color: var(--sandstone); color: var(--text-primary); }

/* Footer links + newsletter + socials */
#site-footer .footer-col ul li { margin-bottom: 10px; }
#site-footer .footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
#site-footer .footer-col ul li a:hover { color: #fff; }
#site-footer .rd-newsletter { display: flex; gap: 8px; margin-bottom: 16px; }
#site-footer .rd-newsletter input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  font-family: inherit;
}
#site-footer .rd-newsletter input::placeholder { color: rgba(255,255,255,0.4); }
#site-footer .rd-newsletter button {
  background: var(--sandstone);
  color: var(--charcoal);
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
#site-footer .rd-newsletter button:hover { background: var(--rust); color: #fff; }
#site-footer .rd-socials { display: flex; gap: 12px; margin-top: 8px; }
#site-footer .rd-socials a {
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
#site-footer .rd-socials a:hover { color: #fff; border-color: var(--sandstone); background: rgba(212,167,106,0.12); }

/* ─── BASE / GLOBAL ─── */
:root {
  --stone: #f5f0eb;
  --sandstone: #d4a76a;
  --rust: #b5451b;
  --forest: #2d4a3e;
  --charcoal: #2c2c2c;
  --cream: #faf8f5;
  --white: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-light: #8a8a8a;
  --border: #e0dbd5;
  --shadow-soft: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ─── #announcement-bar ─── */
#announcement-bar {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
}
#announcement-bar .rotating-msg {
  display: inline-block;
  animation: fadeSlide 9s infinite;
}
@keyframes fadeSlide {
  0%, 30% { opacity: 1; transform: translateY(0); }
  33%, 63% { opacity: 0; transform: translateY(-8px); }
  66%, 96% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}
#announcement-bar .close-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.6;
}

/* ─── #site-header ─── */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
#site-header .header-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 8px 40px;
  font-size: 12px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
#site-header .header-top a {
  color: var(--text-light);
  text-decoration: none;
}
#site-header .header-logo-area {
  text-align: center;
  padding: 10px 40px;
}
#site-header .header-logo {
  max-height: 60px;
  width: auto;
}
#site-header .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 1px;
}
#site-header .logo-sub {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 2px;
}
#site-header .header-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 40px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#site-header .header-nav a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 4px 0;
  position: relative;
}
#site-header .header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: var(--transition);
}
#site-header .header-nav a:hover::after { width: 100%; }
#site-header .header-nav a.active { color: var(--rust); }
#site-header .header-nav a.active::after { width: 100%; }
#site-header .unchanged-label {
  display: inline-block;
  background: var(--stone);
  color: var(--text-light);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 8px;
  vertical-align: middle;
}

/* ─── #hero ─── */
#hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: linear-gradient(135deg, #c9a96e 0%, #8b5e3c 50%, #5a3825 100%);
}
#hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
  z-index: 1;
  pointer-events: none;
}
#hero .hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
  z-index: 0;
}
#hero .hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
#hero .hero-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 500;
}
#hero .hero-placeholder-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}
#hero .hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
  margin-top: -30px;
}
#hero .hero-logo {
  width: 90px;
  height: 90px;
  margin-bottom: 18px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: var(--transition);
}
#hero .hero-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (min-width: 768px) {
  #hero .hero-logo {
    width: 100px;
    height: 100px;
  }
  #hero .hero-content {
    margin-top: -20px;
  }
}
#hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #fff;
  font-weight: 600;
  line-height: 1.15;
  max-width: 600px;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
#hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  font-weight: 300;
  letter-spacing: 0.3px;
}
#hero .hero-cta {
  display: inline-block;
  background: var(--white) !important;
  color: var(--charcoal) !important;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
#hero .hero-cta:hover {
  background: var(--sandstone) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}
#hero .hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
#hero .hero-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  cursor: pointer;
}
#hero .hero-dots span.active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}
#hero .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  padding: 0;
}
#hero .hero-arrow:hover {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffffb0 !important;
}
#hero .hero-arrow-prev { left: 24px; }
#hero .hero-arrow-next { right: 24px; }
@media (max-width: 767px) {
  #hero .hero-arrow { width: 36px; height: 36px; }
  #hero .hero-arrow-prev { left: 12px; }
  #hero .hero-arrow-next { right: 12px; }
}

/* ─── #brands ─── */
#brands {
  position: relative;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
#brands .brands-bar {
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
#brands .brands-bar::before,
#brands .brands-bar::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
#brands .brands-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
#brands .brands-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
#brands .brands-bar-inner {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
}
#brands .brands-bar-inner:hover {
  animation-play-state: paused;
}
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
#brands .brand-logo {
  flex-shrink: 0;
  transition: var(--transition);
  opacity: 0.6;
}
#brands .brand-logo:hover {
  opacity: 1;
}
#brands .brand-logo img {
  height: 80px;
  width: auto;
  display: block;
}

/* ─── SHARED: .section-label (used in #categories + #trending) ─── */
.section-label {
  text-align: center;
  padding: 48px 40px 8px;
}
.section-label .overline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sandstone);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-label h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--charcoal);
}

/* ─── #categories ─── */
#categories .category-grid {
  padding: 24px 40px 56px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: end;
}
#categories .cat-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 1 / 1.15;
  background: var(--stone);
  transition: var(--transition);
}
#categories .cat-tile.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1.15;
}
#categories .cat-tile-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#categories .cat-tile:hover .cat-tile-bg {
  transform: scale(1.06);
}
#categories .cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%);
  transition: var(--transition);
}
#categories .cat-tile:hover .cat-tile-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}
#categories .cat-tile-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: #fff;
}
#categories .cat-tile-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}
#categories .cat-tile-content .count {
  font-size: 12px;
  opacity: 0.75;
  font-weight: 300;
}
#categories .cat-tile-content .shop-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
#categories .cat-tile:hover .shop-link {
  opacity: 1;
  transform: translateY(0);
}
#categories .shop-link-arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: #fff;
  position: relative;
}
#categories .shop-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
}
#categories .cat-tile-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* placeholder image patterns */
#categories .cat-tile:nth-child(1) .cat-tile-bg { background: linear-gradient(135deg, #c4956a, #8b5e3c); }
#categories .cat-tile:nth-child(2) .cat-tile-bg { background: linear-gradient(135deg, #7a9e7e, #3d6b47); }
#categories .cat-tile:nth-child(3) .cat-tile-bg { background: linear-gradient(135deg, #b07c5a, #6b4226); }
#categories .cat-tile:nth-child(4) .cat-tile-bg { background: linear-gradient(135deg, #8b7355, #5a4630); }
#categories .cat-tile:nth-child(5) .cat-tile-bg { background: linear-gradient(135deg, #a08060, #6b5040); }
#categories .cat-tile:nth-child(6) .cat-tile-bg { background: linear-gradient(135deg, #6a8fa0, #3a5a6a); }
#categories .cat-tile:nth-child(7) .cat-tile-bg { background: linear-gradient(135deg, #c4956a, #8b6e3c); }
#categories .cat-tile:nth-child(8) .cat-tile-bg { background: linear-gradient(135deg, #9a7a5a, #6b5040); }

/* ─── #trending ─── */
#trending {
  background: var(--cream);
  padding: 56px 40px 64px;
}
#trending .trending-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 36px;
}
#trending .trending-tabs button {
    background: none;
    border: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light) !important;
    cursor: pointer;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    background: transparent !important;
}
#trending .trending-tabs button.active {
  color: var(--charcoal);
  border-bottom-color: var(--rust);
}
#trending .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
#trending .product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-soft);
}
#trending .product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
#trending .product-card-img {
  aspect-ratio: 1;
  background: var(--stone);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#trending .product-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#trending .product-card-img .placeholder-icon {
  width: 40px;
  height: 40px;
  border: 2px dashed var(--border);
  border-radius: 50%;
}
#trending .product-card-img .sale-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rust);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}
#trending .product-card-info {
  padding: 16px 18px 20px;
}
#trending .product-card-info h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
}
#trending .product-card-info .price {
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
}
#trending .product-card-info .price .old {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  margin-right: 6px;
  font-size: 13px;
}

/* ─── #promo ─── */
#promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}
#promo .promo-split-img {
  background: linear-gradient(135deg, #a08060, #5a3825);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  min-height: 400px;
}
#promo .promo-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 72px;
  background: var(--stone);
}
#promo .promo-split-content .overline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sandstone);
  font-weight: 600;
  margin-bottom: 12px;
}
#promo .promo-split-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 16px;
    text-align: left;
    padding: 0;
}
#promo .promo-split-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 400px;
}
#promo .promo-cta {
  display: inline-block;
  background: var(--charcoal);
  color: #fff;
  padding: 13px 36px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  align-self: flex-start;
}
#promo .promo-cta:hover {
  background: var(--rust);
  transform: translateY(-2px);
}

/* ─── #trust-strip ─── */
#trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#trust-strip .trust-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
#trust-strip .trust-item:last-child { border-right: none; }
#trust-strip .trust-icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  border: 1.5px solid var(--sandstone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sandstone);
  font-size: 16px;
}
#trust-strip .trust-item h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  color: var(--charcoal);
}
#trust-strip .trust-item p {
  font-size: 12px;
  color: var(--text-light);
}

/* ─── #site-footer ─── */
#site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 56px 40px 32px;
}
#site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
#site-footer .footer-col h5 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
#site-footer .footer-col .line {
  height: 8px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 10px;
  border-radius: 2px;
  width: 70%;
}
#site-footer .footer-col .line.short { width: 50%; }
#site-footer .footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ─── #page-hero ─── */
#page-hero {
  position: relative;
  height: 420px;
  overflow: hidden;
  background: linear-gradient(135deg, #5a3825 0%, #8b5e3c 40%, #c9a96e 100%);
}
#page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transition: transform 0.6s ease;
}
#page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.55));
  z-index: 1;
}
#page-hero .page-hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
#page-hero .breadcrumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
#page-hero .breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
}
#page-hero .breadcrumb a:hover { color: #fff; }
#page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #fff;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
#page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  letter-spacing: 0.3px;
  max-width: 520px;
}

/* ─── #story ─── */
#story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
#story .story-image {
  background: linear-gradient(135deg, #a08060, #5a3825);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
#story .story-image-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  text-align: center;
}
#story .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--rust);
  line-height: 1;
}
#story .badge-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 4px;
}
#story .story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 72px;
  background: var(--cream);
}
#story .story-content .overline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sandstone);
  font-weight: 600;
  margin-bottom: 12px;
}
#story .story-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  text-align:left;
}
#story .story-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 460px;
}
#story .highlight {
  font-style: italic;
  color: var(--charcoal);
  font-weight: 500;
  border-left: 3px solid var(--sandstone);
  padding-left: 16px;
  margin: 24px 0;
}

/* ─── #values ─── */
#values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#values .value-item {
  padding: 40px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
#values .value-item:last-child { border-right: none; }
#values .value-item:hover {
  background: var(--cream);
}
#values .value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border: 1.5px solid var(--sandstone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sandstone);
  font-size: 20px;
  transition: var(--transition);
}
#values .value-item:hover .value-icon {
  background: var(--sandstone);
  color: var(--white);
}
#values .value-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}
#values .value-item p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── #flagship ─── */
#flagship .section-label {
  padding: 64px 40px 12px;
}
#flagship .section-label h2 {
  font-size: 36px;
}
#flagship .section-label p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
#flagship .flagship-section {
  padding: 48px 40px 64px;
  max-width: 1200px;
  margin: 0 auto;
}
#flagship .flagship-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  min-height: 420px;
}
#flagship .flagship-card-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
#flagship .flagship-logo {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#flagship .flagship-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
#flagship .flagship-card-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#flagship .flagship-card-body .overline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 700;
  margin-bottom: 10px;
}
#flagship .flagship-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
}
#flagship .flagship-card-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
#flagship .store-address {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
#flagship .store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition);
}
#flagship .store-link:hover { color: var(--rust); }

/* ─── #stores ─── */
#stores {
  padding: 12px 40px 72px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
#stores .store-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
#stores .store-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}
#stores .store-card-header {
  height: 180px;
  background: var(--stone);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
#stores .store-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0) 60%);
}
#stores .store-card-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  bottom: -32px;
  left: 24px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}
#stores .store-card-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
#stores .store-card-body {
  padding: 44px 24px 24px;
}
#stores .store-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
#stores .store-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
#stores .store-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
#stores .store-meta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
#stores .store-card-cta .store-card-header {
  height: 180px;
}
#stores .store-card-cta .store-card-body {
  padding: 24px 24px 28px;
}
#stores .store-card-cta .store-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  text-decoration: none;
  transition: var(--transition);
}
#stores .store-card-cta .store-link:hover { color: var(--rust); }

/* ─── #visit-cta ─── */
#visit-cta {
  background: var(--charcoal);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#visit-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&q=60&fit=crop') center/cover no-repeat;
  opacity: 0.15;
}
#visit-cta .visit-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
#visit-cta .overline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sandstone);
  font-weight: 600;
  margin-bottom: 16px;
}
#visit-cta h2 {
  color:#fff;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}
#visit-cta p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 36px;
}
#visit-cta .visit-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
#visit-cta .cta-btn {
  display: inline-block;
  padding: 14px 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
#visit-cta .cta-btn-primary {
  background: var(--white);
  color: var(--charcoal);
}
#visit-cta .cta-btn-primary:hover {
  background: var(--sandstone);
  color: #fff;
  transform: translateY(-2px);
}
#visit-cta .cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
#visit-cta .cta-btn-outline:hover {
  border-color: #fff;
  transform: translateY(-2px);
}

/* ─── UTILITIES (global) ─── */
.store-link-arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.store-link-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-top: 1.5px solid currentColor;
  transform: rotate(45deg);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.7s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #categories .category-grid { grid-template-columns: repeat(2, 1fr); padding: 24px 20px 40px; }
  #categories .cat-tile.wide { grid-column: span 2; }
  #trending .product-grid { grid-template-columns: repeat(2, 1fr); }
  #promo { grid-template-columns: 1fr; }
  #promo .promo-split-content { padding: 40px 28px; }
  #trust-strip { grid-template-columns: 1fr; }
  #trust-strip .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  #site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  #hero h1 { font-size: 32px; }
  #page-hero { height: 340px; }
  #page-hero h1 { font-size: 36px; }
  #story { grid-template-columns: 1fr; }
  #story .story-content { padding: 40px 28px; }
  #values { grid-template-columns: repeat(2, 1fr); }
  #values .value-item { border-bottom: 1px solid var(--border); }
  #flagship .flagship-card { grid-template-columns: 1fr; }
  #flagship .flagship-card-img { min-height: 280px; }
  #stores { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #categories .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; padding: 16px 16px 32px; }
  #categories .cat-tile.wide { grid-column: span 2; }
  #categories .cat-tile { aspect-ratio: 1; }
  #trending .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  #site-header .header-nav { gap: 16px; font-size: 11px; flex-wrap: wrap; }
  #brands .brands-bar-inner { gap: 30px; }
  #brands .brand-logo img { height: 60px; }
  #stores { grid-template-columns: 1fr; padding: 12px 20px 48px; }
  #values { grid-template-columns: 1fr; }
  #values .value-item { border-right: none; }
  #page-hero h1 { font-size: 28px; }
  #visit-cta h2 { font-size: 28px; }
  .section-label h2 { font-size: 28px; }
  #story .story-content h2 { font-size: 28px; }
  #flagship .flagship-card-body { padding: 32px 24px; }
  #flagship .flagship-card-body h3 { font-size: 22px; }
}