.shop-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.shop-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
}

.shop-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  max-width: 1200px;
  margin: 0 auto;
}

.shop-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.7);
}

.shop-title {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  font-weight: 950;
  color: #ffffff;
}

.shop-subtitle {
  margin: 0;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
  .shop-hero {
    height: 68vh;
    min-height: 420px;
  }

  .shop-overlay {
    padding: 0 20px;
  }

  .shop-title {
    font-size: clamp(32px, 9vw, 52px);
    line-height: 1.02;
  }

  .shop-subtitle {
    font-size: 16px;
    line-height: 1.65;
    max-width: 42ch;
  }
}

@media (max-width: 480px) {
  .shop-hero {
    height: 62vh;
    min-height: 360px;
  }

  .shop-overlay {
    padding: 0 16px;
  }

  .shop-eyebrow {
    margin-bottom: 10px;
  }

  .shop-title {
    font-size: clamp(28px, 10vw, 40px);
  }

  .shop-subtitle {
    font-size: 15px;
    line-height: 1.6;
    max-width: 100%;
  }
}