/* ===== PANAME HORIZON RP — MAIN STYLES ===== */

:root {
  --gold: #ffd700;
  --gold-dark: #b8860b;
  --gold-glow: rgba(255,215,0,0.3);
  --blue: #00aaff;
  --blue-glow: rgba(0,170,255,0.3);
  --silver: #c0c0c0;
  --bg-dark: #080810;
  --bg-card: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #e8e8f0;
  --text-dim: #888;
  --green: #00ff88;
  --discord: #5865f2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: 'Exo 2', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse at 20% 20%, rgba(255,215,0,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0,100,200,0.05) 0%, transparent 60%);
}

/* ===== PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.15;
  animation: float linear infinite;
}
@keyframes float {
  from { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.2; }
  90% { opacity: 0.1; }
  to { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,16,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  min-width: fit-content;
}
.logo-main {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-shadow: 0 0 20px var(--gold-glow);
}
.logo-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  text-decoration: none;
  color: var(--text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
  border-color: rgba(255,215,0,0.25);
  background: rgba(255,215,0,0.06);
  text-shadow: 0 0 10px var(--gold-glow);
}
.cart-btn {
  background: rgba(255,215,0,0.1);
  border: 1px solid rgba(255,215,0,0.3);
  color: var(--gold);
  padding: 0.5rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s;
  white-space: nowrap;
}
.cart-btn:hover {
  background: rgba(255,215,0,0.2);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::before { opacity: 1; }

.btn-gold {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #000;
  box-shadow: 0 4px 20px rgba(255,215,0,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,215,0,0.5);
}
.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,215,0,0.5);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(255,215,0,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.btn-blue {
  background: linear-gradient(135deg, #0088cc, #005fa3);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,136,204,0.3);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,136,204,0.5); }
.btn-silver {
  background: linear-gradient(135deg, #c0c0c0, #888);
  color: #000;
  box-shadow: 0 4px 20px rgba(192,192,192,0.25);
}
.btn-silver:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,192,192,0.4); }
.btn-paypal {
  background: linear-gradient(135deg, #003087, #009cde);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 1.2rem;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0,48,135,0.5);
}
.btn-paypal:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,48,135,0.7); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, transparent 0%, rgba(8,8,16,0.7) 100%),
    radial-gradient(ellipse at center, rgba(255,150,0,0.12) 0%, transparent 70%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0 L60 30 L30 60 L0 30Z' fill='none' stroke='rgba(255,215,0,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: heroReveal 0.9s ease both;
}
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,100,0,0.2), rgba(255,50,0,0.1));
  border: 1px solid rgba(255,100,0,0.4);
  color: #ff8c00;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255,100,0,0.2); }
  50% { box-shadow: 0 0 25px rgba(255,100,0,0.5); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1;
  letter-spacing: 4px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  margin-bottom: 1.5rem;
}
.gold-text {
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
}
.hero-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.2rem;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.eiffel-deco {
  position: absolute;
  right: 5%;
  bottom: 10%;
  font-size: 8rem;
  opacity: 0.07;
  pointer-events: none;
  animation: sway 6s ease-in-out infinite;
}
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 6rem 2rem 4rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background: radial-gradient(ellipse at center top, rgba(255,215,0,0.06) 0%, transparent 70%);
}
.page-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 4px;
  margin-bottom: 0.5rem;
}
.page-sub {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dim);
  letter-spacing: 1px;
}
.promo-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(255,50,0,0.2), rgba(255,100,0,0.1));
  border: 1px solid rgba(255,80,0,0.5);
  color: #ff6a00;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-top: 1.2rem;
  animation: pulse 2s ease-in-out infinite;
}

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  letter-spacing: 4px;
  margin-bottom: 3rem;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.feature-card:hover {
  border-color: rgba(255,215,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255,215,0,0.05);
}
.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: 'Rajdhani', sans-serif;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,100,0,0.1), rgba(255,215,0,0.05));
  border-top: 1px solid rgba(255,100,0,0.2);
  border-bottom: 1px solid rgba(255,100,0,0.2);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}
.cta-inner p {
  color: var(--text-dim);
  font-family: 'Rajdhani', sans-serif;
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ===== RSA CARDS ===== */
.rsa-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}
.rsa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.rsa-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(10,10,20,0.9);
  backdrop-filter: blur(20px);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  animation: cardReveal 0.6s ease both;
}
@keyframes cardReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.rsa-card:nth-child(2) { animation-delay: 0.15s; }
.rsa-card:nth-child(3) { animation-delay: 0.3s; }
.rsa-card:hover { transform: translateY(-8px); }

/* GOLD CARD */
.gold-card { border: 2px solid rgba(255,215,0,0.35); }
.gold-card:hover { border-color: var(--gold); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(255,215,0,0.15); }
.gold-header {
  background: linear-gradient(135deg, rgba(180,130,0,0.3), rgba(100,70,0,0.2));
  padding: 1.8rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,215,0,0.2);
}

/* DIAMANT CARD */
.diamant-card { border: 2px solid rgba(0,150,255,0.4); }
.diamant-card:hover { border-color: #00aaff; box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,150,255,0.15); }
.diamant-header {
  background: linear-gradient(135deg, rgba(0,80,150,0.4), rgba(0,30,80,0.3));
  padding: 1.8rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,150,255,0.2);
}
.featured {
  transform: scale(1.03);
  z-index: 2;
}
.featured:hover { transform: scale(1.03) translateY(-8px); }
.featured-badge {
  background: linear-gradient(135deg, #0088cc, #005fa3);
  color: white;
  text-align: center;
  padding: 0.4rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* SECRET CARD */
.secret-card { border: 2px solid rgba(180,180,180,0.3); }
.secret-card:hover { border-color: var(--silver); box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(192,192,192,0.1); }
.secret-header {
  background: linear-gradient(135deg, rgba(60,60,80,0.5), rgba(30,30,50,0.4));
  padding: 1.8rem 1.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(180,180,180,0.15);
}

.rsa-badge { font-size: 2rem; margin-bottom: 0.5rem; }
.rsa-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
}
.gold-header .rsa-title { color: var(--gold); }
.diamant-header .rsa-title { color: #4fc3f7; }
.secret-header .rsa-title { color: var(--silver); }

.price-block { display: flex; align-items: center; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }
.old-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: #666;
  text-decoration: line-through;
}
.new-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 1px;
}
.gold-header .new-price { color: var(--gold); }
.diamant-header .new-price { color: #4fc3f7; }
.secret-header .new-price { color: var(--silver); }

.promo-tag {
  background: rgba(255,80,0,0.15);
  border: 1px solid rgba(255,80,0,0.4);
  color: #ff8c00;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
}

.rsa-features {
  list-style: none;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.rsa-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.4;
}
.rsa-features .icon { font-size: 1.1rem; flex-shrink: 0; }
.rsa-card .btn { width: calc(100% - 3rem); margin: 0 1.5rem 1.5rem; display: flex; justify-content: center; }

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}
.table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
}
.comparison-table th, .comparison-table td {
  padding: 0.9rem 1.2rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comparison-table th {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.4);
  padding: 1.2rem;
}
.comparison-table td:first-child { text-align: left; color: var(--text-dim); }
.th-gold { color: var(--gold); }
.th-blue { color: #4fc3f7; }
.th-secret { color: var(--silver); }
.comparison-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.comparison-table tr:hover td { background: rgba(255,215,0,0.03); }

/* ===== COINS ===== */
.coins-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}
.coins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.coin-card {
  background: rgba(10,10,20,0.9);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  animation: cardReveal 0.5s ease both;
  backdrop-filter: blur(10px);
}
.coin-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,215,0,0.1);
}
.coin-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #004400, #006600);
  border: 1px solid #00aa00;
  color: #00ff88;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 2px;
  white-space: nowrap;
}
.promo-badge-red {
  background: linear-gradient(135deg, rgba(255,50,0,0.3), rgba(200,0,0,0.2));
  border: 1px solid rgba(255,80,0,0.6);
  color: #ff6a00;
}
.coin-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.coin-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.coin-amount span {
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 3px;
}
.coin-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
}
.coin-price-wrapper { display: flex; align-items: center; gap: 0.8rem; justify-content: center; margin-bottom: 1rem; }
.old-price-coin {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  color: #666;
  text-decoration: line-through;
}
.coin-save {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.best-value { border-color: rgba(0,255,136,0.35); }
.best-value:hover { border-color: var(--green); box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(0,255,136,0.1); }
.promo-coin { border-color: rgba(255,100,0,0.35); }
.promo-coin:hover { border-color: #ff6a00; box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px rgba(255,100,0,0.1); }
.coin-card .btn { width: 100%; justify-content: center; }

/* COINS INFO */
.coins-info {
  padding: 0 0 6rem;
  position: relative;
  z-index: 1;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
}
.info-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.info-card p {
  color: var(--text-dim);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CART ===== */
.cart-section {
  padding: 4rem 0 6rem;
  position: relative;
  z-index: 1;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}
.cart-item {
  background: rgba(10,10,20,0.9);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: all 0.25s;
  backdrop-filter: blur(10px);
}
.cart-item:hover { border-color: rgba(255,215,0,0.25); }
.cart-item-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}
.cart-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 1px;
}
.cart-item-remove {
  background: rgba(255,50,50,0.1);
  border: 1px solid rgba(255,50,50,0.3);
  color: #ff6b6b;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(255,50,50,0.25); }
.cart-empty {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--text-dim);
}
.empty-icon { font-size: 4rem; margin-bottom: 1rem; opacity: 0.4; }
.cart-empty h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.cart-summary {
  background: rgba(10,10,20,0.95);
  border: 1px solid rgba(255,215,0,0.2);
  border-radius: 16px;
  padding: 1.8rem;
  position: sticky;
  top: 90px;
  backdrop-filter: blur(20px);
}
.summary-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dim);
  padding: 0.4rem 0;
}
.summary-divider {
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.checkout-form { margin-bottom: 1.5rem; }
.checkout-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}
.checkout-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  outline: none;
  margin-bottom: 0.6rem;
  transition: border-color 0.2s;
}
.checkout-input:focus { border-color: rgba(255,215,0,0.4); }
.checkout-input::placeholder { color: var(--text-dim); }
.paypal-note {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.8rem;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, rgba(0,20,0,0.98), rgba(0,40,10,0.95));
  border: 1px solid var(--green);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  color: var(--green);
  z-index: 9999;
  box-shadow: 0 8px 30px rgba(0,255,136,0.2);
  animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
.toast.fade-out {
  animation: toastOut 0.4s ease forwards;
}
@keyframes toastOut {
  to { opacity: 0; transform: translateX(60px); }
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  color: var(--text-dim);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .header-inner { padding: 0 1rem; gap: 1rem; }
  .nav { gap: 0.2rem; }
  .nav-link { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
  .logo-main { font-size: 1.2rem; }
  .rsa-grid { grid-template-columns: 1fr; }
  .featured { transform: scale(1); }
  .featured:hover { transform: translateY(-8px); }
  .hero-title { font-size: 3rem; }
}
