/* ============================================
   T-SHIRT ELEPHANT LANDING PAGE STYLES
   Exact match to Next.js local site
   ============================================ */

/* CSS Variables - Match globals.css */
:root {
  --primary-50: #E3F2FD;
  --primary-100: #BBDEFB;
  --primary-200: #90CAF9;
  --primary-300: #64B5F6;
  --primary-400: #42A5F5;
  --primary-500: #2196F3;
  --primary-600: #1776C8;
  --primary-700: #125A9C;
  --primary-800: #0D4270;
  --primary-900: #082A44;
}

/* ============================================
   HERO SECTION - Exact match to LandingPageHero.tsx
   ============================================ */
.landing-page-new {
  overflow-x: hidden;
}

.lp-hero {
  position: relative;
  background: linear-gradient(to bottom right, var(--primary-50), #ffffff, var(--primary-50));
  overflow: hidden;
  padding: 48px 0 0;
}

/* Background dot pattern - matches inline style */
.lp-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle at 1px 1px, rgb(23, 118, 200) 1px, transparent 0);
  background-size: 40px 40px;
}

.lp-hero .container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  min-height: 600px;
}

@media (min-width: 1024px) {
  .lp-hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-hero-content {
  text-align: center;
}

@media (min-width: 1024px) {
  .lp-hero-content {
    text-align: left;
  }
}

/* H1 - ENLARGED for better visibility */
.lp-hero-title {
  font-size: 2.75rem; /* 44px mobile */
  font-weight: 800;
  color: #111827; /* gray-900 */
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-shadow:
    0 4px 12px rgba(0, 0, 0, 0.18),
    0 2px 6px rgba(0, 0, 0, 0.14),
    0 1px 3px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .lp-hero-title {
    font-size: 3.5rem; /* 56px tablet */
  }
}

@media (min-width: 1024px) {
  .lp-hero-title {
    font-size: 4.5rem; /* 72px desktop */
  }
}

/* Subtitle - ENLARGED */
.lp-hero-subtitle {
  font-size: 1.375rem; /* 22px mobile */
  color: #374151; /* gray-700 */
  font-weight: 600;
  margin-bottom: 32px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
  .lp-hero-subtitle {
    font-size: 1.625rem; /* 26px tablet */
  }
}

@media (min-width: 1024px) {
  .lp-hero-subtitle {
    font-size: 1.875rem; /* 30px desktop */
  }
}

/* CTA Buttons Container */
.lp-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .lp-hero-ctas {
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .lp-hero-ctas {
    justify-content: flex-start;
  }
}

/* Primary CTA - ENLARGED */
.btn-primary-lp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #ffffff;
  background-color: var(--primary-600);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary-lp:hover {
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  background: linear-gradient(to right, var(--primary-700), var(--primary-500));
}

.btn-primary-lp svg {
  transition: transform 0.3s ease;
}

.btn-primary-lp:hover svg {
  stroke: #ffffff !important;
  transform: translateX(4px);
}

/* Secondary CTA - ENLARGED */
.btn-secondary-lp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: var(--primary-600);
  background-color: #ffffff;
  border: 2px solid var(--primary-600);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-secondary-lp:hover {
  background-color: var(--primary-50);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Sub-CTA Features - ENLARGED */
.lp-hero-features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  font-size: 1rem; /* 16px */
  color: #4B5563; /* gray-600 */
}

@media (min-width: 768px) {
  .lp-hero-features {
    font-size: 1.0625rem; /* 17px */
  }
}

@media (min-width: 1024px) {
  .lp-hero-features {
    justify-content: flex-start;
  }
}

.lp-hero-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.lp-hero-features span:hover {
  color: var(--primary-700);
}

.lp-hero-features span i {
  color: var(--primary-600);
  transition: transform 0.3s ease;
}

.lp-hero-features span:hover i {
  transform: scale(1.1);
}

.lp-hero-features .dot {
  color: #9CA3AF; /* gray-400 */
}

/* Hero Image */
.lp-hero-image {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.lp-hero-image img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

/* Wave Separator - WHITE per local */
.lp-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.lp-hero-wave svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   SHIPPING BAR - Exact match to ShippingBar.tsx
   ============================================ */
.lp-shipping-bar {
  background: linear-gradient(to right, #42A5F5, #2B90E7, #64B5F6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
}

@media (min-width: 768px) {
  .lp-shipping-bar {
    padding: 20px 0;
  }
}

.lp-shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-shipping-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.lp-shipping-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 -1px 1px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.6s ease-in;
}

@media (min-width: 768px) {
  .lp-shipping-item {
    flex-direction: row;
    gap: 8px;
  }
}

.lp-shipping-item i,
.lp-shipping-item svg,
.lp-shipping-item img {
  font-size: 2rem;
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .lp-shipping-item i,
  .lp-shipping-item svg,
  .lp-shipping-item img {
    width: 40px;
    height: 40px;
  }
}

.lp-shipping-item:hover i,
.lp-shipping-item:hover svg,
.lp-shipping-item:hover img {
  filter:
    drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.4))
    drop-shadow(0 1px 1px rgba(255, 255, 255, 0.3));
  opacity: 0.85;
  transform: translateY(1px);
}

/* Shipping bar divider dots (desktop) */
.lp-shipping-dot {
  display: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .lp-shipping-dot {
    display: inline;
  }
}

/* Date highlight styling */
.lp-date-highlight {
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
  display: inline-block;
}

.lp-date-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.lp-date-highlight:hover {
  color: #E3F2FD;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.lp-date-highlight:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Email CTA in shipping bar */
.lp-email-cta {
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
}

.lp-email-cta::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.lp-email-cta:hover {
  color: #E3F2FD;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.lp-email-cta:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Full-width email row on mobile */
.lp-shipping-email {
  grid-column: span 2;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .lp-shipping-email {
    grid-column: auto;
    margin-top: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CHOOSE YOUR PRODUCT SECTION - MUCH LARGER
   ============================================ */
.lp-product-selector {
  background: #ffffff;
  padding: 100px 0;
}

.lp-product-selector .lp-section-title {
  font-size: 2.5rem !important;
  margin-bottom: 16px;
}

.lp-product-selector .lp-section-subtitle {
  font-size: 1.375rem !important;
  margin-bottom: 56px;
}

.lp-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .lp-products-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
  }
}

.lp-product-card {
  display: block;
  background: #ffffff;
  border: 2px solid #E5E7EB;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.lp-product-card:hover {
  border-color: var(--primary-500);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-6px);
}

.lp-product-image {
  aspect-ratio: 1;
  background: #F3F4F6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.lp-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.lp-product-card:hover .lp-product-image img {
  transform: scale(1.1);
}

.lp-product-card h3 {
  font-size: 1.25rem !important; /* 20px */
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .lp-product-card h3 {
    font-size: 1.375rem !important; /* 22px */
  }
}

.lp-product-cta {
  font-size: 1.125rem !important; /* 18px */
  font-weight: 600;
  color: var(--primary-600);
}

.lp-products-cta {
  text-align: center;
  margin-top: 64px;
}

.lp-browse-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.375rem !important; /* 22px */
  font-weight: 600;
  color: var(--primary-600);
  text-decoration: none;
  transition: color 0.3s ease;
}

.lp-browse-all:hover {
  color: var(--primary-700);
}

.lp-browse-all svg {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.lp-browse-all:hover svg {
  transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.lp-why-choose {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 50%, var(--primary-800) 100%);
  padding: 80px 0;
}

.lp-section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #111827;
}

@media (min-width: 768px) {
  .lp-section-title {
    font-size: 2.5rem;
  }
}

.lp-section-title.text-white {
  color: #ffffff;
}

.lp-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-why-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.lp-why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.lp-why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
}

.lp-why-card p {
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.lp-how-it-works {
  background: #ffffff;
  padding: 80px 0;
}

.lp-section-subtitle {
  font-size: 1.125rem;
  color: #6B7280;
  text-align: center;
  margin-top: -32px;
  margin-bottom: 48px;
}

.lp-steps-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .lp-steps-grid {
    flex-direction: row;
    justify-content: center;
  }
}

.lp-step {
  background: #F9FAFB;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 300px;
  flex: 1;
}

.lp-step-number {
  width: 56px;
  height: 56px;
  background: var(--primary-600);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.lp-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.lp-step p {
  font-size: 0.9375rem;
  color: #4B5563;
  line-height: 1.6;
}

.lp-step-arrow {
  display: none;
  color: var(--primary-400);
}

@media (min-width: 1024px) {
  .lp-step-arrow {
    display: flex;
    align-items: center;
  }
}

.lp-steps-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   SOCIAL PROOF / STATS SECTION
   ============================================ */
.lp-social-proof {
  background: #F9FAFB;
  padding: 64px 0;
}

.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .lp-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-stat {
  text-align: center;
}

.lp-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-600);
  margin-bottom: 8px;
}

.lp-stat-label {
  font-size: 1rem;
  color: #6B7280;
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */
.lp-seo-content {
  background: #ffffff;
  padding: 64px 0;
}

.lp-content-text {
  max-width: 800px;
  margin: 0 auto;
}

.lp-content-text p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.lp-faq {
  background: #F9FAFB;
  padding: 80px 0;
}

.lp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.lp-faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.lp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #111827;
  text-align: left;
}

.lp-faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary-600);
}

.lp-faq-item.open .lp-faq-question i {
  transform: rotate(180deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.lp-faq-item.open .lp-faq-answer {
  max-height: 300px;
}

.lp-faq-answer p {
  padding: 0 24px 20px;
  font-size: 1rem;
  color: #4B5563;
  line-height: 1.6;
}

.lp-faq-contact {
  text-align: center;
  margin-top: 48px;
}

.lp-faq-contact h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.lp-faq-contact p {
  color: #6B7280;
  margin-bottom: 24px;
}

.lp-faq-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-faq-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.lp-final-cta {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  padding: 80px 0;
  text-align: center;
}

.lp-final-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .lp-final-cta h2 {
    font-size: 2.5rem;
  }
}

.lp-final-cta > .container > p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.lp-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lp-final-buttons .btn-primary-lp {
  background: #ffffff;
  color: var(--primary-600);
}

.lp-final-buttons .btn-primary-lp:hover {
  color: #ffffff !important;
  background: #F9FAFB;
}

.lp-final-buttons .btn-secondary-lp {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.lp-final-buttons .btn-secondary-lp:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.25rem;
}

.lp-final-note {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}
