/* Michelle's Boutique - Tech & Repairs | Beauty Finds */

:root {
  --color-cream: #faf8f5;
  --color-sand: #f0ebe3;
  --color-rose: #c9a9a6;
  --color-accent: #7a6348;
  --color-slate: #5a6570;
  --color-charcoal: #2a2724;
  --color-soft-black: #1c1917;
  --color-border: rgba(42, 39, 36, 0.1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --shadow-soft: 0 2px 12px rgba(28, 25, 23, 0.05);
  --shadow-hover: 0 8px 28px rgba(28, 25, 23, 0.08);
  --transition: 0.25s ease;
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-charcoal);
  background: var(--color-cream);
  overflow-x: hidden;
  padding-top: var(--header-height);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(253, 251, 249, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 107, 122, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--color-charcoal);
}

.logo-img {
  height: 52px;
  width: auto;
  max-height: 56px;
  object-fit: contain;
  display: block;
  /* Blend white background with header so it doesn't show as a white box */
  mix-blend-mode: multiply;
}

.logo-img.failed {
  display: none;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo.logo-fallback .logo-img {
  display: none;
}

.logo.logo-fallback .logo-text {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  text-decoration: none;
  transition: color var(--transition);
}

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

/* Closed-day notice (Sundays & public holidays) */
.opening-notice {
  position: sticky;
  top: var(--header-height);
  z-index: 99;
  background: #3d3428;
  color: #faf8f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.opening-notice[hidden] {
  display: none !important;
}

.opening-notice-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
}

.opening-notice-text {
  flex: 1;
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: center;
  margin: 0;
}

.opening-notice-text strong {
  font-weight: 600;
}

.opening-notice-dismiss {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #faf8f5;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  transition: background var(--transition);
}

.opening-notice-dismiss:hover {
  background: rgba(255, 255, 255, 0.22);
}

.checkout-closed-note {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.85rem;
  background: rgba(122, 99, 72, 0.12);
  border-left: 3px solid var(--color-accent);
  font-size: 0.88rem;
  color: var(--color-charcoal);
}

/* Honeypot — hidden from visitors, bots often fill it */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-facebook {
  color: var(--color-slate) !important;
}

.nav-admin {
  color: var(--color-slate) !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-charcoal);
  transition: var(--transition);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1a1412;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: #1a1412;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.hero-slide img,
.hero-slide--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1);
  transition: transform 8s ease-out;
}

.hero-slide.active img {
  transform: scale(1.06);
}

.hero-slide--video {
  background: #1a1412;
}

.hero-slide--contain img {
  object-fit: contain;
  object-position: center center;
  padding: 1.5rem 2rem;
  background: linear-gradient(145deg, #faf7f4 0%, #e8e2da 100%);
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(26, 20, 18, 0.88) 0%, rgba(26, 20, 18, 0.72) 28%, rgba(26, 20, 18, 0.35) 52%, rgba(26, 20, 18, 0.12) 72%, rgba(26, 20, 18, 0.05) 100%),
    linear-gradient(180deg, transparent 60%, rgba(26, 20, 18, 0.25) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 4rem;
  max-width: 620px;
  color: #fdfbf9;
}

.hero-tagline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e8c4d4;
  margin-bottom: 1rem;
}

.hero-highlight {
  font-weight: 500;
  color: rgba(253, 251, 249, 0.92);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 34rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fdfbf9;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(253, 251, 249, 0.82);
  margin-bottom: 1rem;
  line-height: 1.6;
  max-width: 32rem;
}

.hero .btn-outline {
  border-color: rgba(253, 251, 249, 0.65);
  color: #fdfbf9;
}

.hero .btn-outline:hover {
  background: rgba(253, 251, 249, 0.12);
  border-color: #fdfbf9;
  color: #fdfbf9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-charcoal);
  color: var(--color-cream);
  border: 2px solid var(--color-charcoal);
}

.btn-primary:hover {
  background: var(--color-soft-black);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
}

.btn-outline:hover {
  background: var(--color-charcoal);
  color: var(--color-cream);
}

/* Services - Tech & Repairs */
.services {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header--left {
  text-align: left;
  margin-bottom: 0;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-soft-black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 1rem;
  color: var(--color-slate);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.service-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-info {
  padding: 1.5rem;
}

.service-info h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.75rem;
}

.service-info p {
  font-size: 0.95rem;
  color: var(--color-slate);
  line-height: 1.7;
  white-space: pre-wrap;
}

.service-info ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  color: var(--color-slate);
  font-size: 0.95rem;
}

.service-info ul li {
  margin-bottom: 0.35rem;
}

/* Beauty Finds */
.beauty {
  padding: 6rem 1.5rem;
  background: var(--color-sand);
}

.beauty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}

.beauty-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.beauty-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.beauty-image {
  aspect-ratio: 1;
  overflow: hidden;
}

.beauty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.beauty-card:hover .beauty-image img {
  transform: scale(1.05);
}

.beauty-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  padding: 1.25rem;
  text-align: center;
}

.beauty-cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.revlon-feature {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem;
}

.revlon-feature-inner {
  background: linear-gradient(135deg, #fdf5f8 0%, #f8e8ef 100%);
  border: 1px solid #e8c4d4;
  border-radius: 16px;
  padding: 1.75rem 2rem;
}

.revlon-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8B2252;
  background: #fff;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin: 0 0 0.5rem;
}

.revlon-feature-text h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: #8B2252;
  margin: 0 0 0.5rem;
}

.revlon-feature-text p {
  margin: 0 0 1.25rem;
  color: #555;
  max-width: 52ch;
}

.revlon-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Store */
.store {
  padding: 6rem 1.5rem;
  background: var(--color-cream);
}

.store-search-wrap {
  flex: 1;
  min-width: 200px;
  margin: 0;
}

.store-toolbar {
  max-width: 1200px;
  margin: 1.25rem auto 0;
}

.store-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
}

.store-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.store-category-chip {
  border: 1px solid rgba(92, 107, 122, 0.25);
  background: white;
  color: var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.store-category-chip:hover {
  border-color: var(--color-slate);
}

.store-category-chip.active {
  background: var(--color-charcoal);
  border-color: var(--color-charcoal);
  color: white;
}

.chip-count {
  opacity: 0.75;
  font-size: 0.8em;
}

.store-sort-label {
  display: flex;
  align-items: center;
}

.store-sort {
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  border: 1px solid rgba(92, 107, 122, 0.25);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  cursor: pointer;
}

.store-sort:focus {
  outline: none;
  border-color: var(--color-slate);
  box-shadow: 0 0 0 2px rgba(92, 107, 122, 0.2);
}

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

.store-revlon-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 auto 1.25rem;
  padding: 0.75rem 1.25rem;
  max-width: 640px;
  background: #fdf5f8;
  border: 1px solid #e8c4d4;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #444;
}

.store-revlon-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: #8B2252;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.store-brochure-link {
  color: #8B2252;
  font-weight: 600;
  text-decoration: none;
}

.store-brochure-link:hover {
  text-decoration: underline;
}

.store-search {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid rgba(92, 107, 122, 0.25);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%235c6b7a' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 0.75rem center;
}

.store-search:focus {
  outline: none;
  border-color: var(--color-slate);
  box-shadow: 0 0 0 2px rgba(92, 107, 122, 0.2);
}

.store-search::placeholder {
  color: var(--color-slate);
  opacity: 0.8;
}

.store-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 400px);
  gap: 2rem;
  align-items: start;
}

.store-status {
  text-align: center;
  font-size: 0.9rem;
  color: #8B2252;
  font-weight: 600;
  margin: 0.5rem 0 0;
  min-height: 1.25rem;
}

.store-status--ok {
  color: #2d6a4f;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  min-height: 120px;
}

.store-load-more {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0.5rem auto 0;
  grid-column: 1 / -1;
  justify-self: center;
}

.store-card {
  position: relative;
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.store-card--revlon {
  border: 1px solid #e8c4d4;
}

.store-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: #8B2252;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
}

.store-card-badge--new {
  background: #2d6a4f;
}

.store-card-badge--right {
  left: auto;
  right: 10px;
}

.store-card-badge--low-stock {
  background: #b45309;
  color: #fff;
}

/* New Arrivals */
.new-arrivals {
  padding: 5rem 1.5rem;
  background: var(--color-sand);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.new-arrivals-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.new-arrivals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.new-arrivals-nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.new-arrivals-arrow {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-charcoal);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.new-arrivals-arrow:hover:not(:disabled) {
  border-color: var(--color-charcoal);
  background: var(--color-charcoal);
  color: white;
}

.new-arrivals-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.new-arrivals-scroll-wrap {
  position: relative;
}

.new-arrivals-scroll-wrap::before,
.new-arrivals-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 1rem;
  width: 2.5rem;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.new-arrivals-scroll-wrap.can-scroll-left::before {
  left: 0;
  background: linear-gradient(to right, var(--color-sand), transparent);
  opacity: 1;
}

.new-arrivals-scroll-wrap.can-scroll-right::after {
  right: 0;
  background: linear-gradient(to left, var(--color-sand), transparent);
  opacity: 1;
}

.new-arrivals-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.25rem 0 1rem;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.new-arrivals-track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.new-arrivals-track::-webkit-scrollbar {
  display: none;
}

.new-arrivals-track .store-card {
  flex: 0 0 min(280px, 82vw);
  scroll-snap-align: start;
}

.new-arrivals-footer {
  text-align: center;
  margin-top: 1.5rem;
}

.store-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.store-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-sand);
}

.store-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-card--device .store-card-image {
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #faf8f5 0%, #ece7df 100%);
  padding: 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-card--device .store-card-image img {
  object-fit: contain;
  object-position: center;
  max-height: 100%;
}

.store-card-body {
  padding: 1.25rem;
}

.store-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.35rem;
}

.store-card-desc {
  font-size: 0.8rem;
  color: #777;
  margin: 0 0 0.35rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-card-price {
  font-weight: 600;
  color: var(--color-slate);
  margin-bottom: 0.35rem;
}

.store-card-stock {
  font-size: 0.75rem;
  font-weight: 600;
  color: #b45309;
  margin: 0 0 0.35rem;
}

.store-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #999;
  margin-bottom: 0.65rem;
}

.store-card-body .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.store-card-title-link {
  color: inherit;
  text-decoration: none;
}

.store-card-title-link:hover {
  color: var(--color-rose);
}

.store-card-details-link {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-slate);
  text-decoration: none;
}

.store-card-details-link:hover {
  color: var(--color-rose);
  text-decoration: underline;
}

.service-store-link {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.service-store-link a {
  color: var(--color-rose);
  font-weight: 500;
  text-decoration: none;
}

.service-store-link a:hover {
  text-decoration: underline;
}

/* Trust section */
.trust {
  padding: 4rem 1.5rem;
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
}

.trust-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.trust-inner .section-eyebrow {
  margin-bottom: 0.35rem;
}

.trust-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--color-soft-black);
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.trust-list li {
  padding: 0.5rem 1rem;
  background: #fff;
  border-radius: 999px;
  border: 1px solid rgba(92, 107, 122, 0.15);
  font-size: 0.95rem;
}

.testimonials {
  display: grid;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
}

.testimonials blockquote {
  margin: 0;
  padding: 1rem 1.25rem;
  background: #fff;
  border-left: 3px solid var(--color-rose);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--color-slate);
  text-align: left;
  font-size: 0.95rem;
}

/* Repair quote */
.repair-quote {
  padding: 4rem 1.5rem;
  background: #fff;
}

.repair-quote-layout {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.repair-quote-form .form-group {
  margin-bottom: 1rem;
}

.repair-quote-form label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

.repair-quote-form input,
.repair-quote-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(92, 107, 122, 0.25);
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.quote-success {
  color: #2d6a4f;
  background: #d8f3dc;
  padding: 0.75rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.repair-prices {
  padding: 1.5rem;
  background: var(--color-cream);
  border-radius: 12px;
  border: 1px solid rgba(92, 107, 122, 0.12);
}

.repair-prices h3 {
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}

.repair-prices-note {
  font-size: 0.875rem;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

.repair-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.repair-price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(92, 107, 122, 0.1);
  font-size: 0.9rem;
}

.repair-price-list li a {
  color: inherit;
  text-decoration: none;
}

.repair-price-list li a:hover {
  color: var(--color-rose);
}

.repair-price-list li span {
  font-weight: 600;
  white-space: nowrap;
}

/* Visit shop photos */
.visit-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.visit-photo {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
}

/* Product detail page */
.product-page {
  padding: 2.5rem 1.5rem 3rem;
  min-height: 60vh;
}

.product-loading,
.product-error {
  text-align: center;
  max-width: 480px;
  margin: 2rem auto;
}

.product-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-detail-image-wrap {
  background: var(--color-cream);
  border-radius: 12px;
  overflow: hidden;
  padding: 0.75rem;
}

.product-detail-image-wrap > #productImage {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  display: block;
  background: #fff;
  border-radius: 8px;
}

.product-detail-image-wrap--device > #productImage {
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 640px);
  background: linear-gradient(180deg, #faf8f5 0%, #ece7df 100%);
}

.product-detail-image-wrap--device .product-gallery-thumb img {
  object-fit: contain;
  background: #f5f2ee;
}

.product-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(92, 107, 122, 0.12);
}

.product-gallery-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  flex-shrink: 0;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover {
  border-color: var(--color-rose);
}

.product-gallery-thumb:focus-visible {
  outline: 2px solid var(--color-rose);
  outline-offset: 2px;
}

.product-detail-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-slate);
  margin-bottom: 0.5rem;
}

.product-detail-info h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.product-detail-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-rose);
  margin-bottom: 0.5rem;
}

.product-detail-stock {
  font-size: 0.9rem;
  color: var(--color-slate);
  margin-bottom: 1rem;
}

.product-detail-stock--low {
  color: #c1121f;
  font-weight: 600;
}

.product-detail-desc {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  white-space: pre-wrap;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-detail-actions .btn {
  flex: 1;
  min-width: 140px;
}

.cart-aside {
  position: sticky;
  top: 80px;
  align-self: start;
  min-width: 0;
}

.cart-box,
.checkout-form-box {
  background: white;
  padding: 1.25rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(45, 41, 38, 0.06);
  border: 1px solid rgba(92, 107, 122, 0.1);
  min-width: 0;
}

.checkout-form-box {
  max-height: calc(100vh - 5.5rem);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-box h3,
.checkout-form-box h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.cart-items {
  min-height: 60px;
}

.cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(92, 107, 122, 0.1);
  font-size: 0.9rem;
}

.cart-item-name { flex: 1; min-width: 0; }
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.cart-qty-btn,
.cart-remove-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 1px solid rgba(92, 107, 122, 0.3);
  border-radius: 4px;
  background: white;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-charcoal);
}
.cart-qty-btn:hover,
.cart-remove-btn:hover {
  background: var(--color-sand);
  border-color: var(--color-slate);
}
.cart-remove-btn { color: #c0392b; }
.cart-remove-btn:hover { background: #fde8e8; }
.cart-item-qty { min-width: 1.5rem; text-align: center; font-weight: 500; }
.cart-item-price { font-weight: 500; }

.cart-empty {
  color: var(--color-slate);
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.cart-payment-note {
  font-size: 0.82rem;
  color: var(--color-slate);
  margin: 0 0 0.5rem;
  line-height: 1.4;
}

.checkout-notice {
  background: #f8f6f3;
  border: 1px solid #e8e4df;
  border-radius: 6px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  color: #555;
  line-height: 1.45;
}

.checkout-notice p {
  margin: 0 0 0.35rem;
}

.checkout-notice p:last-child {
  margin-bottom: 0;
}

.order-success {
  text-align: center;
  padding: 0.5rem 0;
}

.order-success p {
  margin: 0 0 0.75rem;
  color: var(--color-slate);
  font-size: 0.95rem;
}

.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: white !important;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #1fb855;
  border-color: #1fb855;
  color: white !important;
}

.cart-total {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(92, 107, 122, 0.15);
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
  margin-top: 0.75rem;
}

.checkout-form-box .form-group {
  margin-bottom: 0.85rem;
}

.checkout-form-box label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--color-charcoal);
}

.checkout-form-box input,
.checkout-form-box textarea,
.checkout-form-box select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(92, 107, 122, 0.3);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
}

.checkout-form-box select {
  background: #fff;
  cursor: pointer;
}

.checkout-form-box input:focus,
.checkout-form-box textarea:focus,
.checkout-form-box select:focus {
  outline: none;
  border-color: var(--color-slate);
}

.delivery-wheelie-note {
  font-size: 0.8rem;
  color: var(--color-slate);
  margin: -0.35rem 0 0.85rem;
  padding: 0.45rem 0.6rem;
  background: rgba(196, 92, 122, 0.08);
  border-radius: 6px;
  line-height: 1.4;
}

.checkout-totals {
  margin: 0.5rem 0 0.85rem;
  padding: 0.65rem 0;
  border-top: 1px solid rgba(92, 107, 122, 0.15);
  border-bottom: 1px solid rgba(92, 107, 122, 0.15);
}

.checkout-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.checkout-total-row span:last-child {
  text-align: right;
  flex-shrink: 0;
}

.checkout-total-grand {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.checkout-actions .btn-block {
  margin-top: 0;
}

.order-error {
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.nav-cart {
  font-weight: 500;
}

.store-empty,
.store-loading {
  color: var(--color-slate);
  padding: 2rem;
  text-align: center;
  grid-column: 1 / -1;
}

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

  .cart-aside {
    position: static;
    max-width: 100%;
  }

  .checkout-form-box {
    max-height: none;
  }
}

/* Visit */
.visit {
  padding: 6rem 1.5rem;
}

.visit-content {
  max-width: 800px;
  margin: 0 auto;
}

.visit-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-soft-black);
  margin-bottom: 1rem;
}

.visit-lead {
  font-size: 1.1rem;
  color: var(--color-slate);
  margin-bottom: 2rem;
}

.visit-lead a {
  color: var(--color-slate);
  text-decoration: underline;
  font-weight: 500;
}

.visit-lead a:hover {
  color: var(--color-charcoal);
}

.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.visit-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
}

.visit-item p {
  color: var(--color-slate);
}

.visit-item a {
  color: var(--color-slate);
  text-decoration: underline;
}

.visit-item a:hover {
  color: var(--color-charcoal);
}

.visit-directions {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-slate);
  text-decoration: none;
}

.visit-directions:hover {
  color: var(--color-charcoal);
}

.contact-phone {
  margin-bottom: 1rem;
}

.contact-phone a {
  color: var(--color-sand);
  text-decoration: none;
}

.contact-phone a:hover {
  text-decoration: underline;
}

/* Contact */
.contact {
  padding: 6rem 1.5rem;
  background: var(--color-charcoal);
  color: var(--color-cream);
  text-align: center;
}

.contact-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-content p {
  margin-bottom: 2rem;
  color: var(--color-sand);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.btn-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: white !important;
}

.btn-facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
  transform: translateY(-1px);
}

/* Footer */
.footer {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(45, 41, 38, 0.1);
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  font-size: 0.85rem;
  color: var(--color-slate);
}

.footer a {
  font-size: 0.85rem;
  color: var(--color-slate);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-expanded {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-address {
  font-size: 0.8rem;
  color: var(--color-slate);
}

.footer-address a {
  color: inherit;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-links a {
  font-size: 0.82rem;
}

/* Legal pages */
.legal-page {
  padding: 6rem 1.5rem 3rem;
  min-height: 60vh;
}

.legal-page-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  position: sticky;
  top: 5.5rem;
}

.legal-nav a {
  font-size: 0.88rem;
  color: var(--color-slate);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.legal-nav a:hover,
.legal-nav a.legal-nav-active {
  color: var(--color-charcoal);
  border-bottom-color: rgba(196, 92, 122, 0.35);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-charcoal);
  margin-bottom: 0.35rem;
}

.legal-meta {
  font-size: 0.85rem;
  color: var(--color-slate);
  margin-bottom: 1.25rem;
}

.legal-note {
  background: #f8f6f3;
  border: 1px solid #e8e4df;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  margin: 1.75rem 0 0.65rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.92rem;
  color: var(--color-slate);
  line-height: 1.65;
  margin-bottom: 0.65rem;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
}

.legal-content a {
  color: var(--color-charcoal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-contact {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(92, 107, 122, 0.15);
  font-size: 0.9rem;
}

.form-consent {
  margin-bottom: 0.75rem;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--color-slate);
  cursor: pointer;
}

.consent-label input {
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.consent-label a {
  color: var(--color-charcoal);
}

.checkout-form-box .consent-label {
  font-size: 0.8rem;
}

.repair-quote-form .consent-label {
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: min(100vh, 900px);
  }

  .hero-content {
    padding: 2.5rem 1.5rem;
    max-width: 100%;
  }

  .hero-slide img {
    object-position: center center;
  }

  .hero-slide--contain img {
    padding: 1rem;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(26, 20, 18, 0.82) 0%, rgba(26, 20, 18, 0.55) 45%, rgba(26, 20, 18, 0.35) 100%);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .visit-details {
    grid-template-columns: 1fr;
  }

  .repair-quote-layout,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .visit-photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .new-arrivals-head {
    align-items: flex-start;
  }

  .new-arrivals-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(92, 107, 122, 0.15);
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .legal-page-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .legal-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(92, 107, 122, 0.12);
  }

  .legal-nav a {
    border-bottom: none;
  }
}
