/* ============================================
   AEGIS CARDS — Saints Black & Gold
   ============================================ */

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

:root {
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #B8960C;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-card: #1A1A1A;
  --dark-card-hover: #222222;
  --gray: #888888;
  --gray-light: #AAAAAA;
  --white: #F5F5F0;
  --white-dim: #D0D0CC;
  --red: #E74C3C;
  --green: #27AE60;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.2;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* Noise overlay */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.1);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon { font-size: 1.5rem; }

.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--gray-light);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-badge {
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 30%, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at 30% 70%, rgba(212,175,55,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero h1 .gold { color: var(--gold); }

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.15);
}

.hero-stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ============================================
   SECTION LAYOUTS
   ============================================ */
.section {
  padding: 5rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 3rem;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

.section-subtitle {
  color: var(--gray);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,0.15), transparent);
  margin: 0;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  color: var(--white);
}

.product-card-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-image .card-art {
  font-size: 4rem;
  opacity: 0.3;
}

.product-card-image .card-year {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.product-card-image .card-condition {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(212,175,55,0.15);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold-light);
}

.product-card-image .featured-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--black);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-player {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.product-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 6px;
}

.product-card-set {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: auto;
  padding-bottom: 1rem;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.product-card-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.product-card-btn {
  background: rgba(212,175,55,0.1);
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.2);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.product-card-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  text-decoration: none;
  color: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.category-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.category-card:hover::before { opacity: 1; }

.category-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.category-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

.category-card .arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
}

.category-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   PRODUCT DETAIL
   ============================================ */
.product-detail {
  padding: 7rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-detail-image {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--dark-card) 0%, #1a1a2e 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.product-detail-image .card-art {
  font-size: 6rem;
  opacity: 0.2;
}

.product-detail-info { padding-top: 1rem; }

.product-detail-breadcrumb {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1rem;
}

.product-detail-breadcrumb a { color: var(--gray); }
.product-detail-breadcrumb a:hover { color: var(--gold); }

.product-detail-player {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-detail-name {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-detail-price {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--dark-card);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}

.meta-item-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.meta-item-value {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 2px;
}

.product-detail-desc {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.product-detail-actions {
  display: flex;
  gap: 1rem;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.stock-dot.out { background: var(--red); }

/* ============================================
   CART PAGE
   ============================================ */
.cart-page {
  padding: 7rem 2rem 5rem;
  max-width: 900px;
  margin: 0 auto;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty h2 { margin-bottom: 1rem; }
.cart-empty p { color: var(--gray); margin-bottom: 2rem; }

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: center;
}

.cart-item-image {
  width: 100px;
  height: 75px;
  background: var(--dark-card);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.06);
}

.cart-item-image .card-art { font-size: 2rem; opacity: 0.3; }

.cart-item-info { flex: 1; }

.cart-item-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-item-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

.cart-item-price {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray);
  cursor: pointer;
  padding: 8px;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.cart-item-remove:hover { color: var(--red); }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-qty button {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
  background: var(--dark-card);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.cart-qty button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.cart-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

.cart-summary {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2rem;
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.cart-checkout-btn {
  margin-top: 1.5rem;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
  padding: 7rem 2rem 5rem;
  max-width: 700px;
  margin: 0 auto;
}

.checkout-form { margin-top: 2rem; }

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: var(--gray-light);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

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

.form-group textarea {
  min-height: 80px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-page {
  padding: 7rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.about-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}

.about-content {
  color: var(--gray-light);
  line-height: 1.9;
  font-size: 1.05rem;
}

.about-content p { margin-bottom: 1.5rem; }

.about-content .highlight {
  color: var(--gold);
  font-weight: 600;
}

.about-highlight-box {
  background: var(--dark-card);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 2rem 0;
}

.about-highlight-box h3 {
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ============================================
   SHOP FILTERS
   ============================================ */
.shop-header {
  padding: 7rem 2rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.shop-filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: var(--gray-light);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.filter-chip:hover, .filter-chip.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.05);
}

/* ============================================
   FEATURE SECTION (Homepage)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition);
}

.feature-card:hover {
  border-color: rgba(212,175,55,0.2);
}

.feature-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   ALERT / TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(212,175,55,0.1);
  }

  .nav-links.open { display: flex; }

  .hero { padding: 6rem 1.5rem 3rem; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }

  .product-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .category-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-image { aspect-ratio: 1; }

  .cart-item { flex-wrap: wrap; }

  .form-row { grid-template-columns: 1fr; }

  .section { padding: 3rem 1.5rem; }
  .shop-header { padding: 6rem 1.5rem 1.5rem; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2rem; }
  .product-detail-meta { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE LOADING STATE
   ============================================ */
.page-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212,175,55,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* Success page */
.success-page {
  padding: 7rem 2rem 5rem;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

.success-page h1 {
  margin-bottom: 1rem;
}

.success-page p {
  color: var(--gray-light);
  margin-bottom: 2rem;
  line-height: 1.7;
}
