/* ================================================
   LA FIORERIA — Botanical Editorial CSS
   Palette: Forest Green, Cream, Dusty Rose, Charcoal
   Fonts: Cormorant Garamond (display) + Jost (body)
   ================================================ */

:root {
  --green-deep: #1a2e1a;
  --green-mid: #2d4a2d;
  --green-light: #4a7c59;
  --green-pale: #8bac8b;
  --cream: #f5f0e8;
  --cream-dark: #ede5d3;
  --rose: #d4849e;
  --rose-light: #f0c4d4;
  --rose-pale: #fdf0f5;
  --charcoal: #2a2520;
  --text: #3d3630;
  --text-light: #7a6e65;
  --white: #ffffff;
  --shadow: rgba(26, 46, 26, 0.12);
  --shadow-deep: rgba(26, 46, 26, 0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;

  --radius: 2px;
  --radius-lg: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--green-deep);
}
em { font-style: italic; color: var(--rose); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; border: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); font-size: 15px; outline: none; }

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

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 172, 139, 0.25);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 24px var(--shadow); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: 0.01em;
}
.logo-icon { font-size: 18px; }

.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--green-mid); }

.cart-btn {
  position: relative;
  background: var(--green-deep);
  color: var(--white);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
}
.cart-btn:hover { background: var(--green-mid); transform: scale(1.05); }
.cart-btn svg { width: 18px; height: 18px; }

.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform var(--transition);
}
.cart-count.visible { transform: scale(1); }

/* ========== PAGES ========== */
.page { display: none; min-height: 100vh; }
.page.active { display: block; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #1a2e1a 0%, #2d4a2d 40%, #3d5c3a 70%, #1a2e1a 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-petals {
  position: absolute;
  inset: 0;
}

.petal {
  position: absolute;
  font-size: 60px;
  opacity: 0.08;
  animation: floatPetal 8s ease-in-out infinite;
}
.p1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 80px; }
.p2 { top: 60%; left: 85%; animation-delay: 1.5s; font-size: 70px; }
.p3 { top: 25%; right: 10%; animation-delay: 3s; }
.p4 { bottom: 20%; left: 15%; animation-delay: 0.8s; font-size: 90px; }
.p5 { top: 5%; left: 50%; animation-delay: 2.2s; }
.p6 { bottom: 10%; right: 20%; animation-delay: 4s; font-size: 75px; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 700px;
  animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 110px);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-title em { color: var(--rose-light); }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 232, 0.4);
  font-size: 20px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--rose);
  color: var(--white);
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: #c07090;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 132, 158, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 13px 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.35);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-ghost:hover {
  background: rgba(245, 240, 232, 0.08);
  border-color: rgba(245, 240, 232, 0.6);
}

.btn-full { width: 100%; justify-content: center; }

/* ========== MARQUEE ========== */
.marquee-strip {
  background: var(--green-deep);
  color: var(--cream);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== SECTIONS ========== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
  font-weight: 500;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--green-deep);
}

.section-cta { text-align: center; margin-top: 56px; }

/* ========== FEATURES ========== */
.features-section {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature-card {
  padding: 40px 32px;
  background: var(--cream);
  border: 1px solid rgba(138, 172, 139, 0.2);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}
.feature-icon { font-size: 32px; margin-bottom: 20px; }
.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--green-deep);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ========== FEATURED SECTION ========== */
.featured-section {
  padding: 100px 0;
  background: var(--cream);
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

/* ========== PRODUCT CARD ========== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138, 172, 139, 0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow-deep);
}

.product-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--rose-pale) 100%);
  position: relative;
  transition: background var(--transition);
}
.product-card:hover .product-card-img { background: linear-gradient(135deg, var(--rose-pale) 0%, #fde8f0 100%); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--green-deep);
  color: var(--cream);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.product-badge.offer { background: var(--rose); }
.product-badge.luxury { background: #8b6914; }
.product-badge.premium { background: var(--green-mid); }

.product-card-body { padding: 22px 24px; }

.product-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 6px;
}
.product-card-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-deep);
  font-weight: 500;
}
.product-original-price {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}
.add-btn {
  width: 38px; height: 38px;
  background: var(--green-deep);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: background var(--transition), transform var(--transition);
}
.add-btn:hover { background: var(--rose); transform: scale(1.1); }

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 100px 0;
  background: var(--green-deep);
}
.testimonials-section .section-eyebrow { color: var(--green-pale); }
.testimonials-section .section-title { color: var(--cream); }
.testimonials-section em { color: var(--rose-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.12);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.featured-testimonial {
  background: rgba(212, 132, 158, 0.12);
  border-color: rgba(212, 132, 158, 0.3);
  padding: 48px 36px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}
.featured-testimonial .testimonial-text { font-size: 20px; color: var(--cream); }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--rose);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-author strong { color: var(--cream); font-family: var(--font-display); font-size: 16px; font-weight: 500; }
.testimonial-author small { color: var(--green-pale); font-size: 12px; }

/* ========== SHOP PAGE ========== */
.shop-header {
  background: var(--green-deep);
  padding: 130px 0 60px;
  text-align: center;
}
.page-title {
  font-size: clamp(40px, 6vw, 70px);
  color: var(--cream);
  margin-bottom: 16px;
}
.page-title em { color: var(--rose-light); }
.page-sub {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.65);
  font-weight: 300;
}

.shop-controls {
  display: flex;
  gap: 16px;
  margin: 44px 0 28px;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  color: var(--text-light);
  pointer-events: none;
}
.search-input {
  width: 100%;
  padding: 12px 16px 12px 42px;
  background: var(--white);
  border: 1px solid rgba(138, 172, 139, 0.3);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--transition);
}
.search-input:focus { border-color: var(--green-light); }
.search-input::placeholder { color: var(--text-light); }

.sort-select {
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(138, 172, 139, 0.3);
  border-radius: var(--radius);
  color: var(--text);
  cursor: pointer;
  min-width: 160px;
}

.categories-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.category-btn {
  padding: 8px 18px;
  border: 1px solid rgba(45, 74, 45, 0.25);
  border-radius: 100px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}
.category-btn:hover { border-color: var(--green-mid); color: var(--green-mid); }
.category-btn.active {
  background: var(--green-deep);
  color: var(--cream);
  border-color: var(--green-deep);
}

.results-count {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
  padding-bottom: 100px;
}

/* ========== ABOUT PAGE ========== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0 100px;
  align-items: start;
}
.about-text h2 {
  font-size: 32px;
  color: var(--green-deep);
  margin-bottom: 20px;
  margin-top: 40px;
}
.about-text h2:first-child { margin-top: 0; }
.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  position: sticky;
  top: 100px;
}
.stat-card {
  background: var(--white);
  border: 1px solid rgba(138, 172, 139, 0.2);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition);
}
.stat-card:hover { transform: translateY(-4px); }
.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding: 80px 0 100px;
}
.contact-info h3, .contact-form-wrap h3 {
  font-size: 28px;
  color: var(--green-deep);
  margin-bottom: 32px;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; color: var(--green-deep); font-size: 15px; font-weight: 500; }
.contact-item small { font-size: 13px; color: var(--text-light); }

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(138, 172, 139, 0.3);
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}
textarea.form-input { resize: vertical; }

/* ========== CART SIDEBAR ========== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 26, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px;
  max-width: 95vw;
  background: var(--cream);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px var(--shadow-deep);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(138, 172, 139, 0.2);
}
.cart-header h3 {
  font-size: 24px;
  color: var(--green-deep);
}
.cart-close {
  background: none;
  font-size: 20px;
  color: var(--text-light);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.cart-close:hover { background: rgba(0,0,0,0.06); color: var(--text); }

.cart-body { flex: 1; overflow-y: auto; padding: 20px 28px; }

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 200px;
  color: var(--text-light);
  font-size: 15px;
  gap: 12px;
}
.cart-empty-icon { font-size: 48px; opacity: 0.4; }

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(138, 172, 139, 0.15);
  align-items: center;
}
.cart-item-emoji { font-size: 36px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.cart-item-price { font-size: 14px; color: var(--text-light); }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px;
  background: var(--white);
  border: 1px solid rgba(138, 172, 139, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text);
  transition: all var(--transition);
}
.qty-btn:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.qty-num { font-size: 15px; font-weight: 500; width: 24px; text-align: center; }

.cart-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(138, 172, 139, 0.2);
  background: var(--white);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-family: var(--font-display);
}
.cart-total-label { font-size: 18px; color: var(--text-light); }
.cart-total-price { font-size: 32px; color: var(--green-deep); }

/* ========== PRODUCT MODAL ========== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 46, 26, 0.6);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.product-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90vw;
  max-width: 700px;
  max-height: 85vh;
  background: var(--cream);
  z-index: 301;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(0,0,0,0.06);
  color: var(--text);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}
.modal-close:hover { background: rgba(0,0,0,0.12); }

.modal-img {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  background: linear-gradient(135deg, var(--cream-dark), var(--rose-pale));
}
.modal-body { padding: 40px; }
.modal-body h2 {
  font-size: 36px;
  margin-bottom: 8px;
}
.modal-category {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  font-weight: 500;
}
.modal-desc {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
}
.modal-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.modal-tag {
  padding: 4px 12px;
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--green-mid);
}
.modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.modal-price {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--green-deep);
}
.modal-price small {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ========== CHECKOUT MODAL ========== */
.checkout-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90vw;
  max-width: 640px;
  max-height: 90vh;
  background: var(--cream);
  z-index: 400;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.checkout-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.checkout-content { padding: 48px 44px; }
.checkout-content h2 {
  font-size: 36px;
  margin-bottom: 32px;
  color: var(--green-deep);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkout-summary {
  background: var(--white);
  border: 1px solid rgba(138, 172, 139, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  margin: 24px 0;
}
.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text-light);
}
.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--green-deep);
  border-top: 1px solid rgba(138, 172, 139, 0.2);
  margin-top: 12px;
  padding-top: 12px;
}

/* ========== TOAST ========== */
.toast {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-deep);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 0.03em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  white-space: nowrap;
  max-width: 90vw;
  text-align: center;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ========== FOOTER ========== */
.footer {
  background: var(--charcoal);
  color: rgba(245, 240, 232, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.5);
}
.footer-links h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--rose-light); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.3);
}

/* ========== LOADING STATE ========== */
.loading-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(138, 172, 139, 0.1);
}
.skeleton {
  background: linear-gradient(90deg, var(--cream-dark) 25%, var(--cream) 50%, var(--cream-dark) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-img { height: 220px; }
.skeleton-body { padding: 22px 24px; }
.skeleton-line {
  height: 14px;
  border-radius: 7px;
  margin-bottom: 12px;
}
.skeleton-line.short { width: 60%; }
@keyframes shimmer {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .about-stats { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .container { padding: 0 20px; }
  .hero-title { font-size: 52px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .checkout-content { padding: 32px 24px; }
  .modal-body { padding: 28px; }
  .modal-footer { flex-direction: column; align-items: flex-start; }
}
