/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Pastel Sage & Warm Cream Palette */
  --hero-bg-top: #F4F8F5;
  --hero-bg-bottom: #E8F0EA;
  --soft-cream-bg: #FAF9F6;
  --soft-sage-bg: #F0F5F2;
  --card-bg: #FFFFFF;
  --green-brand: #0A5C36;
  --green-dark: #064024;
  --green-light: #E4F2EA;
  --gold-accent: #D4AF37;
  --gold-light: #FFF8E7;
  --text-main: #1C2721;
  --text-muted: #5E6C64;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--soft-sage-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 38px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-green {
  background: linear-gradient(135deg, var(--green-brand) 0%, var(--green-dark) 100%);
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(10, 92, 54, 0.3);
}

.btn-green:hover {
  box-shadow: 0 12px 30px rgba(10, 92, 54, 0.45);
}

.btn-hero {
  padding: 18px 45px;
  font-size: 15px;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(244, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(10, 92, 54, 0.1);
  transition: all 0.3s ease;
}

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

.logo a {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.5px;
  color: var(--green-brand);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 22px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #333333;
  padding: 8px 2px;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--green-brand);
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--green-brand);
  border-radius: 3px;
}

.mobile-nav-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: #FAF7EF;
  padding: 25px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: none;
  z-index: 999;
}

.mobile-nav-overlay.active {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--green-brand);
}

/* Fresh Mint & Pearl Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, var(--hero-bg-top) 0%, var(--hero-bg-bottom) 100%);
  padding-top: 130px;
  padding-bottom: 70px;
  text-align: center;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.shape-1 {
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: rgba(10, 92, 54, 0.08);
}

.shape-2 {
  bottom: 0;
  right: -100px;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.1);
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green-brand);
  display: block;
  margin-bottom: 8px;
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -1px;
  color: #111111;
  line-height: 1.1;
  margin-bottom: 8px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #444444;
  margin-bottom: 20px;
}

/* PROMO BANNER / AKCIJA STYLING */
.promo-badge-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--gold-light) 100%);
  padding: 12px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  border: 2px solid var(--gold-accent);
  margin-bottom: 25px;
}

.promo-tag {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  color: #B38600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.promo-prices {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 4px;
}

.old-price {
  font-size: 16px;
  color: #888888;
  text-decoration: line-through;
  font-weight: 600;
}

.new-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 900;
  color: var(--green-brand);
}

.promo-discount-tag {
  background: #E53E3E;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 6px;
}

/* REAL STUDIO MARBLE PHOTOGRAPH */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto 30px auto;
}

.studio-photo-card {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(10, 92, 54, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.studio-photo-card:hover {
  transform: scale(1.015);
}

.studio-main-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

.photo-glass-badge {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  color: var(--green-brand);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border: 1px solid rgba(10, 92, 54, 0.15);
}

.small-photo-card {
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.small-photo-card .studio-main-photo {
  border-radius: 12px;
  max-height: 280px;
  object-fit: cover;
}

.hero-divider {
  width: 40px;
  height: 3px;
  background-color: var(--green-brand);
  margin: 30px auto;
  border-radius: 2px;
  opacity: 0.4;
}

/* Advantages Section */
.advantages-block {
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.advantages-main-title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #111111;
  margin-bottom: 40px;
  text-transform: uppercase;
}

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

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.advantage-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--green-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #FFFFFF;
  box-shadow: 0 8px 20px rgba(10, 92, 54, 0.1);
  transition: transform 0.3s ease;
}

.advantage-item:hover .advantage-icon {
  transform: scale(1.08);
}

.advantage-title {
  font-size: 15px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advantage-desc {
  font-size: 13px;
  color: #555555;
  max-width: 260px;
  line-height: 1.4;
}

.scroll-down-btn {
  display: inline-block;
  margin-top: 10px;
}

.mouse-icon {
  width: 26px;
  height: 42px;
  border: 2px solid var(--green-brand);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  margin: 0 auto;
}

.mouse-dot {
  width: 4px;
  height: 8px;
  background-color: var(--green-brand);
  border-radius: 2px;
  animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Section Header */
.section-header {
  margin-bottom: 50px;
}

.section-header.center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--green-brand);
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 32px;
  font-weight: 900;
  color: #111111;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.title-underline {
  width: 60px;
  height: 4px;
  background-color: var(--green-brand);
  margin: 0 auto;
  border-radius: 2px;
  opacity: 0.6;
}

/* About Showcase Section */
.about-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.about-showcase-grid {
  max-width: 980px;
  margin: 0 auto;
}

.showcase-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--soft-sage-bg);
  padding: 35px;
  border-radius: 24px;
  border: 1px solid #E4EAE6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.showcase-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.showcase-text p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-bullets {
  list-style: none;
}

.feature-bullets li {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

/* CERTIFICATION & QUALITY SECTION */
.cert-section {
  padding: 90px 0;
  background-color: var(--soft-sage-bg);
}

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

.cert-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid #E2ECE5;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  transition: transform 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-brand);
}

.cert-badge-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-brand);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.cert-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 13px;
  color: #666;
}

/* Beauty Ritual Section */
.beauty-ritual-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

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

.step-card {
  background: var(--soft-sage-bg);
  border-radius: 16px;
  padding: 35px 25px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #EAEBE6;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--green-brand);
  box-shadow: 0 12px 28px rgba(10, 92, 54, 0.1);
}

.step-icon-wrap {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 900;
  color: var(--green-brand);
  line-height: 1;
  margin-bottom: 15px;
}

.step-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111111;
}

.step-desc {
  font-size: 13px;
  color: #666666;
}

/* Ingredients Section */
.ingredients-section {
  padding: 90px 0;
  background-color: var(--soft-sage-bg);
}

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

.ingredient-card {
  background: #FFFFFF;
  padding: 30px 20px;
  border-radius: 12px;
  border-top: 4px solid var(--green-brand);
  border-left: 1px solid #EBECE8;
  border-right: 1px solid #EBECE8;
  border-bottom: 1px solid #EBECE8;
}

.ingredient-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--green-brand);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ingredient-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.ingredient-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* Why We Love Section */
.why-love-section {
  padding: 90px 0;
  background-color: #FFFFFF;
}

.why-love-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.why-card {
  background: var(--soft-sage-bg);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid #EBECE8;
  box-shadow: 0 8px 20px rgba(0,0,0,0.03);
  text-align: center;
}

.why-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 13px;
  color: #666;
}

/* Soft Order Section at Bottom */
.soft-order-section {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, #EBF2ED 100%);
  padding: 90px 0;
  border-top: 1px solid #EAEBE6;
}

.order-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 60px;
  align-items: center;
}

.form-card {
  background: #FFFFFF;
  border: 2px solid var(--green-light);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 15px 35px rgba(10, 92, 54, 0.08);
}

.form-card-title {
  font-size: 22px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 4px;
}

.form-card-subtitle {
  font-size: 13px;
  color: #666666;
  margin-bottom: 25px;
}

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

.form-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555555;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #F9FAFB;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 12px 15px;
  color: #111111;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder {
  color: #A0AEC0;
}

.form-input:focus {
  border-color: var(--green-brand);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(10, 92, 54, 0.12);
}

.order-summary-box {
  background: var(--green-light);
  border: 1px solid rgba(10, 92, 54, 0.2);
  border-radius: 10px;
  padding: 18px;
  margin-top: 15px;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #333;
  margin-bottom: 8px;
}

.total-row {
  border-top: 1px stroke rgba(10, 92, 54, 0.2);
  padding-top: 10px;
  margin-bottom: 8px;
}

.total-price {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  color: var(--green-brand);
}

.payment-method-note {
  font-size: 12px;
  color: #4A5568;
}

.btn-form {
  width: 100%;
  margin-bottom: 15px;
  padding: 16px;
  font-size: 15px;
}

.privacy-agreement {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: #666666;
  line-height: 1.4;
}

.privacy-modal-btn {
  background: none;
  border: none;
  color: var(--green-brand);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-size: 12px;
}

.offer-side-presentation {
  display: flex;
  justify-content: center;
}

.isolated-bottle-card {
  background: #FFFFFF;
  padding: 30px 20px;
  border-radius: 24px;
  border: 1px solid #EAEFEA;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 320px;
  width: 100%;
}

.isolated-bottle-display {
  width: 160px;
  height: 280px;
  object-fit: contain;
  margin: 0 auto 15px auto;
  filter: drop-shadow(0 15px 25px rgba(10, 92, 54, 0.2));
  transition: transform 0.3s ease;
}

.isolated-bottle-display:hover {
  transform: translateY(-5px);
}

.brand-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--green-brand);
  letter-spacing: 1.5px;
  display: block;
}

.offer-bottle-details h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
}

.specs-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.volume-badge {
  font-size: 12px;
  font-weight: 700;
  background: #EDF2F7;
  padding: 6px 14px;
  border-radius: 20px;
  color: #4A5568;
}

.price-tag-gold {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, #0A5C36 0%, #064024 100%);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 20px;
}

/* RICH DARK FOOTER WITH DISCLAIMER AND MULTI-COLUMN COMPANY DETAILS (TOCH-V-TOCH USER MOCKUP) */
.rich-footer-section {
  background-color: #0E161B;
  color: #E2E8F0;
  padding: 60px 0 30px 0;
  font-family: var(--font-body);
}

.disclaimer-banner {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid var(--gold-accent);
  padding: 18px 24px;
  border-radius: 8px;
  margin-bottom: 45px;
  font-size: 13px;
  color: #CBD5E0;
  line-height: 1.5;
}

.disclaimer-title {
  color: #FFFFFF;
  font-weight: 800;
  margin-right: 6px;
}

.footer-main-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 45px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.company-info-list, .footer-menu-list, .contact-info-list {
  list-style: none;
  font-size: 13px;
  color: #A0AEC0;
}

.company-info-list li, .footer-menu-list li, .contact-info-list li {
  margin-bottom: 10px;
}

.company-name {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
}

.footer-menu-list a {
  color: #A0AEC0;
  transition: color 0.2s ease;
}

.footer-menu-list a:hover {
  color: #FFFFFF;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #718096;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  color: #2D3748;
  width: 90%;
  max-width: 440px;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-large {
  max-width: 600px;
}

.modal-scroll-body {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 10px;
}

.modal-scroll-body h4 {
  font-size: 15px;
  color: var(--green-brand);
  margin-top: 15px;
  margin-bottom: 6px;
}

.modal-scroll-body p {
  font-size: 13px;
  line-height: 1.5;
  color: #4A5568;
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  color: #A0AEC0;
  font-size: 28px;
  cursor: pointer;
}

.modal-close:hover {
  color: #1A202C;
}

.modal-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 10px;
  color: #1A202C;
}

.modal-desc {
  font-size: 13px;
  color: #718096;
  margin-bottom: 25px;
}

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

.success-icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  color: var(--green-brand);
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-title { font-size: 38px; }
  .order-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-card { max-width: 480px; margin: 0 auto; }
  .showcase-card { grid-template-columns: 1fr; text-align: center; }
  .advantages-grid, .cert-grid, .steps-grid, .ingredients-grid, .why-love-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main-columns { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-bar { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .mobile-menu-toggle { display: flex; }
  .hero-title { font-size: 30px; }
  .hero-tagline { font-size: 16px; }
  .advantages-grid, .cert-grid, .steps-grid, .ingredients-grid, .why-love-grid { grid-template-columns: 1fr; }
  .thanks-steps { grid-template-columns: 1fr; }
  .thanks-card { padding: 30px 20px; }
}

/* Phone Validation Feedback Styles */
.form-input.input-error {
  border-color: #E53E3E !important;
  background-color: #FFF5F5 !important;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2) !important;
}

.form-input.input-warning {
  border-color: #DD6B20 !important;
  background-color: #FFFAF0 !important;
  box-shadow: 0 0 0 3px rgba(221, 107, 32, 0.2) !important;
}

.form-input.input-success {
  border-color: #38A169 !important;
  background-color: #F0FFF4 !important;
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15) !important;
}

.form-error-message {
  font-size: 12px;
  font-weight: 700;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1.3;
  animation: formMsgFade 0.2s ease-in-out;
}

.form-error-message.error-text {
  color: #E53E3E;
}

.form-error-message.warning-text {
  color: #DD6B20;
}

.form-error-message.success-text {
  color: #2F855A;
}

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

/* Thank You Page Section & Layout */
.thanks-section {
  min-height: calc(100vh - 200px);
  padding: 130px 0 80px 0;
  background: linear-gradient(180deg, var(--hero-bg-top) 0%, var(--hero-bg-bottom) 100%);
  display: flex;
  align-items: center;
}

.thanks-card {
  max-width: 680px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 45px 35px;
  box-shadow: 0 20px 45px rgba(10, 92, 54, 0.08);
  border: 2px solid var(--green-light);
  text-align: center;
}

.thanks-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green-brand) 0%, var(--green-dark) 100%);
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 10px 25px rgba(10, 92, 54, 0.3);
}

.thanks-title {
  font-size: 30px;
  font-weight: 900;
  color: #111111;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.thanks-subtitle {
  font-size: 15px;
  color: #555555;
  margin-bottom: 25px;
}

.thanks-order-num {
  display: inline-block;
  background: var(--gold-light);
  color: #B38600;
  border: 1px solid var(--gold-accent);
  padding: 6px 18px;
  border-radius: 20px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 25px;
}

.thanks-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
  text-align: center;
}

.thanks-step-item {
  background: var(--soft-sage-bg);
  padding: 18px 12px;
  border-radius: 12px;
  border: 1px solid #E2ECE5;
}

.thanks-step-num {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}

.thanks-step-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-brand);
}

.thanks-details-box {
  background: var(--green-light);
  border: 1px solid rgba(10, 92, 54, 0.2);
  border-radius: 14px;
  padding: 20px 24px;
  text-align: left;
  margin-bottom: 30px;
}

.thanks-details-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--green-brand);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.thanks-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #333;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(10, 92, 54, 0.18);
}

.thanks-row:last-child {
  border-bottom: none;
}

.thanks-note {
  font-size: 13.5px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
  background: #FAF9F5;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #EFECE6;
}

