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

:root {
  --white: #f7f3ee;
  --terracotta: #c4724a;
  --terracotta-dark: #a85e38;
  --beige: #e8d5b7;
  --blue: #2c5f7a;
  --sage: #8a9e7b;
  --text: #2a2118;
  --text-light: #7a6d62;
  --border: rgba(196, 114, 74, 0.15);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; }

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

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

nav a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.2s;
}

nav a:hover { color: var(--terracotta); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.lang-switch a {
  text-decoration: none;
  color: var(--text-light);
  transition: color 0.2s;
  font-weight: 400;
  text-transform: uppercase;
}

.lang-switch a.active { color: var(--terracotta); font-weight: 500; }
.lang-switch a:hover { color: var(--terracotta); }

.lang-switch-sep {
  color: rgba(196, 114, 74, 0.3);
  font-size: 0.85rem;
  line-height: 1;
}

.cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  color: var(--text);
  display: flex;
  align-items: center;
  padding: 6px;
  transition: color 0.2s;
}

.cart-btn:hover { color: var(--terracotta); }

.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.2s, transform 0.2s;
}

.cart-count.visible { opacity: 1; transform: scale(1); }

/* ===== HERO ===== */
#hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 40px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-title em { font-style: italic; color: var(--terracotta); }

.hero-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 380px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}

.hero-cta:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.hero-image {
  position: relative;
  overflow: hidden;
}

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

.hero-image-caption {
  position: absolute;
  bottom: 32px;
  left: 28px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--terracotta);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ===== PRODUCTS ===== */
#products { padding: 100px 0; }

.section-header {
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.section-title { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.1; }
.section-title em { font-style: italic; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.product-card {
  cursor: pointer;
  border: 1px solid var(--border);
  background: white;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 24, 8, 0.08);
}

.product-card:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.product-img {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  pointer-events: none;
}

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

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

.product-info { padding: 24px; }

.product-category {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.product-name { font-size: 1.4rem; line-height: 1.2; margin-bottom: 8px; }

.product-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 300;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--terracotta);
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  background: transparent;
  padding: 9px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-ghost:hover { background: var(--terracotta); color: white; }

/* ===== ABOUT ===== */
#about { padding: 100px 0; background: var(--beige); }

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image { aspect-ratio: 3/4; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 28px;
}

.about-title em { font-style: italic; }

.about-body {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.85;
  max-width: 480px;
}

.about-body p + p { margin-top: 18px; }

.about-values { display: flex; gap: 32px; margin-top: 40px; }
.about-value { display: flex; flex-direction: column; gap: 4px; }

.about-value strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.about-value span { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.04em; }

/* ===== FOOTER ===== */
footer {
  background: var(--text);
  color: rgba(247, 243, 238, 0.6);
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247, 243, 238, 0.1);
}

.footer-brand .logo-text {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.footer-tagline { font-size: 0.85rem; line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.footer-social a {
  color: rgba(247, 243, 238, 0.5);
  transition: color 0.2s;
  display: flex;
}

.footer-social a:hover { color: var(--white); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 243, 238, 0.35);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(247, 243, 238, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
}

.shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--sage);
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--white);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

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

.modal-image { overflow: hidden; }

.modal-image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.modal-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 6px;
  transition: color 0.2s;
  display: flex;
}

.modal-close:hover { color: var(--terracotta); }

.modal-category {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.modal-name { font-size: 2.1rem; line-height: 1.1; margin-bottom: 12px; }

.modal-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--terracotta);
  margin-bottom: 20px;
}

.modal-description {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 24px;
}

.modal-description p + p { margin-top: 12px; }

.size-selector { margin-bottom: 20px; }

.size-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}

.size-options { display: flex; gap: 8px; }

.size-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--text);
}

.size-btn:hover { border-color: var(--terracotta); color: var(--terracotta); }
.size-btn.selected { background: var(--terracotta); border-color: var(--terracotta); color: white; }

.qty-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  width: fit-content;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.qty-btn:hover { color: var(--terracotta); }

.qty-display {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.btn-add-cart {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: 100%;
}

.btn-add-cart:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.modal-ingredients {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.modal-ingredients h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 400;
}

.modal-ingredients p { font-size: 0.77rem; color: var(--text-light); line-height: 1.6; }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.4);
  backdrop-filter: blur(2px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 400px;
  max-width: 100vw;
  height: 100%;
  background: var(--white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.open { transform: translateX(0); }

.cart-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 { font-size: 1.3rem; font-weight: 400; }

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 6px;
  display: flex;
  transition: color 0.2s;
}

.cart-close:hover { color: var(--terracotta); }

.cart-items { flex: 1; overflow-y: auto; padding: 24px; }

.cart-empty { text-align: center; padding: 60px 0; color: var(--text-light); }

.cart-empty p:first-child {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.cart-empty p:last-child { font-size: 0.85rem; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: start;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child { border-bottom: none; margin-bottom: 0; }

.cart-item-img { width: 72px; height: 88px; object-fit: cover; }

.cart-item-details { display: flex; flex-direction: column; gap: 4px; }

.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.cart-item-meta { font-size: 0.78rem; color: var(--text-light); }

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-top: 4px;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 2px;
  display: flex;
  transition: color 0.2s;
}

.cart-item-remove:hover { color: var(--terracotta); }

.cart-footer { padding: 24px; border-top: 1px solid var(--border); }

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.cart-subtotal span:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.cart-subtotal-price { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; }

.cart-shipping-note { font-size: 0.75rem; color: var(--text-light); margin-bottom: 18px; }

.btn-checkout {
  width: 100%;
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 15px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-checkout:hover { background: var(--terracotta-dark); }

/* ===== CHECKOUT MODAL ===== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.6);
  backdrop-filter: blur(4px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  overflow-y: auto;
}

.checkout-overlay.open { opacity: 1; pointer-events: all; }

.checkout-modal {
  background: var(--white);
  max-width: 540px;
  width: 100%;
  padding: 48px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
  margin: auto;
}

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

.checkout-modal h2 { font-size: 2rem; margin-bottom: 6px; }
.checkout-modal > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; }

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

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 400;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--terracotta); }

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

.order-summary { background: rgba(232, 213, 183, 0.3); padding: 20px; margin: 24px 0; }
.order-summary h3 { font-size: 0.95rem; margin-bottom: 12px; }

.order-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 4px 0;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
  font-size: 0.95rem;
}

.order-summary-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--terracotta);
}

.btn-pay {
  width: 100%;
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 15px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-pay:hover { background: var(--terracotta-dark); }
.btn-pay:disabled { opacity: 0.65; cursor: not-allowed; }

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 12px;
}

.checkout-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 6px;
  display: flex;
  transition: color 0.2s;
}

.checkout-close:hover { color: var(--terracotta); }

/* ===== THANK YOU MODAL ===== */
.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 33, 24, 0.65);
  backdrop-filter: blur(4px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.thankyou-overlay.open { opacity: 1; pointer-events: all; }

.thankyou-modal {
  background: var(--white);
  max-width: 460px;
  width: 100%;
  padding: 56px 48px;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s ease;
}

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

.thankyou-sun { margin: 0 auto 24px; }
.thankyou-modal h2 { font-size: 2.4rem; margin-bottom: 12px; }

.thankyou-modal > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.thankyou-order { background: rgba(232, 213, 183, 0.3); padding: 20px; margin-bottom: 28px; text-align: left; }
.thankyou-order h3 { font-size: 0.9rem; margin-bottom: 12px; }

.thankyou-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
  color: var(--text-light);
  padding: 4px 0;
}

.thankyou-total {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.thankyou-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--terracotta);
}

.btn-close-thankyou {
  background: var(--terracotta);
  color: white;
  border: none;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  cursor: pointer;
  transition: background 0.25s;
}

.btn-close-thankyou:hover { background: var(--terracotta-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 72px 24px 48px; order: 2; }
  .hero-image { height: 64vw; min-height: 260px; order: 1; }
  .scroll-cue { display: none; }

  .products-grid { grid-template-columns: 1fr; gap: 20px; }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { display: none; }

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

  nav { display: none; }

  .modal { grid-template-columns: 1fr; }
  .modal-image { height: 260px; }
  .modal-image img { min-height: 260px; }
  .modal-body { padding: 28px 24px; }

  .cart-sidebar { width: 100vw; }

  .checkout-modal { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
