/* ==========================================================================
   MTS CIGARS CO. - HOME PAGE STYLES
   ========================================================================== */

/* Hero Section */
.mts-hero {
  min-height: 75vh;
  background-image: url('https://d1il91b6utfts2.cloudfront.net/mts/hero-bg.jpg');
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  margin-top: 70px;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Left black overlay at ~0.7 opacity max, fading smoothly to transparent on the right */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.9) 35%,
    rgba(0, 0, 0, 0.7) 50%,
    rgba(0, 0, 0, 0.3) 65%,
    rgba(0, 0, 0, 0) 80%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.94) 0%,
      rgba(0, 0, 0, 0.88) 50%,
      rgba(0, 0, 0, 0.78) 80%,
      rgba(0, 0, 0, 0.65) 100%
    );
  }
}

.hero-title {
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero-features-bar {
  background: transparent;
}

.feature-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.35);
  flex-shrink: 0;
}

/* Bestsellers Product Cards */
.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ffffff;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12) !important;
}

.product-img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.circle-gold-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--mts-gold);
  color: #0c0a08;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hover-gold-link:hover .circle-gold-arrow {
  background-color: var(--mts-gold-hover);
  transform: translateX(3px);
}

/* MTS Promise Section */
.promise-img {
  max-height: 360px;
  object-fit: cover;
  border: 4px solid #ffffff;
}

.gold-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--mts-gold);
  color: var(--mts-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Category Cards */
.category-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.placeholder-graphic {
  height: 180px;
  background: radial-gradient(circle, #251e18 0%, #120e0b 100%);
}

.placeholder-svg {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  transition: transform 0.3s ease;
}

.category-card:hover .placeholder-svg {
  transform: scale(1.1);
}

.hover-dark:hover {
  color: var(--mts-text-dark) !important;
}

/* Stay Updated / MTS Club Section */
.mts-club-section {
  min-height: 60vh;
  background-image: url('https://d1il91b6utfts2.cloudfront.net/mts/stay-updated-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.club-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(12, 10, 8, 0.95) 0%, rgba(12, 10, 8, 0.8) 50%, rgba(12, 10, 8, 0.4) 100%);
  z-index: 1;
}
