/* ═══ HERO — Full bleed dark split ═══ */
.hero {
  background: var(--ink);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--ember);
  margin-bottom: 2rem;
}

.hero-kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--ember);
  display: inline-block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 900;
  color: var(--pure);
  line-height: 1.0;
  margin-bottom: 1.75rem;
  letter-spacing: -2px;
}

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

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.hero-numbers {
  display: flex;
  gap: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-num h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--pure);
}

.hero-num p {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.2rem;
}

/* Right panel — featured image */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 40%);
  z-index: 1;
}

.hero-img-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slide indicator pills */
.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-pip {
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
  width: 20px;
}

.hero-pip.active {
  background: var(--ember);
  width: 40px;
}

/* Floating product card in hero */
.hero-float-card {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
  animation: floatUp 3s ease-in-out infinite;
}

@keyframes floatUp {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.hfc-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
}

.hfc-info span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hfc-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--pure);
  font-weight: 700;
  margin: 0.2rem 0;
}

.hfc-info .hfc-price {
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

/* ═══ MARQUEE STRIP ═══ */
.marquee-strip {
  background: var(--ember);
  padding: 0.65rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: marqueeScroll 18s linear infinite;
  will-change: transform;
}

.marquee-track span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  padding: 0 1rem;
}

.marquee-track span::before {
  content: '◆';
  margin-right: 1rem;
  opacity: 0.6;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* ═══ CATEGORY BENTO GRID ═══ */
.bento-section {
  padding: 6rem 0 4rem;
}

.bento-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.bento-cell {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s;
}

.bento-cell:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lift);
}

.bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.bento-cell:hover img {
  transform: scale(1.08);
}

.bento-cell .bc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}

.bc-overlay .cat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ember);
  margin-bottom: 0.3rem;
}

.bc-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 0.2rem;
}

.bc-overlay p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.bento-cell:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}

.bento-cell:nth-child(2) {
  grid-column: span 4;
}

.bento-cell:nth-child(3) {
  grid-column: span 3;
}

.bento-cell:nth-child(4) {
  grid-column: span 4;
}

.bento-cell:nth-child(5) {
  grid-column: span 3;
}

/* ═══ PRODUCTS — Masonry-style horizontal scroll tabs ═══ */
.shop-section {
  padding: 4rem 0 6rem;
  background: #fff;
}

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.filter-pill-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid var(--fog);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--silver);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--ember);
  color: var(--ember);
}

.filter-pill.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--pure);
}

.shop-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.price-filter-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--silver);
  background: var(--mist);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  border: 1px solid var(--fog);
}

.price-filter-wrap input[type="range"] {
  width: 80px;
  accent-color: var(--ember);
  cursor: pointer;
}

.sort-pill {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--fog);
  background: var(--mist);
  font-size: 0.78rem;
  color: var(--silver);
  cursor: pointer;
  outline: none;
  font-family: 'Outfit', sans-serif;
}

.sort-pill:focus {
  border-color: var(--ember);
}

.product-count-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 0.82rem;
  color: var(--silver);
}

.product-count-bar strong {
  color: var(--ink);
}

/* ── Product grid — asymmetric ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

/* Featured first card larger */
/* .products-grid .product-card:first-child {
  grid-column: span 2;
  grid-row: span 1;
}

.products-grid .product-card:first-child .pc-img {
  height: 280px;
}

.products-grid .product-card:first-child .pc-name {
  font-size: 1.3rem;
} */

/* ═══ SUBSCRIBE CTA ═══ */
.subscribe-section {
  padding: 0 0 6rem;
  background: #fff;
}

.subscribe-card {
  background: var(--ink);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 360px;
  position: relative;
}

.subscribe-card::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.2) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.sub-content {
  padding: 4rem;
  position: relative;
  z-index: 1;
}

.sub-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ember);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sub-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--ember);
  display: inline-block;
}

.sub-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--pure);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.sub-content h2 em {
  font-style: italic;
  color: var(--ember);
}

.sub-content p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.sub-form-row {
  display: flex;
  gap: 0.6rem;
}

.sub-form-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.8rem 1.25rem;
  color: var(--pure);
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.sub-form-row input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.sub-form-row input:focus {
  border-color: var(--ember);
}

.sub-fine {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.75rem;
}

.sub-fine a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: underline;
}

.sub-visual {
  position: relative;
  overflow: hidden;
}

.sub-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.sub-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ink) 0%, transparent 30%);
  z-index: 1;
}

/* ═══ FEATURES ═══ */
.features-row {
  background: var(--ink);
  padding: 4rem 0;
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feat-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s;
}

.feat-item:last-child {
  border-right: none;
}

.feat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.feat-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 69, 0, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--ember);
  margin-bottom: 1rem;
}

.feat-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 0.35rem;
}

.feat-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 50vw;
  }

  .hero-left {
    padding: 4rem 2rem;
  }

  .bento-grid {
    grid-template-rows: 160px 160px;
  }

  .products-grid .product-card:first-child {
    grid-column: span 1;
  }

  .features-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-item:nth-child(2) {
    border-right: none;
  }

  .subscribe-card {
    grid-template-columns: 1fr;
  }

  .sub-visual {
    height: 250px;
  }
}

@media (max-width: 700px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bento-cell {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 180px;
  }

  .features-strip {
    grid-template-columns: 1fr;
  }

  .feat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .hero-float-card {
    display: none;
  }

  .shop-header {
    flex-direction: column;
    align-items: flex-start;
  }
}