/* ==========================================
   1111 Body Espiritu — Store Styles
   Design tokens from landing page
   ========================================== */

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

:root {
  --sage: #8B9D77;
  --sage-light: #C4CEB8;
  --sage-dark: #5A6B4A;
  --cream: #F5F0E8;
  --cream-warm: #EDE6D8;
  --charcoal: #2C2C2C;
  --brown: #6B5B4B;
  --gold: #C4A862;
  --white: #FAFAF7;
  --error: #C25B56;
  --success: #5A6B4A;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

.serif { font-family: 'Cormorant Garamond', serif; }

a { color: var(--sage-dark); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sage); }

/* ==========================================
   Navigation
   ========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139, 157, 119, 0.12);
  padding: 0 2rem;
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-logo span {
  color: var(--sage-dark);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-dark);
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--sage-dark);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cart-badge:empty,
.nav-cart-badge[data-count="0"] {
  display: none;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--charcoal);
}

@media (max-width: 640px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid rgba(139, 157, 119, 0.12);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
}

/* ==========================================
   Page Layout
   ========================================== */

.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: calc(100vh - 64px - 80px);
}

.page-header {
  text-align: center;
  padding: 3rem 0 2rem;
}

.page-header .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}

.page-header p {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 300;
  max-width: 500px;
  margin: 1rem auto 0;
}

/* ==========================================
   Product Grid (Shop Page)
   ========================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  padding: 1rem 0 4rem;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(139, 157, 119, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44, 44, 44, 0.08);
  color: inherit;
}

.product-card-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
  display: block;
}

.product-card-body {
  padding: 1.5rem;
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.product-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.product-card-description {
  font-size: 0.88rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sage-dark);
}

/* ==========================================
   Product Detail Page
   ========================================== */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
  align-items: start;
}

.product-image-wrap {
  position: sticky;
  top: 80px;
}

.product-image-main {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 1;
  background: var(--cream);
}

.product-info {
  padding: 1rem 0;
}

.product-info .category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.75rem;
}

.product-info h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.product-price-display {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
}

.product-description {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Variant Selector */
.variant-selector {
  margin-bottom: 2rem;
}

.variant-selector label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.variant-btn {
  padding: 0.7rem 1.25rem;
  border: 1.5px solid rgba(139, 157, 119, 0.3);
  border-radius: 8px;
  background: var(--white);
  color: var(--charcoal);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.variant-btn:hover {
  border-color: var(--sage);
  background: rgba(139, 157, 119, 0.06);
}

.variant-btn.active {
  border-color: var(--sage-dark);
  background: var(--sage-dark);
  color: white;
}

.variant-btn.out-of-stock {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Quantity */
.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.quantity-selector label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-right: 1rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(139, 157, 119, 0.3);
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:first-of-type { border-radius: 8px 0 0 8px; }
.qty-btn:last-of-type { border-radius: 0 8px 8px 0; }
.qty-btn:hover { background: rgba(139, 157, 119, 0.06); }

.qty-value {
  width: 50px;
  height: 40px;
  border-top: 1.5px solid rgba(139, 157, 119, 0.3);
  border-bottom: 1.5px solid rgba(139, 157, 119, 0.3);
  border-left: none;
  border-right: none;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
}

/* Add to Cart Button */
.btn-add-cart {
  width: 100%;
  padding: 1rem 2rem;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
}

.btn-add-cart:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 107, 74, 0.2);
}

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

.btn-add-cart.added {
  background: var(--sage-dark);
}

/* ==========================================
   Cart Page
   ========================================== */

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  padding: 1rem 0 4rem;
  align-items: start;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(139, 157, 119, 0.12);
  border-radius: 12px;
  align-items: center;
}

.cart-item-image {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}

.cart-item-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  font-size: 0.85rem;
  color: var(--brown);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 600;
  color: var(--sage-dark);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
}

.cart-item-qty .qty-btn {
  width: 32px;
  height: 32px;
  font-size: 0.9rem;
}

.cart-item-qty .qty-value {
  width: 40px;
  height: 32px;
  font-size: 0.85rem;
}

.btn-remove {
  background: none;
  border: none;
  color: var(--brown);
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-remove:hover {
  opacity: 1;
  color: var(--error);
}

/* Cart Summary */
.cart-summary {
  position: sticky;
  top: 80px;
  padding: 2rem;
  background: var(--cream);
  border-radius: 16px;
  border: 1px solid rgba(139, 157, 119, 0.15);
}

.cart-summary h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(139, 157, 119, 0.15);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.cart-summary-row.total {
  border-top: 1.5px solid rgba(139, 157, 119, 0.2);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--charcoal);
}

.cart-summary-row .label {
  color: var(--brown);
  font-weight: 400;
}

.cart-summary-row .value {
  font-weight: 600;
  color: var(--charcoal);
}

.btn-checkout {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  display: block;
  text-decoration: none;
}

.btn-checkout:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 107, 74, 0.2);
}

.btn-continue {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--brown);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Empty Cart */
.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
}

.cart-empty h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.cart-empty p {
  color: var(--brown);
  font-weight: 300;
  margin-bottom: 2rem;
}

.btn-shop {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--charcoal);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-shop:hover {
  background: var(--sage-dark);
  color: white;
  transform: translateY(-2px);
}

/* ==========================================
   Checkout Page
   ========================================== */

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  padding: 1rem 0 4rem;
  align-items: start;
}

.checkout-form h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(139, 157, 119, 0.25);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139, 157, 119, 0.1);
}

.form-group input::placeholder {
  color: var(--sage-light);
}

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

.form-row-3 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1rem;
}

.form-error {
  color: var(--error);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.btn-place-order {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.1rem;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-place-order:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 107, 74, 0.2);
}

.btn-place-order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.checkout-summary {
  position: sticky;
  top: 80px;
}

.checkout-summary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.checkout-summary-item {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.checkout-summary-item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.checkout-summary-item-info {
  flex: 1;
}

.checkout-summary-item-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.checkout-summary-item-info p {
  font-size: 0.8rem;
  color: var(--brown);
}

/* ==========================================
   Order Success
   ========================================== */

.order-success {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.order-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(139, 157, 119, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
}

.order-success h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.order-success .order-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  background: rgba(139, 157, 119, 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.order-success p {
  font-size: 1.05rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.order-details-box {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 2rem;
}

.order-details-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--brown);
}

/* ==========================================
   Gift Sets — Shop Page Section
   ========================================== */

.shop-gift-sets-section {
  padding: 0 0 1rem;
}

.shop-gift-sets-header {
  text-align: center;
  padding: 0 0 1.5rem;
}

.shop-gift-sets-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}

.shop-gift-sets-header p {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 300;
  margin-top: 0.5rem;
}

.shop-gift-sets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.shop-gift-set-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(139, 157, 119, 0.15);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-gift-set-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(44, 44, 44, 0.08);
}

.shop-gift-set-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.shop-bundle-mosaic {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream);
}

.shop-gift-set-body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.shop-gift-set-items {
  font-size: 0.8rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.shop-gift-set-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.shop-gift-set-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.shop-gift-set-original {
  font-size: 0.9rem;
  color: var(--brown);
  text-decoration: line-through;
  opacity: 0.6;
}

.btn-add-bundle-sm {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
}

.shop-section-divider {
  text-align: center;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(139, 157, 119, 0.12);
  margin-top: 2rem;
}

.shop-section-divider h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}

/* ==========================================
   Gift Sets — Dedicated Page
   ========================================== */

.gift-set-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(139, 157, 119, 0.1);
  align-items: start;
}

.gift-set-card.reverse {
  direction: rtl;
}

.gift-set-card.reverse > * {
  direction: ltr;
}

.gift-set-images {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.gift-set-info {
  padding: 1rem 0;
}

.gift-set-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.5rem;
}

.gift-set-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

.gift-set-tagline {
  font-size: 1.05rem;
  color: var(--sage-dark);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 1rem;
}

.gift-set-description {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Bundle Pricing */
.bundle-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.bundle-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage-dark);
}

.bundle-original {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.bundle-original-price {
  font-size: 1rem;
  color: var(--brown);
  text-decoration: line-through;
  opacity: 0.6;
}

.bundle-savings-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.05em;
}

/* Bundle Savings Badge */
.bundle-savings-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--sage-dark);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  z-index: 3;
}

/* Bundle Image Mosaic */
.bundle-mosaic {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.bundle-mosaic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bundle-mosaic-3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

.bundle-mosaic-3 .bundle-mosaic-img:first-child {
  grid-row: 1 / -1;
}

.bundle-mosaic-4 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* Bundle Includes */
.bundle-includes {
  margin-bottom: 2rem;
}

.bundle-includes-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.bundle-included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 157, 119, 0.08);
}

.bundle-included-item:last-child {
  border-bottom: none;
}

.bundle-included-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--cream);
}

.bundle-included-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
}

.bundle-included-variant {
  font-size: 0.8rem;
  color: var(--brown);
  font-weight: 300;
}

.btn-add-bundle {
  width: 100%;
  margin-top: 0;
}

/* Gifts CTA Section */
.gifts-cta-section {
  text-align: center;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(139, 157, 119, 0.12);
  margin-top: 2rem;
}

.gifts-cta-text {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

/* Nav gift set highlight */
.nav-gifts {
  color: var(--sage-dark) !important;
  font-weight: 600 !important;
}

/* ==========================================
   Gift Sets — Responsive
   ========================================== */

@media (max-width: 900px) {
  .gift-set-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }

  .gift-set-card.reverse {
    direction: ltr;
  }

  .bundle-mosaic {
    min-height: 240px;
  }
}

@media (max-width: 640px) {
  .shop-gift-sets-grid {
    grid-template-columns: 1fr;
  }

  .bundle-mosaic {
    min-height: 200px;
  }

  .bundle-price {
    font-size: 1.8rem;
  }

  .gift-set-info h2 {
    font-size: 1.6rem;
  }
}

/* ==========================================
   Email Subscribe Section
   ========================================== */

.subscribe-section {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(170deg, var(--cream-warm) 0%, var(--cream) 40%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute;
  top: -15%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,157,119,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-section::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,168,98,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-inner {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.subscribe-symbol {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.2em;
}

.subscribe-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.subscribe-section h2 em {
  font-style: italic;
  color: var(--sage-dark);
}

.subscribe-tagline {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.subscribe-form input[type="email"] {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 1.5px solid rgba(139,157,119,0.3);
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.subscribe-form input[type="email"]:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(139,157,119,0.12);
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--sage-light);
}

.subscribe-form button {
  padding: 0.9rem 2rem;
  background: var(--charcoal);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90,107,74,0.2);
}

.subscribe-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.subscribe-hint {
  font-size: 0.78rem;
  color: var(--sage);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.subscribe-message {
  font-size: 0.88rem;
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.subscribe-message.error {
  color: var(--error);
}

.subscribe-message.success {
  color: var(--sage-dark);
  font-weight: 500;
}

/* Success state */
.subscribe-success {
  display: none;
}

.subscribe-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(139,157,119,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
}

.subscribe-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.subscribe-success p {
  font-size: 0.95rem;
  color: var(--brown);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.discount-code-display {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.discount-code-label {
  font-size: 0.75rem;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Compact version (shop page) */
.subscribe-section.compact {
  padding: 3.5rem 2rem;
  background: var(--cream);
}

.subscribe-section.compact .subscribe-inner {
  max-width: 500px;
}

.subscribe-section.compact h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.subscribe-section.compact .subscribe-tagline {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form button {
    width: 100%;
  }

  .subscribe-section {
    padding: 3.5rem 1.25rem;
  }
}

/* ==========================================
   Footer
   ========================================== */

.store-footer {
  padding: 2.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(139, 157, 119, 0.15);
  margin-top: 2rem;
}

.store-footer p {
  font-size: 0.8rem;
  color: var(--sage);
}

.store-footer a {
  color: var(--sage-dark);
}

/* ==========================================
   Loading & Utilities
   ========================================== */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
  color: var(--sage);
  font-size: 0.9rem;
}

.loading::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--sage-light);
  border-top-color: var(--sage-dark);
  border-radius: 50%;
  margin-left: 0.75rem;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--charcoal);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ==========================================
   Responsive
   ========================================== */

@media (max-width: 900px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-image-wrap {
    position: static;
  }

  .cart-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cart-summary {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .checkout-summary {
    position: static;
    order: -1;
  }
}

@media (max-width: 640px) {
  .page-container {
    padding: 1.25rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .product-card-body {
    padding: 1rem;
  }

  .product-card-name {
    font-size: 1.1rem;
  }

  .product-card-description {
    display: none;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .cart-item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
