@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   STORE CSS VARIABLES
   ============================================================ */
:root {
  --dark: #0d0d0d;
  --dark-card: #181818;
  --dark-card-hover: #202020;
  --dark-border: #2a2a2a;
  --dark-input: #141414;
  --gold: #d4a017;
  --gold-hover: #bc8c10;
  --gold-light: #f0c040;
  --red: #cc2200;
  --red-hover: #aa1c00;
  --white: #ffffff;
  --off-white: #f0ede8;
  --text-light: rgba(255,255,255,0.88);
  --text-muted: rgba(255,255,255,0.50);

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', Arial, sans-serif;

  --transition: 0.28s ease;
  --radius: 10px;
  --radius-lg: 16px;

  --drawer-width: 420px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul {
  list-style: none;
}

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   STORE NAVBAR
   ============================================================ */
.store-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #0a0a0a;
  border-bottom: 1px solid var(--dark-border);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  transition: box-shadow var(--transition);
}

.store-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.6);
}

.store-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.store-nav__logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.store-nav__name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.store-nav__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-nav__right {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.back-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.back-link:hover {
  color: var(--gold);
}

.cart-btn {
  position: relative;
  background: none;
  border: 2px solid var(--dark-border);
  border-radius: 50px;
  padding: 8px 18px 8px 14px;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.cart-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.06);
}

.cart-btn svg {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--red);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0a0a0a;
  transition: transform 0.2s ease;
}

.cart-badge.bump {
  transform: scale(1.35);
}

/* ============================================================
   STORE HERO
   ============================================================ */
.store-hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.store-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0a00 40%, #0d0d0d 70%, #00050d 100%);
  z-index: 0;
}

.store-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(212,160,23,0.10) 0%, transparent 65%),
              radial-gradient(ellipse at 80% 20%, rgba(204,34,0,0.08) 0%, transparent 45%);
  z-index: 1;
  pointer-events: none;
}

.store-hero__inner {
  position: relative;
  z-index: 2;
}

.store-hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(204,34,0,0.1);
  border: 1px solid rgba(204,34,0,0.3);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.store-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.2rem;
  line-height: 1.05;
}

.store-hero__title .accent {
  color: var(--gold);
}

.store-hero__title .accent-red {
  color: var(--red);
}

.store-hero__sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

.store-hero__scroll {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--dark-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products {
  padding: 80px 0 100px;
  background: var(--dark);
}

.products__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.products__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.products__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.products__sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,160,23,0.15);
}

.product-card__image {
  height: 200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

/* Gradient placeholder images */
.product-card__image.sauce-1 {
  background: linear-gradient(135deg, #8b0000 0%, #cc2200 35%, #ff5500 65%, #ff8c00 100%);
}

.product-card__image.sauce-2 {
  background: linear-gradient(135deg, #7a5200 0%, #c9860a 40%, #d4a017 65%, #f0c040 100%);
}

.product-card__image.sauce-3 {
  background: linear-gradient(135deg, #2b1200 0%, #5c2a00 30%, #7a3d00 60%, #a05020 100%);
}

.product-card__image.sauce-4 {
  background: linear-gradient(135deg, #3d0000 0%, #6b0000 30%, #9a0a0a 60%, #c41010 100%);
}

.product-card__image.sauce-5 {
  background: linear-gradient(135deg, #1a3d20 0%, #2d6b30 30%, #5a9a50 60%, #c8e6b0 100%);
}

.product-card__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
}

.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card__price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.product-card__desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Quantity Selector */
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.qty-selector__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.qty-controls {
  display: flex;
  align-items: center;
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  overflow: hidden;
}

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

.qty-btn:hover {
  background: rgba(212,160,23,0.1);
  color: var(--gold);
}

.qty-value {
  min-width: 36px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  border-left: 1px solid var(--dark-border);
  border-right: 1px solid var(--dark-border);
  padding: 0 4px;
  line-height: 34px;
}

.btn-add-cart {
  width: 100%;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-cart:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,160,23,0.3);
}

.btn-add-cart.added {
  background: #2a7a2a;
  color: var(--white);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(3px);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--drawer-width);
  max-width: 100vw;
  background: #111111;
  border-left: 1px solid var(--dark-border);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 48px rgba(0,0,0,0.5);
}

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

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--dark-border);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-drawer__title svg {
  color: var(--gold);
  width: 22px;
  height: 22px;
}

.cart-close {
  background: none;
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.cart-close:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1.75rem;
}

.cart-drawer__body::-webkit-scrollbar {
  width: 4px;
}

.cart-drawer__body::-webkit-scrollbar-track {
  background: transparent;
}

.cart-drawer__body::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 4px;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-empty__icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.cart-empty p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--dark-border);
}

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

.cart-item__color {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  flex-shrink: 0;
}

.cart-item__details {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-item__price strong {
  color: var(--gold);
  font-weight: 700;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.cart-item__qty-btn {
  width: 26px;
  height: 26px;
  background: var(--dark-border);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.cart-item__qty-btn:hover {
  background: rgba(212,160,23,0.2);
  color: var(--gold);
}

.cart-item__qty {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  min-width: 24px;
  text-align: center;
}

.cart-item__remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
  flex-shrink: 0;
}

.cart-item__remove:hover {
  color: var(--red);
}

.cart-drawer__footer {
  border-top: 1px solid var(--dark-border);
  padding: 1.5rem 1.75rem;
  flex-shrink: 0;
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.cart-subtotal__label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-subtotal__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-heading);
}

.cart-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.btn-checkout {
  width: 100%;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.04em;
}

.btn-checkout:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,160,23,0.35);
}

.btn-checkout:disabled {
  background: var(--dark-border);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

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

.modal {
  background: #111111;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  transform: translateY(-20px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  margin: auto;
}

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

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  border-bottom: 1px solid var(--dark-border);
  background: #0d0d0d;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.modal-close {
  background: none;
  border: 1px solid var(--dark-border);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.modal__body {
  padding: 2rem;
  max-height: 75vh;
  overflow-y: auto;
}

.modal__body::-webkit-scrollbar {
  width: 4px;
}

.modal__body::-webkit-scrollbar-thumb {
  background: var(--dark-border);
  border-radius: 4px;
}

/* Order Summary inside Modal */
.order-summary {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
}

.order-summary__title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.order-summary__items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.order-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.order-summary__item-name {
  color: var(--text-light);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-right: 0.75rem;
}

.order-summary__item-qty {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-right: 0.75rem;
  white-space: nowrap;
}

.order-summary__item-price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.order-summary__divider {
  height: 1px;
  background: var(--dark-border);
  margin: 0.75rem 0;
}

.order-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.order-summary__total-label {
  color: var(--text-light);
}

.order-summary__total-value {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--gold);
}

/* Checkout Form */
.checkout-form__section-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--dark-border);
}

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

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.45rem;
  letter-spacing: 0.05em;
}

.form-group label .required {
  color: var(--red);
  margin-left: 2px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: var(--dark-input);
  border: 1.5px solid var(--dark-border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,34,0,0.12);
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: #1a1a1a;
  color: var(--text-light);
}

.payment-note {
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.84rem;
  color: rgba(212,160,23,0.85);
  line-height: 1.6;
}

.payment-note strong {
  color: var(--gold);
  display: block;
  margin-bottom: 0.25rem;
}

.btn-place-order {
  width: 100%;
  background: var(--gold);
  color: #0d0d0d;
  border: none;
  border-radius: 50px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
}

.btn-place-order:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.4);
}

/* Success Message */
.order-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}

.order-success.active {
  display: block;
}

.order-success__icon {
  width: 72px;
  height: 72px;
  background: rgba(42,122,42,0.15);
  border: 2px solid #2a7a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.order-success__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.order-success__msg {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.btn-continue-shopping {
  background: none;
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-continue-shopping:hover {
  background: var(--gold);
  color: #0d0d0d;
}

/* ============================================================
   STORE FOOTER
   ============================================================ */
.store-footer {
  background: #080808;
  border-top: 1px solid var(--dark-border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.store-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.store-footer__brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.store-footer__copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.store-footer__link {
  font-size: 0.85rem;
  color: rgba(212,160,23,0.6);
  transition: color var(--transition);
}

.store-footer__link:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE — 992px (3-col to 2-col grid)
   ============================================================ */
@media (max-width: 992px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .store-nav {
    padding: 0 1.25rem;
  }

  .store-nav__name {
    font-size: 1rem;
  }

  .back-link span {
    display: none;
  }

  .store-hero {
    padding: 70px 0 60px;
  }

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

  :root {
    --drawer-width: 100vw;
  }

  .modal {
    max-width: 100%;
    margin: 0;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    align-self: flex-end;
  }

  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }

  .modal__body {
    max-height: 80vh;
  }
}

/* ============================================================
   RESPONSIVE — 480px (1-col grid)
   ============================================================ */
@media (max-width: 480px) {
  .products__grid {
    grid-template-columns: 1fr;
  }

  .store-nav__name small {
    display: none;
  }

  .products {
    padding: 50px 0 70px;
  }
}
