:root {
  --rose:       #8A5E3C;
  --blush:      #A7B297;
  --cream:      #F4F1EA;
  --gold:       #6F7357;
  --gold-light: #D8DDCE;
  --warm-dark:  #4B3621;
  --warm-mid:   #6F7357;
  --warm-soft:  #8A5E3C;
  --luxury-deep:#4B3621;
  --luxury-accent:#8A5E3C;
  --luxury-mauve:#A7B297;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', 'Inter', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--warm-dark);
  overflow-x: hidden;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  backdrop-filter: blur(12px);
  background: rgba(244,241,234,0.88);
  border-bottom: 1px solid rgba(111,115,87,0.25);
}

.nav-logo {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--warm-dark);
  letter-spacing: 0.04em;
}

.nav-logo span { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.24rem;
  background: transparent;
  border: none;
  padding: 0.2rem;
  cursor: pointer;
}

.nav-toggle .bar {
  width: 1.4rem;
  height: 2px;
  background: var(--warm-dark);
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
}

nav ul a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-mid);
  transition: color 0.25s;
}

nav ul a:hover { color: var(--gold); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  right: -10%;
  top: -5%;
  width: 65%;
  height: 110%;
  background: linear-gradient(145deg, var(--blush) 0%, #C9D1BE 60%, var(--gold-light) 100%);
  border-radius: 60% 0 0 50% / 50% 0 0 50%;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 3rem 4rem 6rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 0.4rem;
}

.hero h1 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--warm-dark);
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--warm-mid);
  max-width: 38ch;
  margin-bottom: 2.4rem;
  font-weight: 300;
}

.btn-primary {
  display: inline-block;
  background: var(--warm-dark);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.4rem;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 2.4rem;
  margin-left: 1rem;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 4rem 4rem 2rem;
}

.hero-card {
  background: white;
  padding: 2.5rem;
  width: min(340px, 90%);
  box-shadow: 0 30px 80px rgba(75,54,33,0.15), 0 8px 20px rgba(75,54,33,0.08);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: -8px; left: -8px;
  right: 8px; bottom: 8px;
  border: 1px solid var(--gold-light);
  z-index: -1;
}

.card-gift-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
}

.hero-card h3 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero-card p {
  font-size: 0.85rem;
  color: var(--warm-soft);
  line-height: 1.6;
}

.card-tag {
  display: inline-block;
  background: var(--blush);
  color: var(--rose);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-top: 1rem;
  font-weight: 500;
}

section { position: relative; z-index: 1; }

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--warm-dark);
  margin-bottom: 1.2rem;
}

.about {
  padding: 7rem 6rem;
  background: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-mid);
  font-weight: 300;
  margin-bottom: 1rem;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--cream);
  padding: 1.5rem;
  border-left: 2px solid var(--gold);
  transition: transform 0.25s;
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }

.feature-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.feature-card p {
  font-size: 0.8rem;
  color: var(--warm-soft);
  line-height: 1.5;
}

.products {
  padding: 7rem 6rem;
  background: var(--cream);
}

.products-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: white;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 20px 50px rgba(75,54,33,0.12);
  transform: translateY(-6px);
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.product-img-1 { background: linear-gradient(135deg, #F4F1EA, #D8DDCE); }
.product-img-2 { background: linear-gradient(135deg, #E8E5DC, #A7B297); }
.product-img-3 { background: linear-gradient(135deg, #D8DDCE, #A7B297); }
.product-img-4 { background: linear-gradient(135deg, #EFE8DE, #C9D1BE); }
.product-img-5 { background: linear-gradient(135deg, #A7B297, #6F7357); }
.product-img-6 { background: linear-gradient(135deg, #F4F1EA, #CDBBA8); }

.product-badge {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  background: var(--rose);
  color: white;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  font-weight: 500;
}

/* Product photo sizing - one class for every card image, replaces
   the old per-product "tees"/"hoodies" classes that had to be
   remembered and applied by hand on each card. */
.product-photo {
  width: 50%;
  transition: opacity 0.15s ease;
}

.product-badge-soon {
  background: var(--warm-mid);
  color: rgba(244,241,234,0.7);
}

.product-info { padding: 1.2rem 1.5rem 1.5rem; }

.product-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.product-info p {
  font-size: 0.78rem;
  color: var(--warm-soft);
  line-height: 1.5;
  margin-bottom: 0.4rem;
}

.product-price {
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.product-variants {
  padding: 0 1.5rem 0.6rem;
}

.variant-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.45rem;
}

/* Column count (2-4 depending on color/size/style/qty) is set inline
   by script.js per product, so it always matches however many
   selects that product actually has — no modifier classes needed. */

.variant-row select {
  width: 100%;
  border: 1px solid #D8DDCE;
  background: var(--cream);
  padding: 0.45rem 0.55rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: var(--warm-dark);
  outline: none;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b4c3b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.4rem;
  transition: border-color 0.25s;
}

.variant-row select:focus { border-color: var(--gold); }

.order-btn {
  display: flex;
  gap: 0.6rem;
}

.btn-soon {
  flex: 1;
  border: 1px solid rgba(75,54,33,0.2);
  cursor: not-allowed;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(75,54,33,0.35);
  background: rgba(75,54,33,0.06);
  opacity: 0.55;
}

.btn-wa, .btn-mail {
  flex: 1;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.6rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-wa { background: #25d366; color: white; }
.btn-wa:hover { background: #1da851; }

.btn-mail { background: var(--blush); color: var(--warm-dark); }
.btn-mail:hover { background: var(--gold-light); }

.btn-add-cart {
  flex: 1;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.75rem 0.7rem;
  color: var(--cream);
  background: var(--warm-dark);
  transition: background 0.25s, transform 0.25s;
}

.btn-add-cart:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

.cart-floating-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 120;
  border: none;
  cursor: pointer;
  background: var(--warm-dark);
  color: var(--cream);
  box-shadow: 0 14px 35px rgba(75,54,33,0.22);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.cart-floating-btn span {
  min-width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--warm-dark);
  font-size: 0.7rem;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 130;
  pointer-events: none;
  visibility: hidden;
}

.cart-open .cart-drawer {
  pointer-events: auto;
  visibility: visible;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(75,54,33,0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-open .cart-overlay { opacity: 1; }

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  background: white;
  box-shadow: -20px 0 55px rgba(75,54,33,0.18);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

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

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
  border-bottom: 1px solid #D8DDCE;
}

.cart-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
}

.cart-close {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #D8DDCE;
  background: var(--cream);
  color: var(--warm-dark);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 2rem;
}

.cart-empty {
  color: var(--warm-soft);
  font-size: 0.9rem;
}

.cart-item {
  border-bottom: 1px solid #D8DDCE;
  padding: 1rem 0;
  display: grid;
  gap: 0.9rem;
}

.cart-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item p {
  color: var(--warm-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.cart-item-actions {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item-actions label {
  color: var(--warm-mid);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.cart-qty {
  width: 4.6rem;
  display: block;
  margin-top: 0.35rem;
  border: 1px solid #D8DDCE;
  background: var(--cream);
  color: var(--warm-dark);
  padding: 0.55rem;
  font-family: 'Jost', sans-serif;
}

.cart-remove {
  border: none;
  background: transparent;
  color: var(--rose);
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart-footer {
  border-top: 1px solid #D8DDCE;
  padding: 1.25rem 2rem 2rem;
  display: grid;
  gap: 0.8rem;
}

.cart-continue,
.cart-clear,
.cart-checkout {
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.cart-continue {
  background: var(--blush);
  color: var(--warm-dark);
}

.cart-clear {
  background: var(--cream);
  color: var(--warm-mid);
}

.cart-checkout {
  background: #25d366;
  color: white;
}

.cart-clear:disabled,
.cart-checkout:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.how {
  padding: 7rem 6rem;
  background: var(--warm-dark);
  color: var(--cream);
}

.how-header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-header .section-label { color: var(--gold-light); }
.how-header .section-title { color: var(--cream); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step { text-align: center; padding-top: 1rem; }

.step-num {
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--gold);
  margin: 0 auto 1.2rem;
  background: var(--warm-dark);
  position: relative;
  z-index: 1;
}

.step h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--gold-light);
  font-weight: 300;
}

.order {
  padding: 7rem 6rem;
  background: var(--blush);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.order-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--warm-mid);
  font-weight: 300;
  margin-bottom: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: white;
  padding: 1.3rem 1.5rem;
  text-decoration: none;
  color: var(--warm-dark);
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(75,54,33,0.06);
}

.contact-card:hover {
  box-shadow: 0 10px 30px rgba(75,54,33,0.14);
  transform: translateX(6px);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-icon.wa { background: #E4E9DD; }
.contact-icon.mail { background: var(--blush); }

.contact-card-text strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 0.1rem;
}

.contact-card-text span {
  font-size: 0.78rem;
  color: var(--warm-soft);
}

.order-form-wrap {
  background: white;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(75,54,33,0.1);
}

.order-form-wrap h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.order-form-wrap p {
  font-size: 0.82rem;
  color: var(--warm-soft);
  margin-bottom: 1.8rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--warm-mid);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #D8DDCE;
  background: var(--cream);
  padding: 0.75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--warm-dark);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236b4c3b'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.6rem;
}

.form-group textarea {
  background-image: none;
  padding-right: 1rem;
}

.form-variants {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.form-variants .form-group { margin-bottom: 0; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group input[aria-invalid="true"],
.form-group select[aria-invalid="true"],
.form-group textarea[aria-invalid="true"] {
  border-color: #a94442;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-message {
  min-height: 1.2rem;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--warm-mid);
}

.form-message.error { color: #a94442; }
.form-message.success { color: #2f6f4f; }

.form-send-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.send-wa, .send-mail {
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.25s;
}

.send-wa { background: #25d366; color: white; }
.send-wa:hover { background: #1da851; transform: translateY(-2px); }

.send-mail { background: var(--warm-dark); color: var(--cream); }
.send-mail:hover { background: var(--rose); transform: translateY(-2px); }

.testimonials {
  padding: 6rem 6rem;
  background: white;
  text-align: center;
}

.testimonials-header { margin-bottom: 3rem; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: left;
}

.testi {
  background: var(--cream);
  padding: 2rem;
  position: relative;
  border-top: 2px solid var(--gold-light);
}

.testi::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testi p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--warm-mid);
  font-style: italic;
  margin-bottom: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
}

.testi-author {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
}

.stars { color: var(--gold); margin-bottom: 0.5rem; font-size: 0.85rem; }

footer {
  background: var(--warm-dark);
  color: var(--cream);
  padding: 3rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
}

.footer-logo span { color: var(--gold); }

footer p {
  font-size: 0.78rem;
  color: rgba(244,241,234,0.55);
  font-weight: 300;
}

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  color: rgba(244,241,234,0.65);
  font-size: 0.75rem;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-content .hero-eyebrow { animation-delay: 0.1s; }
.hero-content h1            { animation-delay: 0.25s; }
.hero-content p             { animation-delay: 0.4s; }
.hero-content .hero-cta     { animation-delay: 0.55s; }

.hero-visual {
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .nav-toggle { display: flex; }

  nav ul {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
  }

  nav ul.is-open { display: flex; }

  .hero { grid-template-columns: 1fr; }
  .hero-bg-shape { display: none; }
  .hero-content { padding: 3rem 1.5rem 2rem; }
  .hero-visual { padding: 1rem 1.5rem 3rem; }

  .about, .order { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 1.5rem; }
  .products, .how, .testimonials { padding: 4rem 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }

  .testi-grid { grid-template-columns: 1fr; }

  footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2.5rem 1.5rem; }

  .btn-outline { display: none; }
}

@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .form-variants { grid-template-columns: 1fr; }
  .form-send-btns { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 0.75rem; }
  .cart-floating-btn { right: 1rem; bottom: 1rem; }
  .cart-header, .cart-items, .cart-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
}
