/* Root Variables */
:root {
  --primary: #5d0e11;
  --primary-foreground: #fdfbf7;
  --secondary: #c5a059;
  --secondary-foreground: #1a1a1a;
  --background: #fdfbf7;
  --foreground: #1a1a1a;
  --muted: #f5f5f5;
  --muted-foreground: #666;
  --border: #e5e5e5;
  --destructive: #dc2626;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

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

.btn-primary:hover {
  background-color: #4a0b0e;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--primary-foreground);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-logo {
  filter: none;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  outline: none;
  padding: 0.5rem;
  color: var(--primary);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.mobile-menu-btn:focus {
  outline: none;
}

.mobile-menu-btn svg {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

/* Hero Section */
.hero {
  padding-top: 7rem;
  padding-bottom: 4rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-color: var(--background);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.hero-image-section {
  position: relative;
}

.product-image-container {
  aspect-ratio: 1;
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 8px solid white;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.trusted-badge {
  position: absolute;
  top: 2rem;
  right: 0;
  background: white;
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .trusted-badge {
    right: 1rem;
  }
}

.trusted-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trusted-count {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.thumbnail-gallery {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.thumbnail {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  background: none;
}

@media (min-width: 768px) {
  .thumbnail {
    width: 5rem;
    height: 5rem;
  }
}

.thumbnail.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 14, 17, 0.3);
  transform: scale(1.05);
}

.thumbnail:hover {
  border-color: rgba(93, 14, 17, 0.5);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  space-y: 1.5rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(93, 14, 17, 0.1);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  color: var(--secondary);
}

.star {
  width: 1rem;
  height: 1rem;
}

.rating-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  margin-bottom: 1.5rem;
}

.viewers-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.viewer-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.plan-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.plan-card {
  position: relative;
  padding: 1.5rem;
  border: 2px solid var(--border);
  border-radius: 1rem;
  background: white;
  cursor: pointer;
  transition: all 0.3s;
  text-align: left;
}

.plan-card:hover {
  border-color: var(--secondary);
}

.plan-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 14, 17, 0.1);
}

.plan-card h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.plan-price {
  display: flex;
  flex-direction: column;
}

.original-price {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: line-through;
}

.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.popular-tag {
  position: absolute;
  top: -0.5rem;
  right: 0.5rem;
  background: var(--secondary);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.qty-btn {
  width: 2rem;
  height: 2rem;
  border: none;
  background: var(--muted);
  border-radius: 0.25rem;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: var(--border);
}

#quantity {
  font-size: 1.125rem;
  font-weight: 600;
  min-width: 2rem;
  text-align: center;
}

.total-price {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
}

.cta-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stock-left {
  text-align: center;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.875rem;
  animation: pulse 2s infinite;
}

.timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--destructive);
  font-weight: 600;
}

@media (min-width: 640px) {
  .timer-row {
    justify-content: flex-start;
  }
}

.timer-icon {
  width: 1.25rem;
  height: 1.25rem;
  animation: pulse 1s infinite;
}

.timer-text {
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .timer-text {
    font-size: 0.875rem;
  }
}

.countdown {
  font-family: monospace;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .countdown {
    font-size: 1rem;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem;
}

.section-tag {
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0.75rem;
}

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

.benefits-grid {
  display: grid;
  gap: 2rem;
}

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

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

.benefit-card {
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.benefit-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(93, 14, 17, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: white;
}

.benefit-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* How It Works Section */
.how-it-works-section {
  padding: 6rem 0;
  background: white;
}

.steps-grid {
  display: grid;
  gap: 2rem;
}

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

.step-card {
  text-align: center;
  padding: 2rem;
  background: var(--background);
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Before & After Section */
.before-after-section {
  padding: 6rem 0;
  background: var(--background);
}

.transformations-grid {
  display: grid;
  gap: 2rem;
}

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

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

.transformation-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
}

.transformation-card.single-image img {
  width: 100%;
  height: auto;
  display: block;
}

.transformation-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.transform-img {
  position: relative;
  aspect-ratio: 1;
}

.transform-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transform-label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-transform: uppercase;
}

.transform-label.after {
  background: var(--primary);
}

.transformation-info {
  padding: 1rem;
  text-align: center;
}

.transformation-info h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
}

.transformation-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Ingredients Section */
.ingredients-section {
  padding: 6rem 0;
  background: white;
}

.ingredients-grid {
  display: grid;
  gap: 2rem;
}

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

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

.ingredient-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.ingredient-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: rgba(93, 14, 17, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.ingredient-icon svg {
  width: 2rem;
  height: 2rem;
}

.ingredient-image {
  width: 100%;
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ingredient-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.ingredient-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
}

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

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

.testimonial-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.testimonial-stars .star {
  width: 1rem;
  height: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-circle {
  background: var(--secondary);
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  opacity: 0.8;
  max-width: 20rem;
}

.footer-links h4,
.footer-ingredients h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-ingredient-list span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.7;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.875rem;
}

/* Social Proof */
.social-proof {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  max-width: 18rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0.75rem;
  padding: 1rem;
  padding-right: 2rem;
  display: none;
  align-items: center;
  gap: 1rem;
  animation: slideIn 0.5s ease;
}

@media (min-width: 768px) {
  .social-proof.visible {
    display: flex;
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px) translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
}

.social-proof-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.social-proof-close:hover {
  background: var(--muted);
  color: var(--foreground);
}

.social-proof-icon {
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(93, 159, 232, 0.15);
  color: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-proof-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.social-proof-action {
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.social-proof-verified {
  font-size: 0.625rem;
  color: #22c55e;
  font-weight: 500;
  margin-top: 0.25rem;
}

/* Order Page */
.order-page {
  min-height: 100vh;
  background: var(--background);
  padding: 2rem 1rem;
}

.order-container {
  max-width: 32rem;
  margin: 0 auto;
}

.order-header {
  text-align: center;
  margin-bottom: 2rem;
}

.order-header h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .order-header h1 {
    font-size: 2.5rem;
  }
}

.order-header p {
  color: var(--muted-foreground);
}

.order-card {
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  overflow: hidden;
}

.order-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.order-form {
  padding: 1.5rem;
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(93, 14, 17, 0.1);
}

.form-group input::placeholder {
  color: var(--muted-foreground);
}

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

.error-message {
  display: block;
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.25rem;
}

.order-form .btn {
  margin-top: 1rem;
}

/* Thank You Page */
.thank-you-page {
  min-height: 100vh;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.thank-you-card {
  max-width: 28rem;
  width: 100%;
  background: white;
  border-radius: 1rem;
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 2rem;
  text-align: center;
}

.success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-you-card h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.success-message {
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.success-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.contact-info {
  background: rgba(197, 160, 89, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.phone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}
