:root {
  --bg: #f2f2eb;
  --surface: #ffffff;
  --surface-alt: #eaeae0;
  --primary: #58717e;
  --primary-dark: #45596a;
  --primary-light: #7c95a1;
  --primary-soft: #e7ecee;
  --text: #2c333a;
  --text-muted: #6d757c;
  --text-light: #9aa1a7;
  --border: #dcdccf;
  --border-soft: #e4e4d8;
  --danger: #a9503f;
  --success: #4f7a5b;
  --whatsapp: #25d366;
  --whatsapp-dark: #1eb457;
  --shadow-sm: 0 1px 3px rgba(44, 51, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(68, 89, 106, 0.10);
  --shadow-lg: 0 18px 44px rgba(68, 89, 106, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================== NAV ===================== */
nav {
  background: rgba(242, 242, 235, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 76px;
}
.nav-logo { display: flex; align-items: center; cursor: pointer; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 2.25rem; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; cursor: pointer;
  position: relative; padding: 0.25rem 0; transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1.5px; background: var(--primary); transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cart {
  background: none; border: 1.5px solid var(--primary);
  border-radius: 6px; padding: 0.55rem 1.1rem;
  color: var(--primary); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; gap: 0.55rem;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
}
.nav-cart svg { width: 17px; height: 17px; }
.nav-cart:hover { background: var(--primary); color: #fff; }
.cart-badge {
  background: var(--primary); color: #fff;
  border-radius: 50%; min-width: 20px; height: 20px; padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 700; transition: background 0.2s;
}
.nav-cart:hover .cart-badge { background: #fff; color: var(--primary); }

/* ===================== PAGES ===================== */
.page { display: none; }
.page.active { display: block; }

/* ===================== HERO ===================== */
.hero {
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 6rem 2rem 5.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.hero::before,
.hero::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.hero::before { width: 320px; height: 320px; top: -120px; right: -80px; }
.hero::after { width: 240px; height: 240px; bottom: -120px; left: -60px; }
.hero-eyebrow {
  color: rgba(255, 255, 255, 0.7); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.32em; text-transform: uppercase; margin-bottom: 1.25rem;
  position: relative;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #fff; font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.18; margin-bottom: 1.25rem;
  position: relative;
}
.hero h1 em { font-style: italic; color: #dfe7ea; }
.hero p {
  color: rgba(255, 255, 255, 0.82); font-size: 1.02rem; max-width: 500px;
  margin: 0 auto 2.25rem; line-height: 1.75; font-weight: 300; position: relative;
}
.btn-primary {
  background: #fff; color: var(--primary-dark);
  border: none; border-radius: 6px;
  padding: 0.9rem 2.4rem; font-size: 0.82rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif;
  position: relative;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===================== HOME SECTIONS ===================== */
.home-categories { padding: 4.5rem 2rem 1rem; max-width: 1120px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 0.6rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-weight: 600;
  font-size: 2rem; color: var(--text); margin-bottom: 2.25rem;
}
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.cat-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 12px; padding: 2.25rem 1.75rem;
  cursor: pointer; transition: all 0.25s;
  display: flex; flex-direction: column; gap: 0.6rem;
  box-shadow: var(--shadow-sm);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.cat-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--primary-soft); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.4rem;
}
.cat-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; }
.cat-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.cat-card .cat-count { font-size: 0.75rem; color: var(--primary); font-weight: 600; margin-top: auto; padding-top: 0.75rem; letter-spacing: 0.04em; }

.home-featured { padding: 3.5rem 2rem 4rem; max-width: 1120px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.75rem; margin-top: 1.5rem; }

/* ===================== PRODUCT CARD ===================== */
.product-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  transition: all 0.25s; position: relative; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.product-card:hover .card-overlay { opacity: 1; }
.product-img {
  aspect-ratio: 1 / 1; background: var(--surface-alt);
  position: relative; overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.4s; }
.product-card:hover .product-img img { transform: scale(1.04); }
.card-overlay {
  position: absolute; inset: 0; background: rgba(69, 89, 106, 0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s; padding: 1.5rem;
}
.card-overlay span {
  color: #fff; font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem; text-align: center; line-height: 1.5;
}
.badge-off {
  position: absolute; top: 0.85rem; right: 0.85rem;
  background: var(--primary); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.28rem 0.6rem; border-radius: 4px; text-transform: uppercase; z-index: 2;
}
.badge-low {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: var(--danger); color: #fff;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.28rem 0.6rem; border-radius: 4px; z-index: 2;
}
.product-info { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.product-info .cat-tag { font-size: 0.68rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.product-info h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.35; font-family: 'Playfair Display', serif; }
.price-row { display: flex; flex-direction: column; gap: 0.15rem; margin-top: auto; padding-top: 0.5rem; }
.price-original { font-size: 0.76rem; color: var(--text-light); text-decoration: line-through; }
.price-main { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.price-off { color: var(--primary); }
.price-pix { font-size: 0.74rem; color: var(--success); font-weight: 500; }
.btn-add-card {
  width: 100%; margin-top: 0.9rem;
  background: var(--primary); color: #fff;
  border: none; border-radius: 6px; padding: 0.65rem;
  font-size: 0.78rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s; font-family: 'Inter', sans-serif;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.btn-add-card:hover { background: var(--primary-dark); }

/* ===================== PRODUCTS PAGE ===================== */
.products-page { max-width: 1220px; margin: 0 auto; padding: 2.5rem 2rem; display: flex; gap: 2.5rem; }
.sidebar { width: 230px; flex-shrink: 0; }
.sidebar h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 1.5rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border); }
.filter-section { margin-bottom: 1.75rem; }
.filter-section h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.85rem; }
.filter-option { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.55rem; cursor: pointer; }
.filter-option input[type=checkbox] { accent-color: var(--primary); cursor: pointer; width: 15px; height: 15px; }
.filter-option label { font-size: 0.86rem; cursor: pointer; color: var(--text); }
.price-inputs { display: flex; gap: 0.5rem; align-items: center; }
.price-input { width: 100%; border: 1px solid var(--border); border-radius: 6px; padding: 0.45rem 0.6rem; font-size: 0.82rem; font-family: 'Inter', sans-serif; background: var(--surface); color: var(--text); }
.price-input:focus { outline: none; border-color: var(--primary); }
.btn-apply { background: var(--primary); color: #fff; border: none; border-radius: 6px; padding: 0.5rem 0.85rem; font-size: 0.76rem; font-weight: 600; cursor: pointer; font-family: 'Inter', sans-serif; letter-spacing: 0.04em; transition: background 0.2s; }
.btn-apply:hover { background: var(--primary-dark); }
.btn-clear { background: none; border: none; color: var(--text-muted); font-size: 0.76rem; cursor: pointer; text-decoration: underline; font-family: 'Inter', sans-serif; display: block; margin-top: 0.65rem; }
.btn-clear:hover { color: var(--primary); }

.products-main { flex: 1; min-width: 0; }
.products-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
.products-toolbar h1 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 600; }
.toolbar-right { display: flex; align-items: center; gap: 1rem; }
.result-count { font-size: 0.82rem; color: var(--text-muted); }
.sort-select { border: 1px solid var(--border); border-radius: 6px; padding: 0.5rem 0.8rem; font-size: 0.82rem; font-family: 'Inter', sans-serif; background: var(--surface); color: var(--text); cursor: pointer; }
.sort-select:focus { outline: none; border-color: var(--primary); }
.active-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.25rem; }
.filter-tag {
  background: var(--primary-soft); border: 1px solid transparent;
  color: var(--primary-dark); border-radius: 20px; padding: 0.3rem 0.85rem;
  font-size: 0.76rem; font-weight: 500; display: flex; align-items: center; gap: 0.45rem; cursor: pointer; transition: all 0.2s;
}
.filter-tag:hover { border-color: var(--primary); }
.filter-tag .remove { font-size: 1rem; line-height: 1; }
.empty-result { color: var(--text-muted); grid-column: 1 / -1; padding: 3rem 0; text-align: center; font-size: 0.9rem; }

/* ===================== DETAIL PAGE ===================== */
.detail-page { max-width: 1120px; margin: 0 auto; padding: 2.5rem 2rem; }
.breadcrumb { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.75rem; display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-muted); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.detail-img-main {
  background: var(--surface-alt); border-radius: 12px;
  aspect-ratio: 1 / 1; overflow: hidden; border: 1px solid var(--border-soft);
}
.detail-img-main img { width: 100%; height: 100%; object-fit: cover; }
.detail-info { display: flex; flex-direction: column; gap: 1.1rem; }
.detail-cat { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); }
.detail-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 600; line-height: 1.2; }
.detail-prices { padding: 1.25rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.detail-price-original { font-size: 0.9rem; color: var(--text-muted); }
.detail-price-original s { color: var(--text-light); }
.detail-price-main { font-size: 2.1rem; font-weight: 700; color: var(--text); margin-top: 0.15rem; }
.detail-pix { color: var(--success); font-size: 0.88rem; font-weight: 500; margin-top: 0.35rem; }
.detail-desc { font-size: 0.94rem; color: var(--text-muted); line-height: 1.85; }
.qty-row { display: flex; align-items: center; gap: 1rem; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.qty-btn { background: var(--surface); border: none; width: 40px; height: 44px; cursor: pointer; font-size: 1.15rem; color: var(--text); font-family: 'Inter', sans-serif; transition: background 0.15s; }
.qty-btn:hover { background: var(--surface-alt); }
.qty-val { width: 44px; text-align: center; font-size: 0.95rem; font-weight: 600; }
.btn-add-detail {
  flex: 1; background: var(--primary); color: #fff;
  border: none; border-radius: 6px; padding: 0.9rem 1.5rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; font-family: 'Inter', sans-serif;
}
.btn-add-detail:hover { background: var(--primary-dark); }
.detail-note { font-size: 0.82rem; display: flex; align-items: center; gap: 0.4rem; }
.detail-note.in-stock { color: var(--success); }
.detail-note.low-stock { color: var(--danger); }

/* ===================== CART DRAWER ===================== */
.cart-overlay { position: fixed; inset: 0; background: rgba(44, 51, 58, 0.45); z-index: 200; opacity: 0; visibility: hidden; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0; width: 430px; max-width: 100vw;
  background: var(--bg); z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s ease;
  box-shadow: -8px 0 40px rgba(44, 51, 58, 0.18);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { padding: 1.4rem 1.6rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-header h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; }
.btn-close { background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--text-muted); line-height: 1; padding: 0.2rem; transition: color 0.2s; }
.btn-close:hover { color: var(--text); }
.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.6rem; display: flex; flex-direction: column; gap: 1.25rem; }
.cart-empty { text-align: center; padding: 3.5rem 1rem; color: var(--text-muted); }
.cart-empty .empty-icon { color: var(--text-light); margin-bottom: 1.25rem; display: flex; justify-content: center; }
.cart-empty p { margin-bottom: 1.5rem; font-size: 0.9rem; }
.cart-item { display: flex; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--border-soft); }
.cart-item-img { width: 70px; height: 70px; background: var(--surface-alt); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 0.28rem; }
.cart-item-name { font-size: 0.9rem; font-weight: 600; }
.cart-item-cat { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.cart-item-price { font-size: 0.95rem; font-weight: 700; }
.cart-item-actions { display: flex; align-items: center; gap: 0.85rem; margin-top: 0.35rem; }
.cart-qty { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--surface); }
.cart-qty-btn { background: none; border: none; width: 28px; height: 28px; cursor: pointer; font-size: 1rem; color: var(--text); transition: background 0.15s; font-family: 'Inter', sans-serif; }
.cart-qty-btn:hover { background: var(--surface-alt); }
.cart-qty-val { width: 32px; text-align: center; font-size: 0.82rem; font-weight: 600; }
.btn-remove { background: none; border: none; color: var(--text-light); font-size: 0.76rem; cursor: pointer; text-decoration: underline; font-family: 'Inter', sans-serif; }
.btn-remove:hover { color: var(--danger); }
.cart-footer { padding: 1.4rem 1.6rem; border-top: 1px solid var(--border); background: var(--surface); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.1rem; }
.cart-total-label { font-size: 0.82rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.cart-total-value { font-size: 1.35rem; font-weight: 700; }
.btn-checkout {
  width: 100%; background: var(--primary); color: #fff;
  border: none; border-radius: 6px; padding: 0.95rem;
  font-size: 0.82rem; font-weight: 600; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-checkout:hover { background: var(--primary-dark); }

/* ===================== CHECKOUT PAGE ===================== */
.checkout-page { max-width: 960px; margin: 0 auto; padding: 2.5rem 2rem; }
.checkout-page .page-title { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 600; margin-bottom: 1.75rem; }
.checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 2.5rem; align-items: start; }
.checkout-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-block-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; margin-top: 0.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); }
.form-input, .form-select, .form-textarea {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 0.7rem 0.9rem; font-size: 0.9rem; color: var(--text);
  font-family: 'Inter', sans-serif; background: var(--surface);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); }
.form-textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.payment-options { display: flex; flex-direction: column; gap: 0.6rem; }
.payment-option { display: flex; align-items: center; gap: 0.85rem; padding: 0.85rem 1rem; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: all 0.2s; background: var(--surface); }
.payment-option:hover { border-color: var(--primary-light); }
.payment-option.selected { border-color: var(--primary); background: var(--primary-soft); }
.payment-option input { accent-color: var(--primary); width: 16px; height: 16px; }
.payment-option .pay-label { font-size: 0.9rem; font-weight: 600; }
.payment-option .pay-desc { font-size: 0.76rem; color: var(--text-muted); }

.order-summary { background: var(--surface); border: 1px solid var(--border-soft); border-radius: 12px; padding: 1.6rem; position: sticky; top: 96px; box-shadow: var(--shadow-sm); }
.order-summary h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 1.1rem; padding-bottom: 0.85rem; border-bottom: 1px solid var(--border); }
.order-item { display: flex; justify-content: space-between; font-size: 0.86rem; margin-bottom: 0.65rem; gap: 1rem; }
.order-item-name { flex: 1; color: var(--text-muted); }
.order-pix-note { font-size: 0.78rem; color: var(--success); margin-top: 0.5rem; font-weight: 500; }
.order-divider { border: none; border-top: 1px solid var(--border); margin: 1.1rem 0; }
.order-total-row { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.15rem; }
.btn-send-whatsapp {
  width: 100%; margin-top: 1.4rem;
  background: var(--whatsapp); color: #fff;
  border: none; border-radius: 6px; padding: 1rem;
  font-size: 0.9rem; font-weight: 700; cursor: pointer;
  font-family: 'Inter', sans-serif; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  transition: background 0.2s;
}
.btn-send-whatsapp svg { width: 20px; height: 20px; }
.btn-send-whatsapp:hover { background: var(--whatsapp-dark); }
.checkout-disclaimer { font-size: 0.74rem; color: var(--text-muted); text-align: center; margin-top: 0.85rem; line-height: 1.5; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(120px);
  background: var(--primary-dark); color: #fff;
  border-radius: 8px; padding: 0.85rem 1.6rem;
  font-size: 0.88rem; font-weight: 500; z-index: 999;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); max-width: 90vw;
  box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===================== FOOTER ===================== */
footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.75); padding: 3.5rem 2rem 1.75rem; margin-top: 4rem; }
.footer-inner { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.3rem; font-weight: 600; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.82rem; font-style: italic; margin-bottom: 1.25rem; color: rgba(255, 255, 255, 0.7); }
.footer-contact p { font-size: 0.84rem; margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.55rem; }
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; color: rgba(255, 255, 255, 0.6); }
.footer-nav h4 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 1rem; }
.footer-nav a { display: block; font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); text-decoration: none; margin-bottom: 0.55rem; cursor: pointer; transition: color 0.2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { max-width: 1120px; margin: 0 auto; padding-top: 1.75rem; border-top: 1px solid rgba(255, 255, 255, 0.15); text-align: center; font-size: 0.76rem; color: rgba(255, 255, 255, 0.6); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 860px) {
  nav { padding: 0 1.25rem; height: 68px; }
  .nav-logo img { height: 36px; }
  .products-page { flex-direction: column; padding: 1.5rem 1.25rem; gap: 1.5rem; }
  .sidebar { width: 100%; }
  .detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cart-drawer { width: 100%; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.08em; }
}

@media (max-width: 480px) {
  .nav-cart span.cart-text { display: none; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .home-categories, .home-featured { padding-left: 1.25rem; padding-right: 1.25rem; }
}
