/* ============================================================
   AAN LUXE — DEALS OF THE DAY — COUTURE VISUAL REDESIGN
   All selectors use the aan-deals- prefix for full isolation.
   ============================================================ */

/* ---- Section Wrapper (Seamless Warm Cream Background) ---- */
.aan-deals-section {
  padding: 40px 0 80px;
  background: #F5ECE0 !important;
  position: relative;
  overflow: hidden;
}

.aan-deals-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.aan-deals-section .container {
  position: relative;
  z-index: 1;
}

/* ---- Luxury Editorial Header (Centered Layout) ---- */
.aan-deals-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.aan-deals-header--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 820px;
  gap: 10px;
}

.aan-deals-header__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-color, #C8A96A);
}

.aan-deals-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color, #C8A96A);
  box-shadow: 0 0 10px rgba(200, 169, 106, 0.85);
  animation: aan-deals-pulse-glow 2s infinite ease-in-out;
}

@keyframes aan-deals-pulse-glow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.aan-deals-header__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 800;
  color: var(--primary-text, #2A1D17) !important;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 4px 0 2px;
}

/* Star Ornament Divider (Brand Aesthetic) */
.aan-deals-header__divider-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  max-width: 360px;
  margin: 6px 0 8px;
}

.aan-deals-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #C8A96A, transparent);
  border-radius: 1px;
}

.aan-deals-divider-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(200, 169, 106, 0.12);
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: 6px;
  color: var(--accent-color, #C8A96A);
  font-size: 15px;
  line-height: 1;
}

.aan-deals-header__subtitle {
  font-size: 17px;
  color: var(--secondary-text, #6F5846) !important;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  max-width: 640px;
}

.aan-deals-header__cta-wrap {
  margin-top: 12px;
}

.aan-deals-header__cta {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-text, #2A1D17);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color, #E6DDD2);
  box-shadow: 0 2px 12px rgba(62, 45, 36, 0.06);
  transition: all 0.3s ease;
}

.aan-deals-header__cta:hover {
  background: var(--primary-text, #2A1D17);
  color: #FFF;
  border-color: var(--primary-text, #2A1D17);
  box-shadow: 0 8px 22px rgba(42, 29, 23, 0.16);
  gap: 12px;
}

.aan-deals-header__cta i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.aan-deals-header__cta:hover i {
  transform: translateX(3px);
}

/* ============================================================
   GRID CONTAINERS & LAYOUTS (SPECIFICITY GUARDS)
   ============================================================ */
#dealsGrid.aan-deals-grid,
.deals-grid.aan-deals-grid,
.aan-deals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
  width: 100%;
}

#dealsGrid.aan-deals-grid--3,
.aan-deals-grid.aan-deals-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

#dealsGrid.aan-deals-grid--2,
.aan-deals-grid.aan-deals-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Single Deal: Full Width Block */
#dealsGrid.aan-deals-grid--1,
.deals-grid.aan-deals-grid--1,
.aan-deals-grid.aan-deals-grid--1,
.aan-deals-grid--1 {
  display: block !important;
  width: 100% !important;
  max-width: 1140px !important;
  margin: 0 auto !important;
}

/* ============================================================
   HERO SPOTLIGHT CARD (1 DEAL LAYOUT)
   ============================================================ */
.aan-deals-hero-card {
  display: grid !important;
  grid-template-columns: 46% 54% !important;
  width: 100% !important;
  align-items: stretch;
  background: linear-gradient(145deg, #FFFDF9 0%, #FAF5EE 100%);
  border-radius: 28px;
  border: 1px solid rgba(200, 169, 106, 0.5);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4), 0 0 1px 1px rgba(200, 169, 106, 0.35);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aan-deals-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.5), 0 0 2px 2px rgba(200, 169, 106, 0.6);
}

/* Left Media Showcase */
.aan-deals-hero__media {
  padding: 24px;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  box-sizing: border-box;
}

.aan-deals-hero__img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 480px;
  border-radius: 20px;
  overflow: hidden;
  background: #F3ECE2;
  box-shadow: inset 0 0 0 1px rgba(200, 169, 106, 0.25);
}

.aan-deals-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.aan-deals-hero-card:hover .aan-deals-hero__img {
  transform: scale(1.05);
}

/* Badges on Hero Image */
.aan-deals-hero__badges-top {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 3;
}

.aan-deals-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.aan-deals-badge--gold {
  background: rgba(42, 29, 23, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #DFCA9B;
  border: 1px solid rgba(200, 169, 106, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.aan-deals-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DFCA9B;
  box-shadow: 0 0 6px #DFCA9B;
  animation: aan-deals-pulse 1.5s infinite ease-in-out;
}

.aan-deals-wishlist-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.3);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-text, #2A1D17);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(42, 29, 23, 0.12);
  transition: all 0.25s ease;
}

.aan-deals-wishlist-btn:hover {
  background: var(--primary-text, #2A1D17);
  color: #FFF;
  border-color: var(--primary-text, #2A1D17);
  transform: scale(1.1);
}

.aan-deals-hero__discount-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: linear-gradient(135deg, #2A1D17 0%, #3D2B22 100%);
  border: 1px solid rgba(200, 169, 106, 0.5);
  padding: 8px 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 3;
}

.aan-deals-discount-val {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #DFCA9B;
  line-height: 1;
}

.aan-deals-discount-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

.aan-deals-hero__gallery-hint {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

/* Right Editorial Content */
.aan-deals-hero__content {
  padding: 38px 44px 38px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  box-sizing: border-box;
}

.aan-deals-hero__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.aan-deals-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aan-deals-eyebrow-accent {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color, #C8A96A);
}

.aan-deals-category-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-text, #6F5846);
  padding: 3px 10px;
  background: rgba(62, 45, 36, 0.05);
  border-radius: 4px;
}

.aan-deals-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #27ae60;
  background: rgba(39, 174, 96, 0.08);
  border: 1px solid rgba(39, 174, 96, 0.2);
  padding: 3px 10px;
  border-radius: 999px;
}

.aan-deals-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27ae60;
  box-shadow: 0 0 6px #27ae60;
  animation: aan-deals-pulse-glow 1.8s infinite ease-in-out;
}

.aan-deals-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.3vw, 2.3rem);
  font-weight: 700;
  color: var(--primary-text, #2A1D17);
  line-height: 1.25;
  margin: 0;
  cursor: pointer;
  transition: color 0.25s ease;
}

.aan-deals-hero__title:hover {
  color: var(--accent-color, #C8A96A);
}

/* Rating & High Demand Row */
.aan-deals-hero__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.aan-deals-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aan-deals-stars {
  color: #E0A938;
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.aan-deals-rating-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-text, #2A1D17);
}

.aan-deals-rating-count {
  font-size: 12px;
  color: var(--secondary-text, #6F5846);
}

.aan-deals-viewing-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #C0392B;
}

.aan-deals-viewing-now i {
  animation: aan-deals-flame 1.5s infinite alternate ease-in-out;
}

@keyframes aan-deals-flame {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

/* Luxury Price Box */
.aan-deals-hero__price-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(200, 169, 106, 0.08);
  border: 1px solid rgba(200, 169, 106, 0.28);
  border-radius: 14px;
  padding: 14px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.aan-deals-hero__price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.aan-deals-price-currency {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-text, #2A1D17);
  line-height: 1;
}

.aan-deals-price-original {
  font-size: 1.15rem;
  font-weight: 500;
  color: #8C7A6B;
  text-decoration: line-through;
}

.aan-deals-hero__savings-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2A1D17;
  color: #DFCA9B;
  border: 1px solid rgba(200, 169, 106, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Luxury Segmented Countdown Timer Box */
.aan-deals-hero__timer-box {
  background: #231711;
  border: 1px solid rgba(200, 169, 106, 0.35);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.aan-deals-timer-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aan-deals-timer-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E74C3C;
  box-shadow: 0 0 8px #E74C3C;
  animation: aan-deals-pulse-glow 1.2s infinite ease-in-out;
}

.aan-deals-timer-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #DFCA9B;
}

.aan-deals-countdown-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.aan-deals-time-segment {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 169, 106, 0.3);
  border-radius: 10px;
  padding: 6px 14px;
  min-width: 58px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.aan-deals-time-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #FFF;
  line-height: 1;
  letter-spacing: 0.04em;
}

.aan-deals-time-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 3px;
}

.aan-deals-time-sep {
  font-size: 1.4rem;
  font-weight: 800;
  color: #DFCA9B;
  line-height: 1;
}

/* Feature Highlights */
.aan-deals-hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 4px;
}

.aan-deals-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-text, #6F5846);
}

.aan-deals-feature-item i {
  color: var(--accent-color, #C8A96A);
  font-size: 13px;
  flex-shrink: 0;
}

/* CTA Action Buttons */
.aan-deals-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.aan-deals-btn-primary {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid rgba(200, 169, 106, 0.4);
  background: linear-gradient(135deg, #2A1D17 0%, #3E2D24 100%);
  color: #FFF;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(42, 29, 23, 0.22);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.aan-deals-btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.aan-deals-btn-primary:hover:not(:disabled)::after {
  left: 140%;
}

.aan-deals-btn-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #1F140E 0%, #2A1D17 100%);
  border-color: var(--accent-color, #C8A96A);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(42, 29, 23, 0.3);
}

.aan-deals-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.aan-deals-btn-secondary {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1.5px solid var(--primary-text, #2A1D17);
  background: transparent;
  color: var(--primary-text, #2A1D17);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.aan-deals-btn-secondary:hover {
  background: var(--primary-text, #2A1D17);
  color: #FFF;
  transform: translateY(-2px);
}

.aan-deals-hero__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary-text, #6F5846);
  opacity: 0.85;
}

/* ============================================================
   MULTI-DEAL GRID CARDS (2, 3, 4+ DEALS)
   ============================================================ */
.aan-deals-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg, #FFFDF9);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-color, #E6DDD2);
  box-shadow: 0 4px 16px rgba(62, 45, 36, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.aan-deals-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 106, 0.45);
  box-shadow: 0 16px 36px rgba(62, 45, 36, 0.12);
}

.aan-deals-card__image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #F3ECE2;
  cursor: pointer;
}

.aan-deals-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.aan-deals-card:hover .aan-deals-card__image img {
  transform: scale(1.05);
}

.aan-deals-card__top-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.aan-deals-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(42, 29, 23, 0.88);
  backdrop-filter: blur(4px);
  color: #DFCA9B;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.aan-deals-card__wishlist {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.3);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--primary-text, #2A1D17);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.aan-deals-card__wishlist:hover {
  background: var(--primary-text, #2A1D17);
  color: #FFF;
  transform: scale(1.1);
}

.aan-deals-card__discount {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(135deg, #2A1D17 0%, #3D2B22 100%);
  border: 1px solid rgba(200, 169, 106, 0.4);
  color: #DFCA9B;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  z-index: 2;
}

.aan-deals-card__timer-pill {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 11px;
  font-weight: 700;
  font-family: monospace;
  z-index: 2;
}

.aan-deals-card__timer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E74C3C;
  animation: aan-deals-pulse 1.5s infinite;
}

.aan-deals-card__info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.aan-deals-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aan-deals-card__category {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color, #C8A96A);
}

.aan-deals-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary-text, #6F5846);
}

.aan-deals-card__rating i {
  color: #E0A938;
  font-size: 11px;
}

.aan-deals-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-text, #2A1D17);
  line-height: 1.35;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.25s ease;
}

.aan-deals-card__title:hover {
  color: var(--accent-color, #C8A96A);
}

.aan-deals-card__prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.aan-deals-card__price-now {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-text, #2A1D17);
  line-height: 1;
}

.aan-deals-card__price-was {
  font-size: 13px;
  font-weight: 500;
  color: #8C7A6B;
  text-decoration: line-through;
}

.aan-deals-card__price-tag {
  font-size: 10px;
  font-weight: 800;
  color: #C0392B;
  background: rgba(192, 57, 43, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.aan-deals-card__actions {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  margin-top: auto;
}

.aan-deals-card__btn-cart {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid rgba(200, 169, 106, 0.35);
  background: var(--primary-text, #2A1D17);
  color: #FFF;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.aan-deals-card__btn-cart:hover:not(:disabled) {
  background: var(--btn-hover, #1F140E);
  border-color: var(--accent-color, #C8A96A);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(42, 29, 23, 0.2);
}

.aan-deals-card__btn-view {
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border-color, #E6DDD2);
  background: transparent;
  color: var(--primary-text, #2A1D17);
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.aan-deals-card__btn-view:hover {
  background: rgba(62, 45, 36, 0.06);
  border-color: var(--primary-text, #2A1D17);
}

/* Slider Track & Buttons */
.aan-deals-slider-wrap {
  position: relative;
}

.aan-deals-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 2px;
}

.aan-deals-slider-track::-webkit-scrollbar {
  display: none;
}

.aan-deals-slider-track .aan-deals-card {
  flex: 0 0 calc((100% - 72px) / 4);
  scroll-snap-align: start;
}

.aan-deals-slider-prev,
.aan-deals-slider-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 106, 0.4);
  background: #FFFDF9;
  color: var(--primary-text, #2A1D17);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 6px 20px rgba(42, 29, 23, 0.12);
  transition: all 0.25s ease;
}

.aan-deals-slider-prev:hover:not(:disabled),
.aan-deals-slider-next:hover:not(:disabled) {
  background: var(--primary-text, #2A1D17);
  color: #FFF;
  border-color: var(--primary-text, #2A1D17);
  transform: translateY(-50%) scale(1.08);
}

.aan-deals-slider-prev {
  left: -18px;
}

.aan-deals-slider-next {
  right: -18px;
}

.aan-deals-slider-prev:disabled,
.aan-deals-slider-next:disabled {
  opacity: 0.3;
  cursor: default;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1199px) {
  .aan-deals-hero-card {
    grid-template-columns: 48% 52% !important;
  }

  .aan-deals-hero__content {
    padding: 30px 32px 30px 10px;
  }

  #dealsGrid.aan-deals-grid,
  .aan-deals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .aan-deals-slider-track .aan-deals-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 991px) {
  .aan-deals-hero-card {
    grid-template-columns: 1fr !important;
    max-width: 650px;
    margin: 0 auto;
  }

  .aan-deals-hero__media {
    padding: 20px 20px 0;
  }

  .aan-deals-hero__img-frame {
    min-height: 400px;
  }

  .aan-deals-hero__content {
    padding: 28px 24px;
    gap: 14px;
  }

  #dealsGrid.aan-deals-grid,
  .aan-deals-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .aan-deals-slider-track .aan-deals-card {
    flex-basis: calc((100% - 18px) / 2);
  }
}

@media (max-width: 767px) {
  .aan-deals-section {
    padding: 50px 0 64px;
  }

  .aan-deals-header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 34px;
  }

  .aan-deals-header__title {
    font-size: 2.4rem !important;
    line-height: 1.15;
  }

  .aan-deals-header__kicker {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .aan-deals-header__subtitle {
    font-size: 15px !important;
  }

  .aan-deals-hero-card {
    border-radius: 22px;
  }

  .aan-deals-hero__media {
    padding: 16px 16px 0;
  }

  .aan-deals-hero__img-frame {
    min-height: 340px;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
  }

  .aan-deals-hero__content {
    padding: 20px 18px 22px;
    gap: 12px;
  }

  .aan-deals-hero__title {
    font-size: 1.4rem;
  }

  .aan-deals-price-currency {
    font-size: 1.8rem;
  }

  .aan-deals-hero__timer-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .aan-deals-countdown-grid {
    width: 100%;
    justify-content: space-between;
  }

  .aan-deals-time-segment {
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
  }

  .aan-deals-hero__features {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .aan-deals-hero__actions {
    flex-direction: column;
  }

  .aan-deals-btn-secondary {
    width: 100%;
  }

  #dealsGrid.aan-deals-grid,
  .aan-deals-grid,
  .aan-deals-grid--2,
  .aan-deals-grid--3 {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .aan-deals-slider-track .aan-deals-card {
    flex-basis: 86%;
  }

  .aan-deals-card__top-overlay {
    top: 8px !important;
    left: 8px !important;
    right: 8px !important;
  }

  .aan-deals-card__badge {
    padding: 3px 8px !important;
    font-size: 10px !important;
    letter-spacing: 0.06em !important;
  }

  .aan-deals-card__wishlist {
    width: 30px !important;
    height: 30px !important;
    font-size: 13px !important;
  }

  .aan-deals-card__discount {
    bottom: 8px !important;
    left: 8px !important;
    padding: 3px 8px !important;
    font-size: 10px !important;
  }

  .aan-deals-card__timer-pill {
    bottom: 8px !important;
    right: 8px !important;
    padding: 3px 8px !important;
    font-size: 10px !important;
    gap: 5px !important;
  }
}

@media (max-width: 480px) {
  .aan-deals-header__title {
    font-size: 2.15rem !important;
    line-height: 1.15;
  }

  .aan-deals-header__kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
    gap: 8px;
  }

  .aan-deals-header__subtitle {
    font-size: 14px !important;
    line-height: 1.5;
  }

  .aan-deals-card__top-overlay {
    top: 6px !important;
    left: 6px !important;
    right: 6px !important;
  }

  .aan-deals-card__badge {
    padding: 2.5px 7px !important;
    font-size: 9.5px !important;
  }

  .aan-deals-card__wishlist {
    width: 28px !important;
    height: 28px !important;
    font-size: 12px !important;
  }

  .aan-deals-card__discount {
    bottom: 6px !important;
    left: 6px !important;
    padding: 2.5px 7px !important;
    font-size: 9.5px !important;
  }

  .aan-deals-card__timer-pill {
    bottom: 6px !important;
    right: 6px !important;
    padding: 2.5px 7px !important;
    font-size: 9.5px !important;
    gap: 4px !important;
  }

  .aan-deals-hero__price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .aan-deals-hero__savings-pill {
    align-self: flex-start;
  }

  .aan-deals-time-val {
    font-size: 1.25rem;
  }

  .aan-deals-btn-primary,
  .aan-deals-btn-secondary {
    height: 48px;
    font-size: 12px;
  }
}