/* =========================================================
   GLOBAL
========================================================= */

body {
  margin: 0;
  background: #fff;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  background: linear-gradient(100deg, #073f3e, #0b6b6a);
  padding-top: 22px;
  overflow: hidden;
}

.hero-top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 18px;
  box-sizing: border-box;
}

.hero-copy {
  text-align: left;
  max-width: 560px;
}

.hero-kicker {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: #f28b2d;
  margin-bottom: 8px;
}

.hero-headline {
  position: relative;
  height: 1.3em;
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  animation: heroHeadlineFade 9s infinite;
  white-space: nowrap;
}
.hero-slide:nth-child(1) { animation-delay: 0s; }
.hero-slide:nth-child(2) { animation-delay: 3s; }
.hero-slide:nth-child(3) { animation-delay: 6s; }

@keyframes heroHeadlineFade {
  0%, 4%    { opacity: 0; transform: translateY(6px); }
  10%, 27%  { opacity: 1; transform: translateY(0); }
  33%, 100% { opacity: 0; transform: translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; opacity: 0; transform: none; }
  .hero-slide:nth-child(1) { opacity: 1; }
}

/* ── Product filmstrip ──────────────────────────────────── */

.hero-shelf-title {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.hero-filmstrip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  justify-content: center;
  padding: 0 4px 18px;
  scrollbar-width: none;
}
.hero-filmstrip::-webkit-scrollbar { display: none; }

.hero-film-item {
  flex: 0 0 auto;
  width: 108px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: block;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  background: #fff;
  text-decoration: none;
}
.hero-film-item img {
  width: 100%;
  aspect-ratio: 0.85;
  object-fit: cover;
  display: block;
}
.hero-film-price {
  position: absolute;
  top: 6px;
  right: 6px;
  background: #f28b2d;
  color: #1c1206;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 20px;
}

/* ── Dual CTAs ───────────────────────────────────────────── */

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn-cta {
  display: inline-block;
  padding: 14px 36px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.22s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  touch-action: manipulation;
}

.btn-sell {
  background: #f28b2d;
  color: #fff;
  border: 2px solid #f28b2d;
}

.btn-sell:hover {
  background: #e0781c;
  border-color: #e0781c;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.btn-shop {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-shop:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  transform: translateY(-2px);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #094f4e;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 60px;
  gap: 4px;
}

.trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.trust-num {
  font-size: 1.75rem;
  font-weight: 700;
  color: #f28b2d;
  line-height: 1;
  white-space: nowrap;
}

.trust-label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.featured-products {
  padding: 56px 40px 64px;
  max-width: 1300px;
  margin: 0 auto;
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.featured-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0b6b6a;
  margin: 0;
}

.featured-view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0b6b6a;
  text-decoration: none;
}

.featured-view-all:hover {
  text-decoration: underline;
}

.featured-footer {
  text-align: center;
  margin-top: 36px;
}

.featured-shop-btn {
  display: inline-block;
  padding: 12px 36px;
  background: #0b6b6a;
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}

.featured-shop-btn:hover {
  background: #095f5e;
}

.featured-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card markup/styling for .featured-products-grid is owned by product-card.css
   (window.s4lProductCardHTML / .sp-card-wrap) — see product-card.css. */

/* =========================================================
   SHOP BY CATEGORY
========================================================= */

.home-categories {
  background: #f0f8f8;
  padding: 52px 40px 64px;
  border-top: 1px solid #ddeaea;
}

.home-cat-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0b6b6a;
  text-align: center;
  margin: 0 0 32px;
}

#s4l-categories {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.home-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: 108px;
}

.home-cat-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-cat-item:hover .home-cat-icon {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.home-cat-svg {
  width: 46%;
  height: 46%;
}

.home-cat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  text-align: center;
  line-height: 1.3;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1024px) {
  .featured-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-item  { padding: 18px 32px; }
  .trust-num   { font-size: 1.45rem; }

  .featured-products { padding: 40px 20px 48px; }
  .featured-products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .home-categories { padding: 40px 16px 52px; }
  #s4l-categories  { gap: 16px; }
  .home-cat-item   { width: 88px; }
  .home-cat-icon   { width: 72px; height: 72px; }
}

@media (max-width: 480px) {
  .hero-top { padding-left: 20px; padding-right: 20px; }
  .hero-headline { font-size: 1.5rem; }
  .hero-kicker { font-size: 0.78rem; }
  .btn-cta { padding: 12px 26px; font-size: 0.88rem; }

  .trust-item  { padding: 16px 18px; }
  .trust-num   { font-size: 1.25rem; }
  .trust-label { font-size: 0.7rem; }

  .featured-products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .featured-header h2     { font-size: 1.25rem; }

  .home-cat-item  { width: 76px; }
  .home-cat-icon  { width: 64px; height: 64px; }
  .home-cat-label { font-size: 0.74rem; }
}
