:root {
  --pink: #fbe0ea;
  --pink-soft: #fdf0f5;
  --pink-deep: #e88bab;
  --rose: #d6467e;
  --rose-deep: #b8335f;
  --white: #ffffff;
  --ink: #3a2530;
  --ink-soft: #7a5c68;
  --gold: #b8925a;
  --gold-deep: #9c7a45;
  --silver: #9aa0a6;
  --silver-deep: #7c8288;
  --ice: #8fc6d8;
  --ice-deep: #4f8ba3;
  --border: #f3d3e0;
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--pink);
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0;
  color: var(--ink);
}

p { margin: 0; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Welcome splash — its own page (index.html), links through to shop.html */
.welcome {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--pink-deep) 0%, var(--pink) 100%);
  padding: 40px 24px;
}

.welcome-hours {
  margin-top: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.welcome-inner {
  max-width: 640px;
}

.store-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 22px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fb996;
  box-shadow: 0 0 0 3px rgba(143, 185, 150, 0.3);
}

.store-status.closed .status-dot {
  background: #c96b6b;
  box-shadow: 0 0 0 3px rgba(201, 107, 107, 0.25);
}

.welcome h1 {
  display: flex;
  flex-direction: column;
}

.letters-line {
  display: block;
  opacity: 1;
  transform: none;
  animation: none;
}

.letter {
  display: inline-block;
  white-space: pre;
  opacity: 0;
  animation: letterIn 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes letterIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.82);
    filter: blur(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.welcome .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--rose-deep);
  margin-bottom: 18px;
}

.welcome h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.15;
}

.welcome-sub {
  max-width: 480px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.btn-large {
  margin-top: 40px;
  padding: 18px 44px;
  font-size: 1.05rem;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Category sub-nav bar */
.category-bar {
  position: sticky;
  top: 76px;
  z-index: 90;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.category-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 34px;
  min-height: 48px;
  align-items: center;
  padding: 8px 24px;
}

.category-link {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-link:hover {
  color: var(--rose-deep);
}

/* Six categories don't fit at mid widths — tighten before wrapping */
@media (max-width: 900px) {
  .category-bar-inner {
    gap: 18px;
  }
  .category-link {
    font-size: 0.74rem;
    letter-spacing: 0.04em;
  }
}

.new-link {
  color: var(--rose-deep);
}

.new-link::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo span { color: var(--rose); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--rose-deep) !important; }

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

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 8px;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--rose-deep);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--rose);
  color: var(--rose-deep);
}

.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
}


/* Collections */
.collection {
  padding: 90px 0;
}

.collection.alt {
  background: var(--pink-soft);
}

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head p {
  color: var(--ink-soft);
}

/* Spotlight hero card */
.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1180px;
  margin: 0 auto 50px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  align-items: stretch;
  transition: box-shadow 0.25s ease;
}

.spotlight-card:hover {
  box-shadow: 0 18px 40px rgba(214, 70, 126, 0.14);
}

.spotlight-image {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: var(--pink-soft);
}

.spotlight-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-image img {
  transform: scale(1.06);
}

.spotlight-info {
  padding: 40px 46px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: left;
}

.spotlight-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rose-deep);
}

.spotlight-info h3 {
  font-size: 1.9rem;
  font-weight: 600;
}

.spotlight-desc {
  color: var(--ink-soft);
  max-width: 380px;
  margin: 4px 0 2px;
}

.spotlight-info .price {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 4px;
}

/* Collection layout: filter sidebar + product grid */
.collection-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
}

.filter-sidebar h4 {
  font-size: 1.05rem;
  font-weight: 600;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  font-weight: 600;
}

.filter-sidebar .chip {
  width: 100%;
  text-align: left;
}

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

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  cursor: pointer;
}

.spotlight-card {
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(214, 70, 126, 0.12);
}

.product-image {
  height: 220px;
  border-radius: 10px;
  margin-bottom: 18px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 12px;
  overflow: hidden;
  background: var(--pink-soft);
}

.product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.material-badge {
  position: relative;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.material-badge.gold { color: var(--gold-deep); }
.material-badge.silver { color: var(--silver-deep); }
.material-badge.moissanite { color: var(--ice-deep); }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
}

.product-badge.new { background: var(--rose); }
.product-badge.bestseller { background: var(--gold-deep); }

.wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.wishlist-btn:hover {
  transform: scale(1.1);
}

.wishlist-btn.active {
  color: var(--rose);
}

.wishlist-btn.active svg {
  fill: var(--rose);
}

.product-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.product-rating .stars {
  color: var(--gold-deep);
}

.product-rating .rating-value {
  color: var(--ink);
  font-weight: 600;
}

.product-card .price {
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 14px;
}

.product-card .add-to-cart {
  width: 100%;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.product-card .add-to-cart.added {
  background: var(--rose);
  color: var(--white);
}

/* Filter chips + sort (used inside .filter-sidebar) */
.chip {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}

.chip.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.sort-select {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.sort-select:focus {
  outline: none;
  border-color: var(--rose);
}

/* Trust bar */
.trust-bar {
  background: var(--pink-soft);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  min-width: 190px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.trust-item svg {
  color: var(--rose-deep);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials {
  padding: 90px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
}

.testimonial-stars {
  color: var(--gold-deep);
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  color: var(--ink);
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.55;
}

.testimonial-author {
  font-weight: 600;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  padding: 80px 0;
  text-align: center;
}

.newsletter-inner h2 {
  color: var(--white);
}

.newsletter-inner > p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin: 12px auto 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
}

.newsletter-form .btn-primary {
  background: var(--white);
  color: var(--rose-deep);
}

.newsletter-form .btn-primary:hover {
  background: var(--pink-soft);
}

.newsletter-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
  min-height: 1.2em;
}

/* About */
.about {
  padding: 90px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.1rem;
  margin: 10px 0 18px;
}

.about-text p:last-child {
  color: var(--ink-soft);
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.stat {
  border-left: 3px solid var(--rose);
  padding-left: 20px;
}

.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
}

.stat span {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Contact */
.contact {
  background: var(--pink-soft);
  padding: 90px 0;
}

.contact-info {
  max-width: 640px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.contact-info-item a {
  color: var(--rose-deep);
  font-weight: 600;
}

.contact-info-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input, textarea {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  resize: vertical;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--rose);
}

.contact-form .btn {
  align-self: flex-start;
}

.form-note {
  font-size: 0.88rem;
  color: var(--rose-deep);
  min-height: 1.2em;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  .spotlight-image {
    min-height: 260px;
  }
  .spotlight-info {
    padding: 32px 28px;
  }
  .collection-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .filter-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
  }
  .filter-sidebar h4 {
    display: none;
  }
  .filter-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }
  .filter-sidebar .chip {
    width: auto;
  }
  .sort-select {
    width: auto;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .menu-toggle {
    display: flex;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

/* Overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 37, 48, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}

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

/* Cart drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 92vw);
  background: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-head h3 {
  font-size: 1.3rem;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 10px 24px;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.cart-item-price {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--pink-soft);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--rose-deep);
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: auto;
}

.wishlist-item-add {
  background: var(--rose);
  color: var(--white);
  border: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.wishlist-item-add:hover {
  background: var(--rose-deep);
}

.cart-empty {
  display: none;
  text-align: center;
  color: var(--ink-soft);
  padding: 60px 24px;
}

.cart-footer {
  padding: 20px 24px 26px;
  border-top: 1px solid var(--border);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.cart-checkout-btn {
  width: 100%;
  text-align: center;
}

/* Checkout modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58, 37, 48, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 400;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.checkout-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  width: 100%;
  max-width: 480px;
  max-height: 88vh;
  overflow-y: auto;
}

.checkout-modal h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.checkout-note {
  color: var(--ink-soft);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.checkout-summary {
  background: var(--pink-soft);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 22px;
  font-size: 0.88rem;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--ink-soft);
}

.checkout-summary-row.total {
  color: var(--ink);
  font-weight: 600;
  border-top: 1px solid var(--border);
  margin-top: 6px;
  padding-top: 10px;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checkout-form .btn-large {
  margin-top: 6px;
  width: 100%;
  text-align: center;
}

.checkout-success {
  display: none;
  text-align: center;
  padding: 20px 0 6px;
}

.checkout-success h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.checkout-success p {
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* Quick view modal */
.quickview-modal {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quickview-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-soft);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quickview-image {
  position: relative;
  min-height: 340px;
  background: var(--pink-soft);
}

.quickview-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quickview-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.quickview-info h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.quickview-desc {
  color: var(--ink-soft);
  line-height: 1.65;
}

.quickview-info .price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  margin-top: 4px;
}

.quickview-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 6px;
}

.quickview-wishlist {
  position: static;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  background: var(--white);
}

@media (max-width: 720px) {
  .quickview-modal {
    grid-template-columns: 1fr;
  }
  .quickview-image {
    min-height: 260px;
  }
  .quickview-info {
    padding: 32px 26px;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.88rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 500;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 720px) {
  .header-actions {
    gap: 8px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.4); }
  100% { transform: scale(1); }
}

@keyframes addPulse {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.product-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.product-grid .reveal:nth-child(4) { transition-delay: 0.24s; }

.cart-count.bump {
  animation: bump 0.35s ease;
}

.add-to-cart.added {
  animation: addPulse 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {
  .welcome-inner,
  .letter,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .cart-count.bump,
  .add-to-cart.added {
    animation: none !important;
  }
}

/* ---------------- Personal shopper chat (demo) ---------------- */

.chat-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 420;
  box-shadow: 0 10px 28px rgba(214, 70, 126, 0.38);
  transition: transform 0.25s ease, background 0.25s ease;
}

.chat-launcher:hover {
  background: var(--rose-deep);
  transform: translateY(-3px);
}

.chat-launcher-close { display: none; }

.chat-launcher.open .chat-launcher-open { display: none; }
.chat-launcher.open .chat-launcher-close { display: block; }

.chat-launcher-dot {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  animation: chatPing 2s ease-in-out infinite;
}

.chat-launcher-dot.hide { display: none; }

@keyframes chatPing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 94px;
  width: min(370px, calc(100vw - 32px));
  height: min(540px, calc(100vh - 140px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  z-index: 420;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(58, 37, 48, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  transform-origin: bottom right;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.chat-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--pink-deep) 100%);
  color: var(--white);
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.chat-head-info { flex: 1; min-width: 0; }

.chat-head-info h3 {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  opacity: 0.9;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ee08a;
}

.chat-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  opacity: 0.85;
}

.chat-close:hover { opacity: 1; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background: var(--pink-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 82%;
  padding: 11px 15px;
  font-size: 0.88rem;
  line-height: 1.5;
  border-radius: 16px;
  animation: chatIn 0.28s ease both;
}

.chat-msg.bot {
  align-self: flex-start;
  background: var(--white);
  color: var(--ink);
  border-bottom-left-radius: 5px;
  border: 1px solid var(--border);
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--rose);
  color: var(--white);
  border-bottom-right-radius: 5px;
}

@keyframes chatIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-typing {
  align-self: flex-start;
  display: flex;
  gap: 4px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  border-bottom-left-radius: 5px;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pink-deep);
  animation: chatDot 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes chatDot {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.45; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.chat-chips {
  display: flex;
  gap: 8px;
  padding: 12px 18px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.chat-chips::-webkit-scrollbar { display: none; }

.chat-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-chip:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px 4px;
}

.chat-input-row input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.86rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input-row input:focus { border-color: var(--pink-deep); }

.chat-send {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.chat-send:hover { background: var(--rose-deep); }

.chat-disclaimer {
  padding: 6px 18px 12px;
  font-size: 0.68rem;
  color: var(--ink-soft);
  text-align: center;
}

@media (max-width: 720px) {
  .chat-launcher {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .chat-panel {
    right: 16px;
    left: 16px;
    bottom: 80px;
    width: auto;
    height: min(500px, calc(100vh - 120px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .chat-launcher-dot,
  .chat-typing span {
    animation: none !important;
  }
  .chat-msg {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================================================
   Multi-page shop — slideshow, category tiles, faceted catalog
   ================================================================== */

/* ---------------- Nav active states ---------------- */

.nav-links a.active,
.category-link.active {
  color: var(--rose-deep);
}

.category-link.active {
  position: relative;
}

.category-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: var(--rose);
}

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

.hero-slideshow {
  position: relative;
  height: min(74vh, 640px);
  min-height: 420px;
  overflow: hidden;
  background: var(--pink-soft);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  transition: opacity 0.9s ease, visibility 0.9s ease, transform 7s ease-out;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Dark wash so the type stays readable over any photo */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(58, 37, 48, 0.78) 0%, rgba(58, 37, 48, 0.45) 55%, rgba(58, 37, 48, 0.12) 100%);
}

.hero-slide-inner {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-slide-inner > * {
  max-width: 600px;
}

.hero-slide-inner .eyebrow {
  color: var(--pink);
  margin-bottom: 14px;
}

.hero-slide-inner h2 {
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  margin-bottom: 30px;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(58, 37, 48, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-arrow:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot.active {
  width: 26px;
  background: var(--white);
}

/* ---------------- Shop home sections ---------------- */

.shop-section {
  padding: 78px 0;
}

.shop-section.alt {
  background: var(--pink-soft);
}

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

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

.category-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(58, 37, 48, 0.13);
}

.category-tile-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.category-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-tile:hover .category-tile-img img {
  transform: scale(1.07);
}

.category-tile-body {
  padding: 16px 18px 20px;
}

.category-tile-body h3 {
  font-size: 1.15rem;
  margin-bottom: 5px;
}

.category-tile-body p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.category-tile-count {
  display: block;
  margin-top: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

/* ---------------- Catalog page ---------------- */

.catalog-hero {
  background: var(--pink-soft);
  border-bottom: 1px solid var(--border);
  padding: 46px 0 42px;
}

.catalog-hero h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 10px;
}

.catalog-hero p {
  color: var(--ink-soft);
  max-width: 640px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.breadcrumb a:hover {
  color: var(--rose-deep);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 262px 1fr;
  gap: 36px;
  align-items: start;
  padding-top: 38px;
  padding-bottom: 78px;
}

/* Clear both sticky bars: 76px header + 48px category nav */
.catalog-layout .filter-sidebar {
  top: 140px;
  max-height: calc(100vh - 160px);
  overflow-y: auto;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.result-count {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-right: auto;
}

.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

.filter-toggle.active {
  border-color: var(--rose);
  color: var(--rose-deep);
}

/* ---------------- Sidebar facets ---------------- */

.filter-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.filter-clear {
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.76rem;
  color: var(--rose-deep);
  text-decoration: underline;
  cursor: pointer;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.86rem;
  color: var(--ink);
  cursor: pointer;
}

.filter-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--rose);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-check span:first-of-type {
  flex: 1;
}

.filter-count {
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.size-chip {
  min-width: 38px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.18s ease;
}

.size-chip:hover {
  border-color: var(--rose);
  color: var(--rose-deep);
}

.size-chip.active {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}

.price-range {
  width: 100%;
  accent-color: var(--rose);
  cursor: pointer;
}

.price-readout {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.price-readout strong {
  color: var(--rose-deep);
}

/* ---------------- Active filter pills ---------------- */

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filters.has-pills {
  margin-bottom: 20px;
}

.active-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: 999px;
  border: 1px solid var(--rose);
  background: var(--pink-soft);
  color: var(--rose-deep);
  font-family: inherit;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.active-pill:hover {
  background: var(--rose);
  color: var(--white);
}

.active-pill span {
  font-size: 1rem;
  line-height: 1;
}

.no-results {
  display: none;
  padding: 60px 20px;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------------- Product card additions ---------------- */

.product-meta {
  font-size: 0.76rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

/* Top-left is the new/bestseller badge, bottom-left the metal — so this goes right */
.stock-flag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(58, 37, 48, 0.82);
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card.is-out .product-image img {
  filter: grayscale(0.55);
  opacity: 0.75;
}

.product-card .btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.quickview-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 18px;
  margin: 0 0 18px;
  font-size: 0.82rem;
}

.quickview-specs dt {
  color: var(--ink-soft);
}

.quickview-specs dd {
  margin: 0;
  color: var(--ink);
}

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

.site-footer {
  padding: 54px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding-bottom: 34px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 14px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

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

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-blurb {
  max-width: 300px;
  line-height: 1.6;
}

.footer-hours {
  margin-top: 12px;
}

.footer-base {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

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

@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .catalog-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .filter-toggle {
    display: inline-flex;
  }

  /* Sidebar collapses behind the Filters button */
  .filter-sidebar {
    display: none;
    position: static;
    margin-bottom: 22px;
  }

  .filter-sidebar.open {
    display: flex;
  }

  .hero-slideshow {
    height: auto;
    min-height: 0;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    min-height: 440px;
  }

  .hero-slide.active {
    display: flex;
    transform: none;
  }

  .hero-arrow.prev { left: 10px; }
  .hero-arrow.next { right: 10px; }
}

@media (max-width: 620px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-section {
    padding: 54px 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .category-tile,
  .category-tile-img img {
    transition: none !important;
  }
}

/* ---------------- Store map ---------------- */

.map-section {
  padding: 78px 0;
  background: var(--pink-soft);
  border-top: 1px solid var(--border);
}

.map-wrap {
  display: grid;
  grid-template-columns: 1fr 330px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.store-map {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
}

.map-card {
  display: flex;
  flex-direction: column;
  padding: 34px 28px;
}

.map-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.map-card address,
.contact-info-item address {
  font-style: normal;
  line-height: 1.6;
}

.map-card address {
  color: var(--ink-soft);
  margin-bottom: 20px;
}

.map-line {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
}

.map-line strong {
  color: var(--ink);
  font-weight: 600;
}

.map-line a:hover {
  color: var(--rose-deep);
}

.map-directions {
  margin-top: 24px;
  text-align: center;
}

.map-larger {
  margin-top: 12px;
  font-size: 0.78rem;
  text-align: center;
  color: var(--ink-soft);
  text-decoration: underline;
}

.map-larger:hover {
  color: var(--rose-deep);
}

@media (max-width: 860px) {
  .map-wrap {
    grid-template-columns: 1fr;
  }
  .store-map {
    height: 320px;
  }
  .map-section {
    padding: 54px 0;
  }
}

/* Contact page carries longer policy copy than the original two-item row,
   so give it a card grid instead of one centered line. */
body[data-page="contact"] .contact-info {
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 46px;
}

body[data-page="contact"] .contact-info-item {
  text-align: left;
  gap: 7px;
  padding: 20px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

body[data-page="contact"] .contact-info-item span:not(.contact-info-label),
body[data-page="contact"] .contact-info-item address {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
