/* ==========================================
   ADVANTAGE & INFO SECTION (info.css)
   ========================================== */

.advantage-section {
  padding: 100px 5% 80px;
  background-color: var(--bg-offwhite);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.premium-title {
  font-size: 3rem;
  color: var(--primary-navy);
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555555;
  line-height: 1.7;
}

/* ==========================================
   THE SPLIT LAYOUT (2 Columns)
   ========================================== */

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Exactly 50/50 split */
  gap: 32px;
  align-items: stretch; /* Forces both columns to be the exact same height */
}

/* --- Left Column Stack --- */
.perks-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Base Card Styling --- */
.advantage-card {
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid rgba(18, 41, 57, 0.1);
  padding: 40px 30px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative; /* Anchors the sale sticker */
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
  border-color: var(--secondary-gold);
}

/* --- Left Text Cards (Horizontal Flow) --- */
.text-card {
  flex: 1; /* Makes them share vertical space perfectly */
  text-align: left;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.text-card .icon-wrapper {
  margin-bottom: 0;
  background: rgba(212, 175, 55, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary-gold);
}

.text-card .icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.text-card h3 {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: var(--primary-navy);
  font-weight: 700;
}

/* --- Right Column Merch Card (Centered Flow) --- */
.merch-card {
  text-align: center;
  justify-content: center;
  padding: 60px 40px;
}

.merch-preview {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.merch-preview img {
  width: 100%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
}

.merch-card h3 {
  font-size: 1.4rem;
  color: var(--primary-navy);
  font-weight: 700;
  margin-bottom: 12px;
}

/* --- Featured Card Override --- */
.advantage-card.featured {
  background: linear-gradient(to bottom, #ffffff, #fffdfa);
  border: 1px solid var(--secondary-gold);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.05);
}

/* --- Typography & Elements --- */
.advantage-card p {
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 41, 57, 0.08);
}

.centered-footer {
  border-top: none;
  display: flex;
  justify-content: center;
}

.btn.cta-link {
  display: flex;
  justify-content: space-between; /* Pushes text left, arrow right */
  align-items: center;
  width: 100%;
  color: var(--primary-navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.btn.cta-link:hover {
  color: var(--secondary-gold);
}

.stock-tag {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
}

/* ==========================================
   THE CURVY SALE STICKER
   ========================================== */

/* 1. The Shadow Wrapper */
.sale-sticker {
  position: absolute;
  top: -20px;
  right: 0px;
  z-index: 10;
  filter: drop-shadow(0 8px 12px rgba(18, 41, 57, 0.15));
  -webkit-tap-highlight-color: transparent;
}

/* 2. The Curvy "Scalloped" Shape */
.sticker-shape {
  position: relative;
  width: 80px;
  height: 80px;
  background-color: rgb(195, 160, 54);
  border-radius: 10%; /* Curves the points into soft petals */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 3 overlapping rounded squares create 12 soft petals */
.sticker-shape::before,
.sticker-shape::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: inherit;
  border-radius: inherit;
  z-index: -1;
}

.sticker-shape::before {
  transform: rotate(30deg);
}
.sticker-shape::after {
  transform: rotate(60deg);
}

/* 3. The Inner White Dashed Ring */
.sticker-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-navy);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVENESS
   ========================================== */
@media (max-width: 900px) {
  .advantage-section {
    padding: 60px 5% 40px;
  }

  .premium-title {
    font-size: 2.4rem;
    line-height: 1.1;
  }

  .split-layout {
    grid-template-columns: 1fr; /* Stacks everything */
    gap: 24px;
  }

  .perks-stack {
    gap: 24px;
  }

  .advantage-card {
    padding: 35px 25px;
  }

  .merch-card {
    padding: 40px 25px;
  }

  /* --- Mobile Sale Sticker --- */
  .sale-sticker {
    top: -15px;
    right: 0px;
    -webkit-tap-highlight-color: transparent;
  }
  .sticker-shape {
    width: 60px;
    height: 60px;
  }
  .sticker-inner {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
    font-weight: 700;
  }
}
