/*
 * Ruedas Calientes Design System
 * Digital Art & Giveaway Platform
 * Loaded after Bootstrap 5 — overrides and extends.
 * Mobile-first  |  RC Hot-Rod palette
 * -------------------------------------------------- */

/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

/* ===== 1. CSS Custom Properties ===== */
:root {
  /* Brand colors — Ruedas Calientes hot-rod palette */
  /* Orange = primary CTA, Charcoal = dark, Light orange = accent */
  --pr-red:        #FF6A00;
  --pr-red-dark:   #CC5500;
  --pr-red-light:  #FFF0E0;
  --pr-blue:       #FF8C42;
  --pr-blue-dark:  #E07020;
  --pr-blue-light: #FFF4EB;
  --pr-navy:       #111111;
  --pr-navy-dark:  #000000;
  --pr-white:      #FFFFFF;

  /* Neutrals */
  --pr-slate:      #1F2937;
  --pr-gray:       #6B7280;
  --pr-gray-light: #F3F4F6;
  --pr-gray-border:#D1D5DB;

  /* Dark theme surfaces */
  --surface-dark:    #111111;
  --surface-card:    #1A1A1A;
  --surface-elevated:#222222;
  --text-on-dark:    #F0F0F0;
  --text-muted-dark: #A0A0A0;

  /* Semantic */
  --pr-success:    #16A34A;
  --pr-warning:    #F59E0B;

  /* Typography */
  --font-body:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading:  'Poppins', var(--font-body);

  /* Spacing scale */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Misc */
  --radius-sm:  0.375rem;
  --radius-md:  0.5rem;
  --radius-lg:  0.75rem;
  --radius-pill: 50rem;
  --shadow-sm:  0 1px 3px rgba(17,17,17,.08);
  --shadow-md:  0 4px 12px rgba(17,17,17,.1);
  --shadow-lg:  0 10px 30px rgba(17,17,17,.12);
  --transition: 0.25s ease;
}

/* ===== 2. Base / Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-on-dark);
  background: var(--surface-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pr-white);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

a {
  color: var(--pr-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--pr-blue-dark); }

img { max-width: 100%; height: auto; }

/* ===== 3. Navigation ===== */
.navbar-pr {
  background: #FFFFFF;
  padding: 0.75rem 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow var(--transition);
}

.navbar-pr.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar-pr .navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--pr-white);
}

.navbar-pr .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  color: #333333;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color var(--transition);
}

.navbar-pr .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--pr-red);
  transition: width var(--transition), left var(--transition);
}

.navbar-pr .nav-link:hover,
.navbar-pr .nav-link.active {
  color: var(--pr-red);
}

.navbar-pr .nav-link:hover::after,
.navbar-pr .nav-link.active::after {
  width: 60%;
  left: 20%;
}

.navbar-pr .navbar-toggler {
  border: none;
  padding: 0.25rem 0.5rem;
}
.navbar-pr .navbar-toggler:focus { box-shadow: none; }

.navbar-pr .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6A00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== 4. Hero Section ===== */
.hero-pr {
  background: linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-blue) 100%);
  color: var(--pr-white);
  padding: var(--space-4xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-pr::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,106,0,.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-pr h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--pr-white);
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: var(--space-lg);
}

.hero-pr p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  opacity: 0.9;
}

/* ===== 5. Buttons ===== */
.btn-primary-pr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--pr-red);
  color: var(--pr-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--pr-red);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary-pr:hover,
.btn-primary-pr:focus-visible {
  background: var(--pr-red-dark) !important;
  border-color: var(--pr-red-dark) !important;
  color: var(--pr-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,106,0,.35);
}

.btn-secondary-pr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--pr-red);
  color: var(--pr-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--pr-red);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-secondary-pr:hover,
.btn-secondary-pr:focus-visible {
  background: var(--pr-blue-dark) !important;
  border-color: var(--pr-blue-dark) !important;
  color: var(--pr-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,106,0,.3);
}

.btn-outline-pr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--pr-red);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border: 2px solid var(--pr-red);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-outline-pr:hover,
.btn-outline-pr:focus-visible {
  background: var(--pr-red) !important;
  color: var(--pr-white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,106,0,.35);
}

.btn-primary-pr:active,
.btn-secondary-pr:active,
.btn-outline-pr:active {
  transform: translateY(0);
}

/* ===== 6. Cards ===== */
.card-pr {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: var(--space-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-pr:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-pr .card-pr-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pr-white);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card-pr .card-pr-price {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--pr-red);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

.card-pr .card-pr-body {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  margin-bottom: var(--space-lg);
}

.card-pr.card-pr-featured {
  border-color: var(--pr-red);
  border-width: 2px;
  position: relative;
}

.card-pr.card-pr-featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pr-red);
  color: var(--pr-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 1rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== 7. Countdown Timer ===== */
.countdown-pr {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin: var(--space-xl) 0;
}

.countdown-pr .countdown-unit {
  background: var(--pr-navy);
  border: 2px solid var(--pr-red);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  min-width: 80px;
  text-align: center;
}

.countdown-pr .countdown-digit {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--pr-white);
  line-height: 1;
}

.countdown-pr .countdown-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-xs);
}

.countdown-pr.countdown-urgent .countdown-unit {
  border-color: var(--pr-warning);
}
.countdown-pr.countdown-urgent .countdown-digit {
  color: var(--pr-warning);
}

/* ===== 8. Section Headings ===== */
.section-heading-pr {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-heading-pr h2 {
  display: inline-block;
  position: relative;
  padding-bottom: var(--space-md);
}

.section-heading-pr h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--pr-red);
  border-radius: 2px;
}

.section-heading-pr p {
  color: var(--text-muted-dark);
  max-width: 560px;
  margin: var(--space-md) auto 0;
}

/* ===== 9. How It Works Steps ===== */
.steps-pr {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
  padding-left: 3.5rem;
}

.steps-pr::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--pr-red-light);
}

.step-pr {
  position: relative;
}

.step-pr .step-number {
  position: absolute;
  left: -3.5rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--pr-red);
  color: var(--pr-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.step-pr .step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pr-white);
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.step-pr .step-text {
  color: var(--text-muted-dark);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .steps-pr {
    flex-direction: row;
    padding-left: 0;
    justify-content: center;
  }

  .steps-pr::before {
    top: 1.25rem;
    left: 10%;
    right: 10%;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .step-pr {
    text-align: center;
    flex: 1;
    max-width: 260px;
  }

  .step-pr .step-number {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto var(--space-md);
  }
}

/* ===== 10. FAQ Accordion ===== */
.accordion-pr .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: transparent;
}

.accordion-pr .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--pr-white);
  background: transparent;
  padding: var(--space-lg) 1.25rem;
  box-shadow: none;
}

.accordion-pr .accordion-button:not(.collapsed) {
  color: var(--pr-red);
  background: transparent;
  box-shadow: none;
}

.accordion-pr .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6A00'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3e%3c/svg%3e");
  transition: transform var(--transition);
}

.accordion-pr .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-pr .accordion-body {
  padding: 0 1.25rem var(--space-lg);
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== 11. Footer ===== */
/* Note: Main footer-pr styles defined in Section 46c below */
.footer-pr h5,
.footer-pr h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pr-white);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}

.footer-pr a {
  color: #475569;
  transition: color var(--transition);
}
.footer-pr a:hover {
  color: var(--pr-blue);
}

.footer-pr ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-pr ul li { margin-bottom: var(--space-sm); }

/* ===== 12. Disclosure / Legal Block ===== */
.disclosure-pr {
  background: var(--surface-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

.disclosure-pr strong {
  display: block;
  font-size: 0.9rem;
  color: var(--pr-white);
  margin-bottom: var(--space-sm);
}

.disclosure-pr .no-purchase {
  font-weight: 700;
  color: var(--text-on-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== 13. Form Inputs ===== */
.form-control-pr {
  display: block;
  width: 100%;
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-on-dark);
  background: var(--surface-card);
  border: 1.5px solid var(--pr-gray-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control-pr::placeholder {
  color: var(--text-muted-dark);
}
.form-control-pr:focus {
  outline: none;
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 3px rgba(255,106,0,.15);
}

.form-label-pr {
  font-weight: 500;
  color: var(--pr-white);
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
}

/* ===== 14. Page Banner (Internal Pages) ===== */
.page-banner-pr {
  background: linear-gradient(135deg, #1a1a1a 0%, #111111 40%, #2a1500 80%, rgba(255,106,0,.35) 100%);
  padding: var(--space-3xl) 0 var(--space-2xl);
  text-align: center;
  color: var(--pr-white);
  border-bottom: 4px solid var(--pr-red);
}

.page-banner-pr .title,
.page-banner-pr h1 {
  font-weight: 800;
  color: var(--pr-white);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.page-banner-pr p {
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.page-banner-pr .row {
  justify-content: center;
  text-align: center;
}

.page-banner-pr .col-lg-8,
.page-banner-pr .col-lg-6,
.page-banner-pr .col-md-10,
.page-banner-pr .col-md-8 {
  text-align: center;
}

/* ===== 15. Winner Cards ===== */
.winner-card-pr {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.winner-card-pr:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.winner-card-pr .winner-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--pr-red);
  margin-bottom: var(--space-md);
}

.winner-card-pr .winner-name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--pr-white);
  font-size: 1.1rem;
}

.winner-card-pr .winner-prize {
  color: var(--pr-red);
  font-weight: 600;
  font-size: 0.95rem;
}

.winner-card-pr .winner-date {
  color: var(--text-muted-dark);
  font-size: 0.82rem;
  margin-top: var(--space-xs);
}

.winner-card-pr .winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(22,163,74,.1);
  color: var(--pr-success);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  margin-top: var(--space-sm);
}

/* ===== 16. Utility Classes ===== */
.text-pr-red   { color: var(--pr-red)  !important; }
.text-pr-blue  { color: var(--pr-blue) !important; }
.text-pr-navy  { color: var(--pr-navy) !important; }
.text-pr-gray  { color: var(--pr-gray) !important; }
.text-pr-success { color: var(--pr-success) !important; }

.bg-pr-red   { background-color: var(--pr-red)  !important; }
.bg-pr-blue  { background-color: var(--pr-blue) !important; }
.bg-pr-navy  { background-color: var(--pr-navy) !important; }
.bg-pr-light { background-color: var(--pr-gray-light) !important; }

.section-padding {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
  }
}

/* ===== 17. Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--pr-navy-dark);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pr-red) 0%, var(--pr-blue) 100%);
  border-radius: 10px;
  border: 2px solid var(--pr-navy-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--pr-red-dark) 0%, var(--pr-blue-dark) 100%);
}
/* Firefox scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--pr-red) var(--pr-navy-dark);
}

/* ===== 18. Keyframe Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInScale {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(255,106,0,.3); }
  50%      { box-shadow: 0 0 30px rgba(255,106,0,.6), 0 0 60px rgba(255,106,0,.2); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

@keyframes countdownPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes borderGlow {
  0%, 100% { border-color: var(--pr-red); box-shadow: 0 0 8px rgba(255,106,0,.2); }
  50%      { border-color: var(--pr-blue); box-shadow: 0 0 16px rgba(255,106,0,.3); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
  to   { opacity: 1; transform: rotate(0) scale(1); }
}

@keyframes typewriter {
  from { width: 0; }
  to   { width: 100%; }
}

/* ===== 19. Animation Utility Classes ===== */
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}

.fade-in-down {
  opacity: 0;
  animation: fadeInDown 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}

.fade-in-left {
  opacity: 0;
  animation: fadeInLeft 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}

.fade-in-right {
  opacity: 0;
  animation: fadeInRight 0.7s cubic-bezier(0.22,1,0.36,1) forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

.scale-in {
  opacity: 0;
  animation: scaleIn 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

.slide-in-scale {
  opacity: 0;
  animation: slideInScale 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}

/* Staggered delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ===== 20. Scroll-Triggered Reveals ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1),
              transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
.reveal.reveal-left {
  transform: translateX(-40px);
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.reveal-scale {
  transform: scale(0.9);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Staggered reveal children */
.reveal-stagger > .reveal {
  transition-delay: calc(var(--reveal-index, 0) * 0.1s);
}

/* Legacy class — still supported */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== 21. Image Showcase Effects ===== */

/* Dramatic image card with overlay on hover */
.img-showcase {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.img-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.5s ease;
}

.img-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.85) 0%,
    rgba(0,0,0,.3) 40%,
    transparent 100%
  );
  z-index: 1;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.img-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255,106,0,.0);
  border-radius: var(--radius-lg);
  z-index: 2;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.img-showcase:hover img {
  transform: scale(1.08);
}

.img-showcase:hover::before {
  opacity: 1;
}

.img-showcase:hover::after {
  border-color: rgba(255,106,0,.7);
  box-shadow: inset 0 0 30px rgba(255,106,0,.15);
}

.img-showcase .img-showcase-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 3;
  color: var(--pr-white);
  transform: translateY(10px);
  opacity: 0.8;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.img-showcase:hover .img-showcase-content {
  transform: translateY(0);
  opacity: 1;
}

.img-showcase .img-showcase-content h3 {
  color: var(--pr-white);
  font-weight: 800;
  margin-bottom: var(--space-xs);
}

.img-showcase .img-showcase-content p {
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
}

/* Glowing image frame */
.img-glow {
  position: relative;
  display: inline-block;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.img-glow::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--pr-red), var(--pr-blue), var(--pr-red));
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
  border-radius: calc(var(--radius-lg) + 3px);
  z-index: -1;
}

.img-glow img {
  display: block;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

/* Tilt effect container */
.img-tilt {
  transition: transform 0.3s ease;
  will-change: transform;
}
.img-tilt:hover {
  transform: perspective(800px) rotateY(-5deg) rotateX(3deg) scale(1.02);
}

/* Gallery grid with hover zoom */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}

.gallery-grid .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid .gallery-item:hover img {
  transform: scale(1.12);
}

.gallery-grid .gallery-item:hover::after {
  opacity: 1;
}

/* ===== 22. Enhanced Button Effects ===== */

/* Glowing CTA */
.btn-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* Shimmer sweep on hover */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}
.btn-shimmer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255,255,255,.3) 50%,
    transparent 70%
  );
  transition: left 0.5s ease;
}
.btn-shimmer:hover::before {
  left: 100%;
}

/* Magnetic hover (slight movement toward cursor — CSS approximation) */
.btn-primary-pr,
.btn-secondary-pr,
.btn-outline-pr {
  position: relative;
  overflow: hidden;
}

/* ===== 23. Enhanced Card Effects ===== */

/* Cards with gradient border on hover */
.card-pr {
  position: relative;
}

.card-pr::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, transparent, transparent);
  z-index: -1;
  transition: background 0.4s ease;
}

.card-pr:hover::before {
  background: linear-gradient(135deg, var(--pr-red), var(--pr-blue));
}

/* Prize card variant */
.card-prize {
  background: var(--surface-card);
  border: 2px solid var(--pr-gray-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
  position: relative;
  overflow: hidden;
}

.card-prize::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.card-prize:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  border-color: var(--pr-blue);
}

.card-prize:hover::before {
  transform: scaleX(1);
}

/* Floating card effect */
.card-float {
  animation: float 4s ease-in-out infinite;
}

/* ===== 24. Section Dividers & Transitions ===== */

/* Angled section divider */
.section-angle {
  position: relative;
}
.section-angle::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--surface-dark);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 2;
}
.section-angle.angle-reverse::after {
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Wave section divider */
.section-wave {
  position: relative;
}
.section-wave::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--surface-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
@media (max-width: 767.98px) {
  .section-wave::after {
    height: 25px;
    clip-path: ellipse(60% 100% at 50% 100%);
  }
  .section-angle::after {
    height: 35px;
  }
}
@media (max-width: 767.98px) {
  .section-wave::after {
    height: 25px;
    clip-path: ellipse(60% 100% at 50% 100%);
  }
  .section-angle::after {
    height: 35px;
  }
}

/* Gradient mesh background */
.bg-mesh {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,106,0,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,106,0,.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.03) 0%, transparent 70%);
}

/* Animated gradient background */
.bg-gradient-animated {
  background: linear-gradient(-45deg, var(--pr-navy), var(--pr-red), var(--pr-navy-dark), #331A00);
  background-size: 400% 400%;
  animation: gradientShift 8s ease infinite;
}

/* ===== 25. Enhanced Hero ===== */
.hero-pr {
  position: relative;
}

.hero-pr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--surface-dark), transparent);
  pointer-events: none;
  z-index: 1;
}

/* Floating particles effect (CSS-only) */
/* Hero star particles — tiny dots that twinkle */
.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-particles::before {
  width: 2px;
  height: 2px;
  top: 18%;
  right: 12%;
  background: var(--surface-card);
  border-radius: 50%;
  box-shadow:
    0 0 4px 1px rgba(255,255,255,.6),
    40px 60px 0 0 rgba(255,255,255,.4),
    -80px 30px 0 0 rgba(255,255,255,.3),
    120px -20px 0 0 rgba(255,255,255,.5),
    -30px 90px 0 0 rgba(255,255,255,.25),
    200px 40px 0 0 rgba(255,255,255,.35),
    -150px -10px 0 0 rgba(255,255,255,.2),
    60px -50px 0 0 rgba(255,255,255,.45),
    -100px 70px 0 0 rgba(255,255,255,.3);
  opacity: .7;
}
.hero-particles::after {
  width: 2px;
  height: 2px;
  bottom: 22%;
  left: 8%;
  background: var(--surface-card);
  border-radius: 50%;
  box-shadow:
    0 0 4px 1px rgba(255,255,255,.5),
    50px -40px 0 0 rgba(255,255,255,.35),
    -60px 50px 0 0 rgba(255,255,255,.25),
    100px 30px 0 0 rgba(255,255,255,.4),
    -20px -60px 0 0 rgba(255,255,255,.3),
    150px -10px 0 0 rgba(255,255,255,.2),
    80px 70px 0 0 rgba(255,255,255,.35);
  opacity: .5;
}

/* ===== 26. Enhanced Countdown ===== */
.countdown-pr .countdown-unit {
  position: relative;
  overflow: hidden;
}

.countdown-pr .countdown-unit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue));
}

.countdown-pr.countdown-urgent .countdown-unit {
  animation: countdownPulse 1s ease-in-out infinite;
}

/* ===== 27. Enhanced Page Banner ===== */
.page-banner-pr {
  position: relative;
  overflow: hidden;
}

.page-banner-pr::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,106,0,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 10s ease-in-out infinite;
}

.page-banner-pr::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,106,0,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 12s ease-in-out infinite reverse;
}

/* ===== 28. Text Effects ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--pr-red), var(--pr-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-shimmer {
  background: linear-gradient(
    120deg,
    var(--pr-white) 0%,
    rgba(255,255,255,.6) 40%,
    var(--pr-white) 60%,
    rgba(255,255,255,.6) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Underline animation on hover */
.link-animated {
  position: relative;
  display: inline-block;
}
.link-animated::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pr-red);
  transition: width 0.3s cubic-bezier(0.22,1,0.36,1);
}
.link-animated:hover::after {
  width: 100%;
}

/* ===== 29. Glassmorphism Cards ===== */
.card-glass {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}

/* ===== 30. Badge & Tag Styles ===== */
.badge-pr {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-pr-red {
  background: rgba(255,106,0,.1);
  color: var(--pr-red);
}

.badge-pr-blue {
  background: rgba(255,106,0,.1);
  color: var(--pr-blue);
}

.badge-pr-success {
  background: rgba(22,163,74,.1);
  color: var(--pr-success);
}

/* ===== 31. Progress / Stats Bar ===== */
.progress-pr {
  height: 8px;
  background: var(--surface-elevated);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-pr .progress-bar-pr {
  height: 100%;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue));
  border-radius: var(--radius-pill);
  transition: width 1s cubic-bezier(0.22,1,0.36,1);
}

/* ===== 32. Tooltip / Popover Enhancements ===== */
.tooltip-pr {
  position: relative;
}
.tooltip-pr::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--pr-navy);
  color: var(--pr-white);
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.tooltip-pr:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== 33. Number Counter Style ===== */
.stat-counter {
  text-align: center;
  padding: var(--space-xl);
}

.stat-counter .stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(135deg, var(--pr-red), var(--pr-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.stat-counter .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--space-xs);
}

/* ===== 34. Loading / Skeleton ===== */
.skeleton {
  background: linear-gradient(90deg,
    var(--pr-gray-light) 25%,
    #e5e7eb 50%,
    var(--pr-gray-light) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-sm);
}

/* Smooth transitions for interactive elements */
button,
a,
input,
.card-pr,
.winner-card-pr {
  transition-property: color, background-color, border-color, box-shadow, transform;
  transition-duration: 0.25s;
  transition-timing-function: ease;
}

/* ===== 35. Particle Dots (decorative) ===== */
.dots-pattern {
  position: relative;
}
.dots-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--pr-red) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.1;
  pointer-events: none;
}

/* ===== 36. Marquee / Ticker ===== */
.ticker-pr {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--pr-red) 0%, var(--pr-red-dark) 50%, var(--pr-red) 100%);
  color: var(--pr-white);
  padding: 0.6rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-top: 2px solid rgba(255,255,255,.15);
  border-bottom: 2px solid rgba(255,255,255,.15);
}

.ticker-pr .ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 40s linear infinite;
}

.ticker-pr .ticker-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-pr .ticker-item {
  padding: 0 1rem;
}
.ticker-pr .ticker-item i {
  margin-right: 0.4rem;
  opacity: 0.8;
}
.ticker-pr .ticker-divider {
  padding: 0 0.5rem;
  opacity: 0.5;
  font-size: 0.7rem;
  vertical-align: middle;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

/* ===== 37. Enhanced Winner Cards ===== */
.winner-card-pr {
  position: relative;
  overflow: hidden;
}

.winner-card-pr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue), var(--pr-red));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
}

/* ===== 38. Responsive Enhancements ===== */
@media (max-width: 767.98px) {
  .img-showcase .img-showcase-content {
    transform: translateY(0);
    opacity: 1;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }
}

/* ===== 18. Responsive Breakpoints ===== */

/* Small mobile (375px+) */
@media (max-width: 575.98px) {
  .hero-pr {
    padding: var(--space-3xl) 0;
  }

  .countdown-pr {
    gap: var(--space-sm);
  }

  .countdown-pr .countdown-unit {
    padding: var(--space-sm) var(--space-md);
    min-width: 64px;
  }

  .card-pr {
    padding: var(--space-lg);
  }

  .btn-primary-pr,
  .btn-secondary-pr,
  .btn-outline-pr {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
}

/* Tablet (768px+) */
@media (min-width: 768px) {
  .hero-pr {
    padding: var(--space-4xl) 0;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .hero-pr {
    padding: 7rem 0;
  }

  .hero-pr h1 {
    font-size: 3.5rem;
  }
}

/* ===== 19. Bootstrap Overrides ===== */
.container { max-width: 1140px; }

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(255,106,0,.3);
}

/* Override Bootstrap card if used alongside .card-pr */
.card.card-pr {
  border-radius: var(--radius-lg);
}

/* Ensure no Bootstrap accordion borders override ours */
.accordion-pr .accordion-item:first-of-type,
.accordion-pr .accordion-item:last-of-type {
  border-radius: 0;
}

/* ===== 40. DESIGN RICHNESS — Red Accents & Energy ===== */

/* Red accent stripe on all section headings */
.section-heading-pr {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.section-heading-pr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--pr-red);
  border-radius: 2px;
}
/* When inside a text-center parent, ensure heading is block-centered */
.text-center .section-heading-pr,
.section-heading-pr.text-center {
  display: block;
}
.text-center .section-heading-pr::after,
.section-heading-pr.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Glassmorphism cards — fix overflow */
.card-glass {
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.card-glass p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Step cards on How It Works — ensure text wraps neatly */
.card-pr p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== 41. Red-Accented Section Backgrounds ===== */

/* Subtle red mesh for excitement */
.bg-red-mesh {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255,106,0,.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.04) 0%, transparent 70%);
}

/* Red-to-navy gradient — high energy */
.bg-red-gradient {
  background: linear-gradient(135deg, var(--pr-red) 0%, var(--pr-red-dark) 40%, var(--pr-navy) 100%);
}

/* Warm light background instead of plain white */
.bg-warm {
  background: linear-gradient(180deg, #FFF8F6 0%, #FFFFFF 50%, #F8F6FF 100%);
}

/* Red stripe accent top of section */
.section-red-top {
  position: relative;
}
.section-red-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue), var(--pr-red));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

/* ===== 42. Enhanced Prize Cards — Red Energy ===== */
.card-prize {
  border-color: transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, rgba(255,106,0,.15), rgba(255,106,0,.15)) border-box;
  border: 2px solid transparent;
}
.card-prize:hover {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--pr-red), var(--pr-blue)) border-box;
  border-color: transparent;
}

/* ===== 43. Red Glow Divider ===== */
.divider-glow {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pr-red), var(--pr-blue), transparent);
  border: none;
  margin: 0;
  opacity: 0.6;
}

/* ===== 44. Vibrant Stats Section ===== */
.bg-gradient-animated {
  background: linear-gradient(-45deg, var(--pr-red-dark), var(--pr-navy), var(--pr-blue), var(--pr-red));
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

/* ===== 45. Enhanced Disclosure Block ===== */
.disclosure-pr {
  background: linear-gradient(135deg, var(--surface-card), #1F1A14);
  border-left: 4px solid var(--pr-red);
}

/* ===== 46. Card Hover Red Accent — only interactive cards ===== */
.card-pr:not(.card-static):hover {
  border-color: rgba(255,106,0,.3);
}

/* ===== 46a. Navbar Cart Icon ===== */
.nav-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #333333;
  font-size: 1.15rem;
  transition: all .25s ease;
  text-decoration: none;
}
.nav-cart-icon:hover {
  background: rgba(255,106,0,.08);
  color: #FF6A00;
}
.nav-cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--pr-red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Cart hover dropdown */
.cart-hover-wrapper {
  position: relative;
}
.cart-hover-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid #e8ecf2;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  padding: 0;
  overflow: hidden;
  margin-top: 6px;
}
.cart-hover-wrapper:hover .cart-hover-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cart-hover-header {
  background: var(--pr-navy);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  font-size: .85rem;
}
.cart-hover-items {
  max-height: 240px;
  overflow-y: auto;
  padding: 0;
}
.cart-hover-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: .82rem;
}
.cart-hover-item:last-child { border-bottom: none; }
.cart-hover-item img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-hover-item-info, .cart-hover-info { flex: 1; min-width: 0; }
.cart-hover-item-name, .cart-hover-name {
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-hover-item-meta, .cart-hover-meta { color: #888; font-size: .75rem; }
.cart-hover-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-hover-price { font-weight: 600; color: #FF6A00; font-size: .82rem; white-space: nowrap; }
.cart-hover-footer {
  padding: 14px 16px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333333;
}
.cart-hover-total { font-weight: 700; color: #222222; font-size: .9rem; }
.cart-hover-empty {
  text-align: center;
  padding: 24px 16px;
  color: #999;
  font-size: .85rem;
}
@media (max-width: 767px) {
  .cart-hover-dropdown { display: none !important; }
}

/* ===== 46a-2. Mobile Cart Cards ===== */
.cart-mobile-card {
  background: var(--surface-card);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.cart-mobile-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== 46b. Enhanced Navbar ===== */

/* Thin gradient accent stripe */
.navbar-accent-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue), var(--pr-navy));
  position: sticky;
  top: 0;
  z-index: 1031;
}

/* Clean white navbar */
.navbar-pr {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0;
  transition: box-shadow 0.4s ease;
  top: 2px;
}

.navbar-pr .container {
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-pr.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

/* Logo — fixed width zone so nav links always start at the same spot */
.navbar-logo {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.navbar-logo-wrap {
  margin-right: auto; /* push everything else right on mobile */
}

.navbar-logo-wrap:hover .navbar-logo {
  opacity: 0.85;
}

/* Animated hamburger */
.navbar-toggler-pr {
  width: 34px;
  height: 28px;
  position: relative;
  padding: 0;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  background: var(--pr-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease;
}

.hamburger-lines span:nth-child(1) { width: 22px; }
.hamburger-lines span:nth-child(2) { width: 16px; transition-delay: 0.05s; }
.hamburger-lines span:nth-child(3) { width: 22px; }

.navbar-toggler-pr:hover .hamburger-lines span { width: 22px; }

.navbar-toggler-pr[aria-expanded="true"] .hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler-pr[aria-expanded="true"] .hamburger-lines span:nth-child(2) {
  opacity: 0; width: 0;
}
.navbar-toggler-pr[aria-expanded="true"] .hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links — proper size, even spacing */
.navbar-pr .navbar-nav {
  gap: 0;
  align-items: center;
}

.navbar-pr .nav-link {
  color: #333333;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-pr .nav-link .nav-link-text {
  position: relative;
}

/* Underline indicator — slides in on hover */
.navbar-pr .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: #FF6A00;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-pr .nav-link:hover {
  color: #FF6A00;
}

.navbar-pr .nav-link:hover::after {
  transform: scaleX(1);
  background: #FF6A00;
}

/* Active link */
.navbar-pr .nav-link.active {
  color: #FF6A00;
  font-weight: 600;
}

.navbar-pr .nav-link.active::after {
  transform: scaleX(1);
  background: var(--pr-red);
}

/* Nav CTA — balanced with nav items */
.btn-nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--pr-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 50rem;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-nav-cta:hover {
  background: var(--pr-red-dark, #a00e20);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,106,0,.25);
  color: #fff;
}

.btn-nav-cta-pulse {
  display: none;
}

/* Mobile navbar: stack cart + CTA properly */
@media (max-width: 991.98px) {
  .navbar-pr .navbar-collapse .d-flex {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,.08);
    margin-top: 0.5rem;
  }

  .navbar-pr .navbar-collapse .cart-hover-wrapper {
    align-self: flex-end;
    margin-right: 0.25rem;
  }

  .btn-nav-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
  }

  /* Hide cart hover dropdown on mobile (tap-only) */
  .cart-hover-wrapper:hover .cart-hover-dropdown {
    opacity: 0;
    visibility: hidden;
  }
}

/* Desktop spacing — center nav links between logo and CTA */
@media (min-width: 992px) {
  .navbar-pr .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .navbar-pr .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-pr .nav-link {
    padding: 0.5rem 1.3rem;
  }

  .btn-nav-cta {
    margin-left: 0;
    flex-shrink: 0;
  }
}

/* ===== 46c. Enhanced Footer ===== */

.footer-wave {
  margin-top: -1px;
  line-height: 0;
  background: #e9ecef;
}

.footer-wave svg {
  width: 100%;
  height: 36px;
  display: block;
}

.footer-pr {
  background: var(--surface-card);
  color: var(--pr-white);
  padding: 3.5rem 0 2rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.footer-logo:hover { opacity: 0.75; }

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,.4);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(0,0,0,.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--pr-white);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-pr a.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,.2);
  color: var(--pr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-pr a.footer-social-icon:hover {
  background: var(--pr-navy);
  border-color: var(--pr-navy);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer mini CTA */
.footer-pr a.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--pr-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border: none;
  border-radius: 50rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.25s ease;
}

.footer-pr a.btn-footer-cta:hover {
  background: var(--pr-blue);
  color: #fff;
  transform: translateY(-1px);
}

/* Separator above bottom bar */
.footer-pr + .footer-bottom {
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Bottom bar */
.footer-bottom {
  background: var(--pr-navy, #0A2472);
  padding: 0.7rem 0;
}

.footer-bottom p {
  color: rgba(255,255,255,.6);
  font-size: 0.78rem;
  margin: 0;
}

/* ===== 47. Hero Bottom Fade — Remove white for smoother transition ===== */
.hero-pr::after {
  display: none;
}

/* Angle divider takes care of the hero-to-next-section transition */
.section-angle::after {
  height: 80px;
}

/* ===== 47a0. Interactive Starfield Canvas ===== */
#hero-starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Starfield is purely decorative — no pointer interaction */

/* ===== 47a. Shooting Stars ===== */
.shooting-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.shooting-star {
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.05), rgba(255,255,255,.7), #fff);
  border-radius: 100px;
  opacity: 0;
  will-change: transform, opacity, width;
}

/* Glow head of the star */
.shooting-star::before {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--surface-card);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(255,255,255,.6), 0 0 30px 8px rgba(255,106,0,.3);
}

/* Star 1 */
.shooting-star:nth-child(1) {
  top: 25%;
  right: 0;
  transform: rotate(215deg);
  animation: shootStar1 12s cubic-bezier(0.3, 0, 0.1, 1) 1s infinite;
}

/* Star 2 */
.shooting-star:nth-child(2) {
  top: 45%;
  right: 20%;
  transform: rotate(210deg);
  animation: shootStar2 14s cubic-bezier(0.3, 0, 0.1, 1) 5s infinite;
}

/* Star 3 */
.shooting-star:nth-child(3) {
  top: 60%;
  right: -5%;
  transform: rotate(220deg);
  animation: shootStar3 11s cubic-bezier(0.3, 0, 0.1, 1) 9s infinite;
}

/* Star 4 */
.shooting-star:nth-child(4) {
  top: 35%;
  right: 55%;
  transform: rotate(208deg);
  animation: shootStar1 15s cubic-bezier(0.3, 0, 0.1, 1) 14s infinite;
}

/* Star 5 */
.shooting-star:nth-child(5) {
  top: 70%;
  right: 10%;
  transform: rotate(218deg);
  animation: shootStar2 13s cubic-bezier(0.3, 0, 0.1, 1) 19s infinite;
}

/* Star 6 */
.shooting-star:nth-child(6) {
  top: 50%;
  right: 70%;
  transform: rotate(212deg);
  animation: shootStar3 16s cubic-bezier(0.3, 0, 0.1, 1) 24s infinite;
}

@keyframes shootStar1 {
  0%   { width: 0;     opacity: 0;   transform: rotate(215deg) translateX(0); }
  1%   { width: 0;     opacity: 0.9; }
  6%   { width: 120px; opacity: 0.9; }
  18%  { width: 120px; opacity: 0.5; transform: rotate(215deg) translateX(500px); }
  22%  { width: 40px;  opacity: 0;   transform: rotate(215deg) translateX(620px); }
  100% { width: 0;     opacity: 0;   transform: rotate(215deg) translateX(620px); }
}

@keyframes shootStar2 {
  0%   { width: 0;     opacity: 0;   transform: rotate(210deg) translateX(0); }
  1%   { width: 0;     opacity: 0.9; }
  5%   { width: 100px; opacity: 0.9; }
  16%  { width: 100px; opacity: 0.4; transform: rotate(210deg) translateX(450px); }
  20%  { width: 30px;  opacity: 0;   transform: rotate(210deg) translateX(560px); }
  100% { width: 0;     opacity: 0;   transform: rotate(210deg) translateX(560px); }
}

@keyframes shootStar3 {
  0%   { width: 0;     opacity: 0;   transform: rotate(220deg) translateX(0); }
  1.5% { width: 0;     opacity: 0.9; }
  7%   { width: 140px; opacity: 0.9; }
  20%  { width: 140px; opacity: 0.4; transform: rotate(220deg) translateX(550px); }
  25%  { width: 50px;  opacity: 0;   transform: rotate(220deg) translateX(680px); }
  100% { width: 0;     opacity: 0;   transform: rotate(220deg) translateX(680px); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shooting-star { animation: none !important; }
}

/* ===== 47b. Dynamic Hero Campaign Background ===== */
.hero-pr.hero-has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 767.98px) {
  .hero-pr.hero-has-bg {
    background-attachment: scroll; /* iOS doesn't support fixed */
  }
}

.hero-pr.hero-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  right: 0;
  background: rgba(0,0,0,.85) !important;
  z-index: 2;
  pointer-events: none;
}

/* ===== 48. Rich Backgrounds for White Sections ===== */
/* Subtle diagonal stripes */
.bg-diagonal-subtle {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,106,0,.02) 40px,
    rgba(255,106,0,.02) 80px
  );
}

/* ===== 49. Better Mobile Card Layout ===== */
@media (max-width: 767.98px) {
  .card-glass {
    padding: var(--space-lg);
  }
  .card-glass h5 {
    font-size: 1rem;
  }
  .card-glass p {
    font-size: 0.85rem;
  }
  .card-prize {
    padding: var(--space-lg);
  }
  .card-prize .display-5 {
    font-size: 2rem;
  }
}

/* ===== 50. Section Heading Alignment Fix ===== */
.t-and-c .section-heading-pr,
.faq .section-heading-pr,
section .section-heading-pr {
  width: 100%;
}

/* ===== 51. Red Accented CTA Sections ===== */
.bg-cta-red {
  background: linear-gradient(135deg, var(--pr-red) 0%, var(--pr-red-dark) 50%, #7A0A14 100%);
  position: relative;
  overflow: hidden;
}
.bg-cta-red::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== 52. Enhanced Navbar with Red Accent ===== */
.navbar-pr {
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, var(--pr-red), var(--pr-blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ===== 53. Content Pages — Better Typography ===== */
.t-and-c .content h3,
section .content h3 {
  position: relative;
  padding-left: 1rem;
}
.t-and-c .content h3::before,
section .content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--pr-red);
  border-radius: 2px;
}

/* ===== 54. Pulsing Red Dot Indicator ===== */
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pr-red);
  animation: pulseGlow 2s ease-in-out infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ===== 55. Red Hover State for All Interactive Elements ===== */
.card-pr:hover .btn-outline-pr,
.card-prize:hover .btn-outline-pr {
  background: var(--pr-red);
  color: var(--pr-white);
  border-color: var(--pr-red);
}

/* Card hover — dark background ONLY for clickable campaign cards on listings */
.card-pr.card-hover-dark:hover {
  background: var(--pr-navy);
}
.card-pr.card-hover-dark:hover h3,
.card-pr.card-hover-dark:hover h4,
.card-pr.card-hover-dark:hover h5,
.card-pr.card-hover-dark:hover p,
.card-pr.card-hover-dark:hover .text-muted,
.card-pr.card-hover-dark:hover .text-pr-navy,
.card-pr.card-hover-dark:hover .text-pr-red,
.card-pr.card-hover-dark:hover .text-pr-blue {
  color: var(--pr-white) !important;
}
.card-pr.card-hover-dark:hover .btn-primary-pr {
  background: var(--pr-red);
  border-color: var(--pr-red);
}

/* Static cards — no lift or color change on hover */
.card-pr.card-static {
  cursor: default;
}
.card-pr.card-static:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,255,255,.08);
}
.card-pr.card-static::before {
  display: none;
}

/* ===== 56. Alert Banner for Official Rules ===== */
.alert-warning {
  background: linear-gradient(135deg, #FFF3CD, #FFE8A1);
  border: 2px solid #FFC107;
  border-radius: var(--radius-md);
  color: #856404;
}

/* ===== 57. Page Banner Title Fix — Force centered alignment ===== */
.page-banner-pr .title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
}

/* ===== 58. Countdown Units — Red top accent ===== */
.countdown-pr .countdown-unit {
  background: linear-gradient(180deg, rgba(255,106,0,.15), var(--pr-navy));
}

/* ===== 59. Footer Red Accent ===== */
footer {
  border-top: 4px solid var(--pr-red);
}

/* ===== 60. How It Works — Step Cards ===== */

/* Section wrapper */
.steps-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark, #111111) !important;
}

/* SVG vector background layers (shared class for all SVG bg partials) */
.svg-bg-layer,
.steps-vectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Sections that use SVG backgrounds need relative positioning */
.has-svg-bg {
  position: relative;
  overflow: hidden;
}
.has-svg-bg > .container {
  position: relative;
  z-index: 2;
}

/* Step card */
.step-card {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 12px rgba(255, 106, 0, .06);
  animation: stepFadeUp 0.6s ease both;
}

@keyframes stepFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient top stripe — hidden by default, slides in on hover */
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #FF6A00, #FF8C42);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}

/* Hover — lift + navy background + white text */
.step-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--pr-navy) 0%, #331A00 100%);
  border-color: transparent;
  box-shadow:
    0 20px 40px rgba(255, 106, 0, .2),
    0 0 0 1px rgba(255, 140, 66, .25);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover h5 {
  color: #fff !important;
}

.step-card:hover .step-desc {
  color: rgba(255, 255, 255, .8) !important;
}

/* Step number badge */
.step-number-wrap {
  position: relative;
  display: inline-block;
}

.step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pr-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  position: absolute;
  top: -6px;
  right: -10px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(255, 106, 0, .3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number-badge {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(255, 106, 0, .5);
  animation: badgePop 0.4s ease;
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1.15); }
}

/* Icon ring */
.step-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, .08), rgba(255, 140, 66, .08));
  border: 2px solid rgba(255, 106, 0, .15);
  transition: all 0.4s ease;
}

.step-icon-ring i {
  font-size: 1.5rem;
  color: #FF6A00;
  transition: color 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-icon-ring {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
}

.step-card:hover .step-icon-ring i {
  color: #fff;
  transform: scale(1.15);
}

/* Connector arrow between cards */
.step-connector {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  z-index: 5;
  color: var(--pr-red);
  font-size: 0.9rem;
  opacity: 0.5;
  animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); }
  50% { opacity: 0.7; transform: translateY(-50%) translateX(4px); }
}

/* Step description text */
.step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Mobile: stack connector arrows vertically */
@media (max-width: 991.98px) {
  .step-connector {
    display: none !important;
  }
}

/* ===== 48 · Auth Pages (Login / Register / Forgot Password) ===== */

.login-page-pr {
  min-height: 100vh;
  background: var(--surface-card);
}

/* Left branding panel */
.login-brand-panel {
  background: linear-gradient(160deg, var(--pr-navy) 0%, #331A00 60%, var(--pr-red) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.login-brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,106,0,.25) 0%, transparent 60%);
  pointer-events: none;
}
.login-brand-content {
  position: relative;
  z-index: 1;
}
.login-logo {
  height: 64px;
  width: auto;
}

/* Right form panel */
.login-form-wrap {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 1.5rem;
  margin: 0 auto;
}

/* Form controls */
.form-control-pr {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #f8fafc;
}
.form-control-pr:focus {
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 3px rgba(255,106,0,.1);
  background: var(--surface-card);
  outline: none;
}
.form-label-pr {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pr-white);
  margin-bottom: 0.35rem;
}

/* "or continue with" divider */
.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.login-divider span {
  font-size: 0.82rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Social login buttons */
.btn-social-pr {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-white);
  font-size: 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn-social-pr:hover {
  border-color: var(--pr-blue);
  background: rgba(255,106,0,.04);
  transform: translateY(-1px);
}

/* PR text color helpers for auth pages */
.text-pr-navy { color: var(--pr-navy) !important; }
.text-pr-blue { color: var(--pr-blue) !important; }

/* ===== 48a · My Account Nav (PR) ===== */

.myaccount-nav-pr .nav-tabs {
  border-bottom: none;
  flex-direction: column;
  gap: 2px;
}
.myaccount-nav-pr .nav-link {
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
}
.myaccount-nav-pr .nav-link:hover {
  background: rgba(255,106,0,.06);
  color: var(--pr-white);
}
.myaccount-nav-pr .nav-link.active {
  background: var(--pr-blue);
  color: #fff;
}
.myaccount-nav-pr .nav-link.text-danger:hover {
  background: rgba(255,106,0,.08);
  color: var(--pr-red) !important;
}

/* ===== 48b · My Account Dashboard (PR) ===== */

.myaccount-pr {
  padding: 3rem 0;
}

/* Sidebar user card */
.myaccount-sidebar-pr {
  background: var(--surface-card);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  text-align: center;
}
.myaccount-sidebar-pr .user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pr-blue), var(--pr-navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}
.myaccount-sidebar-pr .user-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pr-white);
  margin-bottom: 0.25rem;
}
.myaccount-sidebar-pr .user-id {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Dashboard grid cards */
.dash-card-pr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: var(--surface-card);
  text-decoration: none;
  color: var(--pr-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.dash-card-pr i {
  font-size: 1.5rem;
  color: var(--pr-blue);
  transition: color 0.2s ease;
}
.dash-card-pr span {
  font-size: 0.88rem;
  font-weight: 600;
}
.dash-card-pr:hover {
  border-color: var(--pr-blue);
  box-shadow: 0 4px 16px rgba(255,106,0,.1);
  transform: translateY(-2px);
  color: var(--pr-white);
  text-decoration: none;
}
.dash-card-pr:hover i {
  color: var(--pr-white);
}

/* Section headings inside account tabs */
.section-heading-pr {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pr-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
}

/* Table styling for account tabs */
.table-pr thead tr {
  background: linear-gradient(135deg, rgba(255,106,0,.06), rgba(0,0,0,.04));
}
.table-pr thead th {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pr-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #e2e8f0;
  padding: 0.75rem;
}
.table-pr tbody td {
  font-size: 0.9rem;
  padding: 0.75rem;
  vertical-align: middle;
}

/* Action button */
.btn-action-pr {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1.5px solid var(--pr-blue);
  color: var(--pr-blue);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-action-pr:hover {
  background: var(--pr-blue);
  color: #fff;
}

/* Coupon card */
.coupon-card-pr {
  border: 1.5px dashed var(--pr-blue);
  border-radius: 12px;
  padding: 1.25rem;
  background: rgba(255,106,0,.02);
  transition: border-color 0.2s ease;
}
.coupon-card-pr:hover {
  border-color: var(--pr-navy);
}

/* Address box */
.address-box-pr {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: var(--surface-card);
}
.address-box-pr h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pr-white);
  margin-bottom: 0.75rem;
}

/* Account detail form */
.myaccount-pr .form-control {
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}
.myaccount-pr .form-control:focus {
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 3px rgba(255,106,0,.1);
}
.myaccount-pr .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pr-white);
}

/* Mobile account button */
.btn-myaccount-mobile {
  background: var(--pr-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.btn-myaccount-mobile:hover {
  background: var(--pr-blue);
  color: #fff;
}

/* PR modal styling */
.modal-pr .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.modal-pr .modal-header {
  border-bottom: 1px solid #f1f5f9;
  padding: 1.25rem 1.5rem;
}
.modal-pr .modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pr-white);
}
.modal-pr .modal-body {
  padding: 1.5rem;
}
.modal-pr .modal-footer {
  border-top: 1px solid #f1f5f9;
  padding: 1rem 1.5rem;
}

/* Breadcrumb for account page */
.breadcrumb-pr {
  background: linear-gradient(135deg, rgba(0,0,0,.04), rgba(255,106,0,.03));
  padding: 1.5rem 0;
}
.breadcrumb-pr h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pr-white);
  margin-bottom: 0.25rem;
}
.breadcrumb-pr .breadcrumb {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.breadcrumb-pr .breadcrumb-item a {
  color: var(--pr-blue);
  text-decoration: none;
}
.breadcrumb-pr .breadcrumb-item.active {
  color: #64748b;
}

/* Status badge */
.badge-pr-paid {
  background: #dcfce7;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.badge-pr-unpaid {
  background: #fef9c3;
  color: #854d0e;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.badge-pr-refunded {
  background: #fce7f3;
  color: #9d174d;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

/* ===========================================================
   Section 49: Collection Showcase Cards (motoresfuriosos-inspired)
   =========================================================== */

/* --- Featured (hero) collection card --- */
.collection-featured {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  transition: transform .35s ease, box-shadow .35s ease;
}
.collection-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.collection-featured-link {
  display: block;
  position: relative;
  text-decoration: none !important;
  color: inherit;
  min-height: 420px;
}
.collection-featured-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.collection-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.collection-featured:hover .collection-featured-img img {
  transform: scale(1.05);
}
.collection-featured-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
}
.collection-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}
.collection-featured-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  min-height: 420px;
  color: #fff;
}
.collection-featured-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #fff;
}
.collection-featured-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
  max-width: 520px;
}
.collection-featured-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}

/* Shared price / count / timer styles */
.collection-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,106,0,.85);
  padding: .35rem .85rem;
  border-radius: 8px;
}
.collection-count {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* --- Collection countdown timer (inline) --- */
.collection-timer {
  margin-top: .5rem;
}
.collection-timer-units {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: .4rem .75rem;
}
.ct-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
}
.ct-digit {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.ct-unit small {
  font-size: .6rem;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
}
.ct-sep {
  color: rgba(255,255,255,.5);
  font-weight: 700;
  font-size: 1rem;
  padding: 0 2px;
  align-self: flex-start;
  margin-top: 2px;
}
.ct-urgent .ct-digit {
  color: #ff6b6b;
  animation: ct-pulse 1s ease-in-out infinite;
}
.ct-expired .collection-timer-units {
  opacity: .5;
}

@keyframes ct-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* --- Grid collection cards --- */
.collection-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-card);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  position: relative;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,.16);
}
.collection-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.collection-card:hover .collection-card-img img {
  transform: scale(1.08);
}
.collection-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
}
.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
}
.collection-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.collection-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pr-white);
  margin-bottom: .5rem;
}
.collection-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}
.collection-card .collection-price {
  font-size: .9rem;
  background: rgba(255,106,0,.1);
  color: var(--pr-red);
  padding: .25rem .6rem;
}
.collection-card .collection-count {
  font-size: .8rem;
  color: #64748b;
}
.collection-card .collection-timer-units {
  background: rgba(0,0,0,.06);
  border-radius: 8px;
  padding: .3rem .6rem;
}
.collection-card .ct-digit {
  font-size: .9rem;
  color: var(--pr-white);
}
.collection-card .ct-unit small {
  color: #94a3b8;
}
.collection-card .ct-sep {
  color: #94a3b8;
  font-size: .85rem;
}
.collection-card .ct-urgent .ct-digit {
  color: var(--pr-red);
}
.collection-card-cta {
  display: inline-block;
  margin-top: .75rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--pr-blue);
  transition: color .2s ease;
}
.collection-card:hover .collection-card-cta {
  color: var(--pr-red);
}

/* Override Bootstrap .btn hover for PR buttons inside collection/featured cards */
.collection-featured .btn.btn-primary-pr:hover,
.collection-featured .btn.btn-primary-pr:focus-visible {
  background: var(--pr-red-dark) !important;
  color: var(--pr-white) !important;
  border-color: var(--pr-red-dark) !important;
}
a.btn.btn-outline-pr:hover,
a.btn.btn-outline-pr:focus-visible {
  background: var(--pr-red) !important;
  color: var(--pr-white) !important;
  border-color: var(--pr-red) !important;
}
a.btn.btn-secondary-pr:hover,
a.btn.btn-secondary-pr:focus-visible {
  background: var(--pr-blue-dark) !important;
  color: var(--pr-white) !important;
}
a.btn.btn-primary-pr:hover,
a.btn.btn-primary-pr:focus-visible {
  background: var(--pr-red-dark) !important;
  color: var(--pr-white) !important;
}

/* --- Collection Progress Bar (days remaining) --- */
.collection-progress {
  margin-top: .75rem;
}
.collection-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: .5rem;
}
.collection-progress-label .cp-days {
  color: var(--pr-white);
  font-weight: 700;
}
.collection-progress-bar {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 50rem;
  overflow: hidden;
  position: relative;
}
.collection-progress-fill {
  height: 100%;
  border-radius: 50rem;
  background: linear-gradient(90deg, var(--pr-blue) 0%, var(--pr-red) 100%);
  transition: width .6s ease;
  position: relative;
  min-width: 6px;
}
.collection-progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pr-red);
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(255,106,0,.5);
}
/* Urgent — less than 3 days */
.collection-progress.cp-urgent .collection-progress-fill {
  background: linear-gradient(90deg, var(--pr-red) 0%, #ff4d4d 100%);
  animation: cp-pulse 1.5s ease-in-out infinite;
}
.collection-progress.cp-urgent .cp-days {
  color: var(--pr-red);
}
@keyframes cp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

/* Featured card progress bar — white theme */
.collection-featured .collection-progress-label {
  color: rgba(255,255,255,.6);
}
.collection-featured .collection-progress-label .cp-days {
  color: #fff;
}
.collection-featured .collection-progress-bar {
  background: rgba(255,255,255,.2);
}
.collection-featured .collection-progress-fill {
  background: linear-gradient(90deg, rgba(255,255,255,.6) 0%, #fff 100%);
}
.collection-featured .collection-progress-fill::after {
  background: var(--surface-card);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 0 6px rgba(255,255,255,.5);
}

/* --- Responsive adjustments --- */
@media (max-width: 767.98px) {
  .collection-featured-link {
    min-height: 340px;
  }
  .collection-featured-content {
    min-height: 340px;
    padding: 1.5rem;
  }
  .collection-featured-title {
    font-size: 1.5rem;
  }
  .collection-card-img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .collection-featured-link {
    min-height: 300px;
  }
  .collection-featured-content {
    min-height: 300px;
    padding: 1.25rem;
  }
  .collection-featured-title {
    font-size: 1.25rem;
  }
  .collection-featured-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

/* ===== Product Showcase — Motores-style purchase layout ===== */
.product-showcase {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.product-showcase-img {
  position: relative;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}
.product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-showcase-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e, #0a0a1a);
  color: rgba(255,255,255,.15);
}
.product-showcase-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,.85);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.product-purchase-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #fff;
  background: #16162a;
}
.product-purchase-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-purchase-info {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
}
.product-info-box {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
}
.product-info-box small {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.product-info-box strong {
  font-size: 1rem;
  color: #fff;
}
.product-qty-picker {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}
.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
}
.qty-minus {
  background: var(--surface-card);
  color: #1a1a2e;
}
.qty-plus {
  background: var(--pr-red);
  color: #fff;
}

/* Stock indicators */
.product-stock-limited {
  display: inline-block;
  background: rgba(255,106,0,.1);
  color: var(--pr-red);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-stock-available {
  display: inline-block;
  background: rgba(40,167,69,.1);
  color: #28a745;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-stock-out {
  display: inline-block;
  background: rgba(108,117,125,.1);
  color: #6c757d;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.qty-btn:hover {
  transform: scale(1.1);
}
.qty-input {
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  height: 44px;
  margin: 0 10px;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-total {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.product-total strong {
  color: #fff;
  font-size: 1.25rem;
}
.product-bonus-entries {
  background: rgba(255,106,0,.15);
  border: 1px solid rgba(255,106,0,.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
  text-align: center;
}
.product-purchase-panel .btn-primary-pr {
  padding: 14px 24px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 10px;
  margin-bottom: .75rem;
}
.product-disclaimer {
  text-align: center;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

@media (max-width: 767.98px) {
  .product-showcase {
    overflow: visible; /* let content flow naturally on mobile */
  }
  .product-showcase-img {
    min-height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }
  .product-purchase-panel {
    padding: 1.5rem;
    height: auto; /* don't constrain height on mobile */
    border-radius: 0 0 16px 16px;
  }
  .product-purchase-title {
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* =============================================================
   HERO GALLERY — Full-width cinematic product gallery
   ============================================================= */
.hero-gallery {
  position: relative;
  background: #000;
  width: 100%;
}

/* ── Viewport ── */
.hero-gallery__viewport {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 420px;
  max-height: 800px;
  overflow: hidden;
  cursor: pointer;
}

.hero-gallery__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Slides ── */
.hero-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}
.hero-gallery__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.hero-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Bottom gradient for caption ── */
.hero-gallery__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* ── Caption ── */
.hero-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0 5% 48px;
}
.hero-gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-gallery__subtitle {
  font-size: clamp(.95rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ── Arrows ── */
.hero-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  opacity: 0;
}
.hero-gallery:hover .hero-gallery__arrow {
  opacity: 1;
}
.hero-gallery__arrow:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-50%) scale(1.08);
}
.hero-gallery__arrow--prev { left: 20px; }
.hero-gallery__arrow--next { right: 20px; }

/* ── Counter badge ── */
.hero-gallery__counter {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 6;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .05em;
}

/* ── Thumbnail strip ── */
.hero-gallery__thumbs {
  display: flex;
  gap: 4px;
  padding: 8px 5%;
  background: #0a0a0a;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-gallery__thumbs::-webkit-scrollbar { display: none; }

.hero-gallery__thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: .5;
  transition: all .3s ease;
}
.hero-gallery__thumb.is-active,
.hero-gallery__thumb:hover {
  opacity: 1;
  border-color: #fff;
}
.hero-gallery__thumb.is-active {
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 1px var(--pr-blue);
}
.hero-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.gallery-lightbox__close:hover { background: rgba(255,255,255,.25); }

.gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.gallery-lightbox__arrow:hover { background: rgba(255,255,255,.2); }
.gallery-lightbox__arrow--prev { left: 20px; }
.gallery-lightbox__arrow--next { right: 20px; }

.gallery-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,.6);
  transition: opacity .3s ease;
}
.gallery-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-gallery__viewport {
    height: 55vh;
    min-height: 320px;
  }
  .hero-gallery__arrow { opacity: 1; width: 44px; height: 44px; }
  .hero-gallery__arrow--prev { left: 12px; }
  .hero-gallery__arrow--next { right: 12px; }
  .hero-gallery__caption { padding: 0 24px 36px; }
}

@media (max-width: 575.98px) {
  .hero-gallery__viewport {
    height: 50vh;
    min-height: 280px;
  }
  .hero-gallery__caption { padding: 0 16px 24px; }
  .hero-gallery__thumb { width: 64px; height: 44px; }
  .hero-gallery__thumbs { padding: 6px 12px; gap: 3px; }
  .gallery-lightbox__arrow { width: 40px; height: 40px; }
  .gallery-lightbox__close { width: 40px; height: 40px; top: 12px; right: 12px; }
}

/* =============================================================
   BPay — Dummy payment button (MVP)
   ============================================================= */
.bpay-btn {
  background: linear-gradient(135deg, #1a1a2e 0%, #FF6A00 50%, #FF8C42 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 1.25rem;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.bpay-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.bpay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,.35);
  color: #fff;
}
.bpay-btn:active {
  transform: translateY(0);
}
.bpay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--surface-card);
  color: #FF6A00;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.1rem;
  margin-right: 8px;
  vertical-align: middle;
  font-family: var(--font-heading);
}
.bpay-amount {
  opacity: .85;
  margin-left: 6px;
  font-weight: 400;
}

/* ===== Payment Method Selector ===== */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-method-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 2px solid #e2e6ea;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--surface-card);
}
.payment-method-option:hover {
  border-color: #FF6A00;
  background: #fff8f2;
}
.payment-method-option.active {
  border-color: #FF6A00;
  background: linear-gradient(135deg, #fff5eb 0%, #ffecdb 100%);
  box-shadow: 0 0 0 1px #FF6A00;
}
.payment-method-option .payment-check {
  color: #ccc;
  font-size: 1.25rem;
  transition: color .2s ease;
}
.payment-method-option.active .payment-check {
  color: #FF6A00;
}
.payment-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-method-icon.ath-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.payment-method-icon.card-icon {
  background: linear-gradient(135deg, #0A2472, #FF6A00);
}
.payment-method-icon.paypal-icon {
  background: linear-gradient(135deg, #003087, #009cde);
}

.payment-submit-btn {
  background: #FF6A00;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 1.15rem;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.payment-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.payment-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,.35);
  color: #fff;
}
.payment-submit-btn:active {
  transform: translateY(0);
  color: #fff;
}

#card-details .form-control {
  background: var(--surface-elevated);
  border-color: #dee2e6;
}

/* ============================
   DON RIFA-INSPIRED LAYOUT
   ============================ */

.donrifa-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-card);
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  position: sticky;
  top: 100px;
}
.donrifa-product-img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.donrifa-product-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5eb;
}

.donrifa-panel {
  background: var(--surface-card);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}

.donrifa-panel-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0A2472;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Countdown */
.donrifa-countdown {
  display: flex;
  gap: 8px;
  justify-content: center;
  background: #0A2472;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.donrifa-cd-unit {
  text-align: center;
  flex: 1;
}
.donrifa-cd-digit {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}
.donrifa-cd-unit small {
  color: rgba(255,255,255,.65);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Progress bar (legacy — kept for compatibility) */
.donrifa-progress-wrap {
  margin-bottom: 16px;
}
.donrifa-progress-bar {
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}
.donrifa-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #F59E0B, #FF6A00);
  border-radius: 4px;
  transition: width .6s ease;
}

/* Time-remaining bar */
.donrifa-time-bar-wrap {
  margin-bottom: 18px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #fff5eb 0%, #ffecdb 100%);
  border-radius: 12px;
  border: 1px solid rgba(0, 80, 240, .08);
}
.donrifa-time-label {
  font-size: .82rem;
  font-weight: 600;
  color: #0A2472;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.donrifa-time-pct {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #FF6A00;
  transition: color .3s;
}
.donrifa-time-pct.is-urgent {
  color: #FF6A00;
  animation: urgentPulse 1.5s ease-in-out infinite;
}
.donrifa-time-bar {
  height: 10px;
  background: #dde3f0;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.donrifa-time-fill {
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, #FF6A00, #0A2472);
  transition: width 1s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  z-index: 1;
}
.donrifa-time-fill.is-warning {
  background: linear-gradient(90deg, #F59E0B, #E67E22);
}
.donrifa-time-fill.is-urgent {
  background: linear-gradient(90deg, #FF6A00, #CC5500);
  animation: urgentBarPulse 2s ease-in-out infinite;
}
.donrifa-time-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.3) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes urgentPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
@keyframes urgentBarPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

/* Free entry link */
/* Stats row (Motores Furiosos style) */
.donrifa-stats-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.donrifa-stat-box {
  flex: 1;
  text-align: center;
  background: #fff5eb;
  border-radius: 10px;
  padding: 12px 8px;
}
.donrifa-stat-box .stat-value {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #0A2472;
  line-height: 1.2;
}
.donrifa-stat-box .stat-label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 2px;
}

.donrifa-free-entry {
  display: block;
  text-align: center;
  padding: 12px;
  border: 2px solid #FF6A00;
  border-radius: 10px;
  color: #0A2472;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .5px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: background .2s, color .2s;
}
.donrifa-free-entry:hover {
  background: #FF6A00;
  color: #fff;
}

/* Section header */
.donrifa-section-header {
  background: var(--surface-elevated);
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  color: #0A2472;
  margin-bottom: 12px;
}

.donrifa-featured-label {
  margin-bottom: 8px;
}

/* Tiered pricing grid */
.donrifa-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.donrifa-tier {
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding: 14px 12px;
  background: var(--surface-card);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  text-align: center;
}
.donrifa-tier:hover {
  border-color: #F59E0B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245,158,11,.15);
}
.donrifa-tier.is-selected {
  border-color: #F59E0B;
  box-shadow: 0 0 0 2px rgba(245,158,11,.25);
  background: #fffcf5;
}
.donrifa-tier-price {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #0A2472;
}
.donrifa-tier-tickets {
  display: block;
  font-size: .78rem;
  color: #6B7280;
  margin-top: 2px;
}

/* Participate button */
.donrifa-participate-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #C5A44E, #8B7430);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  margin-bottom: 12px;
}
.donrifa-participate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197,164,78,.35);
}
.donrifa-participate-btn:active {
  transform: translateY(0);
}

/* Entry quantity selector */
.entry-qty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.entry-qty-btn {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 8px 12px;
  background: var(--surface-card);
  cursor: pointer;
  transition: all .2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.entry-qty-btn:hover {
  border-color: #FF6A00;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 80, 240, .12);
}
.entry-qty-btn.is-selected {
  border-color: #FF6A00;
  background: linear-gradient(135deg, #fff5eb, #ffe8d5);
  box-shadow: 0 0 0 3px rgba(0, 80, 240, .15);
}
.entry-qty-count {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #0A2472;
  line-height: 1;
}
.entry-qty-btn.is-selected .entry-qty-count {
  color: #FF6A00;
}
.entry-qty-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.entry-qty-price {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  color: #374151;
  margin-top: 2px;
}
.entry-qty-btn.is-selected .entry-qty-price {
  color: #FF6A00;
}

/* Price summary */
.entry-price-summary {
  background: linear-gradient(135deg, #fff5eb, #ffecdb);
  border: 1px solid rgba(0, 80, 240, .1);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.entry-summary-label {
  font-weight: 600;
  color: #6B7280;
  font-size: .9rem;
}
.entry-summary-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: #0A2472;
}
.entry-summary-entries {
  font-size: .82rem;
  color: #FF6A00;
  font-weight: 600;
  margin-top: 4px;
}

/* Action buttons */
.entry-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.entry-buy-now-btn {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #FF6A00, #CC5500);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}
.entry-buy-now-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 106, 0, .35);
}
.entry-buy-now-btn:active {
  transform: translateY(0);
}
.entry-buy-now-btn:disabled {
  opacity: .7;
  cursor: not-allowed;
  transform: none;
}
.entry-add-cart-btn {
  display: block;
  width: 100%;
  padding: 14px;
  border: 2px solid #0A2472;
  border-radius: 12px;
  background: transparent;
  color: #0A2472;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}
.entry-add-cart-btn:hover {
  background: #0A2472;
  color: #fff;
}

/* Mobile: 2x2 grid for entry buttons */
@media (max-width: 480px) {
  .entry-qty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.donrifa-disclaimer {
  font-size: .78rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 0;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .donrifa-panel {
    padding: 20px;
  }
  .donrifa-cd-digit {
    font-size: 1.5rem;
  }
  .donrifa-panel-title {
    font-size: 1.25rem;
  }
  .donrifa-tier-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .donrifa-img-wrap {
    position: static;
  }
}

/* =================================================================
   DARK THEME OVERRIDES
   Body is dark (#111), navbar + footer stay white/light.
   ================================================================= */

/* --- Main content sections get dark backgrounds --- */
section,
.section-pr,
.how-it-works-section,
.faq-section,
.contact-section,
.about-section,
.winners-section,
.campaigns-section {
  background-color: var(--surface-dark);
  color: var(--text-on-dark);
}

/* Alternating slightly lighter sections for depth */
section:nth-child(even),
.section-alt {
  background-color: var(--surface-card);
}

/* --- Cards on dark backgrounds --- */
.step-card,
.card,
.campaign-card-pr,
.faq-card {
  background: var(--surface-card);
  border-color: #2A2A2A;
  color: var(--text-on-dark);
}

.step-card h5,
.step-card .step-desc,
.card-body p,
.card-title {
  color: var(--text-on-dark);
}

/* --- Navbar: WHITE background (user requirement) --- */
.navbar-pr {
  background: #FFFFFF !important;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.navbar-pr .nav-link {
  color: #333333 !important;
}
.navbar-pr .nav-link:hover,
.navbar-pr .nav-link.active {
  color: #FF6A00 !important;
}
.navbar-pr .brand-text {
  color: #111111 !important;
}
.navbar-pr .brand-text .text-calientes {
  color: #FF6A00 !important;
}
.hamburger-lines span {
  background: #333333 !important;
}

/* --- Footer: WHITE background (user requirement) --- */
.footer-pr {
  background: #FFFFFF !important;
  color: #333333 !important;
}
.footer-pr h5,
.footer-pr h6,
.footer-heading {
  color: #666666 !important;
}
.footer-links a {
  color: #555555 !important;
}
.footer-links a:hover {
  color: #FF6A00 !important;
}
.footer-pr .footer-social-icon {
  background: #F5F5F5 !important;
  border-color: #DDDDDD !important;
  color: #333333 !important;
}
.footer-bottom {
  color: #888888 !important;
}

/* --- Forms on dark backgrounds --- */
.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
textarea {
  background-color: var(--surface-elevated);
  border-color: #333;
  color: var(--text-on-dark);
}
.form-control:focus,
.form-select:focus {
  background-color: var(--surface-elevated);
  border-color: var(--pr-red);
  color: var(--text-on-dark);
}
.form-control::placeholder {
  color: var(--text-muted-dark);
}
.form-label,
label {
  color: var(--text-on-dark);
}

/* --- Text utilities on dark --- */
.text-muted {
  color: var(--text-muted-dark) !important;
}
p {
  color: var(--text-on-dark);
}

/* --- Campaign detail page dark --- */
.donrifa-panel {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
}
.donrifa-panel-title {
  color: var(--pr-white);
}

/* --- Accordion / FAQ dark --- */
.accordion-pr .accordion-item {
  background: var(--surface-card);
  border-color: #2A2A2A;
  border-radius: var(--radius-md);
  margin-bottom: 0.5rem;
  padding: 0 1.25rem;
}
.accordion-pr .accordion-button {
  background: var(--surface-card);
  color: var(--text-on-dark);
  padding-left: 0;
  padding-right: 0;
}
.accordion-pr .accordion-button:not(.collapsed) {
  background: var(--surface-elevated);
  color: var(--pr-red);
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.accordion-pr .accordion-body {
  background: var(--surface-card);
  color: var(--text-on-dark);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1.25rem;
}

/* --- Cart / Checkout dark --- */
.cart-card,
.checkout-card,
.order-summary-card {
  background: var(--surface-card);
  border-color: #2A2A2A;
  color: var(--text-on-dark);
}
.table {
  color: var(--text-on-dark);
}
.table td, .table th {
  border-color: #2A2A2A;
}

/* --- Thank you / Receipt dark --- */
.thank-you-card {
  background: var(--surface-card);
  color: var(--text-on-dark);
}

/* --- Winners page dark --- */
.winner-card {
  background: var(--surface-card);
  border-color: #2A2A2A;
}

/* --- Auth pages (login/register) dark --- */
.auth-card,
.login-card,
.register-card {
  background: var(--surface-card);
  border-color: #2A2A2A;
  color: var(--text-on-dark);
}

/* --- Bootstrap overrides for dark --- */
.bg-white {
  background-color: var(--surface-card) !important;
}
.bg-light {
  background-color: var(--surface-dark) !important;
}
.text-dark {
  color: var(--text-on-dark) !important;
}
.border {
  border-color: #2A2A2A !important;
}
.shadow, .shadow-sm, .shadow-lg {
  box-shadow: 0 4px 12px rgba(0,0,0,.4) !important;
}

/* --- Breadcrumbs --- */
.breadcrumb-item,
.breadcrumb-item a {
  color: var(--text-muted-dark);
}
.breadcrumb-item.active {
  color: var(--text-on-dark);
}

/* --- Alert boxes on dark --- */
.alert-info {
  background: rgba(255,106,0,.1);
  border-color: rgba(255,106,0,.3);
  color: var(--text-on-dark);
}

/* --- Horizontal rules --- */
hr {
  border-color: #2A2A2A;
  opacity: 0.5;
}

/* --- Collections showcase (bg-warm) dark --- */
.bg-warm {
  background: linear-gradient(180deg, var(--surface-dark) 0%, var(--surface-card) 50%, var(--surface-dark) 100%) !important;
}
.bg-red-mesh {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255,106,0,.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02) 0%, transparent 70%) !important;
}

/* --- Collection cards dark --- */
.collection-card {
  background: var(--surface-card) !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.3) !important;
}
.collection-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.5) !important;
}
.collection-card .card-body,
.collection-card h5,
.collection-card p,
.collection-card .collection-card-info span {
  color: var(--text-on-dark) !important;
}
.collection-card .collection-card-info .text-muted {
  color: var(--text-muted-dark) !important;
}

/* --- Disclosure section dark --- */
.disclosure-pr {
  background: var(--surface-card) !important;
  color: var(--text-muted-dark) !important;
  border-left-color: var(--pr-red) !important;
}
.disclosure-pr strong {
  color: var(--text-on-dark) !important;
}
.disclosure-pr .no-purchase {
  color: var(--text-on-dark) !important;
}

/* --- Featured collection card dark --- */
.featured-collection-card {
  background: var(--surface-card) !important;
}
.featured-collection-card h3,
.featured-collection-card p {
  color: var(--text-on-dark) !important;
}

/* --- Progress bars in collection cards dark --- */
.collection-card .progress,
.progress-bar-container {
  background: #333 !important;
}

/* =================================================================
   COMPREHENSIVE TEXT CONTRAST FIXES
   Ensure ALL text is readable on dark backgrounds.
   ================================================================= */

/* --- Section headings: MUST be white on dark --- */
.section-heading-pr,
.section-heading-pr h2,
.section-heading-pr h3,
h2.section-heading-pr,
h3.section-heading-pr {
  color: #FFFFFF !important;
}
.section-heading-pr p,
.section-heading-pr .text-muted {
  color: var(--text-muted-dark) !important;
}

/* --- All headings on dark backgrounds --- */
h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF !important;
}

/* --- Navbar headings stay dark (white bg) --- */
.navbar-pr h1, .navbar-pr h2, .navbar-pr h3,
.navbar-pr h4, .navbar-pr h5, .navbar-pr h6 {
  color: var(--pr-navy) !important;
}

/* --- Footer headings stay muted (white bg) --- */
.footer-pr h1, .footer-pr h2, .footer-pr h3,
.footer-pr h4, .footer-pr h5, .footer-pr h6 {
  color: rgba(17,17,17,.4) !important;
}

/* --- Step cards: text must be readable --- */
.step-card h5 {
  color: #FFFFFF !important;
}
.step-card .step-desc,
.step-card p {
  color: var(--text-muted-dark) !important;
}
.step-number {
  color: #FFFFFF !important;
}

/* --- Generic body text & paragraphs --- */
section p,
.section-padding p {
  color: var(--text-on-dark) !important;
}

/* --- Navbar paragraph text stays dark --- */
.navbar-pr p {
  color: var(--pr-navy) !important;
}
.footer-pr p {
  color: rgba(17,17,17,.65) !important;
}

/* --- Card text inside dark cards --- */
.card-pr,
.card-pr h3,
.card-pr h4,
.card-pr h5,
.card-pr p {
  color: var(--text-on-dark) !important;
}

/* --- Link colors on dark --- */
section a:not(.btn):not(.nav-link):not(.navbar-brand) {
  color: var(--pr-red) !important;
}

/* --- View All Art button outline on dark --- */
.btn-outline-pr,
a.btn-outline-pr {
  border-color: var(--pr-red) !important;
  color: var(--pr-red) !important;
}
.btn-outline-pr:hover {
  background: var(--pr-red) !important;
  color: #fff !important;
}

/* --- Collection card CTA text --- */
.collection-card-cta {
  color: var(--pr-red) !important;
}

/* --- Step card icon circles on dark --- */
.step-icon {
  background: var(--surface-elevated) !important;
  color: var(--pr-red) !important;
}

/* --- FAQ items text on dark --- */
.faq-card h5,
.faq-card p,
.faq-card .faq-answer {
  color: var(--text-on-dark) !important;
}

/* --- Modal text on dark (AMOE popup etc) --- */
.modal-content {
  background: var(--surface-card) !important;
  color: var(--text-on-dark) !important;
}
.modal-header {
  border-color: #2A2A2A !important;
}
.modal-footer {
  border-color: #2A2A2A !important;
}

/* --- Admin panel stays light (not affected by dark theme) --- */
body.admin-panel,
body.admin-panel h1, body.admin-panel h2, body.admin-panel h3,
body.admin-panel h4, body.admin-panel h5, body.admin-panel h6,
body.admin-panel p, body.admin-panel span,
body.admin-panel .section-heading-pr {
  color: inherit !important;
}

/* =================================================================
   COMPREHENSIVE BACKGROUND DARK OVERRIDES
   Force ALL remaining light/white backgrounds to dark equivalents.
   Navbar + Footer are excluded (stay white).
   ================================================================= */

/* --- Steps section light gradient → dark --- */
.steps-section {
  background: var(--surface-dark) !important;
}

/* --- bg-mesh decorative gradient → dark version --- */
.bg-mesh {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,106,0,.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,106,0,.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.02) 0%, transparent 70%) !important;
}

/* --- Login / Auth pages --- */
.login-page-pr {
  background: var(--surface-dark) !important;
}

/* --- Form controls on dark backgrounds --- */
.form-control-pr {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}
.form-control-pr:focus {
  background: var(--surface-elevated) !important;
  border-color: var(--pr-blue) !important;
  color: var(--text-on-dark) !important;
}
.form-control-pr::placeholder {
  color: var(--text-muted-dark) !important;
}

/* --- OTP input --- */
.otp-input-pr {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}

/* --- My Account sidebar + content --- */
.myaccount-sidebar-pr {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}
.myaccount-content,
.myaccount-content-card {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}

/* --- Cart mobile cards --- */
.cart-mobile-card {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}

/* --- Don Rifa / Motores style panels --- */
.donrifa-panel {
  background: var(--surface-card) !important;
  color: var(--text-on-dark) !important;
}
.donrifa-img-wrap {
  background: var(--surface-elevated) !important;
}

/* --- Quantity controls --- */
.qty-minus,
.qty-plus {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}

/* --- Checkout payment method cards --- */
.checkout-payment-option,
.payment-method-card {
  background: var(--surface-card) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}

/* --- Generic .text-muted → readable on dark --- */
.text-muted {
  color: var(--text-muted-dark) !important;
}
/* Navbar/footer text-muted stays as-is */
.navbar-pr .text-muted {
  color: #6c757d !important;
}
.footer-pr .text-muted {
  color: rgba(17,17,17,.5) !important;
}

/* --- Social footer icons bg → dark --- */
.footer-social-icon {
  background: var(--surface-dark) !important;
}

/* --- Breadcrumb bg → dark --- */
.breadcrumb {
  background: transparent !important;
}

/* --- Collection featured card --- */
.collection-featured {
  background: var(--surface-card) !important;
  color: var(--text-on-dark) !important;
}

/* --- Campaign detail hero bg → dark (if still light) --- */
.campaign-hero,
.campaign-detail-hero {
  background: var(--surface-dark) !important;
}

/* --- Generic .card Bootstrap override → dark --- */
.card:not(.navbar-pr .card) {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}

/* --- Table striped/bordered for dark --- */
.table {
  color: var(--text-on-dark) !important;
}
.table thead th {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}
.table td, .table th {
  border-color: #2A2A2A !important;
}

/* --- Input/select/textarea generic dark --- */
input:not([type="checkbox"]):not([type="radio"]):not(.navbar-pr input),
select:not(.navbar-pr select),
textarea:not(.navbar-pr textarea) {
  background-color: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}

/* --- Alert boxes → dark --- */
.alert {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}

/* =================================================================
   ROUND 2 — MISSED DARK THEME FIXES
   ================================================================= */

/* --- .text-pr-navy override: white on dark pages --- */
.text-pr-navy {
  color: #FFFFFF !important;
}
.navbar-pr .text-pr-navy {
  color: var(--pr-navy) !important;
}
.footer-pr .text-pr-navy {
  color: rgba(17,17,17,.4) !important;
}

/* --- Winner card dark --- */
.winner-card-pr {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
}
.winner-card-pr .winner-name {
  color: #FFFFFF !important;
}
.winner-card-pr .winner-date,
.winner-card-pr .winner-prize {
  color: var(--text-muted-dark) !important;
}

/* --- How It Works step icons (black → white) --- */
.step-icon-ring {
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.2) !important;
}
.step-icon-ring i {
  color: #FF6A00 !important;
}

/* --- Campaign detail: donrifa stat boxes dark --- */
.donrifa-stat-box {
  background: var(--surface-elevated) !important;
}
.donrifa-stat-box .stat-value {
  color: #FFFFFF !important;
}
.donrifa-stat-box .stat-label {
  color: var(--text-muted-dark) !important;
}

/* --- Donrifa section header dark --- */
.donrifa-section-header {
  background: var(--surface-elevated) !important;
  color: var(--text-on-dark) !important;
}

/* --- Donrifa free entry button dark --- */
.donrifa-free-entry {
  color: #FF6A00 !important;
  background: transparent !important;
}

/* --- Donrifa disclaimer dark --- */
.donrifa-disclaimer {
  color: var(--text-muted-dark) !important;
}

/* --- Donrifa panel title dark --- */
.donrifa-panel-title {
  color: #FFFFFF !important;
}

/* --- Entry quantity buttons dark --- */
.entry-qty-btn {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}
.entry-qty-btn:hover {
  border-color: #FF6A00 !important;
}
.entry-qty-btn.is-selected {
  background: rgba(255,106,0,.12) !important;
  border-color: #FF6A00 !important;
}
.entry-qty-count {
  color: #FFFFFF !important;
}
.entry-qty-btn.is-selected .entry-qty-count {
  color: #FF6A00 !important;
}
.entry-qty-label {
  color: var(--text-muted-dark) !important;
}
.entry-qty-price {
  color: var(--text-on-dark) !important;
}

/* --- Entry price summary dark --- */
.entry-price-summary {
  background: var(--surface-elevated) !important;
  border-color: rgba(255,106,0,.2) !important;
}
.entry-summary-label {
  color: var(--text-on-dark) !important;
}
.entry-summary-price {
  color: #FF6A00 !important;
}
.entry-summary-entries {
  color: var(--text-muted-dark) !important;
}

/* --- Entry buy now: ensure white text on orange gradient --- */
.entry-buy-now-btn {
  color: #FFFFFF !important;
}

/* --- Entry add-to-cart button dark --- */
.entry-add-cart-btn {
  border-color: #FF6A00 !important;
  color: #FF6A00 !important;
  background: transparent !important;
}
.entry-add-cart-btn:hover {
  background: #FF6A00 !important;
  color: #FFFFFF !important;
}

/* --- card-pr card-static on dark (campaign detail "About") --- */
.card-pr.card-static {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}

/* --- Checkout page section backgrounds --- */
.checkout-section,
section.section-padding {
  background-color: var(--surface-dark) !important;
}

/* --- Checkout card styling dark --- */
.card-pr.card-static h5,
.card-pr.card-static p,
.card-pr.card-static span,
.card-pr.card-static .text-muted,
.card-pr.card-static label {
  color: var(--text-on-dark) !important;
}

/* --- .text-pr-blue on dark --- */
.text-pr-blue {
  color: #4DA3FF !important;
}
.navbar-pr .text-pr-blue {
  color: var(--pr-blue) !important;
}

/* --- .text-pr-red keep visible --- */
.text-pr-red {
  color: #FF6A00 !important;
}

/* --- Disclosure block text fixes --- */
.disclosure-pr .text-pr-blue,
.disclosure-pr .fw-bold {
  color: #FF6A00 !important;
}
.disclosure-pr p {
  color: var(--text-muted-dark) !important;
}

/* --- Section heading pr "Sobre esta Colección" fix --- */
h2.section-heading-pr {
  color: #FFFFFF !important;
}

/* =====================================================
   CHECKOUT PAGE — DARK THEME FIXES
   ===================================================== */

/* Payment method cards — dark background instead of white */
.payment-method-option {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
  color: var(--text-on-dark) !important;
}
.payment-method-option:hover {
  border-color: #FF6A00 !important;
  background: var(--surface-elevated) !important;
}
.payment-method-option.active {
  background: linear-gradient(135deg, #1F1A14 0%, #2A2018 100%) !important;
  border-color: #FF6A00 !important;
}
.payment-method-option strong {
  color: var(--text-on-dark) !important;
}
.payment-method-option small,
.payment-method-option .text-muted {
  color: var(--text-muted-dark) !important;
}

/* Input group text (email/phone icons) — dark bg */
.input-group-text {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}

/* Card details form fields in dark */
#card-details .form-control {
  background: var(--surface-elevated) !important;
  border-color: #333 !important;
  color: var(--text-on-dark) !important;
}
#card-details .form-label {
  color: var(--text-on-dark) !important;
}

/* Google Pay panel — dark instead of white */
#google-pay-panel > div {
  background: var(--surface-card) !important;
  border-color: #2A2A2A !important;
}
#google-pay-panel p {
  color: var(--text-on-dark) !important;
}
#google-pay-panel span {
  color: var(--text-muted-dark) !important;
}

/* Google Pay icon box & panel — dark theme */
.gpay-icon-box {
  background: var(--surface-elevated) !important;
  border: 1px solid #333 !important;
}
.gpay-panel-box {
  background: var(--surface-card) !important;
  border: 1px solid #2A2A2A !important;
}

/* Order summary text — ensure readable on dark */
.card-pr.card-static .d-flex span,
.card-pr.card-static .d-flex strong,
.card-pr.card-static td,
.card-pr.card-static th,
.card-pr.card-static strong,
.card-pr.card-static h4,
.card-pr.card-static h5,
.card-pr.card-static h6,
.card-pr.card-static label {
  color: var(--text-on-dark) !important;
}
/* Override Bootstrap .table color vars inside dark cards */
.card-pr.card-static .table {
  --bs-table-color: var(--text-on-dark) !important;
  --bs-table-bg: transparent !important;
  color: var(--text-on-dark) !important;
}
.card-pr.card-static .table > :not(caption) > * > * {
  color: var(--text-on-dark) !important;
}
/* Cart mobile cards */
.cart-mobile-card,
.cart-mobile-card h6,
.cart-mobile-card strong,
.cart-mobile-card span,
.cart-mobile-card small {
  color: var(--text-on-dark) !important;
}
.cart-mobile-card .text-muted {
  color: var(--text-muted-dark) !important;
}
.card-pr.card-static .text-success {
  color: #4ADE80 !important;
}
.card-pr.card-static .border-top,
.card-pr.card-static .border-bottom {
  border-color: #2A2A2A !important;
}

/* Alert info in card details */
.card-pr.card-static .alert-info {
  background: rgba(255,106,0,.1) !important;
  border-color: rgba(255,106,0,.25) !important;
  color: var(--text-on-dark) !important;
}

/* Payment security footer text */
.card-pr.card-static .text-muted,
.card-pr.card-static small {
  color: var(--text-muted-dark) !important;
}
.card-pr.card-static .opacity-50 {
  color: var(--text-muted-dark) !important;
}
.card-pr.card-static .fa-brands {
  color: var(--text-muted-dark) !important;
}

/* Kill any remaining white backgrounds in checkout */
.card-pr.card-static .border-top {
  border-color: #2A2A2A !important;
}

/* Ensure no extra margin between sections (padding handles spacing) */
section.section-padding + section.section-padding,
section.section-padding + .section-padding {
  margin-top: 0;
}
.bg-white {
  background-color: var(--surface-dark) !important;
}

/* =====================================================
   COLLECTION CARD IMAGE OVERLAY — ACCESSIBILITY
   ===================================================== */

/* Darken campaign/collection background images for text readability */
.campaign-card-pr .card-img-overlay,
.card-prize .card-img-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25) 0%,
    rgba(0,0,0,.55) 60%,
    rgba(0,0,0,.8) 100%
  ) !important;
}

/* Cards using background-image — add overlay via ::before */
.campaign-card-pr[style*="background-image"],
.card-prize[style*="background-image"] {
  position: relative;
}
.campaign-card-pr[style*="background-image"]::before,
.card-prize[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.3) 0%,
    rgba(0,0,0,.6) 60%,
    rgba(0,0,0,.85) 100%
  );
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}
.campaign-card-pr[style*="background-image"] > *,
.card-prize[style*="background-image"] > * {
  position: relative;
  z-index: 2;
}

/* Ensure text on image cards is always white and readable */
.campaign-card-pr .card-img-overlay h5,
.campaign-card-pr .card-img-overlay p,
.campaign-card-pr .card-img-overlay span,
.card-prize h5,
.card-prize .display-5 {
  color: #FFFFFF !important;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}

/* ===== SPACING NORMALIZATION ===== */

/* Tighter global section padding — 3rem mobile / 4rem desktop (was 4rem/6rem) */
.section-padding {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
}

/* Section-wave needs extra bottom padding for the 50px clip-path divider */
.section-wave.section-padding {
  padding-bottom: 5rem !important;
}
@media (min-width: 768px) {
  .section-wave.section-padding {
    padding-bottom: 6rem !important;
  }
}

/* Page banners — compact */
.page-banner-pr {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

/* Disclosure block at bottom of pages — less padding */
.disclosure-pr.section-padding {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
@media (min-width: 768px) {
  .disclosure-pr.section-padding {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

/* CTA sections — compact */
.section-padding.text-center.text-white {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

/*
 * Visual section separator — when two dark sections share the same
 * background colour the eye can't see where one ends and the next
 * begins.  A thin luminous rule + extra breathing room fixes this.
 */
.section-padding + .section-wave,
.section-padding + .section-padding {
  border-top: 1px solid rgba(255,255,255,.08);
}

/* How-it-works (section-wave right after Collections) needs generous
   top padding so the heading isn't glued to the section above. */
.section-padding + .section-wave.section-padding {
  padding-top: 5rem !important;
}
@media (min-width: 768px) {
  .section-padding + .section-wave.section-padding {
    padding-top: 6rem !important;
  }
}

/* ===== 40. DESIGN RICHNESS — Red Accents & Energy ===== */

/* Red accent stripe on all section headings */
.section-heading-pr {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}
.section-heading-pr::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--pr-red);
  border-radius: 2px;
}
/* When inside a text-center parent, ensure heading is block-centered */
.text-center .section-heading-pr,
.section-heading-pr.text-center {
  display: block;
}
.text-center .section-heading-pr::after,
.section-heading-pr.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Glassmorphism cards — fix overflow */
.card-glass {
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.card-glass p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Step cards on How It Works — ensure text wraps neatly */
.card-pr p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ===== 41. Red-Accented Section Backgrounds ===== */

/* Subtle red mesh for excitement */
.bg-red-mesh {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,106,0,.1) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255,106,0,.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.04) 0%, transparent 70%);
}

/* Red-to-navy gradient — high energy */
.bg-red-gradient {
  background: linear-gradient(135deg, var(--pr-red) 0%, var(--pr-red-dark) 40%, var(--pr-navy) 100%);
}

/* Warm light background instead of plain white */
.bg-warm {
  background: linear-gradient(180deg, #FFF8F6 0%, #FFFFFF 50%, #F8F6FF 100%);
}

/* Red stripe accent top of section */
.section-red-top {
  position: relative;
}
.section-red-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue), var(--pr-red));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

/* ===== 42. Enhanced Prize Cards — Red Energy ===== */
.card-prize {
  border-color: transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, rgba(255,106,0,.15), rgba(255,106,0,.15)) border-box;
  border: 2px solid transparent;
}
.card-prize:hover {
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--pr-red), var(--pr-blue)) border-box;
  border-color: transparent;
}

/* ===== 43. Red Glow Divider ===== */
.divider-glow {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pr-red), var(--pr-blue), transparent);
  border: none;
  margin: 0;
  opacity: 0.6;
}

/* ===== 44. Vibrant Stats Section ===== */
.bg-gradient-animated {
  background: linear-gradient(-45deg, var(--pr-red-dark), var(--pr-navy), var(--pr-blue), var(--pr-red));
  background-size: 400% 400%;
  animation: gradientShift 10s ease infinite;
}

/* ===== 45. Enhanced Disclosure Block ===== */
.disclosure-pr {
  background: linear-gradient(135deg, #f8f9fa, #fff0f0);
  border-left: 4px solid var(--pr-red);
}

/* ===== 46. Card Hover Red Accent — only interactive cards ===== */
.card-pr:not(.card-static):hover {
  border-color: rgba(255,106,0,.3);
}

/* ===== 46a. Navbar Cart Icon ===== */
.nav-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #333333;
  font-size: 1.15rem;
  transition: all .25s ease;
  text-decoration: none;
}
.nav-cart-icon:hover {
  background: rgba(255,106,0,.08);
  color: #FF6A00;
}
.nav-cart-badge {
  position: absolute;
  top: 2px;
  right: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  background: var(--pr-red);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Cart hover dropdown */
.cart-hover-wrapper {
  position: relative;
}
.cart-hover-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  border: 1px solid #e8ecf2;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  padding: 0;
  overflow: hidden;
  margin-top: 6px;
}
.cart-hover-wrapper:hover .cart-hover-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cart-hover-header {
  background: var(--pr-navy);
  color: #fff;
  padding: 10px 16px;
  font-weight: 700;
  font-size: .85rem;
}
.cart-hover-items {
  max-height: 240px;
  overflow-y: auto;
  padding: 0;
}
.cart-hover-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  font-size: .82rem;
}
.cart-hover-item:last-child { border-bottom: none; }
.cart-hover-item img {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-hover-item-info, .cart-hover-info { flex: 1; min-width: 0; }
.cart-hover-item-name, .cart-hover-name {
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-hover-item-meta, .cart-hover-meta { color: #888; font-size: .75rem; }
.cart-hover-thumb {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-hover-price { font-weight: 600; color: #FF6A00; font-size: .82rem; white-space: nowrap; }
.cart-hover-footer {
  padding: 14px 16px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #333333;
}
.cart-hover-total { font-weight: 700; color: #222222; font-size: .9rem; }
.cart-hover-empty {
  text-align: center;
  padding: 24px 16px;
  color: #999;
  font-size: .85rem;
}
@media (max-width: 767px) {
  .cart-hover-dropdown { display: none !important; }
}

/* ===== 46a-2. Mobile Cart Cards ===== */
.cart-mobile-card {
  background: var(--surface-card);
  border: 1px solid #eee;
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.cart-mobile-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ===== 46b. Enhanced Navbar ===== */

/* Thin gradient accent stripe */
.navbar-accent-stripe {
  height: 2px;
  background: linear-gradient(90deg, var(--pr-red), var(--pr-blue), var(--pr-navy));
  position: sticky;
  top: 0;
  z-index: 1031;
}

/* Clean white navbar */
.navbar-pr {
  background: #FFFFFF;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding: 0;
  transition: box-shadow 0.4s ease;
  top: 2px;
}

.navbar-pr .container {
  display: flex;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.navbar-pr.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

/* Logo — fixed width zone so nav links always start at the same spot */
.navbar-logo {
  height: 42px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.navbar-logo-wrap {
  margin-right: auto; /* push everything else right on mobile */
}

.navbar-logo-wrap:hover .navbar-logo {
  opacity: 0.85;
}

/* Animated hamburger */
.navbar-toggler-pr {
  width: 34px;
  height: 28px;
  position: relative;
  padding: 0;
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 16px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  background: var(--pr-navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, width 0.3s ease;
}

.hamburger-lines span:nth-child(1) { width: 22px; }
.hamburger-lines span:nth-child(2) { width: 16px; transition-delay: 0.05s; }
.hamburger-lines span:nth-child(3) { width: 22px; }

.navbar-toggler-pr:hover .hamburger-lines span { width: 22px; }

.navbar-toggler-pr[aria-expanded="true"] .hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler-pr[aria-expanded="true"] .hamburger-lines span:nth-child(2) {
  opacity: 0; width: 0;
}
.navbar-toggler-pr[aria-expanded="true"] .hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav links — proper size, even spacing */
.navbar-pr .navbar-nav {
  gap: 0;
  align-items: center;
}

.navbar-pr .nav-link {
  color: #333333;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1.25rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-pr .nav-link .nav-link-text {
  position: relative;
}

/* Underline indicator — slides in on hover */
.navbar-pr .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: #FF6A00;
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-pr .nav-link:hover {
  color: #FF6A00;
}

.navbar-pr .nav-link:hover::after {
  transform: scaleX(1);
  background: #FF6A00;
}

/* Active link */
.navbar-pr .nav-link.active {
  color: #FF6A00;
  font-weight: 600;
}

.navbar-pr .nav-link.active::after {
  transform: scaleX(1);
  background: var(--pr-red);
}

/* Nav CTA — balanced with nav items */
.btn-nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--pr-red);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.4rem;
  border: none;
  border-radius: 50rem;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-nav-cta:hover {
  background: var(--pr-red-dark, #a00e20);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,106,0,.25);
  color: #fff;
}

.btn-nav-cta-pulse {
  display: none;
}

/* Mobile navbar: stack cart + CTA properly */
@media (max-width: 991.98px) {
  .navbar-pr .navbar-collapse .d-flex {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0,0,0,.08);
    margin-top: 0.5rem;
  }

  .navbar-pr .navbar-collapse .cart-hover-wrapper {
    align-self: flex-end;
    margin-right: 0.25rem;
  }

  .btn-nav-cta {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 0.65rem 1.4rem;
    font-size: 0.95rem;
  }

  /* Hide cart hover dropdown on mobile (tap-only) */
  .cart-hover-wrapper:hover .cart-hover-dropdown {
    opacity: 0;
    visibility: hidden;
  }
}

/* Desktop spacing — center nav links between logo and CTA */
@media (min-width: 992px) {
  .navbar-pr .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex: 1;
  }

  .navbar-pr .navbar-nav {
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-pr .nav-link {
    padding: 0.5rem 1.3rem;
  }

  .btn-nav-cta {
    margin-left: 0;
    flex-shrink: 0;
  }
}

/* ===== 46c. Enhanced Footer ===== */

.footer-wave {
  margin-top: -1px;
  line-height: 0;
  background: #e9ecef;
}

.footer-wave svg {
  width: 100%;
  height: 36px;
  display: block;
}

.footer-pr {
  background: var(--surface-card);
  color: var(--pr-white);
  padding: 3.5rem 0 2rem;
}

.footer-logo {
  height: 36px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.footer-logo:hover { opacity: 0.75; }

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,.4);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  color: rgba(0,0,0,.65);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--pr-white);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-pr a.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-card);
  border: 1px solid rgba(0,0,0,.2);
  color: var(--pr-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-pr a.footer-social-icon:hover {
  background: var(--pr-navy);
  border-color: var(--pr-navy);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer mini CTA */
.footer-pr a.btn-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--pr-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 0.45rem 1.1rem;
  border: none;
  border-radius: 50rem;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.25s ease;
}

.footer-pr a.btn-footer-cta:hover {
  background: var(--pr-blue);
  color: #fff;
  transform: translateY(-1px);
}

/* Separator above bottom bar */
.footer-pr + .footer-bottom {
  border-top: 1px solid rgba(0,0,0,.06);
}

/* Bottom bar */
.footer-bottom {
  background: var(--pr-navy, #0A2472);
  padding: 0.7rem 0;
}

.footer-bottom p {
  color: rgba(255,255,255,.6);
  font-size: 0.78rem;
  margin: 0;
}

/* ===== 47. Hero Bottom Fade — Remove white for smoother transition ===== */
.hero-pr::after {
  display: none;
}

/* Angle divider takes care of the hero-to-next-section transition */
.section-angle::after {
  height: 80px;
}

/* ===== 47a0. Interactive Starfield Canvas ===== */
#hero-starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

/* Starfield is purely decorative — no pointer interaction */

/* ===== 47a. Shooting Stars ===== */
.shooting-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.shooting-star {
  position: absolute;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.05), rgba(255,255,255,.7), #fff);
  border-radius: 100px;
  opacity: 0;
  will-change: transform, opacity, width;
}

/* Glow head of the star */
.shooting-star::before {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--surface-card);
  border-radius: 50%;
  box-shadow: 0 0 10px 3px rgba(255,255,255,.6), 0 0 30px 8px rgba(255,106,0,.3);
}

/* Star 1 */
.shooting-star:nth-child(1) {
  top: 25%;
  right: 0;
  transform: rotate(215deg);
  animation: shootStar1 12s cubic-bezier(0.3, 0, 0.1, 1) 1s infinite;
}

/* Star 2 */
.shooting-star:nth-child(2) {
  top: 45%;
  right: 20%;
  transform: rotate(210deg);
  animation: shootStar2 14s cubic-bezier(0.3, 0, 0.1, 1) 5s infinite;
}

/* Star 3 */
.shooting-star:nth-child(3) {
  top: 60%;
  right: -5%;
  transform: rotate(220deg);
  animation: shootStar3 11s cubic-bezier(0.3, 0, 0.1, 1) 9s infinite;
}

/* Star 4 */
.shooting-star:nth-child(4) {
  top: 35%;
  right: 55%;
  transform: rotate(208deg);
  animation: shootStar1 15s cubic-bezier(0.3, 0, 0.1, 1) 14s infinite;
}

/* Star 5 */
.shooting-star:nth-child(5) {
  top: 70%;
  right: 10%;
  transform: rotate(218deg);
  animation: shootStar2 13s cubic-bezier(0.3, 0, 0.1, 1) 19s infinite;
}

/* Star 6 */
.shooting-star:nth-child(6) {
  top: 50%;
  right: 70%;
  transform: rotate(212deg);
  animation: shootStar3 16s cubic-bezier(0.3, 0, 0.1, 1) 24s infinite;
}

@keyframes shootStar1 {
  0%   { width: 0;     opacity: 0;   transform: rotate(215deg) translateX(0); }
  1%   { width: 0;     opacity: 0.9; }
  6%   { width: 120px; opacity: 0.9; }
  18%  { width: 120px; opacity: 0.5; transform: rotate(215deg) translateX(500px); }
  22%  { width: 40px;  opacity: 0;   transform: rotate(215deg) translateX(620px); }
  100% { width: 0;     opacity: 0;   transform: rotate(215deg) translateX(620px); }
}

@keyframes shootStar2 {
  0%   { width: 0;     opacity: 0;   transform: rotate(210deg) translateX(0); }
  1%   { width: 0;     opacity: 0.9; }
  5%   { width: 100px; opacity: 0.9; }
  16%  { width: 100px; opacity: 0.4; transform: rotate(210deg) translateX(450px); }
  20%  { width: 30px;  opacity: 0;   transform: rotate(210deg) translateX(560px); }
  100% { width: 0;     opacity: 0;   transform: rotate(210deg) translateX(560px); }
}

@keyframes shootStar3 {
  0%   { width: 0;     opacity: 0;   transform: rotate(220deg) translateX(0); }
  1.5% { width: 0;     opacity: 0.9; }
  7%   { width: 140px; opacity: 0.9; }
  20%  { width: 140px; opacity: 0.4; transform: rotate(220deg) translateX(550px); }
  25%  { width: 50px;  opacity: 0;   transform: rotate(220deg) translateX(680px); }
  100% { width: 0;     opacity: 0;   transform: rotate(220deg) translateX(680px); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .shooting-star { animation: none !important; }
}

/* ===== 47b. Dynamic Hero Campaign Background ===== */
.hero-pr.hero-has-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 767.98px) {
  .hero-pr.hero-has-bg {
    background-attachment: scroll; /* iOS doesn't support fixed */
  }
}

.hero-pr.hero-has-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  right: 0;
  background: rgba(0,0,0,.85) !important;
  z-index: 2;
  pointer-events: none;
}

/* ===== 48. Rich Backgrounds for White Sections ===== */
/* Subtle diagonal stripes */
.bg-diagonal-subtle {
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,106,0,.02) 40px,
    rgba(255,106,0,.02) 80px
  );
}

/* ===== 49. Better Mobile Card Layout ===== */
@media (max-width: 767.98px) {
  .card-glass {
    padding: var(--space-lg);
  }
  .card-glass h5 {
    font-size: 1rem;
  }
  .card-glass p {
    font-size: 0.85rem;
  }
  .card-prize {
    padding: var(--space-lg);
  }
  .card-prize .display-5 {
    font-size: 2rem;
  }
}

/* ===== 50. Section Heading Alignment Fix ===== */
.t-and-c .section-heading-pr,
.faq .section-heading-pr,
section .section-heading-pr {
  width: 100%;
}

/* ===== 51. Red Accented CTA Sections ===== */
.bg-cta-red {
  background: linear-gradient(135deg, var(--pr-red) 0%, var(--pr-red-dark) 50%, #7A0A14 100%);
  position: relative;
  overflow: hidden;
}
.bg-cta-red::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== 52. Enhanced Navbar with Red Accent ===== */
.navbar-pr {
  border-bottom: 3px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(90deg, var(--pr-red), var(--pr-blue));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* ===== 53. Content Pages — Better Typography ===== */
.t-and-c .content h3,
section .content h3 {
  position: relative;
  padding-left: 1rem;
}
.t-and-c .content h3::before,
section .content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 4px;
  background: var(--pr-red);
  border-radius: 2px;
}

/* ===== 54. Pulsing Red Dot Indicator ===== */
.pulse-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pr-red);
  animation: pulseGlow 2s ease-in-out infinite;
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* ===== 55. Red Hover State for All Interactive Elements ===== */
.card-pr:hover .btn-outline-pr,
.card-prize:hover .btn-outline-pr {
  background: var(--pr-red);
  color: var(--pr-white);
  border-color: var(--pr-red);
}

/* Card hover — dark background ONLY for clickable campaign cards on listings */
.card-pr.card-hover-dark:hover {
  background: var(--pr-navy);
}
.card-pr.card-hover-dark:hover h3,
.card-pr.card-hover-dark:hover h4,
.card-pr.card-hover-dark:hover h5,
.card-pr.card-hover-dark:hover p,
.card-pr.card-hover-dark:hover .text-muted,
.card-pr.card-hover-dark:hover .text-pr-navy,
.card-pr.card-hover-dark:hover .text-pr-red,
.card-pr.card-hover-dark:hover .text-pr-blue {
  color: var(--pr-white) !important;
}
.card-pr.card-hover-dark:hover .btn-primary-pr {
  background: var(--pr-red);
  border-color: var(--pr-red);
}

/* Static cards — no lift or color change on hover */
.card-pr.card-static {
  cursor: default;
}
.card-pr.card-static:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
  border-color: rgba(255,255,255,.08);
}
.card-pr.card-static::before {
  display: none;
}

/* ===== 56. Alert Banner for Official Rules ===== */
.alert-warning {
  background: linear-gradient(135deg, #FFF3CD, #FFE8A1);
  border: 2px solid #FFC107;
  border-radius: var(--radius-md);
  color: #856404;
}

/* ===== 57. Page Banner Title Fix — Force centered alignment ===== */
.page-banner-pr .title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
}

/* ===== 58. Countdown Units — Red top accent ===== */
.countdown-pr .countdown-unit {
  background: linear-gradient(180deg, rgba(255,106,0,.15), var(--pr-navy));
}

/* ===== 59. Footer Red Accent ===== */
footer {
  border-top: 4px solid var(--pr-red);
}

/* ===== 60. How It Works — Step Cards ===== */

/* Section wrapper */
.steps-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-dark, #111111) !important;
}

/* SVG vector background layers (shared class for all SVG bg partials) */
.svg-bg-layer,
.steps-vectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Sections that use SVG backgrounds need relative positioning */
.has-svg-bg {
  position: relative;
  overflow: hidden;
}
.has-svg-bg > .container {
  position: relative;
  z-index: 2;
}

/* Step card */
.step-card {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg) var(--space-lg);
  position: relative;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 12px rgba(255, 106, 0, .06);
  animation: stepFadeUp 0.6s ease both;
}

@keyframes stepFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient top stripe — hidden by default, slides in on hover */
.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: linear-gradient(90deg, #FF6A00, #FF8C42);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: left;
}

/* Hover — lift + dark-orange background + white text */
.step-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, var(--pr-navy) 0%, #331A00 100%);
  border-color: transparent;
  box-shadow:
    0 20px 40px rgba(255, 106, 0, .2),
    0 0 0 1px rgba(255, 140, 66, .25);
}

.step-card:hover::before {
  transform: scaleX(1);
}

.step-card:hover h5 {
  color: #fff !important;
}

.step-card:hover .step-desc {
  color: rgba(255, 255, 255, .8) !important;
}

/* Step number badge */
.step-number-wrap {
  position: relative;
  display: inline-block;
}

.step-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pr-red);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  position: absolute;
  top: -6px;
  right: -10px;
  z-index: 3;
  box-shadow: 0 2px 8px rgba(206, 17, 38, .3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover .step-number-badge {
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(206, 17, 38, .5);
  animation: badgePop 0.4s ease;
}

@keyframes badgePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1.15); }
}

/* Icon ring */
.step-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 106, 0, .08), rgba(255, 140, 66, .08));
  border: 2px solid rgba(255, 106, 0, .15);
  transition: all 0.4s ease;
}

.step-icon-ring i {
  font-size: 1.5rem;
  color: #FF6A00;
  transition: color 0.3s ease, transform 0.3s ease;
}

.step-card:hover .step-icon-ring {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .3);
}

.step-card:hover .step-icon-ring i {
  color: #fff;
  transform: scale(1.15);
}

/* Connector arrow between cards */
.step-connector {
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  z-index: 5;
  color: var(--pr-red);
  font-size: 0.9rem;
  opacity: 0.5;
  animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; transform: translateY(-50%) translateX(0); }
  50% { opacity: 0.7; transform: translateY(-50%) translateX(4px); }
}

/* Step description text */
.step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  transition: color 0.3s ease;
}

/* Mobile: stack connector arrows vertically */
@media (max-width: 991.98px) {
  .step-connector {
    display: none !important;
  }
}

/* ===== 48 · Auth Pages (Login / Register / Forgot Password) ===== */

.login-page-pr {
  min-height: 100vh;
  background: var(--surface-card);
}

/* Left branding panel */
.login-brand-panel {
  background: linear-gradient(160deg, var(--pr-navy) 0%, #0b2d8a 60%, var(--pr-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.login-brand-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,106,0,.25) 0%, transparent 60%);
  pointer-events: none;
}
.login-brand-content {
  position: relative;
  z-index: 1;
}
.login-logo {
  height: 64px;
  width: auto;
}

/* Right form panel */
.login-form-wrap {
  width: 100%;
  max-width: 420px;
  padding: 2.5rem 1.5rem;
  margin: 0 auto;
}

/* Form controls */
.form-control-pr {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #f8fafc;
}
.form-control-pr:focus {
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 3px rgba(255,106,0,.1);
  background: var(--surface-card);
  outline: none;
}
.form-label-pr {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pr-white);
  margin-bottom: 0.35rem;
}

/* "or continue with" divider */
.login-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}
.login-divider span {
  font-size: 0.82rem;
  color: #94a3b8;
  white-space: nowrap;
}

/* Social login buttons */
.btn-social-pr {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-white);
  font-size: 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.btn-social-pr:hover {
  border-color: var(--pr-blue);
  background: rgba(255,106,0,.04);
  transform: translateY(-1px);
}

/* PR text color helpers for auth pages */
.text-pr-navy { color: var(--pr-navy) !important; }
.text-pr-blue { color: var(--pr-blue) !important; }

/* ===== 48a · My Account Nav (PR) ===== */

.myaccount-nav-pr .nav-tabs {
  border-bottom: none;
  flex-direction: column;
  gap: 2px;
}
.myaccount-nav-pr .nav-link {
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: left;
  display: flex;
  align-items: center;
}
.myaccount-nav-pr .nav-link:hover {
  background: rgba(255,106,0,.06);
  color: var(--pr-white);
}
.myaccount-nav-pr .nav-link.active {
  background: var(--pr-blue);
  color: #fff;
}
.myaccount-nav-pr .nav-link.text-danger:hover {
  background: rgba(255,106,0,.08);
  color: var(--pr-red) !important;
}

/* ===== 48b · My Account Dashboard (PR) ===== */

.myaccount-pr {
  padding: 3rem 0;
}

/* Sidebar user card */
.myaccount-sidebar-pr {
  background: var(--surface-card);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 1.5rem;
  text-align: center;
}
.myaccount-sidebar-pr .user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pr-blue), var(--pr-navy));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}
.myaccount-sidebar-pr .user-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pr-white);
  margin-bottom: 0.25rem;
}
.myaccount-sidebar-pr .user-id {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* Dashboard grid cards */
.dash-card-pr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  background: var(--surface-card);
  text-decoration: none;
  color: var(--pr-white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.dash-card-pr i {
  font-size: 1.5rem;
  color: var(--pr-blue);
  transition: color 0.2s ease;
}
.dash-card-pr span {
  font-size: 0.88rem;
  font-weight: 600;
}
.dash-card-pr:hover {
  border-color: var(--pr-blue);
  box-shadow: 0 4px 16px rgba(255,106,0,.1);
  transform: translateY(-2px);
  color: var(--pr-white);
  text-decoration: none;
}
.dash-card-pr:hover i {
  color: var(--pr-white);
}

/* Section headings inside account tabs */
.section-heading-pr {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pr-white);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f1f5f9;
}

/* Table styling for account tabs */
.table-pr thead tr {
  background: linear-gradient(135deg, rgba(255,106,0,.06), rgba(0,0,0,.04));
}
.table-pr thead th {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pr-white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid #e2e8f0;
  padding: 0.75rem;
}
.table-pr tbody td {
  font-size: 0.9rem;
  padding: 0.75rem;
  vertical-align: middle;
}

/* Action button */
.btn-action-pr {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  border: 1.5px solid var(--pr-blue);
  color: var(--pr-blue);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-action-pr:hover {
  background: var(--pr-blue);
  color: #fff;
}

/* Coupon card */
.coupon-card-pr {
  border: 1.5px dashed var(--pr-blue);
  border-radius: 12px;
  padding: 1.25rem;
  background: rgba(255,106,0,.02);
  transition: border-color 0.2s ease;
}
.coupon-card-pr:hover {
  border-color: var(--pr-navy);
}

/* Address box */
.address-box-pr {
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  background: var(--surface-card);
}
.address-box-pr h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pr-white);
  margin-bottom: 0.75rem;
}

/* Account detail form */
.myaccount-pr .form-control {
  border-radius: 8px;
  border: 1.5px solid #e2e8f0;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}
.myaccount-pr .form-control:focus {
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 3px rgba(255,106,0,.1);
}
.myaccount-pr .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pr-white);
}

/* Mobile account button */
.btn-myaccount-mobile {
  background: var(--pr-navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.btn-myaccount-mobile:hover {
  background: var(--pr-blue);
  color: #fff;
}

/* PR modal styling */
.modal-pr .modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.modal-pr .modal-header {
  border-bottom: 1px solid #f1f5f9;
  padding: 1.25rem 1.5rem;
}
.modal-pr .modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--pr-white);
}
.modal-pr .modal-body {
  padding: 1.5rem;
}
.modal-pr .modal-footer {
  border-top: 1px solid #f1f5f9;
  padding: 1rem 1.5rem;
}

/* Breadcrumb for account page */
.breadcrumb-pr {
  background: linear-gradient(135deg, rgba(0,0,0,.04), rgba(255,106,0,.03));
  padding: 1.5rem 0;
}
.breadcrumb-pr h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pr-white);
  margin-bottom: 0.25rem;
}
.breadcrumb-pr .breadcrumb {
  margin-bottom: 0;
  font-size: 0.85rem;
}
.breadcrumb-pr .breadcrumb-item a {
  color: var(--pr-blue);
  text-decoration: none;
}
.breadcrumb-pr .breadcrumb-item.active {
  color: #64748b;
}

/* Status badge */
.badge-pr-paid {
  background: #dcfce7;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.badge-pr-unpaid {
  background: #fef9c3;
  color: #854d0e;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}
.badge-pr-refunded {
  background: #fce7f3;
  color: #9d174d;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

/* ===========================================================
   Section 49: Collection Showcase Cards (motoresfuriosos-inspired)
   =========================================================== */

/* --- Featured (hero) collection card --- */
.collection-featured {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
  transition: transform .35s ease, box-shadow .35s ease;
}
.collection-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.collection-featured-link {
  display: block;
  position: relative;
  text-decoration: none !important;
  color: inherit;
  min-height: 420px;
}
.collection-featured-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.collection-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.collection-featured:hover .collection-featured-img img {
  transform: scale(1.05);
}
.collection-featured-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
}
.collection-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 40%, rgba(0,0,0,.15) 100%);
  z-index: 1;
}
.collection-featured-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
  min-height: 420px;
  color: #fff;
}
.collection-featured-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: .5rem;
  color: #fff;
}
.collection-featured-desc {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
  max-width: 520px;
}
.collection-featured-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: .75rem;
  flex-wrap: wrap;
}

/* Shared price / count / timer styles */
.collection-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,106,0,.85);
  padding: .35rem .85rem;
  border-radius: 8px;
}
.collection-count {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* --- Collection countdown timer (inline) --- */
.collection-timer {
  margin-top: .5rem;
}
.collection-timer-units {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: .4rem .75rem;
}
.ct-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 28px;
}
.ct-digit {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.ct-unit small {
  font-size: .6rem;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  letter-spacing: .5px;
}
.ct-sep {
  color: rgba(255,255,255,.5);
  font-weight: 700;
  font-size: 1rem;
  padding: 0 2px;
  align-self: flex-start;
  margin-top: 2px;
}
.ct-urgent .ct-digit {
  color: #ff6b6b;
  animation: ct-pulse 1s ease-in-out infinite;
}
.ct-expired .collection-timer-units {
  opacity: .5;
}

@keyframes ct-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

/* --- Grid collection cards --- */
.collection-card {
  display: block;
  text-decoration: none !important;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-card);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  position: relative;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0,0,0,.16);
}
.collection-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.collection-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.collection-card:hover .collection-card-img img {
  transform: scale(1.08);
}
.collection-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--pr-navy) 0%, var(--pr-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.25);
}
.collection-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
}
.collection-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
}
.collection-card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--pr-white);
  margin-bottom: .5rem;
}
.collection-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: .5rem;
  flex-wrap: wrap;
}
.collection-card .collection-price {
  font-size: .9rem;
  background: rgba(255,106,0,.1);
  color: var(--pr-red);
  padding: .25rem .6rem;
}
.collection-card .collection-count {
  font-size: .8rem;
  color: #64748b;
}
.collection-card .collection-timer-units {
  background: rgba(0,0,0,.06);
  border-radius: 8px;
  padding: .3rem .6rem;
}
.collection-card .ct-digit {
  font-size: .9rem;
  color: var(--pr-white);
}
.collection-card .ct-unit small {
  color: #94a3b8;
}
.collection-card .ct-sep {
  color: #94a3b8;
  font-size: .85rem;
}
.collection-card .ct-urgent .ct-digit {
  color: var(--pr-red);
}
.collection-card-cta {
  display: inline-block;
  margin-top: .75rem;
  font-weight: 600;
  font-size: .9rem;
  color: var(--pr-blue);
  transition: color .2s ease;
}
.collection-card:hover .collection-card-cta {
  color: var(--pr-red);
}

/* Override Bootstrap .btn hover for PR buttons inside collection/featured cards */
.collection-featured .btn.btn-primary-pr:hover,
.collection-featured .btn.btn-primary-pr:focus-visible {
  background: var(--pr-red-dark) !important;
  color: var(--pr-white) !important;
  border-color: var(--pr-red-dark) !important;
}
a.btn.btn-outline-pr:hover,
a.btn.btn-outline-pr:focus-visible {
  background: var(--pr-red) !important;
  color: var(--pr-white) !important;
  border-color: var(--pr-red) !important;
}
a.btn.btn-secondary-pr:hover,
a.btn.btn-secondary-pr:focus-visible {
  background: var(--pr-blue-dark) !important;
  color: var(--pr-white) !important;
}
a.btn.btn-primary-pr:hover,
a.btn.btn-primary-pr:focus-visible {
  background: var(--pr-red-dark) !important;
  color: var(--pr-white) !important;
}

/* --- Collection Progress Bar (days remaining) --- */
.collection-progress {
  margin-top: .75rem;
}
.collection-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: .5rem;
}
.collection-progress-label .cp-days {
  color: var(--pr-white);
  font-weight: 700;
}
.collection-progress-bar {
  width: 100%;
  height: 10px;
  background: #e2e8f0;
  border-radius: 50rem;
  overflow: hidden;
  position: relative;
}
.collection-progress-fill {
  height: 100%;
  border-radius: 50rem;
  background: linear-gradient(90deg, var(--pr-blue) 0%, var(--pr-red) 100%);
  transition: width .6s ease;
  position: relative;
  min-width: 6px;
}
.collection-progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pr-red);
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(255,106,0,.5);
}
/* Urgent — less than 3 days */
.collection-progress.cp-urgent .collection-progress-fill {
  background: linear-gradient(90deg, var(--pr-red) 0%, #ff4d4d 100%);
  animation: cp-pulse 1.5s ease-in-out infinite;
}
.collection-progress.cp-urgent .cp-days {
  color: var(--pr-red);
}
@keyframes cp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

/* Featured card progress bar — white theme */
.collection-featured .collection-progress-label {
  color: rgba(255,255,255,.6);
}
.collection-featured .collection-progress-label .cp-days {
  color: #fff;
}
.collection-featured .collection-progress-bar {
  background: rgba(255,255,255,.2);
}
.collection-featured .collection-progress-fill {
  background: linear-gradient(90deg, rgba(255,255,255,.6) 0%, #fff 100%);
}
.collection-featured .collection-progress-fill::after {
  background: var(--surface-card);
  border-color: rgba(255,255,255,.3);
  box-shadow: 0 0 6px rgba(255,255,255,.5);
}

/* --- Responsive adjustments --- */
@media (max-width: 767.98px) {
  .collection-featured-link {
    min-height: 340px;
  }
  .collection-featured-content {
    min-height: 340px;
    padding: 1.5rem;
  }
  .collection-featured-title {
    font-size: 1.5rem;
  }
  .collection-card-img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .collection-featured-link {
    min-height: 300px;
  }
  .collection-featured-content {
    min-height: 300px;
    padding: 1.25rem;
  }
  .collection-featured-title {
    font-size: 1.25rem;
  }
  .collection-featured-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
}

/* ===== Product Showcase — Motores-style purchase layout ===== */
.product-showcase {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.25);
}
.product-showcase-img {
  position: relative;
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}
.product-showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-showcase-placeholder {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a2e, #0a0a1a);
  color: rgba(255,255,255,.15);
}
.product-showcase-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0,0,0,.85);
  color: #fff;
  font-size: .75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.product-purchase-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  color: #fff;
  background: #16162a;
}
.product-purchase-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.product-purchase-info {
  display: flex;
  gap: 12px;
  margin-bottom: 1.25rem;
}
.product-info-box {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  padding: 12px 16px;
}
.product-info-box small {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 4px;
}
.product-info-box strong {
  font-size: 1rem;
  color: #fff;
}
.product-qty-picker {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}
.qty-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .2s ease;
}
.qty-minus {
  background: var(--surface-card);
  color: #1a1a2e;
}
.qty-plus {
  background: var(--pr-red);
  color: #fff;
}

/* Stock indicators */
.product-stock-limited {
  display: inline-block;
  background: rgba(255,106,0,.1);
  color: var(--pr-red);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-stock-available {
  display: inline-block;
  background: rgba(40,167,69,.1);
  color: #28a745;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.product-stock-out {
  display: inline-block;
  background: rgba(108,117,125,.1);
  color: #6c757d;
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.qty-btn:hover {
  transform: scale(1.1);
}
.qty-input {
  flex: 1;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  height: 44px;
  margin: 0 10px;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-total {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 1rem;
}
.product-total strong {
  color: #fff;
  font-size: 1.25rem;
}
.product-bonus-entries {
  background: rgba(255,106,0,.15);
  border: 1px solid rgba(255,106,0,.3);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: .85rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1rem;
  text-align: center;
}
.product-purchase-panel .btn-primary-pr {
  padding: 14px 24px;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 10px;
  margin-bottom: .75rem;
}
.product-disclaimer {
  text-align: center;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: rgba(255,255,255,.35);
  margin: 0;
}

@media (max-width: 767.98px) {
  .product-showcase {
    overflow: visible; /* let content flow naturally on mobile */
  }
  .product-showcase-img {
    min-height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
  }
  .product-purchase-panel {
    padding: 1.5rem;
    height: auto; /* don't constrain to image height on mobile */
    border-radius: 0 0 16px 16px;
  }
  .product-purchase-title {
    font-size: 1.2rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* =============================================================
   HERO GALLERY — Full-width cinematic product gallery
   ============================================================= */
.hero-gallery {
  position: relative;
  background: #000;
  width: 100%;
}

/* ── Viewport ── */
.hero-gallery__viewport {
  position: relative;
  width: 100%;
  height: 75vh;
  min-height: 420px;
  max-height: 800px;
  overflow: hidden;
  cursor: pointer;
}

.hero-gallery__track {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Slides ── */
.hero-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1);
  z-index: 1;
}
.hero-gallery__slide.is-active {
  opacity: 1;
  z-index: 2;
}
.hero-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ── Bottom gradient for caption ── */
.hero-gallery__gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.25) 50%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

/* ── Caption ── */
.hero-gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 0 5% 48px;
}
.hero-gallery__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -.02em;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hero-gallery__subtitle {
  font-size: clamp(.95rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.8);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}

/* ── Arrows ── */
.hero-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  opacity: 0;
}
.hero-gallery:hover .hero-gallery__arrow {
  opacity: 1;
}
.hero-gallery__arrow:hover {
  background: rgba(255,255,255,.25);
  transform: translateY(-50%) scale(1.08);
}
.hero-gallery__arrow--prev { left: 20px; }
.hero-gallery__arrow--next { right: 20px; }

/* ── Counter badge ── */
.hero-gallery__counter {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 6;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: .05em;
}

/* ── Thumbnail strip ── */
.hero-gallery__thumbs {
  display: flex;
  gap: 4px;
  padding: 8px 5%;
  background: #0a0a0a;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-gallery__thumbs::-webkit-scrollbar { display: none; }

.hero-gallery__thumb {
  flex: 0 0 auto;
  width: 80px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: .5;
  transition: all .3s ease;
}
.hero-gallery__thumb.is-active,
.hero-gallery__thumb:hover {
  opacity: 1;
  border-color: #fff;
}
.hero-gallery__thumb.is-active {
  border-color: var(--pr-blue);
  box-shadow: 0 0 0 1px var(--pr-blue);
}
.hero-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Lightbox ── */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.gallery-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s;
}
.gallery-lightbox__close:hover { background: rgba(255,255,255,.25); }

.gallery-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}
.gallery-lightbox__arrow:hover { background: rgba(255,255,255,.2); }
.gallery-lightbox__arrow--prev { left: 20px; }
.gallery-lightbox__arrow--next { right: 20px; }

.gallery-lightbox__img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox__img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 60px rgba(0,0,0,.6);
  transition: opacity .3s ease;
}
.gallery-lightbox__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hero-gallery__viewport {
    height: 55vh;
    min-height: 320px;
  }
  .hero-gallery__arrow { opacity: 1; width: 44px; height: 44px; }
  .hero-gallery__arrow--prev { left: 12px; }
  .hero-gallery__arrow--next { right: 12px; }
  .hero-gallery__caption { padding: 0 24px 36px; }
}

@media (max-width: 575.98px) {
  .hero-gallery__viewport {
    height: 50vh;
    min-height: 280px;
  }
  .hero-gallery__caption { padding: 0 16px 24px; }
  .hero-gallery__thumb { width: 64px; height: 44px; }
  .hero-gallery__thumbs { padding: 6px 12px; gap: 3px; }
  .gallery-lightbox__arrow { width: 40px; height: 40px; }
  .gallery-lightbox__close { width: 40px; height: 40px; top: 12px; right: 12px; }
}

/* =============================================================
   BPay — Dummy payment button (MVP)
   ============================================================= */
.bpay-btn {
  background: linear-gradient(135deg, #1a1a2e 0%, #FF6A00 50%, #FF8C42 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 1.25rem;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.bpay-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.bpay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,.35);
  color: #fff;
}
.bpay-btn:active {
  transform: translateY(0);
}
.bpay-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--surface-card);
  color: #FF6A00;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.1rem;
  margin-right: 8px;
  vertical-align: middle;
  font-family: var(--font-heading);
}
.bpay-amount {
  opacity: .85;
  margin-left: 6px;
  font-weight: 400;
}

/* ===== Payment Method Selector ===== */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-method-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 2px solid #e2e6ea;
  border-radius: 12px;
  cursor: pointer;
  transition: all .2s ease;
  background: var(--surface-card);
}
.payment-method-option:hover {
  border-color: #FF6A00;
  background: #fff8f2;
}
.payment-method-option.active {
  border-color: #FF6A00;
  background: linear-gradient(135deg, #fff5eb 0%, #ffecdb 100%);
  box-shadow: 0 0 0 1px #FF6A00;
}
.payment-method-option .payment-check {
  color: #ccc;
  font-size: 1.25rem;
  transition: color .2s ease;
}
.payment-method-option.active .payment-check {
  color: #FF6A00;
}
.payment-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.payment-method-icon.ath-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
}
.payment-method-icon.card-icon {
  background: linear-gradient(135deg, #0A2472, #FF6A00);
}
.payment-method-icon.paypal-icon {
  background: linear-gradient(135deg, #003087, #009cde);
}

.payment-submit-btn {
  background: #FF6A00;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 16px 28px;
  font-size: 1.15rem;
  letter-spacing: .3px;
  transition: transform .15s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.payment-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.payment-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,.35);
  color: #fff;
}
.payment-submit-btn:active {
  transform: translateY(0);
  color: #fff;
}

#card-details .form-control {
  background: var(--surface-elevated);
  border-color: #dee2e6;
}
