/* FitBlendy ES — Premium Wellness Brand */

:root {
  --cream: #FAF6F0;
  --beige: #E8DFD4;
  --beige-dark: #D4C8BA;
  --soft-green: #B8D4B0;
  --soft-green-dark: #8FB886;
  --peach: #F5C4A8;
  --peach-dark: #E8A882;
  --white: #FFFFFF;
  --text: #3D3530;
  --text-light: #6B635C;
  --text-muted: #9A928B;
  --shadow: 0 8px 32px rgba(61, 53, 48, 0.08);
  --shadow-hover: 0 16px 48px rgba(61, 53, 48, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-green-dark);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-primary:hover {
  background: var(--soft-green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--beige-dark);
}

.btn-secondary:hover {
  background: var(--beige);
  border-color: var(--beige-dark);
}

.btn-peach {
  background: var(--peach);
  color: var(--text);
}

.btn-peach:hover {
  background: var(--peach-dark);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 223, 212, 0.6);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--soft-green), var(--peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.logo-text span {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--text-light);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--soft-green-dark);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  margin-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(250, 246, 240, 0.95) 0%,
    rgba(250, 246, 240, 0.75) 45%,
    rgba(250, 246, 240, 0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--soft-green-dark);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--soft-green-dark);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Banner */
.banner-section {
  padding: 80px 0;
}

.banner-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(61, 53, 48, 0.65) 0%,
    rgba(61, 53, 48, 0.2) 60%,
    transparent 100%
  );
}

.banner-card-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  max-width: 520px;
  color: var(--white);
}

.banner-card-content h2 {
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

.banner-card-content p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.7;
}

/* Section spacing */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--beige);
}

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

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-info {
  padding: 24px;
}

.product-info h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
}

.product-price small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.product-card .btn {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* Benefits */
.benefits {
  background: var(--white);
}

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

.benefit-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  background: var(--cream);
  transition: all var(--transition);
}

.benefit-card:hover {
  background: var(--beige);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--soft-green), var(--peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.review-stars {
  color: var(--peach-dark);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--beige), var(--soft-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.blog-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 24px;
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-excerpt {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.5;
}

.read-more {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--soft-green-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* Footer */
.footer {
  background: var(--text);
  color: var(--beige);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  color: var(--white);
  margin-bottom: 16px;
  display: block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer-col a:hover {
  opacity: 1;
  color: var(--peach);
}

.footer-bottom {
  border-top: 1px solid rgba(232, 223, 212, 0.15);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  opacity: 0.6;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

/* Page Hero (inner pages) */
.page-hero {
  margin-top: 72px;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 50%, var(--soft-green) 100%);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Products page */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.product-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  padding: 32px;
}

.product-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

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

.product-detail-info h2 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-detail-info .product-price {
  margin-bottom: 20px;
}

.product-features {
  margin: 24px 0;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-features li::before {
  content: '✓';
  color: var(--soft-green-dark);
  font-weight: 600;
}

/* Article */
.article-hero {
  margin-top: 72px;
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}

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

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 53, 48, 0.7), transparent 60%);
}

.article-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 0;
  color: var(--white);
}

.article-meta {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 12px;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.article-body h2 {
  font-size: 1.75rem;
  margin: 40px 0 16px;
}

.article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  font-family: var(--font-body);
  font-weight: 600;
}

.article-body p {
  margin-bottom: 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.article-body ul {
  margin: 20px 0;
  padding-left: 0;
}

.article-body ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.article-body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--soft-green-dark);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 32px;
}

.back-link:hover {
  color: var(--soft-green-dark);
}

/* Legal & Contact pages */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px 100px;
}

.legal-page h2 {
  font-size: 1.5rem;
  margin: 36px 0 14px;
}

.legal-page h3 {
  font-size: 1.1rem;
  margin: 24px 0 10px;
  font-family: var(--font-body);
  font-weight: 600;
}

.legal-page p,
.legal-page li {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.legal-page ul {
  padding-left: 0;
  margin: 14px 0 20px;
}

.legal-page ul li {
  position: relative;
  padding-left: 20px;
}

.legal-page ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--soft-green-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--soft-green), var(--peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.contact-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card p,
.contact-card a {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-card a:hover {
  color: var(--soft-green-dark);
}

.contact-form-wrap {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 560px;
  margin: 0 auto;
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  text-align: center;
}

.contact-form-wrap > p {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--soft-green);
  box-shadow: 0 0 0 3px rgba(184, 212, 176, 0.3);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
}

.contact-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.contact-success.visible {
  display: block;
}

.contact-form.hidden {
  display: none;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 24px;
  }
}

/* Blog page list */
.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-list .blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.blog-list .blog-image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 220px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .products-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--beige);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--beige);
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding: 60px 0;
  }

  .banner-card {
    min-height: 360px;
  }

  .banner-card-content {
    padding: 40px 24px;
  }

  .products-grid,
  .blog-grid,
  .reviews-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .blog-list {
    grid-template-columns: 1fr;
  }

  .blog-list .blog-card {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }
}

/* Order Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(61, 53, 48, 0.45);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(61, 53, 48, 0.2);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
  position: relative;
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--cream);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-light);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--beige);
  color: var(--text);
}

.modal-header {
  padding: 32px 32px 0;
}

.modal-header h2 {
  font-size: 1.75rem;
  margin-bottom: 8px;
  padding-right: 40px;
}

.modal-header p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.modal-body {
  padding: 24px 32px 32px;
}

.order-form .form-group {
  margin-bottom: 18px;
}

.order-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.order-form input,
.order-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--beige);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.order-form input:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--soft-green);
  box-shadow: 0 0 0 3px rgba(184, 212, 176, 0.3);
}

.order-form input[readonly] {
  background: var(--beige);
  color: var(--text-light);
  cursor: default;
}

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

.order-form .btn {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  font-size: 0.95rem;
}

.order-success {
  text-align: center;
  padding: 48px 32px;
  display: none;
}

.order-success.visible {
  display: block;
}

.order-form.hidden {
  display: none;
}

.order-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--soft-green), var(--peach));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.order-success h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.order-success p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.order-success .btn {
  width: auto;
}
