/* ==========================================================================
   DESIGN SYSTEM & CUSTOM STYLES - CAMISA DO BRASIL PERSONALIZADA
   ========================================================================== */

/* Imports Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Squada+One&family=Teko:wght@600;700&display=swap');

:root {
  /* Strict Brazil National Colors */
  --yellow-primary: #FFDF00;    /* Sun-kissed Yellow */
  --yellow-light: #FFE853;      /* Highlight Yellow */
  --green-primary: #00A859;     /* CBF Green */
  --green-electric: #00DF5D;    /* Electric Green */
  --green-dark: #00703C;       /* Dark Green for contrast */
  --blue-primary: #002776;      /* Royal Blue */
  --blue-vibrant: #0052B4;      /* Vibrant Blue for buttons/actions */
  --blue-dark: #001A4E;         /* Deep Blue */
  --white: #FFFFFF;
  --black: #121212;
  --gray-light: #F4F6F9;
  --gray-medium: #E2E8F0;
  
  /* Fonts */
  --font-main: 'Poppins', sans-serif;
  --font-jersey: 'Squada One', cursive; /* Athletic font for shirt name personalization */
  --font-number: 'Teko', sans-serif; /* Condensed athletic font for jersey numbers */
  
  /* Layout constraints */
  --max-width: 1200px;
  --header-height: 80px;
  
  /* Shadows & Blur */
  --shadow-premium: 0 15px 35px rgba(0, 39, 118, 0.15);
  --shadow-hover: 0 20px 40px rgba(0, 39, 118, 0.25);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
}

/* Base resets & styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--gray-light);
  color: var(--black);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: 80px; /* Space for the sticky bottom bar */
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Container limits */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-yellow {
  background-color: var(--yellow-primary);
  color: var(--blue-primary);
}

.btn-yellow:hover {
  background-color: var(--white);
  color: var(--blue-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 223, 0, 0.4);
}

.btn-blue {
  background-color: var(--blue-vibrant);
  color: var(--yellow-primary);
}

.btn-blue:hover {
  background-color: var(--yellow-primary);
  color: var(--blue-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 82, 180, 0.4);
}

/* Pulsing effect for main CTAs */
.pulse-btn {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 223, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 223, 0, 0);
  }
}

.pulse-btn-blue {
  animation: pulse-animation-blue 2s infinite;
}

@keyframes pulse-animation-blue {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 82, 180, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 82, 180, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 180, 0);
  }
}

/* Watermark backdrop */
.bg-celebration {
  background: radial-gradient(circle at 30% 30%, var(--yellow-primary) 0%, var(--green-primary) 100%);
  position: relative;
  overflow: hidden;
}

.bg-celebration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('assets/jersey-both.png'); /* watermark fallback */
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
}

/* Watermark stars and patterns */
.watermark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.08;
  pointer-events: none;
  background-image: radial-gradient(var(--white) 1px, transparent 0);
  background-size: 24px 24px;
}

/* Header bar */
header {
  height: var(--header-height);
  display: flex;
  align-items: center;
  background-color: var(--blue-dark);
  color: var(--white);
  border-bottom: 3px solid var(--yellow-primary);
  box-shadow: var(--shadow-premium);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--yellow-primary);
}

.logo-badge {
  background-color: var(--green-primary);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--yellow-primary);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

/* 1. Hero Section */
.hero {
  padding: 60px 0;
  min-height: calc(100vh - var(--header-height) - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--blue-primary);
  margin-bottom: 20px;
  text-shadow: 2px 2px 0px var(--white);
  line-height: 1.1;
}

.hero-content .subheadline {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 32px;
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* Interactive customizer form card */
.customizer-form {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  margin-bottom: 24px;
}

.customizer-form h3 {
  color: var(--blue-primary);
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.form-inputs-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  border: 2px solid var(--gray-medium);
  border-radius: 12px;
  font-family: var(--font-main);
  font-weight: 600;
  transition: all 0.3s ease;
  color: var(--blue-dark);
  text-transform: uppercase;
}

.form-control:focus {
  outline: none;
  border-color: var(--green-primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 89, 0.15);
}

/* 3D-like Interactive Shirt Previewer */
.visualizer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.visualizer-stage {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.jersey-card {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Show back when customized form focused or custom toggle */
.jersey-card.show-back {
  transform: rotateY(180deg);
}

.jersey-side {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.jersey-side.front {
  z-index: 2;
  transform: rotateY(0deg);
}

.jersey-side.back {
  transform: rotateY(180deg);
}

.jersey-side img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}

/* Custom Overlays for Personalization on Jersey Back */
.jersey-overlay-name {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  text-align: center;
  pointer-events: none;
}

.jersey-overlay-name span {
  font-family: var(--font-jersey);
  font-size: 2.2rem;
  color: #005e32; /* Matches the official forest green of "BRASIL" */
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
  /* Slight vertical stretch for athletic print feel */
  transform: scaleY(1.2);
}

.jersey-overlay-number {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-1deg); /* Subtle alignment rotation */
  width: 50%;
  height: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.jersey-overlay-number span {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 7.5rem; /* Teko fits better at 7.5rem */
  color: #005e32;
  line-height: 1;
  letter-spacing: -1px;
}

/* Custom Overlays for Personalization on Jersey Front */
.jersey-overlay-front-number {
  position: absolute;
  top: 51.5%;
  left: 50%;
  transform: translate(-50%, -50%); /* Centered exactly in the middle with no slant/rotation */
  width: 35%;
  height: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.jersey-overlay-front-number span {
  font-family: var(--font-number);
  font-weight: 700;
  font-size: 5.2rem; /* smaller front number, matching CBF badge size */
  color: #005e32;
  line-height: 1;
  letter-spacing: -1px;
}

/* Controller to manually flip the jersey */
.jersey-flip-btn {
  margin-top: 15px;
  background: var(--blue-primary);
  color: var(--white);
  border: 2px solid var(--yellow-primary);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.2s ease;
}

.jersey-flip-btn:hover {
  background: var(--blue-vibrant);
  transform: scale(1.05);
}

/* ==========================================================================
   2. The Unique Offer (Differentiator)
   ========================================================================== */
.offer-section {
  padding: 80px 0;
  background-color: var(--white);
  border-top: 5px solid var(--yellow-primary);
  border-bottom: 5px solid var(--blue-primary);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.offer-image-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-image-box img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.12));
}

.offer-sticker {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--blue-primary);
  color: var(--yellow-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(0, 39, 118, 0.3);
  transform: rotate(5deg);
  border: 2px dashed var(--yellow-primary);
  animation: float-sticker 3s ease-in-out infinite alternate;
}

@keyframes float-sticker {
  0% { transform: translateY(0) rotate(5deg); }
  100% { transform: translateY(-8px) rotate(3deg); }
}

.offer-content h2 {
  font-size: 2.2rem;
  color: var(--blue-dark);
  margin-bottom: 30px;
  line-height: 1.25;
}

.offer-list {
  list-style: none;
  margin-bottom: 35px;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.checkmark-icon {
  background: var(--green-primary);
  color: var(--white);
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 168, 89, 0.3);
  animation: check-pop 1s ease infinite alternate;
}

@keyframes check-pop {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.offer-text h4 {
  font-size: 1.1rem;
  color: var(--blue-primary);
  margin-bottom: 4px;
}

.offer-text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ==========================================================================
   3. Benefits & Customization (How it works)
   ========================================================================== */
.benefits {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--blue-primary);
  margin-bottom: 15px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
  border-top: 5px solid var(--yellow-primary);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--green-primary);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 223, 0, 0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 2rem;
  color: var(--blue-primary);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background-color: var(--blue-primary);
  color: var(--yellow-primary);
  transform: rotate(10deg);
}

.benefit-card h3 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   4. Pricing & Scarcity (The Conversion Engine)
   ========================================================================== */
.pricing-section {
  padding: 80px 0;
  background-color: var(--green-primary);
  color: var(--white);
  border-top: 5px solid var(--yellow-primary);
  position: relative;
}

.pricing-card {
  background: var(--blue-dark);
  border-radius: 30px;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 3px solid var(--yellow-primary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-badge {
  position: absolute;
  top: 30px;
  right: -50px;
  background: var(--green-electric);
  color: var(--blue-dark);
  padding: 8px 50px;
  transform: rotate(45deg);
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pricing-card h2 {
  font-size: 2.8rem;
  color: var(--yellow-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 30px;
  opacity: 0.9;
}

.price-box {
  margin: 30px 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}

.price-original {
  font-size: 1.4rem;
  text-decoration: line-through;
  color: rgba(255,255,255,0.6);
  margin-bottom: 5px;
}

.price-current-container {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-currency {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow-primary);
}

.price-amount {
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--yellow-primary);
  line-height: 1;
  letter-spacing: -2px;
}

.price-decimals {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow-primary);
}

.price-tagline {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 1rem;
  margin-top: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bonus-box {
  background: rgba(0, 168, 89, 0.15);
  border: 1px dashed var(--green-electric);
  padding: 20px;
  border-radius: 16px;
  margin: 30px 0;
  text-align: left;
}

.bonus-box h4 {
  color: var(--green-electric);
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bonus-box ul {
  list-style: none;
  padding-left: 5px;
}

.bonus-box li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Scarcity countdown timer visual */
.timer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px;
}

.timer-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timer-label i {
  color: var(--green-electric);
  animation: blink 1s infinite alternate;
}

@keyframes blink {
  0% { opacity: 0.3; }
  100% { opacity: 1; }
}

.timer-digits {
  display: flex;
  gap: 10px;
}

.timer-block {
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  min-width: 70px;
  text-align: center;
}

.timer-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow-primary);
  display: block;
  line-height: 1;
}

.timer-unit {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

.btn-massive {
  width: 100%;
  padding: 22px 40px;
  font-size: 1.4rem;
  letter-spacing: 1px;
  border: 3px solid var(--yellow-primary);
}

.guarantee-text {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ==========================================================================
   5. Social Proof (Testimonials)
   ========================================================================== */
.social-proof {
  padding: 80px 0;
  background-color: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.social-card {
  background: var(--gray-light);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-medium);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.social-img-wrapper {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  background-color: var(--gray-medium);
}

.social-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.social-card:hover .social-img-wrapper img {
  transform: scale(1.05);
}

.social-img-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.social-photo-label {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-info {
  padding: 24px;
}

.stars-row {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  font-style: italic;
}

/* ==========================================================================
   6. Sticky Bottom Bar
   ========================================================================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--blue-dark);
  border-top: 3px solid var(--yellow-primary);
  display: flex;
  align-items: center;
  z-index: 999;
  box-shadow: 0 -10px 30px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.sticky-text-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sticky-product-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.sticky-product-title span {
  color: var(--yellow-primary);
}

.sticky-price-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sticky-price-old {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: rgba(255,255,255,0.5);
}

.sticky-price-new {
  color: var(--yellow-primary);
  font-weight: 800;
  font-size: 1.4rem;
}

.btn-sticky-buy {
  padding: 10px 24px;
  font-size: 0.95rem;
  border-radius: 30px;
  font-weight: 700;
}

/* ==========================================================================
   FOOTER (Extra for premium feel and layout validation)
   ========================================================================== */
footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #1e293b;
  font-size: 0.85rem;
}

footer p {
  margin-bottom: 10px;
}

.footer-guarantees {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-guarantee i {
  color: var(--green-electric);
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .offer-content {
    order: -1;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .sticky-text-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  
  .sticky-product-title {
    font-size: 0.95rem;
  }
  
  .sticky-price-new {
    font-size: 1.15rem;
  }
}

@media (max-width: 576px) {
  .form-inputs-row {
    grid-template-columns: 1fr;
  }
  
  .pricing-card {
    padding: 30px 16px;
  }
  
  .pricing-card h2 {
    font-size: 1.8rem;
  }
  
  .price-amount {
    font-size: 4rem;
  }
  
  .sticky-bar {
    height: auto;
    padding: 12px 0;
  }
  
  .sticky-bar .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .sticky-text-box {
    align-items: center;
  }
  
  .btn-sticky-buy {
    width: 100%;
  }
}
