/* Gudsmith premium layer — v3 */
.hero-full {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1618221195710-e326020b8463?w=1920&q=85') center/cover;
  transform: scale(1.02);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.55) 45%, rgba(10,8,6,0.2) 100%);
}
.hero-full .container {
  position: relative;
  z-index: 2;
  padding: 6rem 0 4rem;
  max-width: 640px;
}
.hero-full h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 4.75rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-full .hero-lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.125rem;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.hero-chips span {
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
}

.category-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .category-scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}
.category-pill {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  group: pill;
}
.category-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-pill:hover img { transform: scale(1.08); }
.category-pill span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

/* Editorial product row — max 4, no endless grid feel */
.product-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1100px) {
  .product-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .product-row { grid-template-columns: 1fr; }
}

.product-card-v2 {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.product-card-v2 .img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #ece8e2;
}
.product-card-v2 .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card-v2:hover .img-wrap img { transform: scale(1.04); }
.product-card-v2 .tags {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.product-card-v2 .tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
}
.product-card-v2 .tag-sale { background: #c0392b; color: #fff; }
.product-card-v2 .tag-new { background: #1a1209; color: #fff; }
.product-card-v2 .body {
  padding: 1.25rem 1.25rem 1.35rem;
}
.product-card-v2 .cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 600;
}
.product-card-v2 h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0.35rem 0 0.5rem;
  line-height: 1.3;
}
.product-card-v2 h3 a:hover { color: var(--color-accent); }
.product-card-v2 .stars {
  color: #c9a227;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}
.product-card-v2 .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.product-card-v2 .price-now {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
}
.product-card-v2 .price-was {
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
}
.product-card-v2 .btn-add {
  width: 100%;
  padding: 0.75rem;
  border: none;
  background: var(--color-primary);
  color: #fff;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s;
}
.product-card-v2 .btn-add:hover { background: var(--color-accent); }

.strip-promo {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  background: #1a1209;
}
.strip-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 420px;
}
@media (max-width: 768px) {
  .strip-promo {
    display: grid;
    grid-template-columns: 1fr;
  }
  .strip-promo img {
    min-height: 200px;
    max-height: 240px;
    order: -1;
  }
}
.strip-promo .copy {
  padding: clamp(2rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}
.strip-promo h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.strip-promo p { opacity: 0.85; margin-bottom: 1.5rem; max-width: 360px; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}
@media (max-width: 768px) {
  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1rem;
    font-size: 0.85rem;
    padding: 1.25rem 0;
  }
}
.trust-bar div {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}
.trust-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.15rem;
}

.section-tight .section-header { margin-bottom: 2rem; }
