/* HAVEN MALL - Hero Section */

.hero-section {
  margin-top: -100px;
  padding: calc(3rem + 100px) 0 4rem;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255, 183, 122, 0.4) 0%, rgba(255, 183, 122, 0) 60%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 45%),
    linear-gradient(180deg, #aee0ff 0%, #e3f2ff 40%, #ffffff 75%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  color: var(--primary-dark);
}

.hero-title .highlight-box {
  background-color: #065F46; /* dark green */
  color: #ffffff;
  padding: 0.2rem 1.5rem;
  border-radius: 9999px;
  display: inline-block;
}

.hero-cart-svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  transform: translateY(-6px) rotate(-8deg); /* Added rotation for dynamic feel as in image */
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}

/* Unique #1 Rank Badge */
.hero-rank {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 1.9em;
  font-weight: 800;
  font-style: italic;
  color: #ffffff;
  background: linear-gradient(135deg, #FFC20E, #ff4757);
  padding: 0 0.35em;
  border-radius: var(--radius-sm);
  transform: rotate(-4deg);
  box-shadow: 0 6px 14px rgba(255, 71, 87, 0.35);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
  line-height: 1.2;
}

/* User Specified Primary Action Button #1F282A */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-cta .btn-primary {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: 0 10px 25px rgba(31, 40, 42, 0.3);
}

.hero-cta .btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 14px 30px rgba(31, 40, 42, 0.45);
}

/* Hero Showcase Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: none;
  display: block;
  object-fit: cover;
}

/* Floating Elements (Sale tag, Bag, Price) */
.floating-tag {
  position: absolute;
  background: var(--bg-card);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  border: 1px solid var(--border-color);
}

.floating-tag.tag-sale {
  top: -15px;
  left: -20px;
  background: var(--sale-red);
  color: #fff;
  transform: rotate(-8deg);
}

.floating-tag.tag-price {
  top: 40px;
  right: -15px;
  background: #ffffff;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.floating-tag.tag-discount {
  bottom: 25px;
  right: -25px;
  background: var(--primary-dark);
  color: #ffffff;
  transform: rotate(-12deg);
}
