/* ============================================
   PRESALE.CSS - ZION Presale Rasta Theme
   Sjednoceno s main.html a rasta.css
   ============================================ */

/* === PRESALE HERO === */
.presale-hero {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(10, 10, 10, 0.95) 100%);
  min-height: 500px;
}

.presale-badge {
  animation: presalePulse 2s ease-in-out infinite;
}

@keyframes presalePulse {
  0%, 100% { 
    box-shadow: 0 0 10px rgba(252, 209, 22, 0.5);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 30px rgba(252, 209, 22, 0.8);
    transform: scale(1.05);
  }
}

.gold-text {
  color: var(--rasta-gold) !important;
  -webkit-text-fill-color: var(--rasta-gold) !important;
}

.presale-stats-hero {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.presale-stats-hero .stat {
  text-align: center;
}

.presale-stats-hero .value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.presale-stats-hero .label {
  color: #888;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pulse-btn {
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(252, 209, 22, 0.3); }
  50% { box-shadow: 0 0 25px rgba(252, 209, 22, 0.6); }
}

/* === PROGRESS SECTION === */
.presale-progress-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.progress-container {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(252, 209, 22, 0.3);
  border-radius: 20px;
  padding: 30px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  color: #ccc;
  font-size: 0.95rem;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  height: 30px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 1s ease;
  min-width: 60px;
}

.progress-text {
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
}

.progress-milestones {
  position: relative;
  height: 40px;
  margin-top: 10px;
}

.milestone {
  position: absolute;
  transform: translateX(-50%);
  text-align: center;
}

.milestone-dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--rasta-gold);
  border-radius: 50%;
  margin: 5px auto;
  box-shadow: 0 0 10px rgba(252, 209, 22, 0.5);
}

.milestone-label {
  color: #888;
  font-size: 0.8rem;
}

/* === TOKEN INFO SECTION === */
.token-info-section {
  background: linear-gradient(180deg, rgba(7, 137, 48, 0.05) 0%, transparent 100%);
}

/* === PACKAGES GRID === */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.package-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
}

.package-card:hover {
  transform: translateY(-10px);
  border-color: var(--rasta-gold);
  box-shadow: 0 20px 40px rgba(252, 209, 22, 0.15);
}

.package-card.featured {
  border-color: var(--rasta-gold);
  box-shadow: 0 0 30px rgba(252, 209, 22, 0.2);
}

.package-card.whale {
  border-color: var(--rasta-green);
  background: linear-gradient(135deg, rgba(7, 137, 48, 0.1), rgba(0, 0, 0, 0.5));
}

/* === Book Section - Shop Style === */
.book-section {
  padding: 50px 20px;
  background: rgba(0, 0, 0, 0.3);
}

.book-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.book-section .rasta-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.shop-product-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 0, 0, 0.6));
  border: 2px solid var(--quantum-purple);
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  transition: all 0.3s ease;
}

.shop-product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.3);
  transform: translateY(-5px);
}

.shop-product-card .product-image {
  position: relative;
}

.shop-product-card .product-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-product-card .product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gold);
  color: var(--dark);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: bold;
}

.shop-product-card .product-details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-product-card .product-title {
  font-size: 1.8rem;
  color: var(--quantum-purple);
  margin-bottom: 1rem;
  font-weight: 600;
}

.shop-product-card .product-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.shop-product-card .product-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.shop-product-card .product-features-list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-product-card .product-features-list li:last-child {
  border-bottom: none;
}

.shop-product-card .product-features-list i {
  color: var(--gold);
  margin-right: 10px;
}

.shop-product-card .product-features-list strong {
  color: var(--gold);
}

.shop-product-card .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid rgba(168, 85, 247, 0.3);
}

.shop-product-card .product-price-section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.shop-product-card .product-price-old {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
  font-size: 1rem;
}

.shop-product-card .product-price {
  font-size: 2rem;
  color: var(--gold);
  font-weight: bold;
}

.shop-product-card .product-price-czk {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.shop-product-card .product-price-bonus {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 600;
}

.shop-product-card .add-to-cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--quantum-purple));
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-product-card .add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 209, 22, 0.4);
}

.shop-product-card .add-to-cart-btn i {
  font-size: 1.2rem;
}

/* Cart notification */
.cart-notification {
  position: fixed;
  top: -100px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--quantum-purple));
  color: white;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10000;
  transition: all 0.3s ease;
}

.cart-notification.show {
  top: 20px;
}

.cart-notification i {
  font-size: 1.5rem;
}

.cart-notification .view-cart-link {
  color: white;
  text-decoration: underline;
  margin-left: 10px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .shop-product-card {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .shop-product-card .product-image img {
    height: 300px;
  }
  
  .shop-product-card .product-footer {
    flex-direction: column;
    gap: 20px;
  }
  
  .shop-product-card .add-to-cart-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Old Book Pack Styling - Kept for reference */
.package-card.book-pack {
  border-color: var(--quantum-purple);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(0, 0, 0, 0.5));
}

.package-card.book-pack:hover {
  border-color: var(--quantum-purple);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

/* === Package Badges === */
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.package-badge.popular {
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold));
  color: #000;
  animation: badgePulse 2s infinite;
}

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

.package-badge.whale-badge {
  background: linear-gradient(90deg, var(--rasta-green), var(--quantum-blue));
  color: #000;
}

.package-header {
  padding: 30px 25px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.package-header h3 {
  font-size: 1.5rem;
  color: var(--rasta-gold);
  margin-bottom: 15px;
}

.package-price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.package-price .tokens {
  color: #888;
  font-size: 1rem;
}

.package-body {
  padding: 25px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #ccc;
  font-size: 0.95rem;
  text-align: left;
}

.package-features li i {
  color: var(--rasta-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.bonus-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #888;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.bonus-tag.gold {
  background: linear-gradient(90deg, var(--rasta-gold), #ffec80);
  color: #000;
}

.bonus-tag.premium {
  background: linear-gradient(90deg, var(--rasta-green), var(--quantum-blue));
  color: #000;
}

.package-btn {
  width: 100%;
  padding: 15px;
  border: none;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.package-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 20px rgba(252, 209, 22, 0.3);
}

.package-btn.featured-btn {
  background: var(--rasta-gold);
}

.package-btn.whale-btn {
  background: linear-gradient(90deg, var(--rasta-green), var(--quantum-blue));
}

/* === CUSTOM AMOUNT SECTION === */
.custom-amount-section {
  background: linear-gradient(180deg, rgba(252, 209, 22, 0.03) 0%, transparent 100%);
}

.custom-calculator {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
}

.calc-input-group {
  text-align: left;
  min-width: 300px;
}

.calc-input-group label {
  display: block;
  color: var(--rasta-gold);
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Slider Container */
.slider-container {
  width: 100%;
}

.presale-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 12px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    var(--rasta-green) 0%,
    var(--rasta-gold) var(--slider-percent, 50%),
    rgba(255, 255, 255, 0.1) var(--slider-percent, 50%)
  );
  outline: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(252, 209, 22, 0.3);
}

.presale-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rasta-gold), #ff8c00);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(252, 209, 22, 0.6);
  transition: all 0.2s ease;
}

.presale-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(252, 209, 22, 0.8);
}

.presale-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rasta-gold), #ff8c00);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 15px rgba(252, 209, 22, 0.6);
  transition: all 0.2s ease;
}

.presale-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(252, 209, 22, 0.8);
}

.slider-value {
  text-align: center;
  margin-top: 15px;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rasta-gold);
  text-shadow: 0 2px 10px rgba(252, 209, 22, 0.5);
}

.slider-price-display {
  text-align: center;
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rasta-green);
  text-shadow: 0 2px 10px rgba(76, 175, 80, 0.5);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.85rem;
  color: #999;
}

/* Old input styles kept for backward compatibility */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon i {
  position: absolute;
  left: 15px;
  color: var(--rasta-gold);
}

.input-with-icon input {
  width: 150px;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(252, 209, 22, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
}

.input-with-icon input:focus {
  outline: none;
  border-color: var(--rasta-gold);
  box-shadow: 0 0 10px rgba(252, 209, 22, 0.3);
}

.calc-arrow {
  color: var(--rasta-gold);
  font-size: 1.5rem;
}

.calc-result {
  text-align: center;
}

.calc-result label {
  display: block;
  color: var(--rasta-gold);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.result-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-value .token-symbol {
  font-size: 1rem;
  -webkit-text-fill-color: #888;
  margin-left: 5px;
}

.bonus-info {
  color: var(--rasta-green);
  font-size: 0.9rem;
  margin-top: 5px;
}

.calc-btn {
  padding: 15px 30px !important;
}

.bonus-tiers {
  text-align: center;
  margin-top: 20px;
}

.bonus-tiers h4 {
  color: var(--rasta-gold);
  margin-bottom: 15px;
}

.tiers-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.tiers-list .tier {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 10px;
  color: #ccc;
  font-size: 0.9rem;
}

.tiers-list .tier strong {
  color: var(--rasta-gold);
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.step-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(252, 209, 22, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--rasta-gold);
  box-shadow: 0 15px 30px rgba(252, 209, 22, 0.15);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #000;
  font-size: 1.1rem;
}

.step-icon {
  font-size: 2.5rem;
  margin: 20px 0;
  background: linear-gradient(90deg, var(--rasta-gold), var(--rasta-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card h4 {
  color: var(--rasta-gold);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step-card p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* === MODAL STYLES === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  overflow-y: hidden; /* zabrání dvojitému scrollu, scrolluje obsah */
  padding: 20px;
}

.modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(10, 10, 10, 0.99));
  border: 1px solid rgba(252, 209, 22, 0.3);
  border-radius: 20px;
  max-width: 900px;
  margin: 50px auto;
  position: relative;
  overflow: hidden;
}

/* vnitřní scroll pouze obsahu modalu, ne overlaye */
.modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rasta-red), var(--rasta-gold), var(--rasta-green));
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.close-modal:hover {
  color: var(--rasta-red);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 40px;
}

/* Force single-column layout for the compact presale order modal */
.qr-modal-content .modal-body {
  grid-template-columns: 1fr;
  padding: 30px 20px;
}

/* === QR PREVIEW === */
.qr-preview-section {
  text-align: center;
}

.qr-preview-section h2 {
  color: var(--rasta-gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.qr-preview-section h2 i {
  margin-right: 10px;
}

.qr-preview-container {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(252, 209, 22, 0.3);
  border-radius: 15px;
  padding: 30px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-loading {
  text-align: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(252, 209, 22, 0.2);
  border-top-color: var(--rasta-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.qr-loading p {
  color: #888;
}

#qr-preview-image {
  max-width: 200px;
  border-radius: 10px;
  border: 3px solid var(--rasta-gold);
}

.qr-details {
  margin-top: 20px;
  text-align: left;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row .label {
  color: #888;
}

.detail-row .value {
  color: var(--rasta-gold);
  font-weight: 600;
}

/* === PAYMENT SECTION === */
.payment-section h3 {
  color: var(--rasta-gold);
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: center;
}

.payment-summary {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  color: #ccc;
}

.summary-row.total {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
  padding-top: 15px;
  font-size: 1.2rem;
  color: var(--rasta-gold);
  font-weight: 700;
}

.payment-form {
  text-align: left;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--rasta-gold);
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin: 20px 0;
}

.payment-method {
  flex: 1;
  cursor: pointer;
}

.payment-method input {
  display: none;
}

.method-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #888;
  transition: all 0.3s;
}

.payment-method input:checked + .method-label {
  border-color: var(--rasta-gold);
  background: rgba(252, 209, 22, 0.1);
  color: var(--rasta-gold);
}

.payment-info {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  padding: 15px;
  margin: 15px 0;
  color: #888;
  font-size: 0.9rem;
}

.payment-info i {
  color: var(--rasta-green);
  margin-right: 8px;
}

.bank-details p {
  margin: 5px 0;
  color: #ccc;
}

.bank-details p:first-child {
  color: var(--rasta-gold);
}

.pay-btn {
  width: 100%;
  margin-top: 20px;
  padding: 18px !important;
  font-size: 1.1rem !important;
}

/* === SUCCESS MODAL === */
.success-modal-content {
  max-width: 500px;
  text-align: center;
  padding: 50px 40px;
}

.success-icon {
  font-size: 5rem;
  color: var(--rasta-green);
  margin-bottom: 20px;
  animation: successBounce 0.5s ease;
}

@keyframes successBounce {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.success-modal-content h2 {
  color: var(--rasta-gold);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.success-modal-content p {
  color: #ccc;
  margin-bottom: 20px;
}

.success-details {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

.success-qr {
  margin: 20px 0;
}

.success-qr img {
  max-width: 180px;
  border-radius: 10px;
  border: 3px solid var(--rasta-gold);
}

.success-note {
  color: #888;
  font-size: 0.9rem;
}

.success-note i {
  color: var(--rasta-gold);
}

/* === FAQ SECTION === */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.faq-item {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(252, 209, 22, 0.15);
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--rasta-gold);
  transform: translateY(-3px);
}

.faq-item h4 {
  color: var(--rasta-gold);
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--rasta-green);
  margin-top: 2px;
}

.faq-item p {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding-bottom: 80px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .modal-body {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .presale-stats-hero {
    gap: 20px;
  }
  
  .presale-stats-hero .value {
    font-size: 1.5rem;
  }
  
  .custom-calculator {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .calc-input-group {
    text-align: center;
  }
  
  .calc-arrow {
    transform: rotate(90deg);
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .payment-methods {
    flex-direction: column;
  }
  
  .tiers-list {
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-buttons .rasta-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .package-header h3 {
    font-size: 1.2rem;
  }
  
  .package-price .amount {
    font-size: 2rem;
  }
  
  .result-value {
    font-size: 1.5rem;
  }
}

/* === GLOBAL RESPONSIVE FIXES === */
img, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .presale-hero,
  .presale-section,
  .package-card,
  .result-panel {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}
