/* ================= HERO / SWIPER ================= */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #5c141d;
}

.hero-slide {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    120deg,
    #6d1a24 0%,
    #4c0f17 60%,
    #3a0b12 100%
  );
}

.hero-blob {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(212, 160, 90, 0.25),
    rgba(212, 160, 90, 0) 70%
  );
  animation: blobMorph 12s ease-in-out infinite;
  pointer-events: none;
}

@keyframes blobMorph {
  0%,
  100% {
    border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
    transform: rotate(0deg) scale(1);
  }

  33% {
    border-radius: 58% 42% 40% 60% / 55% 60% 40% 45%;
    transform: rotate(15deg) scale(1.05);
  }

  66% {
    border-radius: 65% 35% 55% 45% / 40% 55% 45% 60%;
    transform: rotate(-10deg) scale(0.97);
  }
}

.hero-eyebrow {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #e8c79e;
  font-size: 21px;
  font-weight: 500;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.15s;
}

.hero-title {
  color: #fff;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 1.15;
  margin: 10px 0 18px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.35s;
}

.hero-desc {
  color: #f1ded0;
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 430px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.55s;
}

.hero-btns {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.75s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-btn-wine {
  background: #d94b4b;
  background: linear-gradient(135deg, #c33d3d, #a52a2a);
  color: #fff;
  border: none;
  padding: 13px 26px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  border-radius: 4px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-btn-wine:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(165, 42, 42, 0.45);
  color: #fff;
}

.hero-btn-outline-cream {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  padding: 12px 26px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  border-radius: 4px;
  transition: all 0.25s ease;
}

.hero-btn-outline-cream:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero-image-wrap {
  position: relative;
  height: 100%;
}

.hero-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%);
  mask-image: linear-gradient(to right, transparent, black 12%);
}

/* Giữ nguyên các class lõi của Swiper */
.swiper-pagination-bullet {
  background: #e8c79e;
  opacity: 0.6;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #e8c79e;
}

.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: #e8c79e;
}

.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after {
  font-size: 20px;
}

/* ================= FEATURES BAR ================= */
.hero-features-bar {
  background: #fff;
  padding: 34px 0;
  border-bottom: 1px solid #f1e6dd;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-feature-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid #e6c9a8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6d1a24;
  font-size: 22px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.hero-feature-item:hover .hero-feature-icon {
  transform: rotate(-8deg) scale(1.08);
  background: #fbeee4;
}

.hero-feature-title {
  font-weight: 600;
  font-size: 14.5px;
  color: #2c1a1c;
  margin-bottom: 2px;
}

.hero-feature-desc {
  font-size: 12.5px;
  color: #8c7267;
}