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

:root {
  --rose: #c4616c;
  --rose-dark: #a34d57;
  --rose-light: #f5e1e3;
  --gold: #d4a574;
  --gold-light: #f5eade;
  --cream: #faf7f4;
  --white: #ffffff;
  --charcoal: #2d2926;
  --text-muted: #7a6e68;
  --border: #ede8e3;
  --border-dark: #d9d0c9;
  --shadow-sm: 0 1px 3px rgba(45,41,38,0.06);
  --shadow-md: 0 4px 16px rgba(45,41,38,0.08);
  --shadow-lg: 0 12px 40px rgba(45,41,38,0.12);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --transition: 0.3s ease;
  --container: 1200px;
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.5s, visibility 0.5s;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo { width: 100px; height: 100px; }
.loading-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 16px; }
.loading-spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.navbar .container {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.1rem;
  color: var(--white);
  z-index: 1001;
}
.nav-logo-img { height: 36px; border-radius: 8px; }
.navbar.scrolled .nav-logo { color: var(--charcoal); }

.mobile-menu-btn {
  display: none; background: none; border: none;
  font-size: 1.5rem; cursor: pointer; color: var(--white);
  z-index: 1001;
}
.navbar.scrolled .mobile-menu-btn { color: var(--charcoal); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  position: relative; padding: 4px 0;
  transition: color var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--charcoal); }

.nav-links a.nav-external {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  background: linear-gradient(135deg, #faf7f4 0%, #f5eade 100%);
  border: 1.5px solid rgba(212, 165, 116, 0.35);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.84rem;
  color: #8b6914 !important;
  white-space: nowrap;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.12);
  transition: all var(--transition);
}
.nav-links a.nav-external i { font-size: 1rem; color: #b8860b; }
.nav-links a.nav-external:hover {
  background: linear-gradient(135deg, #f5eade 0%, #efe0cc 100%);
  border-color: var(--gold);
  color: #6b4f00 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 165, 116, 0.2);
}

.nav-links a.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  background: var(--rose);
  color: var(--white) !important;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.88rem;
  transition: background var(--transition), transform var(--transition);
}
.nav-links a.nav-cta:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #3d2b2b 0%, #2d2926 50%, #4a2f33 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(196,97,108,0.15) 0%, transparent 70%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px; padding: 0 24px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-light);
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px; margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,97,108,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px; margin: 0 auto;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step-number {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== PRODUCTS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-card-image {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.05);
}
.product-card-image .placeholder-icon {
  font-size: 3rem; color: var(--border-dark);
}
.product-card-body {
  padding: 20px;
}
.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.product-card-type {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-card-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--rose);
  font-size: 1rem;
}
.product-card-action {
  font-size: 0.8rem; font-weight: 600;
  color: var(--rose);
  display: flex; align-items: center; gap: 4px;
  transition: gap var(--transition);
}
.product-card:hover .product-card-action { gap: 8px; }

.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 12px; display: block; }
.empty-state h3 { font-family: var(--font-heading); margin-bottom: 8px; color: var(--charcoal); }

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(45,41,38,0.6);
  backdrop-filter: blur(4px);
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 20px; overflow-y: auto;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: 20px;
  width: 100%; max-width: 560px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.3s ease;
  overflow: hidden;
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--charcoal);
  transition: background var(--transition);
}
.modal-close:hover { background: var(--white); }
.modal-image {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
}
.modal-image img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 16px;
}
.modal-image-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; color: var(--border-dark);
}
.modal-body { padding: 24px; }
.modal-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  margin-bottom: 8px;
}
.modal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.modal-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.modal-pricing {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
}
.modal-base-price {
  display: flex; justify-content: space-between; align-items: center;
}
.price-label { font-size: 0.85rem; color: var(--text-muted); }
.price-value {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--rose);
}

/* Tiers */
.modal-tiers {
  margin-bottom: 16px;
}
.modal-tiers h4 {
  font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px;
}
.modal-tiers h4 i { color: var(--gold); }
.tiers-table {
  width: 100%; border-collapse: collapse;
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
}
.tiers-table th {
  background: var(--cream);
  padding: 8px 14px;
  font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
  text-align: left;
}
.tiers-table td {
  padding: 10px 14px;
  font-size: 0.88rem;
  border-top: 1px solid var(--border);
}
.tiers-table tr.active-tier { background: var(--gold-light); }
.tiers-table tr.active-tier td { font-weight: 600; color: var(--charcoal); }

/* Quantity */
.modal-quantity {
  margin-bottom: 16px;
}
.modal-quantity label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px; display: block;
}
.qty-controls {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  width: fit-content;
}
.qty-btn {
  width: 44px; height: 44px;
  background: var(--cream);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--charcoal);
  transition: background var(--transition);
}
.qty-btn:hover { background: var(--border); }
.qty-controls input {
  width: 60px; height: 44px;
  text-align: center; border: none;
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 600;
  color: var(--charcoal);
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  outline: none;
}

/* Modal Total */
.modal-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  border-top: 2px solid var(--border);
  margin-bottom: 16px;
}
.modal-total span:first-child {
  font-size: 0.9rem; font-weight: 600;
}
.modal-total-value {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 700;
  color: var(--rose);
}

.btn-add-cart {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(45,41,38,0.5);
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: -400px; bottom: 0;
  width: 380px; max-width: 100vw;
  background: var(--white);
  z-index: 1501;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: right var(--transition);
}
.cart-drawer.active { right: 0; }

.cart-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px; border-bottom: 1px solid var(--border);
}
.cart-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  display: flex; align-items: center; gap: 8px;
}
.cart-header h3 i { color: var(--rose); }
.cart-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.2rem; color: var(--text-muted);
  padding: 4px;
}
.cart-close:hover { color: var(--charcoal); }

.cart-items {
  flex: 1; overflow-y: auto; padding: 16px;
}
.cart-item {
  display: flex; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 56px; height: 56px;
  border-radius: 10px;
  background: var(--cream);
  overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 600; font-size: 0.88rem;
  margin-bottom: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-item-price { font-size: 0.8rem; color: var(--text-muted); }
.cart-item-controls {
  display: flex; align-items: center; gap: 8px;
  margin-top: 6px;
}
.cart-item-qty-btn {
  width: 26px; height: 26px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; color: var(--charcoal);
}
.cart-item-qty-btn:hover { background: var(--border); }
.cart-item-qty { font-size: 0.85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 0.85rem;
  margin-left: auto; padding: 4px;
}
.cart-item-remove:hover { color: #dc2626; }
.cart-item-total {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.9rem;
  color: var(--rose);
  text-align: right; white-space: nowrap;
}

.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--text-muted); gap: 8px;
}
.cart-empty i { font-size: 2.5rem; }

.cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.cart-total span:first-child { font-weight: 600; }
.cart-total span:last-child {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: var(--rose);
}
.btn-checkout {
  width: 100%; justify-content: center;
}

/* ===== FLOATING CART BUTTON ===== */
.cart-fab {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 1000;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(196,97,108,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.cart-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(196,97,108,0.5);
}
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 22px; height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 11px;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  padding: 0 6px;
}

/* ===== FEATURES ===== */
.features-section { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 14px;
}
.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 6px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* ===== ORDER SUMMARY ===== */
.order-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 24px;
}
.order-summary-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.order-summary-header h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  display: flex; align-items: center; gap: 8px;
}
.order-summary-header h4 i { color: var(--rose); }
.order-summary-edit {
  background: none; border: none; cursor: pointer;
  color: var(--rose); font-size: 0.8rem; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.order-summary-edit:hover { color: var(--rose-dark); }
.summary-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.summary-item:last-child { border-bottom: none; }
.summary-item-img {
  width: 40px; height: 40px;
  border-radius: 8px; background: var(--white);
  overflow: hidden; flex-shrink: 0;
}
.summary-item-img img { width: 100%; height: 100%; object-fit: cover; }
.summary-item-info { flex: 1; min-width: 0; }
.summary-item-name {
  font-weight: 600; font-size: 0.85rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.summary-item-qty { font-size: 0.78rem; color: var(--text-muted); }
.summary-item-price {
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.88rem;
  color: var(--rose);
}
.order-summary-total {
  display: flex; justify-content: space-between;
  padding-top: 12px; margin-top: 8px;
  border-top: 2px solid var(--charcoal);
  font-family: var(--font-heading);
  font-weight: 700; font-size: 1.05rem;
}

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.contact-form-wrap {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.85rem; font-weight: 600;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,97,108,0.1);
}
.form-group textarea { resize: vertical; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.btn-submit {
  margin-top: 8px;
  justify-content: center;
  padding: 16px;
  font-size: 0.95rem;
}

.form-status {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
}
.form-status.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}
.form-status.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.contact-card:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-card:last-child .map-embed {
  flex: 1;
}
.contact-card:last-child .map-embed iframe {
  height: 100%;
  min-height: 200px;
}
.contact-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 16px;
}
.contact-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.contact-card p:last-child { margin-bottom: 0; }
.contact-card p i {
  color: var(--rose);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.contact-channels { display: flex; flex-direction: column; gap: 10px; }
.contact-channel {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-channel:hover {
  border-color: var(--rose);
  box-shadow: 0 2px 8px rgba(196,97,108,0.1);
}
.contact-channel i { font-size: 1.4rem; color: var(--rose); flex-shrink: 0; }
.contact-channel strong { font-size: 0.88rem; display: block; }
.contact-channel span { font-size: 0.78rem; color: var(--text-muted); }
.map-embed { border-radius: 12px; overflow: hidden; }

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo {
  height: 48px; border-radius: 10px;
  margin-bottom: 16px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-links h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.82rem;
}
.footer-main-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--rose-light);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-main-link:hover { color: var(--white); }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 280px; background: var(--white);
    flex-direction: column; align-items: stretch;
    padding: 80px 24px 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links a {
    color: var(--charcoal) !important;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.95rem;
  }
  .nav-links a:hover { background: var(--cream); }
  .nav-links a.nav-external {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
  }
  .nav-links a.nav-cta {
    margin-top: 8px;
    width: 100%;
    justify-content: center;
  }

  .section { padding: 60px 0; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.95rem; }

  .cart-drawer { width: 320px; }

  .modal-overlay { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }

  .hero { min-height: 90vh; }
  .hero h1 { font-size: 1.9rem; }
  .hero p { font-size: 0.88rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .products-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .features-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cart-drawer { width: 100%; }

  .modal { border-radius: 16px; }
  .modal-body { padding: 20px; }
  .modal-body h2 { font-size: 1.2rem; }

  .btn { padding: 12px 24px; font-size: 0.9rem; }

  .step-card { padding: 32px 20px; }
}

@media (max-width: 375px) {
  .hero h1 { font-size: 1.7rem; }
  .nav-logo span { font-size: 0.95rem; }
}
