/* PROSUVINU Homepage — Clean unified UI */

.home-page {
  background: var(--white);
}

/* ---- Hero Banner Carousel — 1425 × 600 ---- */
:root {
  --banner-w: 1425;
  --banner-h: 600;
}

.hero-slider {
  margin: 0;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.hero-banner-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-slides {
  position: relative;
  width: 100%;
}

.hero-slide {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.hero-slide-link {
  display: block;
  width: 100%;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}

.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.hero-nav-btn:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.is-active {
  background: var(--gold-light);
  transform: scale(1.2);
}

.home-page .header {
  margin-bottom: 0;
}

.home-page .hero-slider + .trust-bar {
  margin-top: -107px;
}

/* Legacy hero overrides — other pages */
.home-page .hero {
  min-height: auto;
  padding: 48px 0 64px;
  background: var(--cream);
  gap: 40px;
}

.home-page .hero::before,
.home-page .hero::after {
  display: none;
}

.home-page .hero-badge {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: none;
  color: var(--gold-dark);
}

.home-page .hero h1::after {
  display: none;
}

.home-page .hero-stat {
  padding: 0;
  background: none;
  border: none;
  min-width: auto;
  text-align: left;
}

.home-page .hero-stat:hover {
  transform: none;
  box-shadow: none;
}

.home-page .hero-stats {
  gap: 32px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.home-page .hero-image-wrapper {
  border: none;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  padding: 28px;
  overflow: visible;
}

.home-page .hero-image-wrapper img {
  max-height: calc(var(--img-hero-h) - 56px);
  object-position: center center;
}

.home-page .hero-image-wrapper::before {
  display: none;
}

.home-page .hero-image-badge {
  border-left: 3px solid var(--gold);
}

.home-page .hero-content,
.home-page .hero-image {
  animation: none;
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--charcoal);
  padding: 14px 0;
}

.trust-bar-inner {
  gap: 24px 40px;
}

.trust-item {
  font-size: 0.75rem;
}

/* ---- Sections — unified ---- */
.home-page section,
.best-scroll-section,
.new-arrivals,
.premium-picks,
.features-brand,
.home-about,
.home-page .b2b,
.home-page .quote-section {
  /* padding: 72px 0; */
}

.home-page .categories {
  background: var(--white);
}

.home-page .section-label::before,
.home-page .section-label::after {
  display: none;
}

.home-page .section-label {
  padding: 0;
}

.home-page .section-header {
  margin-bottom: 40px;
}

/* ---- Categories ---- */
.home-page .category-card {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border-radius: 16px;
}

.home-page .category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* ---- Bestsellers — Horizontal Scroll ---- */
.best-scroll-section {
  padding: 56px 0 64px;
  background: var(--charcoal);
  color: var(--cream);
}

.best-scroll-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}

.best-scroll-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.best-scroll-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--cream);
}

.best-scroll-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 3px;
  flex-shrink: 0;
}

.best-scroll-link:hover {
  color: var(--cream);
  border-color: var(--cream);
}

.best-scroll-outer {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.best-scroll-outer::-webkit-scrollbar {
  display: none;
}

.best-scroll-track {
  display: flex;
  gap: 16px;
  padding: 0 max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  scroll-snap-type: x mandatory;
}

.best-scroll-card {
  position: relative;
  flex: 0 0 240px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.best-scroll-card:hover {
  border-color: rgba(201, 169, 98, 0.5);
  transform: translateY(-4px);
}

.best-scroll-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}

.best-scroll-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 260px;
  padding: 8px 8px 0;
  background: rgba(255, 255, 255, 0.04);
}

.best-scroll-img img {
  width: auto;
  height: 92%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.35s ease;
}

.best-scroll-card:hover .best-scroll-img img {
  transform: scale(1.03);
}

.best-scroll-body {
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.best-scroll-off {
  display: inline-block;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--charcoal);
  padding: 3px 7px;
  margin-bottom: 8px;
}

.best-scroll-off-new {
  background: var(--sage);
  color: var(--white);
}

.best-scroll-body h3 {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.best-scroll-body h3 a {
  color: var(--cream);
}

.best-scroll-body h3 a:hover {
  color: var(--gold-light);
}

.best-scroll-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.best-scroll-price span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.best-scroll-price s {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.best-scroll-add {
  width: 100%;
  padding: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.best-scroll-add.btn-save-list {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--cream);
  background: transparent;
}

.best-scroll-add.btn-save-list:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.arrival-btn.btn-save-list,
.premium-btn.btn-save-list,
.premium-btn-sm.btn-save-list {
  background: var(--white);
  border: 2px solid var(--gold);
  color: var(--gold-dark);
}

.arrival-btn.btn-save-list:hover,
.premium-btn.btn-save-list:hover,
.premium-btn-sm.btn-save-list:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ---- New Arrivals — Compact Grid ---- */
.new-arrivals {
  background: var(--white);
  padding: 56px 0;
}

.new-arrivals-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
}

.new-arrivals-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 500;
  margin-top: 6px;
}

.new-arrivals-link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 3px;
  flex-shrink: 0;
}

.new-arrivals-link:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

.new-arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.arrival-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.arrival-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.arrival-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--sage);
  color: var(--white);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
}

.arrival-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 260px;
  padding: 4px 4px 0;
  background: linear-gradient(180deg, #eee8df 0%, #e4dbd0 100%);
  flex-shrink: 0;
}

.arrival-img img {
  width: auto;
  height: 96%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.3s ease;
}

.arrival-card:hover .arrival-img img {
  transform: scale(1.02);
}

.arrival-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.arrival-cat {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 4px;
}

.arrival-body h3 {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 8px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.arrival-body h3 a:hover {
  color: var(--gold-dark);
}

.arrival-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.arrival-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
}

.arrival-rating {
  font-size: 0.6875rem;
  color: var(--charcoal-soft);
  white-space: nowrap;
}

.arrival-rating .stars {
  color: var(--gold);
  font-size: 0.625rem;
}

.arrival-btn {
  width: 100%;
  padding: 10px;
  background: var(--charcoal);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.arrival-btn:hover {
  background: var(--gold-dark);
}

.home-page .product-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.home-page .product-card:hover {
  border-color: var(--gold-light);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.home-page .product-image {
  height: var(--img-card-h);
  padding: 8px 6px 0;
  background: linear-gradient(180deg, #f3ede4 0%, #ebe3d8 100%);
  align-items: flex-end;
}

.home-page .product-image img {
  max-height: calc(var(--img-card-h) - 12px);
  min-height: unset;
  object-position: center bottom;
}

.home-page .product-card .product-image {
  overflow: hidden;
}

.home-page .product-info {
  padding: 18px 16px 20px;
  border-top: 1px solid var(--border);
}

.home-page .view-all-wrap {
  margin-top: 40px;
}

/* ---- Premium Picks — Luxury Editorial ---- */
.premium-picks {
  padding: 0;
  background: var(--charcoal);
}

.premium-picks-frame {
  background: linear-gradient(165deg, #faf6ef 0%, #f3ebe0 40%, #ebe0d0 100%);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 64px 0 56px;
  position: relative;
}

.premium-picks-frame::before,
.premium-picks-frame::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.premium-picks-frame::before { top: 20px; }
.premium-picks-frame::after  { bottom: 20px; }

.premium-picks-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}

.premium-header-deco {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.premium-eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.premium-picks-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.premium-picks-header h2 em {
  font-style: italic;
  color: var(--gold-dark);
}

.premium-picks-header p {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
}

/* Featured #1 — horizontal showcase */
.premium-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid rgba(184, 134, 11, 0.25);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 12px 48px rgba(28, 28, 28, 0.08);
  transition: box-shadow 0.3s;
}

.premium-featured:hover {
  box-shadow: 0 20px 60px rgba(28, 28, 28, 0.12);
}

.premium-featured-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 380px;
  padding: 8px 8px 0;
  background: linear-gradient(160deg, #eee8df 0%, #e0d6c8 100%);
}

.premium-featured-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
}

.premium-featured-img img {
  width: auto;
  height: 96%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.45s ease;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

.premium-featured:hover .premium-featured-img img {
  transform: scale(1.02);
}

.premium-featured-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
  border-left: 1px solid var(--border);
}

.premium-cat {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.premium-featured-info h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 14px;
}

.premium-featured-info h3 a {
  color: var(--charcoal);
}

.premium-featured-info h3 a:hover {
  color: var(--gold-dark);
}

.premium-desc {
  font-size: 0.9375rem;
  color: var(--charcoal-soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.premium-featured-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.premium-featured-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.premium-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--charcoal);
}

.premium-rating {
  font-size: 0.8125rem;
  color: var(--charcoal-soft);
}

.premium-rating .stars {
  color: var(--gold);
}

.premium-btn {
  width: 100%;
  padding: 14px 24px;
  background: var(--charcoal);
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
}

.premium-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* 3-column tiles */
.premium-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.premium-tile {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.premium-tile:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.premium-tile-rank {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(184, 134, 11, 0.35);
  line-height: 1;
}

.premium-tile-img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 240px;
  padding: 4px 4px 0;
  background: linear-gradient(180deg, #eee8df 0%, #e4dbd0 100%);
}

.premium-tile-img img {
  width: auto;
  height: 96%;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  transition: transform 0.35s ease;
}

.premium-tile:hover .premium-tile-img img {
  transform: scale(1.03);
}

.premium-tile-body {
  padding: 14px 16px 16px;
}

.premium-tile-body h4 {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 2.4em;
}

.premium-tile-body h4 a {
  color: var(--charcoal);
}

.premium-tile-body h4 a:hover {
  color: var(--gold-dark);
}

.premium-tile-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.premium-price-sm {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--charcoal);
}

.premium-btn-sm {
  flex-shrink: 0;
  padding: 8px 14px;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.premium-btn-sm:hover {
  background: var(--charcoal);
  color: var(--cream);
}

.premium-footer-cta {
  text-align: center;
  margin-top: 32px;
}

.premium-shop-link {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}

.premium-shop-link:hover {
  color: var(--charcoal);
  border-color: var(--charcoal);
}

/* ---- Why PROSUVINU — clean 4 grid ---- */
.features-brand {
  background: var(--white);
  /* padding: 72px 0; */
}

.features-pattern {
  display: none;
}

.features-brand .features-intro {
  display: block;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  padding-bottom: 0;
  border-bottom: none;
}

.features-eyebrow {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.features-intro-text h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.features-intro-aside p {
  margin-bottom: 0;
}

.features-fabric-badge {
  display: none;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  gap: 0;
  transition: all 0.3s ease;
}

.feature-item::before {
  display: none;
}

.feature-item:hover {
  padding-left: 20px;
  background: var(--white);
  border-color: var(--gold-light);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.feature-num {
  display: none;
}

.feature-item .feature-icon {
  width: 52px;
  height: 52px;
  font-size: 1.4rem;
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid var(--border);
}

.feature-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature-body p {
  font-size: 0.8125rem;
  max-width: none;
}

/* ---- About ---- */
.home-about {
  background: var(--cream);
}

.home-page .about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--img-bg-solid);
  border-radius: 16px;
}

.home-page .about-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--img-about-h);
  object-fit: contain;
  object-position: center center;
}

.home-page .about-content h2::after {
  display: none;
}

.home-page .about-highlight {
  background: var(--white);
}

/* ---- B2B ---- */
.home-page .b2b {
  background: var(--white);
}

.home-page .b2b-card {
  border-top: none;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* ---- Quote ---- */
.home-page .quote-section {
  background: var(--charcoal);
  color: var(--cream);
  border: none;
}

.home-page .quote-section blockquote {
  color: var(--cream);
}

.home-page .quote-section blockquote::before {
  display: none;
}

.home-page .quote-section cite {
  color: var(--gold-light);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .new-arrivals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-featured {
    grid-template-columns: 1fr;
  }

  .premium-featured-img {
    min-height: 300px;
  }

  .premium-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .home-page .hero {
    padding: 32px 0 48px;
  }

  .hero-slider {
    padding: 0;
  }

  .hero-banner-wrap {
    border-radius: 0;
  }

  .hero-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.875rem;
  }

  .hero-prev { left: 10px; }
  .hero-next { right: 10px; }

  .hero-dots {
    bottom: 14px;
    gap: 8px;
  }

  .hero-dot {
    width: 8px;
    height: 8px;
  }

  .home-page .hero-stats {
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .home-page section,
  .best-scroll-section,
  .new-arrivals,
.new-arrivals,
  .premium-picks,
  .features-brand,
  .home-about,
  .home-page .b2b {
    /* padding: 48px 0; */
  }

  .best-scroll-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 24px;
  }

  .best-scroll-card {
    flex: 0 0 210px;
  }

  .new-arrivals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .arrival-img {
    height: 220px;
  }

  .premium-picks-frame {
    padding: 48px 0 40px;
  }

  .premium-featured-info {
    padding: 28px 24px;
  }

  .premium-row {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .premium-tile-img {
    height: 220px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .new-arrivals-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }
}

.catalog-loading {
  padding: 24px;
  text-align: center;
  color: var(--charcoal-soft);
  font-size: 0.875rem;
}
