/*--------------------------------------------------------------
  OPUX360 — Premium Pricing Active Card
  Ajouter après premium-overrides.css
--------------------------------------------------------------*/

/* ============================================================
   PRICING TABLE — Active/Featured Card
   ============================================================ */

.cs_pricing_table.cs_style_1.active {
  background: var(--premium-primary, #0d1b2a);
  border: 1px solid var(--premium-primary, #0d1b2a);
  position: relative;
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 
    0 40px 100px -30px rgba(13, 27, 42, 0.35),
    0 0 0 1px rgba(201, 162, 39, 0.1);
}

/* Top accent bar */
/* .cs_pricing_table.cs_style_1.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--premium-accent, #c9a227) 0%,
    var(--premium-accent-light, #e4c76b) 50%,
    var(--premium-accent, #c9a227) 100%
  );
} */

/* Subtle glow effect */
.cs_pricing_table.cs_style_1.active::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 80px;
  background: radial-gradient(
    ellipse at top,
    rgba(201, 162, 39, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* "Recommandé" badge */
.cs_pricing_table.cs_style_1.active .cs_pricing_head::before {
  /* content: 'Recommandé'; */
  /* content: ''; */
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--premium-primary, #0d1b2a);
  background: var(--premium-accent, #c9a227);
  padding: 0.35rem 0.75rem;
  line-height: 1;
}

/* Head section positioning */
.cs_pricing_table.cs_style_1.active .cs_pricing_head {
  position: relative;
}

/* ============================================================
   TEXT COLORS — Inverted for Dark Background
   ============================================================ */

.cs_pricing_table.cs_style_1.active,
.cs_pricing_table.cs_style_1.active p,
.cs_pricing_table.cs_style_1.active span {
  color: rgba(255, 255, 255, 0.7);
}

.cs_pricing_table.cs_style_1.active h2,
.cs_pricing_table.cs_style_1.active h3,
.cs_pricing_table.cs_style_1.active .cs_heading_color {
  color: var(--premium-white, #fafaf8);
}

/* Plan name in gold */
.cs_pricing_table.cs_style_1.active .cs_pricing_head > p:first-child,
.cs_pricing_table.cs_style_1.active .cs_purple_color,
.cs_pricing_table.cs_style_1.active .cs_medium.cs_purple_color {
  color: var(--premium-accent, #c9a227) !important;
}

/* ============================================================
   PRICING BUTTON — Inverted Style
   ============================================================ */

.cs_pricing_table.cs_style_1.active .cs_pricing_btn {
  background: var(--premium-accent, #c9a227);
  color: var(--premium-primary, #0d1b2a);
  border-color: var(--premium-accent, #c9a227);
  font-weight: 600;
}

.cs_pricing_table.cs_style_1.active .cs_pricing_btn:hover {
  background: var(--premium-accent-light, #e4c76b);
  border-color: var(--premium-accent-light, #e4c76b);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -8px rgba(201, 162, 39, 0.4);
  color: var(--premium-primary, #0d1b2a) !important;
}

/* ============================================================
   FEATURE LIST — Refined for Dark Background
   ============================================================ */

.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
}

.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li.cs_heading_color {
  color: var(--premium-white, #fafaf8);
}

/* Checkmark icons in gold */
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list i,
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list .fa-check {
  color: var(--premium-accent, #c9a227) !important;
}

/* Last item (usually highlighted feature) */
.cs_pricing_table.cs_style_1.active .cs_pricing_feature_list li.cs_purple_color {
  color: var(--premium-accent, #c9a227) !important;
  font-weight: 500;
}

/* ============================================================
   HOVER STATE — Subtle Enhancement
   ============================================================ */

.cs_pricing_table.cs_style_1.active:hover {
  transform: scale(1.04);
  box-shadow: 
    0 50px 120px -35px rgba(13, 27, 42, 0.4),
    0 0 0 1px rgba(201, 162, 39, 0.2);
}

/* ============================================================
   CORNER DECORATION (Optional Luxury Touch)
   ============================================================ */

.cs_pricing_table.cs_style_1.active .cs_pricing_head::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -1px;
  width: 60px;
  height: 60px;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
  pointer-events: none;
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 1199px) {
  .cs_pricing_table.cs_style_1.active {
    transform: scale(1.02);
  }
  
  .cs_pricing_table.cs_style_1.active:hover {
    transform: scale(1.03);
  }
}

@media (max-width: 991px) {
  .cs_pricing_table.cs_style_1.active {
    transform: scale(1);
    margin: 1rem 0;
  }
  
  .cs_pricing_table.cs_style_1.active:hover {
    transform: scale(1.01);
  }
  
  .cs_pricing_table.cs_style_1.active .cs_pricing_head::before {
    top: 15px;
    right: 15px;
    font-size: 0.5625rem;
  }
}