/* Global Styles */
:root {
  --primary-color: #216FED;
  --accent-color: #FDBC2C;
  --text-color: #333;
  --light-gray: #F7F7F7;
  --white: #fff;
  --transition: all 0.3s ease;
}

.wa-float-btn {
  position: fixed;
  right: 16px;
  bottom: 20px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25d366, #16a34a);
  color: #fff;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.45);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float-btn svg {
  width: 55px;
  height: 55px;
  transform: scale(1.35);
  transform-origin: center;
}

.wa-float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 28px rgba(22, 163, 74, 0.5);
}

@media (max-width: 768px) {
  .wa-float-btn {
    right: 12px;
    bottom: 84px;
    width: 64px;
    height: 64px;
  }
}

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  padding-top: 0;
  margin: 0;
  background: #111;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(6px);
}

header.transparent {
  background: rgba(17, 17, 17, 0.85);
}

header.solid {
  background: rgba(17, 17, 17, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

header nav {
  width: 100%;
  padding: 0.4rem 0.8rem;
}

.nav-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-links {
  display: flex;
  gap: 1rem;
}

.top-links a {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  transition: all 0.2s ease;
}

.top-links a:hover {
  color: #fff;
  border-color: rgba(253,188,44,0.5);
  background: rgba(253,188,44,0.2);
}

.desktop-links {
  margin-left: auto;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-radius: 10px;
  width: 40px;
  height: 36px;
  font-size: 1.1rem;
}

.mobile-links {
  display: none;
  max-width: 1200px;
  margin: 0.35rem auto 0;
  justify-content: flex-end;
}

.logo a {
  text-decoration: none;
  display: inline-block;
}

.logo h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0.2rem 0;
  margin: 0;
  text-align: left;
}

/* Top Bar Styles */
.top-bar {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.9rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1001;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 1.5rem;
}

.contact-info a {
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  color: var(--accent-color);
}

/* Pool Hero Section */
.pool-hero {
  height: 50svh;
  min-height: 0;
  margin-top: 0;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  color: var(--white);
  text-align: center;
}

.swiper {
  width: 100%;
  height: 100%;
}

.pool-hero .swiper-wrapper {
  height: 100%;
}

.swiper-slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100%;
  padding: 110px 16px 110px;
}

@media (min-width: 1024px) {
  .swiper-slide {
    background-size: 40% auto;
  }
}

.swiper-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
  z-index: 1;
}

.swiper-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(33,111,237,0.3), rgba(253,188,44,0.3));
  mix-blend-mode: overlay;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 1.1rem 0.9rem;
  background: rgba(0, 0, 0, 0.151);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 560px;
  width: min(92%, 560px);
  max-height: calc(50svh - 110px);
  overflow: auto;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.swiper-slide-active .hero-content {
  opacity: 0.85;
  transform: translateY(0);
}

.hero-badge {
  background: var(--accent-color);
  color: var(--text-color);
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: bounce 2s infinite;
}

.pool-hero h1 {
  font-size: clamp(1.6rem, 5.2vw, 2.5rem);
  margin-bottom: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.price-tag {
  margin-bottom: 0.6rem;
}

.original-price {
  text-decoration: line-through;
  color: #ff4444;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.special-price {
  font-size: clamp(2rem, 5.8vw, 2.8rem);
  font-weight: 800;
  color: var(--accent-color);
  text-shadow: 0 2px 15px rgba(253,188,44,0.3);
  margin-bottom: 0.2rem;
}

.hero-content .price-description {
  font-size: 0.9rem;
  line-height: 1.3;
  margin: 0.5rem 0;
  color: var(--white);
}

.savings-highlight {
  background: rgba(255,255,255,0.1);
  padding: 0.8rem 0.7rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-top: 0.6rem;
  border: 1px solid rgba(255,255,255,0.2);
}

.savings-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 10px rgba(253,188,44,0.3);
}

/* Product Details Section */
.pool-details {
  padding: 4rem 0;
  background: var(--light-gray);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.car-showcase {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
}

.thumbnail {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0.7;
}

.thumbnail.active,
.thumbnail:hover {
  opacity: 1;
  transform: scale(1.05);
}

.purchase-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.countdown-box {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.countdown-item {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem;
  border-radius: 10px;
  min-width: 80px;
}

.countdown-item span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.countdown-item label {
  font-size: 0.8rem;
  opacity: 0.9;
}

.ticket-selector {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.quantity-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: var(--transition);
}

.quantity-btn:hover {
  transform: scale(1.1);
}

.quantity-input {
  width: 80px;
  height: 40px;
  text-align: center;
  font-size: 1.2rem;
  border: 2px solid var(--primary-color);
  border-radius: 20px;
}

.pool-summary {
  text-align: center;
  margin-top: 1.5rem;
}

.total-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 0.5rem;
}

.purchase-form {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
}

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

.purchase-button {
  width: 100%;
  background: linear-gradient(45deg, var(--accent-color), #FFA500);
  color: var(--text-color);
  border: none;
  padding: 1rem;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.purchase-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(253,188,44,0.3);
}

.button-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.purchase-section {
  padding: 1rem 0;
  background: var(--light-gray);
}

.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 2rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.countdown-box {
  grid-column: 1 / -1;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-box h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.countdown-item {
  background: var(--primary-color);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  min-width: 100px;
  box-shadow: 0 8px 20px rgba(33,111,237,0.2);
}

.countdown-item span {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.countdown-item label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-draw-meta {
  margin-top: 0.9rem;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.countdown-draw-meta .draw-divider {
  opacity: 0.45;
  margin: 0 0.45rem;
}

.ticket-selector {
  grid-column: 1 / 3;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.purchase-form {
  grid-column: 3 / 4;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height: 100%;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--primary-color), #1a4ba5);
  color: var(--white);
}

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

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.2);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-color);
}

.benefit-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

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

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(33,111,237,0.05);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: var(--transition);
}

.faq-item.active .arrow-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
  max-height: 1000px;
  opacity: 1;
}

/* Package Styles */
.package-grid {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.package-card {
  flex: 1;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.package-card.active {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(253,188,44,0.2);
}

.package-card.active .select-package {
  background: var(--accent-color);
  color: var(--text-color);
}

.package-card.active .package-header {
  background: linear-gradient(135deg, var(--accent-color), #FFA500);
}

.package-card.featured.active {
  transform: scale(1.02) translateY(-5px);
}

.package-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.02);
}

.package-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.best-value {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: var(--accent-color);
  color: var(--text-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.7rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.package-header {
  background: linear-gradient(135deg, var(--primary-color), #4a90e2);
  padding: 1rem;
  text-align: center;
  color: var(--white);
}

.package-header h4 {
  margin: 0;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.package-price {
  font-size: 1.8rem;
  font-weight: 700;
}

.package-content {
  padding: 1rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-details {
  margin-bottom: 0rem;
}

.numbers-included {
  display: block;
  font-size: 1.5rem;
  font-weight: 999;
  color: var(--text-color);
  margin-bottom: 0.3rem;
}

.savings {
  display: inline-block;
  background: rgba(253,188,44,0.1);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 25px;
  font-weight: 600;
  margin: 0.3rem 0;
  font-size: 0.9rem;
}

.original-price {
  color: #666;
  text-decoration: line-through;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.select-package {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 0.9rem;
}

.select-package:hover {
  background: #1a4ba5;
  transform: translateY(-2px);
}

.featured .select-package {
  background: var(--accent-color);
  color: var(--text-color);
}

.featured .select-package:hover {
  background: #ffa500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    padding: 0 0.2rem 0.35rem;
  }

  .mobile-links.show {
    display: flex;
  }

  .mobile-links a {
    font-size: 0.78rem;
    text-align: center;
  }

  .logo h1 {
    font-size: 1.55rem;
    text-align: center;
  }

  .pool-hero {
    height: 50svh;
    min-height: 0;
    padding-top: 0;
  }

  .swiper {
    height: 100%;
  }

  .hero-content {
    padding: 0.75rem 0.65rem;
    width: min(94%, 500px);
    max-height: calc(50svh - 92px);
  }

  .swiper-slide {
    padding: 96px 14px 96px;
  }

  .hero-content h1 {
    font-size: clamp(1.45rem, 7.2vw, 2rem);
    margin-bottom: 0.45rem;
  }

  .special-price {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }

  .price-description {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .savings-highlight {
    padding: 0.55rem 0.5rem;
    margin-top: 0.45rem;
  }

  .savings-amount {
    font-size: 1.25rem;
  }

  /* Countdown Box Mobile Adjustments */
  .countdown-box {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .countdown-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .countdown-item {
    min-width: auto;
    padding: 0.8rem;
    width: 100%;
    background: var(--primary-color);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(33,111,237,0.15);
  }

  .countdown-item span {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }

  .countdown-item label {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
  }

  /* Purchase Grid Mobile Adjustments */
  .purchase-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0.5rem;
  }

  .countdown-box, 
  .ticket-selector, 
  .purchase-form {
    grid-column: 1 / -1;
    padding: 1rem;
  }

  /* Package Grid Mobile Adjustments */
  .package-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .package-card {
    width: 100%;
    margin: 0;
  }

  .package-card.featured {
    transform: none;
    margin: 0;
  }

  .package-header {
    padding: 0.8rem;
  }

  .package-content {
    padding: 0.8rem;
  }

  /* Quantity Selector Mobile Adjustments */
  .quantity-selector {
    gap: 0.8rem;
  }

  .quantity-btn {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .quantity-input {
    width: 60px;
    height: 35px;
    font-size: 1rem;
  }

  /* Payment Methods Mobile Adjustments */
  .payment-methods {
    padding: 1.2rem;
    margin-top: 1.5rem;
  }

  .payment-methods h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .payment-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
  }

  .payment-card {
    width: 90px;
    height: 90px;
    padding: 0.8rem;
  }

  .qr-container {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .qr-container img {
    width: 200px;
    height: 200px;
  }

  .payment-details {
    width: 100%;
    padding: 1rem;
  }

  .payment-details h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .payment-info {
    padding: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .copy-wrapper {
    flex-direction: column;
    gap: 0.5rem;
  }

  .account-number {
    font-size: 1rem;
  }

  .copy-button {
    width: 100%;
    justify-content: center;
    padding: 0.5rem;
  }

  /* Form Adjustments */
  .form-group input {
    padding: 0.8rem;
    font-size: 1rem;
  }

  .purchase-button {
    padding: 0.8rem;
    font-size: 1rem;
  }

  /* Benefits Section Mobile */
  .benefits-section {
    padding: 2rem 1rem;
  }

  .benefits-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .benefit-card {
    padding: 1.2rem;
  }

  .benefit-icon {
    width: 50px;
    height: 50px;
  }

  .benefit-card h3 {
    font-size: 1.2rem;
  }

  /* FAQ Section Mobile */
  .faq-section {
    padding: 2rem 1rem;
  }

  .faq-section h2 {
    font-size: 1.8rem;
  }

  .faq-grid {
    gap: 0.8rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 1rem;
    font-size: 0.9rem;
  }

  /* Footer Mobile Adjustments */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section a {
    justify-content: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }

  body {
    padding-top: 0;
  }

  header {
    top: 0;
  }

  .pool-hero {
    padding-top: 0;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .countdown {
    gap: 0.5rem;
  }

  .countdown-item {
    padding: 0.6rem;
  }

  .countdown-item span {
    font-size: 1.2rem;
  }

  .countdown-item label {
    font-size: 0.6rem;
  }

  .payment-card {
    width: 80px;
    height: 80px;
  }

  .qr-container img {
    width: 180px;
    height: 180px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 0.6rem;
  }

  .countdown-item span {
    font-size: 1.2rem;
  }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .purchase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .countdown-box {
    grid-column: 1 / -1;
  }

  .package-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .package-card {
    flex: 0 1 calc(50% - 1rem);
    margin-bottom: 1rem;
  }

  .payment-methods {
    padding: 1.5rem;
  }

  .payment-cards {
    justify-content: center;
    gap: 1.5rem;
  }

  .payment-card {
    width: 110px;
    height: 110px;
  }

  .qr-container {
    padding: 1.5rem;
  }

  .qr-container img {
    width: 250px;
    height: 250px;
  }

  .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .countdown-item {
    min-width: auto;
    padding: 1rem;
  }
}

/* Payment Methods Section - Updated Styling */
.payment-methods {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.payment-methods h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-color);
}

.payment-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
}

.payment-card {
  flex: 0 1 140px;
  height: 140px;
  background: var(--white);
  border: 2px solid #eee;
  border-radius: 15px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transform: scale(0.95);
}

.payment-card:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border-color: var(--primary-color);
  opacity: 0.9;
}

.payment-card.active {
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(253,188,44,0.2);
  opacity: 1;
  transform: scale(1);
}

.payment-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.qr-container {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  margin-top: 2rem;
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.qr-container.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.qr-container img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: white;
  padding: 1rem;
  flex-shrink: 0;
}

.payment-details {
  flex-grow: 1;
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  min-width: 300px;
  max-width: 500px;
}

.payment-details h4 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
  text-align: center;
}

.payment-details h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.payment-info {
  margin-bottom: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
}

.payment-info strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.copy-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.account-number {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--text-color);
}

.copy-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  background: var(--primary-color);
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-button svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.copy-button:hover {
  background: #1a4ba5;
}

.copy-button.copied {
  background: var(--accent-color);
  color: var(--text-color);
}

.payment-details.nequi-theme {
  background: #20002f;
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 12px;
}

.payment-details.nequi-theme h4 {
  display: none;
}

.payment-details.nequi-theme h4::after {
  display: none;
}

.payment-details.nequi-theme .nequi-brand {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.2rem, 4.2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: .6px;
  color: #fff;
  line-height: 1;
}

.payment-details.nequi-theme small {
  color: #c9b7d6;
}

.payment-details.nequi-theme .payment-info {
  background: transparent;
  box-shadow: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.payment-details.nequi-theme .payment-info strong {
  color: #c9b7d6;
}

.payment-details.nequi-theme .account-number {
  margin-top: 4px;
  color: #fdbc2c;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.45rem, 6vw, 2rem);
  font-weight: 800;
  letter-spacing: .4px;
}

.payment-details.nequi-theme .copy-button {
  background: #fdbc2c;
  color: #111827;
  font-weight: 700;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: .8rem;
}

.payment-details.nequi-theme .copy-button:hover {
  background: #ffd46b;
}

.payment-details.nequi-theme .copy-wrapper,
.payment-details.nequi-theme .copy-line {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.purchase-loading {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 24, 0.72);
  backdrop-filter: blur(3px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  padding: 1rem;
}

.purchase-loading.show {
  display: flex;
}

.purchase-loading-card {
  width: min(92vw, 430px);
  background: #ffffff;
  border: 1px solid rgba(33, 111, 237, 0.16);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.28);
  padding: 1.2rem 1rem;
  text-align: center;
}

.purchase-loading-card h3 {
  margin: 0.2rem 0 0.35rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #111827;
}

.purchase-loading-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #475569;
}

.purchase-loading-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid rgba(33, 111, 237, 0.18);
  border-top-color: #216fed;
  margin: 0 auto 0.5rem;
  animation: purchaseSpin 0.9s linear infinite;
}

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

.qr-message {
  margin-top: 1rem;
  color: var(--text-color);
  font-size: 0.9rem;
  opacity: 0.8;
  font-style: italic;
}

@media (max-width: 768px) {
  .qr-container.active {
    flex-direction: column;
    align-items: center;
  }

  .qr-container img {
    width: 200px;
    height: 200px;
    margin-bottom: 1rem;
  }

  .payment-details {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .payment-cards {
    flex-wrap: nowrap;
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .payment-card {
    flex: 1;
    height: 100px;
    padding: 0.8rem;
    min-width: 90px;
  }

  .qr-container {
    padding: 1rem;
  }

  .payment-details {
    padding: 1.5rem;
    min-width: unset;
    width: 100%;
  }

  .copy-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }

  .copy-button {
    width: auto;
    white-space: nowrap;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .payment-cards {
    gap: 1.2rem;
  }

  .payment-card {
    flex: 0 1 120px;
    height: 120px;
  }

  .qr-container {
    max-width: 90%;
  }

  .payment-details {
    min-width: 280px;
  }
}

/* Footer Styles */
footer {
  background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 2.2rem 0 1rem;
  position: relative;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  margin-top: 1.4rem;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    var(--primary-color) 0%,
    var(--accent-color) 50%,
    var(--primary-color) 100%
  );
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  margin-bottom: 1.1rem;
  position: relative;
  max-width: 680px;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-section h4 {
  color: var(--accent-color);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  border-radius: 2px;
}

.footer-section p {
  color: #f0f0f0;
  line-height: 1.55;
  font-size: 0.92rem;
  opacity: 0.9;
}

.footer-section a {
  color: #f0f0f0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  opacity: 0.9;
  padding: 0.32rem 0;
  font-size: 0.92rem;
}

.footer-section a:hover {
  color: var(--accent-color);
  opacity: 1;
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.8rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.social-icon:hover {
  background: var(--accent-color);
  transform: translateY(-5px) rotate(360deg);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 5px 15px rgba(253,188,44,0.3);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 1rem;
  background: rgba(0,0,0,0.2);
}

.footer-bottom p {
  color: #f0f0f0;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 1rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 1rem 0;
}

.legal-links a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  opacity: 0.8;
  position: relative;
}

.legal-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-color);
  opacity: 1;
}

.legal-links a:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .footer-section h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-section a {
    justify-content: center;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }

  .legal-links a::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Add hover effect for contact information */
.footer-section.contact-info a {
  padding: 0.8rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 0.5rem;
}

.footer-section.contact-info a:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(0) scale(1.02);
}

.footer-section.contact-info p {
  padding: 0.8rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  margin-top: 0.5rem;
}

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

/* Countdown Pro Redesign */
.purchase-section .countdown-box {
  border-radius: 20px;
  background: linear-gradient(180deg, #fbfcff 0%, #f2f5fc 100%);
  border: 1px solid rgba(33, 111, 237, 0.12);
  box-shadow: 0 14px 36px rgba(17, 24, 39, 0.12);
}

.purchase-section .countdown-box h3 {
  margin-bottom: 1.1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.purchase-section .countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(96px, 128px));
  justify-content: center;
  gap: 0.7rem;
}

.purchase-section .countdown-item {
  position: relative;
  width: 100%;
  min-width: 96px;
  max-width: 128px;
  border-radius: 14px;
  padding: 0.72rem 0.45rem 0.58rem;
  background: linear-gradient(165deg, #2f7bf3 0%, #216fed 55%, #1a56c9 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 12px 24px rgba(33, 111, 237, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.purchase-section .countdown-item::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 8px;
  width: 80%;
  height: 1px;
  background: rgba(255,255,255,0.35);
}

.purchase-section .countdown-item span {
  font-size: 2.5rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 10px rgba(0,0,0,.16);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.purchase-section .countdown-item label {
  font-size: 0.62rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.92;
  line-height: 1;
}

.purchase-section .countdown-item.tick {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    0 16px 30px rgba(33, 111, 237, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.3);
  animation: countdownPop .3s ease;
}

@keyframes countdownPop {
  0% { transform: scale(0.97); filter: brightness(0.94); }
  60% { transform: scale(1.03); filter: brightness(1.06); }
  100% { transform: scale(1); filter: brightness(1); }
}

@media (max-width: 768px) {
  .purchase-section {
    padding: 0.25rem 0;
  }

  .purchase-section .countdown-box {
    padding: 1rem 0.8rem;
    margin-bottom: 0.8rem;
    border-radius: 16px;
  }

  .purchase-section .countdown-box h3 {
    font-size: 1.22rem;
    margin-bottom: 0.75rem;
  }

  .purchase-section .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    gap: 0.42rem;
    margin-top: 0;
    padding: 0;
  }

  .purchase-section .countdown-item {
    min-width: 0;
    max-width: none;
    padding: 0.52rem 0.15rem 0.45rem;
    border-radius: 10px;
  }

  .purchase-section .countdown-item span {
    font-size: 2.1rem;
    margin-bottom: 0.15rem;
    padding-top: 0.85rem;
  }

  .purchase-section .countdown-item label {
    font-size: 0.65rem;
    letter-spacing: 0.3px;
  }

  .countdown-draw-meta {
    font-size: 0.82rem;
    line-height: 1.35;
    padding: 0 0.2rem;
  }

  .countdown-draw-meta .draw-divider {
    display: block;
    margin: 0.2rem 0;
    opacity: 0;
    height: 0;
  }
}

@media (max-width: 420px) {
  .purchase-section .countdown-box {
    padding: 0.85rem 0.62rem;
  }

  .purchase-section .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.32rem;
  }

  .purchase-section .countdown-item span {
    font-size: 2.1rem;
  }

  .purchase-section .countdown-item label {
    font-size: 0.42rem;
  }
}

/* Mobile checkout flow */
.mobile-checkout-bar,
.mobile-checkout-modal {
  display: none;
}

.verify-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.verify-modal[aria-hidden="true"] { display: none; }
.verify-modal[aria-hidden="false"] { display: block; }

.verify-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.verify-modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 620px);
  max-height: 84vh;
  overflow: auto;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(33,111,237,0.14);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  padding: 12px;
}

.verify-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.verify-modal-head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.verify-close-btn {
  border: 0;
  background: transparent;
  font-size: 1.55rem;
  line-height: 1;
  color: #4b5563;
}

.verify-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.verify-form input {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
}

.verify-form button {
  border: 0;
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #216fed, #1a56c9);
}

.verify-status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

.verify-results {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.verify-group {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
}

.verify-group h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.verify-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.verify-chip {
  border-radius: 8px;
  padding: 6px 9px;
  font-size: 0.8rem;
  font-weight: 700;
}

.verify-chip.paid {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #86efac;
}

.verify-chip.pending {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.quick-consult-section {
  padding: 14px 0 0;
  background: var(--light-gray);
}

.quick-consult-wrap {
  display: flex;
  justify-content: center;
}

.quick-consult-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #216fed, #1a56c9);
  box-shadow: 0 8px 18px rgba(33,111,237,0.25);
}

.quick-consult-modal { position: fixed; inset: 0; z-index: 1450; }
.quick-consult-modal[aria-hidden="true"] { display: none; }
.quick-consult-modal[aria-hidden="false"] { display: block; }
.quick-consult-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.58); }
.quick-consult-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 460px);
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(33,111,237,0.16);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35);
  padding: 12px;
}
.quick-consult-head { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.quick-consult-head h3 { margin:0; font-size:1.05rem; }
.quick-consult-close { border:0; background:transparent; font-size:1.5rem; color:#4b5563; }
.quick-consult-form { display:grid; grid-template-columns:1fr auto; gap:8px; }
.quick-consult-form input { border:1px solid #d1d5db; border-radius:10px; padding:0.72rem 0.78rem; }
.quick-consult-form button {
  border:0; border-radius:10px; padding:0.72rem 0.95rem; font-weight:700; color:#fff;
  background: linear-gradient(135deg, #216fed, #1a56c9);
}

.admin-login-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
}

.admin-login-modal[aria-hidden="true"] { display: none; }
.admin-login-modal[aria-hidden="false"] { display: block; }

.admin-login-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.admin-login-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 420px);
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(33,111,237,0.16);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  padding: 12px;
}

.admin-login-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.admin-login-head h3 {
  margin: 0;
  font-size: 1.06rem;
}

.admin-close-btn {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  color: #4b5563;
}

.admin-login-form {
  display: grid;
  gap: 8px;
}

.admin-login-form input {
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
}

.admin-login-form button {
  border: 0;
  border-radius: 10px;
  padding: 0.72rem 0.95rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #216fed, #1a56c9);
}

.admin-login-status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #4b5563;
}

@media (max-width: 768px) {
  .purchase-form {
    display: none;
  }

  .mobile-checkout-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    position: fixed;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: 0.65rem 0.75rem;
    border-radius: 14px;
    background: rgba(17, 24, 39, 0.92);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    z-index: 1200;
    transform: translateY(120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .mobile-checkout-bar.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-checkout-info small {
    display: block;
    color: #93a3be;
    font-size: 0.68rem;
    line-height: 1;
  }

  .mobile-checkout-info strong {
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.2;
    display: block;
  }

  #mobileSelectedTotal {
    display: block;
    color: #fdbc2c;
    font-size: 0.82rem;
    font-weight: 700;
    margin-top: 0.12rem;
  }

  .mobile-checkout-btn {
    border: 0;
    border-radius: 10px;
    padding: 0.58rem 0.95rem;
    font-weight: 700;
    font-size: 0.86rem;
    color: #111827;
    background: linear-gradient(135deg, #fdbc2c, #ffcf57);
  }

  .mobile-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
  }

  .mobile-checkout-modal[aria-hidden="true"] {
    display: none;
  }

  .mobile-checkout-modal[aria-hidden="false"] {
    display: block;
  }

  .mobile-checkout-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
  }

  .mobile-checkout-dialog {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    border-radius: 14px;
    background: #fff;
    padding: 0.95rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  }

  .mobile-checkout-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }

  .mobile-checkout-head h3 {
    font-size: 1.05rem;
    margin: 0;
  }

  .mobile-close-btn {
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    color: #4b5563;
  }

  .mobile-checkout-form input {
    width: 100%;
    margin-bottom: 0.6rem;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0.7rem 0.75rem;
    font-size: 0.92rem;
  }

  .mobile-pay-btn {
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 0.8rem;
    color: #fff;
    font-weight: 800;
    background: linear-gradient(135deg, #216fed, #1a56c9);
  }
}
