/* ═══════════════════════════════════════════════════════════════════════════
   PyStatR+ SHOP PAGE STYLES
   Futuristic • Elegant • Professional
   
   This file contains ALL styles specific to the Shop page.
   Add after styles.css in _quarto.yml
   ═══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   SHOP HERO SECTION
   ========================================================================== */

.shop-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(135deg, #0B1120 0%, #1e293b 50%, #0B1120 100%);
  text-align: center;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.shop-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.shop-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation: shop-float 10s ease-in-out infinite;
}

.shop-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation: shop-float 12s ease-in-out infinite reverse;
}

@keyframes shop-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.shop-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.shop-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  /* Override any conflicting styles */
  width: auto !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  box-sizing: border-box !important;
}

.shop-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #10b981, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shop-hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.shop-hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
}

/* Hero Navigation Buttons */
.shop-hero-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-nav-btn.digital {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #a78bfa;
}

.shop-nav-btn.digital:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.2));
  border-color: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.shop-nav-btn.merch {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.shop-nav-btn.merch:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.2));
  border-color: #34d399;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.shop-nav-btn .nav-icon-svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.shop-how-it-works {
  padding: 4rem 2rem;
  background: #ffffff;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.how-step {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}

.how-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
}

.how-step .step-number {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-step .step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.how-step h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.how-step p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   DIGITAL PRODUCTS SECTION
   ========================================================================== */

.shop-section-dark {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #0B1120 0%, #0f172a 100%);
}

.shop-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #a78bfa;
  margin-bottom: 1rem;
}

.shop-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.shop-subtitle {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Trust Banner */
.trust-banner {
  text-align: center;
  margin-bottom: 3rem;
}

.trust-badges {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #10b981;
  padding: 0.375rem 0.875rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 20px;
}

.trust-badge svg {
  flex-shrink: 0;
}

/* Digital Products Grid */
.digital-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.digital-product-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.digital-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.digital-product-preview {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.digital-product-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background: linear-gradient(135deg, currentColor 0%, transparent 100%);
}

.digital-product-preview.quarto { color: #22d3ee; background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(6, 182, 212, 0.05)); }
.digital-product-preview.poster { color: #f59e0b; background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.05)); }
.digital-product-preview.flyer { color: #ef4444; background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05)); }
.digital-product-preview.social { color: #ec4899; background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(219, 39, 119, 0.05)); }
.digital-product-preview.virtual { color: #8b5cf6; background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.05)); }
.digital-product-preview.cheatsheet { color: #10b981; background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05)); }

.digital-product-preview .preview-svg {
  width: 48px;
  height: 48px;
  stroke: currentColor;
  position: relative;
  z-index: 1;
}

.digital-product-info {
  padding: 1.5rem;
}

.digital-product-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.digital-product-info p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.format-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
}

.product-price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #10b981;
}

/* Shop Note */
.shop-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.shop-note p {
  color: #f59e0b;
  font-size: 0.95rem;
  margin: 0;
}

.shop-note a {
  color: #fbbf24;
  text-decoration: underline;
}

/* ==========================================================================
   CUSTOM REQUEST SECTION
   ========================================================================== */

.custom-request-section {
  padding: 3rem 2rem;
  background: #ffffff;
}

.custom-request-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: linear-gradient(135deg, #fefce8 0%, #fef9c3 100%);
  border: 1px solid #fde047;
  border-radius: 16px;
}

.custom-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.custom-content {
  flex: 1;
}

.custom-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.custom-content p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.custom-cta {
  flex-shrink: 0;
  padding: 0.875rem 1.5rem;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.custom-cta:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ==========================================================================
   MERCHANDISE SECTION
   ========================================================================== */

.shop-section-light {
  padding: 5rem 2rem;
  background: #f8fafc;
}

.shop-section-header-light {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-label-light {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #10b981;
  margin-bottom: 1rem;
}

.shop-title-light {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.shop-subtitle-light {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Embedded Store */
.spreadshop-embed-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.spreadshop-iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.merch-view-all {
  text-align: center;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #0f172a;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.view-all-btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
}

.store-note {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

/* ==========================================================================
   WHY SHOP WITH US SECTION - 3x2 Grid
   ========================================================================== */

.shop-why-section {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #0f172a 0%, #0B1120 100%);
}

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

.shop-why-section .shop-title {
  position: relative;
  display: inline-block;
}

.shop-why-section .shop-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #22d3ee);
  border-radius: 2px;
}

/* 3 columns x 2 rows grid */
.why-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.why-shop-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.why-shop-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.why-shop-icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-shop-icon-box svg {
  width: 28px;
  height: 28px;
  stroke: #10b981;
}

.why-shop-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.why-shop-card p {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   SHOP CTA SECTION
   ========================================================================== */

.shop-cta-section {
  position: relative;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #0B1120 0%, #1e293b 100%);
  text-align: center;
  overflow: hidden;
}

.shop-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
}

.shop-cta-content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: 0 auto;
}

.shop-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.shop-cta-content p {
  font-size: 1.05rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.shop-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.shop-cta-buttons .cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0f172a;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-cta-buttons .cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.shop-cta-buttons .cta-button-secondary {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-cta-buttons .cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS
   ========================================================================== */

@media (max-width: 1024px) {
  .digital-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  /* Hero */
  .shop-hero {
    padding: 5rem 1rem 3rem;
    min-height: auto;
  }
  
  .shop-hero-label {
    display: inline-block !important;
    width: auto !important;
    max-width: none !important;
    padding: 0.5rem 1rem !important;
    font-size: 0.65rem !important;
    border-radius: 20px !important;
    margin-bottom: 1.25rem !important;
    background: rgba(16, 185, 129, 0.1) !important;
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
  }
  
  .shop-hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .shop-hero-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }
  
  .shop-hero-nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .shop-nav-btn {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  
  /* How It Works - Compact horizontal cards */
  .shop-how-it-works {
    padding: 2.5rem 1rem;
  }
  
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 400px;
  }
  
  .how-step {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
    gap: 0.5rem 1rem;
    padding: 1.25rem;
    position: relative;
  }
  
  .how-step .step-number {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    grid-row: 1 / 3;
    align-self: center;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .how-step .step-icon {
    display: none;
  }
  
  .how-step h3 {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 0;
    font-size: 1rem;
  }
  
  .how-step p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  /* Digital Products */
  .shop-section-dark {
    padding: 3rem 1rem;
  }
  
  .shop-title {
    font-size: 1.75rem;
  }
  
  .shop-subtitle {
    font-size: 0.95rem;
  }
  
  .trust-banner {
    margin-bottom: 2rem;
  }
  
  .trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    gap: 0.5rem;
  }
  
  .trust-badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.625rem;
  }
  
  .digital-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .digital-product-card {
    border-radius: 12px;
  }
  
  .digital-product-preview {
    height: 100px;
  }
  
  .digital-product-preview .preview-svg {
    width: 40px;
    height: 40px;
  }
  
  .digital-product-info {
    padding: 1.25rem;
  }
  
  .digital-product-info h3 {
    font-size: 1.05rem;
  }
  
  .digital-product-info p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }
  
  .product-meta {
    margin-bottom: 0.75rem;
  }
  
  .product-price {
    font-size: 1rem;
  }
  
  .shop-note {
    margin-top: 2rem;
    padding: 1rem;
  }
  
  .shop-note p {
    font-size: 0.85rem;
  }
  
  /* Custom Request */
  .custom-request-section {
    padding: 2rem 1rem;
  }
  
  .custom-request-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
    gap: 1rem;
  }
  
  .custom-icon {
    font-size: 2.5rem;
  }
  
  .custom-content h3 {
    font-size: 1.1rem;
  }
  
  .custom-content p {
    font-size: 0.9rem;
  }
  
  .custom-cta {
    width: 100%;
    text-align: center;
  }
  
  /* Merchandise */
  .shop-section-light {
    padding: 3rem 1rem;
  }
  
  .shop-title-light {
    font-size: 1.75rem;
  }
  
  .spreadshop-iframe {
    height: 400px;
  }
  
  /* Why Shop */
  .shop-why-section {
    padding: 3rem 1rem;
  }
  
  .why-shop-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .why-shop-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    text-align: left;
    gap: 0.25rem 1rem;
    padding: 1.25rem;
  }
  
  .why-shop-icon-box {
    width: 48px;
    height: 48px;
    margin: 0;
    grid-row: 1 / 3;
    align-self: center;
    border-radius: 10px;
  }
  
  .why-shop-icon-box svg {
    width: 22px;
    height: 22px;
  }
  
  .why-shop-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 0.95rem;
    margin-bottom: 0;
  }
  
  .why-shop-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  /* CTA */
  .shop-cta-section {
    padding: 3rem 1rem;
  }
  
  .shop-cta-content h2 {
    font-size: 1.5rem;
  }
  
  .shop-cta-content p {
    font-size: 0.95rem;
  }
  
  .shop-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .shop-cta-buttons .cta-button-primary,
  .shop-cta-buttons .cta-button-secondary {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .shop-hero {
    padding: 4.5rem 1rem 2.5rem;
  }
  
  .shop-hero-title {
    font-size: 1.75rem;
  }
  
  .shop-hero-subtitle {
    font-size: 0.9rem;
  }
  
  .how-step h3 {
    font-size: 0.95rem;
  }
  
  .how-step p {
    font-size: 0.8rem;
  }
}
