/* ============================================================
   THE BATH & BODY SPOT — Hero Slider & Homepage Sections
   ============================================================ */

/* ── Hero Slider ─────────────────────────────────── */
#hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 680px;
  min-height: 400px;
  overflow: hidden;
  background: var(--blush-light);
}

.hero-track {
  display: flex;
  height: 100%;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Banner Image (horizontal image uploaded by admin) */
.hero-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: sliderPanLeft 8s ease-in-out both;
}

/* Soft gradient overlay for text readability */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(253, 232, 232, 0.72) 0%,
      rgba(253, 232, 232, 0.30) 45%,
      rgba(253, 232, 232, 0.05) 100%);
}

/* Slide Content */
.hero-slide-content {
  position: absolute;
  top: 50%;
  left: clamp(32px, 8vw, 110px);
  transform: translateY(-50%);
  max-width: 500px;
  animation: fadeInLeft 0.8s 0.2s ease both;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--rose-gold);
  border-radius: var(--radius-full);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: var(--sp-4);
}

.hero-title em {
  font-style: italic;
  color: var(--pink-vibrant);
  display: block;
}

.hero-subtitle {
  font-size: var(--text-base);
  color: var(--text-mid);
  margin-bottom: var(--sp-8);
  line-height: var(--leading-relaxed);
  max-width: 380px;
}

.hero-actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero Controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  transition: all var(--ease-med);
  box-shadow: var(--shadow-md);
}

.hero-arrow:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-50%) scale(1.05);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

#hero-prev {
  left: var(--sp-5);
}

#hero-next {
  right: var(--sp-5);
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--sp-2);
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.6);
  transition: all var(--ease-med);
  cursor: pointer;
}

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

/* ── Trust Badges Strip ───────────────────────────── */
#trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--sp-6) 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  flex-wrap: wrap;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-8);
  animation: fadeInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

.trust-item:nth-child(1) { animation-delay: 0ms; }
.trust-item:nth-child(2) { animation-delay: 80ms; }
.trust-item:nth-child(3) { animation-delay: 160ms; }
.trust-item:nth-child(4) { animation-delay: 240ms; }
.trust-item:nth-child(5) { animation-delay: 320ms; }

.trust-item+.trust-item {
  border-left: 1px solid var(--border-soft);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--blush-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-text h4 {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.trust-text p {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* ── Category Showcase ───────────────────────────── */
#category-showcase {
  padding: var(--sp-20) 0;
  background: var(--ivory);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  background: var(--blush-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease-med);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.category-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-silk);
}

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      transparent 40%,
      rgba(253, 232, 232, 0.80) 75%,
      rgba(253, 232, 232, 0.96) 100%);
}

.category-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
}

.category-card-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: var(--sp-1);
}

.category-card-count {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  color: var(--text-light);
  letter-spacing: 0.08em;
}

.category-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--sp-2);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--pink-vibrant);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--ease-med);
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── New Arrivals ────────────────────────────────── */
#new-arrivals {
  padding: var(--sp-20) 0;
  overflow: hidden;
}

.arrivals-scroll-wrap {
  position: relative;
  width: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--text-dark);
}

.carousel-arrow:hover {
  background: var(--pink-vibrant);
  color: var(--white);
  border-color: var(--pink-vibrant);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow.left-arrow {
  left: -60px;
}

.carousel-arrow.right-arrow {
  right: -60px;
}

.arrivals-track {
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  overflow-x: auto;
  padding: var(--sp-4) var(--sp-4) var(--sp-8);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  align-items: stretch;
}

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

.arrivals-track>* {
  scroll-snap-align: start;
  flex: 0 0 260px;
}

/* ── Customer Love (Reviews) ─────────────────────── */
.reviews-scroll-wrap {
  position: relative;
  max-width: 1132px;
  margin: 0 auto;
}

.reviews-track {
  display: flex;
  justify-content: center;
  gap: var(--sp-5);
  overflow-x: auto;
  padding: var(--sp-4) var(--sp-4) var(--sp-8);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  align-items: stretch;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  scroll-snap-align: start;
  flex: 0 0 260px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

/* ── Best Sellers / Featured ─────────────────────── */
#best-sellers {
  padding: var(--sp-20) 0;
  background: var(--cream);
}

/* ── Brand Story ─────────────────────────────────── */
#brand-story {
  padding: var(--sp-24) 0;
  background: var(--ivory);
  overflow: hidden;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.brand-story-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}

.brand-story-image-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xl) + 2px);
  background: var(--grad-pink);
  z-index: -1;
}

.brand-story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-story-float {
  position: absolute;
  bottom: var(--sp-6);
  left: -var(--sp-8);
  background: transparent;
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  transform: translateX(-20%);
  animation: gentleFloat 4s ease-in-out infinite;
}

.brand-story-float-icon {
  font-size: 40px;
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.9));
}

.brand-story-float-text h4 {
  font-family: 'Times New Roman', Times, serif;
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--text-dark);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95), 0 0 4px rgba(255, 255, 255, 1);
  margin-bottom: 2px;
}

.brand-story-float-text p {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.9);
}


.brand-story-quote {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-style: italic;
  color: var(--pink-vibrant);
  line-height: var(--leading-snug);
  margin: var(--sp-6) 0;
  padding-left: var(--sp-6);
  border-left: 3px solid var(--blush-mid);
}

.brand-story-text {
  color: var(--text-mid);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--sp-6);
}

.brand-story-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-8);
}

.brand-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--blush-light);
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-mid);
}

/* ── Scent Quiz Teaser ───────────────────────────── */
#quiz-teaser {
  padding: var(--sp-20) 0;
  background: linear-gradient(135deg, var(--blush-light) 0%, var(--cream) 50%, var(--blush-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#quiz-teaser::before {
  content: '✿ ✿ ✿';
  position: absolute;
  top: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  font-size: var(--text-2xl);
  color: var(--blush-mid);
  letter-spacing: 20px;
  opacity: 0.5;
}

/* ── Gift Builder Teaser ─────────────────────────── */
#gift-teaser {
  padding: var(--sp-20) 0;
  background: var(--white);
}

.gift-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}

/* ── Testimonials ────────────────────────────────── */
#testimonials {
  padding: var(--sp-24) 0;
  background: var(--cream);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--sp-5);
  overflow-x: auto;
  padding: var(--sp-4) var(--container-pad) var(--sp-4);
  scrollbar-width: none;
  align-items: stretch;
  scroll-snap-type: x mandatory;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-sm);
  position: relative;
  border: 1px solid var(--border-soft);
  transition: all var(--ease-med);
  display: flex;
  flex-direction: column;
  scroll-snap-align: center;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-quote-icon {
  font-size: var(--text-4xl);
  color: var(--blush-mid);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--sp-3);
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-mid);
  margin-bottom: var(--sp-5);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--grad-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-label);
  font-weight: 600;
  font-size: var(--text-base);
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-label);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-dark);
}

.testimonial-location {
  font-size: var(--text-xs);
  color: var(--text-light);
}

/* ── WhatsApp Channel Section ─────────────────────── */
#newsletter {
  padding: var(--sp-20) 0;
  background: linear-gradient(135deg, var(--blush-lightest) 0%, var(--blush-light) 50%, var(--cream) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(232, 116, 138, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201, 149, 110, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.whatsapp-channel-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-5);
  position: relative;
  z-index: 1;
}

.whatsapp-channel-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--pink-vibrant) 0%, var(--rose-gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(232, 116, 138, 0.35);
  animation: wa-pulse 2.5s ease-in-out infinite;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(232, 116, 138, 0.35); transform: scale(1); }
  50% { box-shadow: 0 12px 40px rgba(232, 116, 138, 0.55); transform: scale(1.04); }
}

.whatsapp-channel-icon svg {
  width: 42px;
  height: 42px;
  color: white;
}

.whatsapp-channel-content {
  max-width: 600px;
  margin: 0 auto;
}

.whatsapp-channel-badge {
  display: inline-block;
  background: rgba(232, 116, 138, 0.12);
  color: var(--pink-dark);
  border: 1.5px solid rgba(232, 116, 138, 0.35);
  border-radius: var(--radius-full);
  padding: var(--sp-1) var(--sp-4);
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-5xl));
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--sp-3);
  white-space: nowrap;
}

.newsletter-title em {
  color: var(--pink-vibrant);
}

.newsletter-subtitle {
  color: var(--text-mid);
  margin-bottom: var(--sp-6);
  line-height: 1.7;
}

.whatsapp-channel-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-8);
}

.channel-perk {
  background: white;
  border: 1.5px solid var(--blush-mid);
  border-radius: var(--radius-full);
  padding: var(--sp-2) var(--sp-4);
  font-family: var(--font-label);
  font-size: var(--text-sm);
  color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(232, 116, 138, 0.08);
  transition: all 0.2s ease;
}

.channel-perk:hover {
  background: var(--blush-lightest);
  border-color: var(--pink-vibrant);
  transform: translateY(-2px);
}

.btn--whatsapp-channel {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: var(--sp-4) var(--sp-10);
  border-radius: var(--radius-full);
  font-family: var(--font-label);
  font-size: var(--text-base);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.3s var(--ease-silk);
  border: none;
  cursor: pointer;
  margin-bottom: var(--sp-4);
}

.btn--whatsapp-channel:hover {
  background: linear-gradient(135deg, #22c55e 0%, #0d9488 100%);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  transform: translateY(-3px) scale(1.02);
  color: white;
}

.btn--whatsapp-channel svg {
  flex-shrink: 0;
}

.whatsapp-channel-note {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin: 0;
}

/* ── Footer ──────────────────────────────────────── */
#footer {
  background: var(--cream-dark);
  padding: var(--sp-16) 0 var(--sp-8);
  border-top: 1px solid var(--border-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer-brand-logotype {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: var(--sp-4);
  line-height: 1.1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-brand-logotype em {
  font-style: normal;
  color: var(--pink-vibrant);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--text-light);
  line-height: var(--leading-relaxed);
  max-width: 260px;
}

.footer-heading {
  font-family: var(--font-label);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--text-light);
  transition: color var(--ease-fast);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.footer-link:hover {
  color: var(--pink-vibrant);
}

.footer-socials {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--ease-fast);
  box-shadow: var(--shadow-xs);
}

.footer-social-btn:hover {
  background: var(--pink-vibrant);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink);
}

.footer-social-btn svg {
  width: 18px;
  height: 18px;
}

.footer-divider {
  height: 1px;
  background: var(--border-soft);
  margin: var(--sp-6) 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--text-light);
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.payment-icon {
  height: 24px;
  opacity: 0.7;
  filter: grayscale(0.3);
}

.footer-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: #25D366;
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--ease-fast);
}

.footer-whatsapp-link:hover {
  color: var(--pink-vibrant);
}

.footer-email-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--text-mid);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: all var(--ease-fast);
}

.footer-email-link:hover {
  color: var(--pink-vibrant);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }



  .brand-story-grid,
  .gift-teaser-grid {
    grid-template-columns: 1fr;
  }

  .brand-story-image-wrap {
    aspect-ratio: 16/9;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
  }

  .arrivals-track,
  .reviews-track {
    justify-content: flex-start;
  }

  .carousel-arrow {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
}

@media (max-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - (var(--sp-5) / 2));
    padding: var(--sp-4);
  }

  #hero {
    min-height: 380px;
  }

  .hero-slide-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 var(--sp-6);
    right: auto;
    max-width: none;
    text-align: center;
  }
  
  .hero-eyebrow {
    justify-content: center;
  }
  .hero-eyebrow::before {
    display: none;
  }

  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }

  .category-grid {
    display: flex;
    gap: var(--sp-3);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: var(--sp-4);
  }
  .category-grid::-webkit-scrollbar {
    display: none;
  }
  .category-card {
    flex: 0 0 45vw;
    scroll-snap-align: start;
  }

  .arrivals-track > * {
    flex: 0 0 45vw;
  }

  #trust-strip {
    display: none;
  }

  .trust-item {
    padding: var(--sp-1);
    gap: 0;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
    text-align: center;
  }

  .footer-link {
    justify-content: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }
}

@media (max-width: 480px) {
  #hero {
    min-height: 240px;
  }
  .hero-slide-content {
    padding: 0 var(--sp-4);
  }
  .hero-subtitle {
    font-size: var(--text-sm);
    margin-bottom: var(--sp-4);
  }

  .hero-arrow {
    width: 32px;
    height: 32px;
  }
  
  .hero-arrow svg {
    width: 16px;
    height: 16px;
  }

  #hero-prev {
    left: var(--sp-2);
  }

  #hero-next {
    right: var(--sp-2);
  }

  .hero-title {
    font-size: var(--text-2xl);
  }

  .category-card {
    flex: 0 0 42vw;
  }

  .arrivals-track > * {
    flex: 0 0 42vw;
  }
}