/* ========== BuckHound Store Styles ========== */
/* Extends the brand design system from the landing page */

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

:root {
  --bark: #2c1810;
  --forest: #1a3a2a;
  --rust: #c45d3e;
  --cream: #faf5ee;
  --sage: #7a9e7e;
  --gold: #d4a843;
  --charcoal: #333;
  --white: #ffffff;
  --light-gray: #f0ebe4;
  --border: rgba(44, 24, 16, 0.08);
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.06);
  --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.08);
  --shadow-lg: 0 8px 24px rgba(44, 24, 16, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--bark);
  background: var(--cream);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ========== NAVIGATION ========== */
.store-nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(250, 245, 238, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--bark);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo span { color: var(--rust); }

.nav-links {
  display: flex;
  gap: 0.3rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--rust);
  background: rgba(196, 93, 62, 0.08);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bark);
  color: var(--cream);
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

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

.cart-count {
  background: var(--rust);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.cart-btn:hover .cart-count {
  background: var(--cream);
  color: var(--rust);
}

/* ========== LAYOUT ========== */
.store-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  min-height: 100vh;
}

/* ========== PAGE HEADERS ========== */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 1rem;
}

.page-header .breadcrumb {
  font-size: 0.8rem;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-header .breadcrumb a {
  color: var(--sage);
  text-decoration: none;
}

.page-header .breadcrumb a:hover {
  color: var(--rust);
}

.page-header h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--bark);
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.75;
  max-width: 600px;
  margin: 0 auto;
}

.collection-badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge-hunt { background: rgba(196, 93, 62, 0.12); color: var(--rust); }
.badge-dox { background: rgba(212, 168, 67, 0.15); color: var(--gold); }

/* ========== COLLECTION CARDS (Shop page) ========== */
.collections-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.collection-hero-card {
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.collection-hero-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.collection-hero-card.deer-down {
  background: var(--forest);
}

.collection-hero-card.wiener {
  background: var(--bark);
}

.collection-hero-card .card-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.collection-hero-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.collection-hero-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 1.2rem;
}

.collection-hero-card .card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.collection-hero-card .card-cta::after {
  content: '\2192';
  transition: transform 0.2s;
}

.collection-hero-card:hover .card-cta::after {
  transform: translateX(4px);
}

/* ========== PRODUCT GRID ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--bark);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card-image {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-card-image.deer-down {
  background: linear-gradient(135deg, #1a3a2a 0%, #2a5a3a 100%);
}

.product-card-image.wiener-collection {
  background: linear-gradient(135deg, #2c1810 0%, #4a2820 100%);
}

/* Product Artwork Images */
.product-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-image.has-artwork {
  font-size: 0;
}

.product-gallery.has-artwork {
  font-size: 0;
}

.cart-item-image.has-artwork {
  font-size: 0;
}

.cart-item-image .product-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.product-card-image .design-name-overlay {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  padding: 0.4rem 0.7rem;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  border-radius: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.product-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 0.3rem;
}

.product-card-body .tagline {
  font-size: 0.88rem;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 0.8rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--bark);
}

.product-price .from {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--charcoal);
  opacity: 0.6;
}

.style-count {
  font-size: 0.75rem;
  color: var(--sage);
  font-weight: 500;
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  position: relative;
}

.product-gallery.deer-down {
  background: linear-gradient(135deg, #1a3a2a 0%, #2a5a3a 100%);
}

.product-gallery.wiener-collection {
  background: linear-gradient(135deg, #2c1810 0%, #4a2820 100%);
}

.product-gallery .collection-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.9);
}

.product-info {
  padding-top: 0.5rem;
}

.product-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 0.3rem;
  text-align: left;
}

.product-info .product-tagline {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 1rem;
}

.product-info .product-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.product-current-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--bark);
  margin-bottom: 2rem;
}

/* Style Selector */
.option-section {
  margin-bottom: 1.5rem;
}

.option-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}

.style-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.style-option {
  padding: 0.7rem 0.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.style-option:hover {
  border-color: var(--sage);
}

.style-option.selected {
  border-color: var(--bark);
  background: var(--bark);
  color: var(--cream);
}

.style-option .style-name {
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
}

.style-option .style-price {
  font-size: 0.7rem;
  opacity: 0.7;
  display: block;
  margin-top: 0.15rem;
}

/* Color Selector */
.color-options {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  border: 3px solid transparent;
  position: relative;
}

.color-swatch:hover {
  transform: scale(1.1);
}

.color-swatch.selected {
  border-color: var(--bark);
  box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--bark);
}

.color-swatch[title]::after {
  content: attr(title);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--charcoal);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.color-swatch:hover::after,
.color-swatch.selected::after {
  opacity: 0.7;
}

/* Quantity Selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}

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

.qty-btn:hover {
  background: var(--light-gray);
}

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

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: 1rem;
  background: var(--rust);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1.5rem;
}

.add-to-cart-btn:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.add-to-cart-btn.added {
  background: var(--forest);
}

/* ========== CART PAGE ========== */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}

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

.cart-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.cart-item-image {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  flex-shrink: 0;
}

.cart-item-image.deer-down {
  background: linear-gradient(135deg, #1a3a2a 0%, #2a5a3a 100%);
}

.cart-item-image.wiener-collection {
  background: linear-gradient(135deg, #2c1810 0%, #4a2820 100%);
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.cart-item-details .item-variant {
  font-size: 0.8rem;
  color: var(--charcoal);
  opacity: 0.65;
  margin-bottom: 0.6rem;
}

.cart-item-details .item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-item-price {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
}

.remove-item {
  background: none;
  border: none;
  color: var(--charcoal);
  opacity: 0.4;
  cursor: pointer;
  font-size: 0.8rem;
  padding: 0.2rem 0.4rem;
  transition: all 0.2s;
}

.remove-item:hover {
  opacity: 1;
  color: var(--rust);
}

/* Cart Summary */
.cart-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: sticky;
  top: 5rem;
}

.cart-summary h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

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

.summary-row.total {
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 2px solid var(--bark);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.checkout-btn {
  width: 100%;
  padding: 1rem;
  background: var(--rust);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1.2rem;
  letter-spacing: 0.3px;
}

.checkout-btn:hover {
  background: var(--bark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.cart-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.cart-empty .empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.cart-empty h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.cart-empty p {
  color: var(--charcoal);
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.shop-link {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  background: var(--rust);
  color: var(--cream);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.shop-link:hover {
  background: var(--bark);
  transform: translateY(-2px);
}

/* ========== CHECKOUT SUCCESS ========== */
.checkout-success {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.checkout-success .success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
}

.checkout-success h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.checkout-success p {
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.6;
}

/* ========== SECTION DIVIDER ========== */
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-title .line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ========== TOAST NOTIFICATION ========== */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.8rem 1.5rem;
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ========== LOADING STATE ========== */
.loading {
  text-align: center;
  padding: 4rem;
  color: var(--charcoal);
  opacity: 0.5;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--rust);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
}

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

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

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

  .cart-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .store-nav {
    padding: 0.6rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .store-container {
    padding: 5rem 1rem 3rem;
  }

  .collections-hero {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

  .style-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-gallery {
    aspect-ratio: 4/3;
    font-size: 6rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .product-card-image {
    height: 160px;
    font-size: 3.5rem;
  }

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

  .product-card-body h3 {
    font-size: 0.95rem;
  }
}

/* ========== WAITLIST / PRE-LAUNCH CAPTURE ========== */
.waitlist-section {
  margin-top: 1.2rem;
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
}

.waitlist-badge {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.waitlist-message {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.waitlist-email-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--bark);
  background: var(--cream);
  margin-bottom: 0.75rem;
  transition: border-color 0.2s;
  outline: none;
}

.waitlist-email-input:focus {
  border-color: var(--forest);
}

.waitlist-email-input::placeholder {
  color: var(--charcoal);
  opacity: 0.35;
}

.waitlist-fine-print {
  text-align: center;
  font-size: 0.72rem;
  color: var(--charcoal);
  opacity: 0.45;
  margin-top: 0.5rem;
}

.waitlist-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.waitlist-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.waitlist-success h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.waitlist-success p {
  font-size: 0.85rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.5;
}

/* Waitlist hero banner on collection pages */
.waitlist-banner {
  background: var(--forest);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.waitlist-banner-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.waitlist-banner-text p {
  font-size: 0.85rem;
  opacity: 0.75;
}

.waitlist-banner-form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.waitlist-banner-input {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  background: rgba(255,255,255,0.15);
  color: var(--cream);
  outline: none;
  width: 220px;
  transition: background 0.2s;
}

.waitlist-banner-input::placeholder {
  color: rgba(255,255,255,0.45);
}

.waitlist-banner-input:focus {
  background: rgba(255,255,255,0.22);
}

.waitlist-banner-btn {
  padding: 0.6rem 1.2rem;
  background: var(--rust);
  color: var(--cream);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.waitlist-banner-btn:hover {
  background: var(--gold);
  color: var(--bark);
}

@media (max-width: 600px) {
  .waitlist-banner {
    flex-direction: column;
    text-align: center;
  }
  .waitlist-banner-form {
    width: 100%;
  }
  .waitlist-banner-input {
    flex: 1;
    width: auto;
  }
}

/* ========== MOBILE NAV TOGGLE ========== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--bark);
  padding: 0.3rem;
}

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 245, 238, 0.98);
    backdrop-filter: blur(12px);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
}

/* ========== SIZE SELECTOR ========== */
.size-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.size-option {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--cream);
  color: var(--bark);
  transition: all 0.15s;
  user-select: none;
}

.size-option:hover {
  border-color: var(--rust);
  color: var(--rust);
}

.size-option.selected {
  background: var(--bark);
  border-color: var(--bark);
  color: var(--cream);
}

/* ========== CHECKOUT FORM ========== */
.checkout-section {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

.checkout-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bark);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  gap: 0.75rem;
}

.form-row.two-col {
  grid-template-columns: 1fr 1fr;
}

.form-row.three-col {
  grid-template-columns: 2fr 1fr 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--bark);
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-input {
  padding: 0.65rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--bark);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--rust);
}

.form-input::placeholder {
  color: rgba(44, 24, 16, 0.3);
}

.checkout-form-error {
  color: var(--rust);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.checkout-secure-note {
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 0.25rem;
}

@media (max-width: 600px) {
  .form-row.two-col,
  .form-row.three-col {
    grid-template-columns: 1fr;
  }
}

/* ========== ORDER CONFIRMATION ========== */
.order-number-badge {
  display: inline-block;
  background: var(--forest);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin: 0.75rem 0 1rem;
}

.printing-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(26, 58, 42, 0.08);
  color: var(--forest);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.printing-dot {
  width: 8px;
  height: 8px;
  background: var(--forest);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ========== COMING SOON / PRE-LAUNCH STYLES ========== */

/* Nav coming-soon badge */
.nav-coming-soon {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rust);
  padding: 0.35rem 0.9rem;
  border: 1.5px solid var(--rust);
  border-radius: 100px;
  opacity: 0.85;
}

/* Shop page top banner */
.shop-launch-banner {
  background: linear-gradient(135deg, var(--forest) 0%, #2a5040 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 4px 16px rgba(26, 58, 42, 0.2);
}

.shop-launch-banner-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.shop-launch-banner-text p {
  font-size: 0.85rem;
  opacity: 0.75;
}

.shop-launch-banner-form {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.shop-launch-banner-input {
  padding: 0.55rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  min-width: 200px;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.shop-launch-banner-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.shop-launch-banner-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
}

.shop-launch-banner-btn {
  padding: 0.55rem 1.2rem;
  background: var(--rust);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.shop-launch-banner-btn:hover {
  background: var(--gold);
  color: var(--bark);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .shop-launch-banner {
    flex-direction: column;
    text-align: center;
  }
  .shop-launch-banner-form {
    width: 100%;
  }
  .shop-launch-banner-input {
    flex: 1;
    min-width: 0;
  }
}

/* Product page — notify me section (replaces add-to-cart) */
.product-notify-section {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--forest) 0%, #2a5040 100%);
  border-radius: var(--radius);
  color: var(--cream);
}

.product-notify-coming-soon {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.product-notify-section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--cream);
}

.product-notify-section p {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-notify-form {
  display: flex;
  gap: 0.5rem;
}

.product-notify-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}

.product-notify-input::placeholder {
  color: rgba(255,255,255,0.4);
}

.product-notify-input:focus {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.18);
}

.product-notify-btn {
  padding: 0.65rem 1.3rem;
  background: var(--rust);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.product-notify-btn:hover {
  background: var(--gold);
  color: var(--bark);
  transform: translateY(-1px);
}

.product-notify-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.product-notify-error {
  color: #ffb3a0;
  font-size: 0.82rem;
  margin-top: 0.5rem;
  display: none;
}

.product-notify-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.product-notify-success-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rust);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.product-notify-success-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
}

.product-notify-success-text span {
  font-size: 0.82rem;
  opacity: 0.7;
}

@media (max-width: 480px) {
  .product-notify-form {
    flex-direction: column;
  }
}

/* Cart page — pre-launch empty state */
.cart-prelaunch {
  max-width: 500px;
  margin: 4rem auto;
  text-align: center;
  padding: 0 1rem;
}

.cart-prelaunch-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.cart-prelaunch h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--bark);
  margin-bottom: 0.75rem;
}

.cart-prelaunch p {
  font-size: 1rem;
  color: var(--charcoal);
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cart-prelaunch-form {
  display: flex;
  gap: 0.5rem;
  max-width: 380px;
  margin: 0 auto 1.5rem;
}

.cart-prelaunch-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(44, 24, 16, 0.15);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--bark);
  background: white;
  outline: none;
  transition: border-color 0.15s;
}

.cart-prelaunch-input:focus {
  border-color: var(--rust);
}

.cart-prelaunch-input::placeholder {
  color: rgba(44, 24, 16, 0.3);
}

.cart-prelaunch-btn {
  padding: 0.75rem 1.3rem;
  background: var(--rust);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.15s;
}

.cart-prelaunch-btn:hover {
  background: var(--bark);
  transform: translateY(-1px);
}

.cart-prelaunch-btn:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

@media (max-width: 480px) {
  .cart-prelaunch-form {
    flex-direction: column;
  }
}
