/* ===== HoneyStack Global Styles ===== */
:root {
  --navy: #0B1321;
  --navy-mid: #0f1c30;
  --navy-light: #132035;
  --copper: #B87333;
  --copper-dark: #9a6029;
  --copper-light: #d4944a;
  --white: #FFFFFF;
  --text-muted: #8a9bb5;
  --border: rgba(184, 115, 51, 0.25);
  --border-hover: rgba(184, 115, 51, 0.6);
  --success: #2ecc71;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

a { color: var(--copper); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--copper-light); }

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

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 19, 33, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--copper);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
}

.navbar-logo .logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.navbar-logo .logo-text span {
  color: var(--copper);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.navbar-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.navbar-cta {
  background: var(--copper) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
}

.navbar-cta:hover {
  background: var(--copper-light) !important;
  color: var(--navy) !important;
}

.navbar-cart {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
  transition: all var(--transition);
}

.navbar-cart:hover {
  border-color: var(--copper);
  background: rgba(184,115,51,0.1);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--copper);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

.cart-badge.visible { display: flex; }

/* ===== Page Content Offset ===== */
.page-content { padding-top: 64px; }

/* ===== Hero ===== */
.hero {
  padding: 100px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(184,115,51,0.12) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,115,51,0.12);
  border: 1px solid var(--border);
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.hero h1 .accent { color: var(--copper); }

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--copper);
}

.hero-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--copper);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--copper-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184,115,51,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(184,115,51,0.05);
}

.btn-large {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 10px;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 17px;
  border-radius: 10px;
}

/* ===== Sections ===== */
.section {
  padding: 72px 24px;
}

.section-alt {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-title .icon { margin-right: 8px; }

.section-link {
  font-size: 14px;
  color: var(--copper);
  text-decoration: none;
  font-weight: 600;
}

.section-link:hover { color: var(--copper-light); }

/* ===== Product Grid ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

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

/* ===== Product Card ===== */
.product-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.product-card:hover {
  border-color: var(--copper);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(184,115,51,0.2);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: var(--navy-light);
  aspect-ratio: 4/3;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--copper);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
}

.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.product-card-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  text-decoration: none;
}

.product-card-name:hover { color: var(--copper); }

.product-card-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.stars { color: #f5a623; letter-spacing: 1px; }

.stars-count { color: var(--text-muted); font-size: 12px; }

.product-card-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--copper);
}

.product-card-price .per-mo {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.product-card .btn-primary {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  justify-content: center;
  margin-top: auto;
  text-decoration: none;
}

/* Gumroad button override */
.gumroad-button {
  display: block !important;
  width: 100% !important;
  background: var(--copper) !important;
  color: var(--navy) !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  border-radius: var(--radius) !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  white-space: nowrap !important;
}

.gumroad-button:hover {
  background: var(--copper-light) !important;
  transform: translateY(-1px) !important;
}

.gumroad-button-logo { display: none !important; }

/* ===== Why HoneyStack ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.benefit-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.benefit-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== Category Cards ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: all var(--transition);
}

.category-card:hover {
  border-color: var(--copper);
  background: rgba(184,115,51,0.06);
  color: var(--white);
  transform: translateY(-2px);
}

.category-icon { font-size: 32px; margin-bottom: 10px; }
.category-name { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.category-count { font-size: 12px; color: var(--text-muted); }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.testimonial-stars { color: #f5a623; font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.65; margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--copper); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15px; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-title { font-size: 12px; color: var(--text-muted); }

/* ===== Membership Banner ===== */
.membership-banner {
  background: var(--navy-mid);
  border: 2px solid var(--copper);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(184,115,51,0.06) 100%);
}

.membership-banner h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.membership-banner p { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; }
.membership-price { font-size: 20px; font-weight: 700; color: var(--copper); margin-bottom: 24px; }

/* ===== Footer ===== */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 56px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 12px; }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--copper); margin-bottom: 16px; }

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ===== Product Page ===== */
.product-page {
  padding: 40px 24px 80px;
}

.product-layout {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.product-image-col { position: sticky; top: 84px; }

.product-main-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
}

.product-thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  opacity: 0.6;
}

.product-thumb.active,
.product-thumb:hover { border-color: var(--copper); opacity: 1; }

.product-info-col {}

.product-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-breadcrumb a { color: var(--copper); }

.product-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  font-size: 14px;
}

.product-stars { color: #f5a623; font-size: 16px; }
.product-rating-num { font-weight: 700; }
.product-rating-count { color: var(--text-muted); }
.verified-badge {
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.3);
  color: #2ecc71;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.product-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--copper);
  margin-bottom: 4px;
}

.product-price .per-mo {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-muted);
}

.product-urgency {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 57, 53, 0.1);
  border: 1px solid rgba(229, 57, 53, 0.25);
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.product-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
}

.product-features li:last-child { border-bottom: none; }

.feature-check { color: var(--copper); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.product-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

.whats-included {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.whats-included h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--copper); margin-bottom: 12px; }

.whats-included ul { list-style: none; }
.whats-included ul li { font-size: 13px; color: rgba(255,255,255,0.8); padding: 5px 0; display: flex; gap: 8px; }
.whats-included ul li::before { content: '📦'; flex-shrink: 0; }

.buy-btn-wrap { margin-bottom: 12px; }

.buy-btn-wrap .gumroad-button {
  font-size: 17px !important;
  padding: 18px !important;
  border-radius: 10px !important;
}

.secure-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(46,204,113,0.08);
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.guarantee-badge .icon { font-size: 20px; flex-shrink: 0; }

.share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.share-btn {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 13px;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.share-btn:hover { border-color: var(--copper); color: var(--copper); }

/* ===== Below Fold Product Sections ===== */
.product-below {
  max-width: 1280px;
  margin: 56px auto 0;
  padding: 0;
}

.product-section { margin-bottom: 56px; }

.product-section h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

/* ===== Reviews ===== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  padding: 20px;
  background: var(--navy-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.rating-big { font-size: 48px; font-weight: 900; color: var(--copper); }
.rating-breakdown { flex: 1; }
.rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; font-size: 13px; }
.rating-bar-wrap { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 3px; overflow: hidden; }
.rating-bar { height: 100%; background: var(--copper); border-radius: 3px; }
.rating-label { color: var(--text-muted); width: 30px; }

.reviews-list { display: flex; flex-direction: column; gap: 20px; }

.review-card {
  background: var(--navy-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.review-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 8px;
  flex-wrap: wrap;
  gap: 8px;
}

.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy-mid); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--copper);
}
.reviewer-name { font-weight: 700; font-size: 14px; }
.reviewer-date { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.review-stars { color: #f5a623; font-size: 14px; }
.review-verified { font-size: 11px; color: var(--success); font-weight: 700; }
.review-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.65; margin: 12px 0; }
.review-helpful { font-size: 12px; color: var(--text-muted); }

/* ===== Also Bought / Related ===== */
.related-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--copper) var(--navy-mid);
}

.related-scroll::-webkit-scrollbar { height: 4px; }
.related-scroll::-webkit-scrollbar-track { background: var(--navy-mid); }
.related-scroll::-webkit-scrollbar-thumb { background: var(--copper); border-radius: 2px; }

.related-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--white);
}

.related-card:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
  color: var(--white);
}

.related-card img { width: 100%; height: 140px; object-fit: cover; }
.related-card-body { padding: 12px; }
.related-card-name { font-size: 13px; font-weight: 600; line-height: 1.4; margin-bottom: 6px; }
.related-card-price { font-size: 15px; font-weight: 800; color: var(--copper); }

/* ===== Shop Page ===== */
.shop-header {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
  text-align: center;
}

.shop-header h1 { font-size: 36px; font-weight: 900; margin-bottom: 8px; }
.shop-header p { color: var(--text-muted); font-size: 16px; }

.shop-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--copper);
  color: var(--copper);
  background: rgba(184,115,51,0.08);
}

/* ===== Cart Drawer ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  bottom: 0;
  width: 400px;
  background: var(--navy-mid);
  border-left: 1px solid var(--border);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.cart-drawer.open { right: 0; }

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer-header h3 { font-size: 18px; font-weight: 700; }
.cart-close { background: none; border: none; color: var(--white); font-size: 22px; cursor: pointer; }

.cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.cart-empty { text-align: center; color: var(--text-muted); padding: 40px 0; font-size: 15px; }

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

.cart-item img { width: 60px; height: 45px; object-fit: cover; border-radius: 4px; }
.cart-item-name { font-size: 13px; font-weight: 600; flex: 1; }
.cart-item-price { font-size: 14px; font-weight: 700; color: var(--copper); }
.cart-item-remove { background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 18px; }

.cart-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.cart-total { display: flex; justify-content: space-between; font-weight: 700; margin-bottom: 16px; font-size: 16px; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-light);
  border: 1px solid var(--copper);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .product-layout { grid-template-columns: 380px 1fr; gap: 32px; }
  .product-grid-4 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .product-layout { grid-template-columns: 1fr; }
  .product-image-col { position: static; }
  .benefits-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .navbar-nav { display: none; }
  .hero { padding: 60px 20px 50px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .membership-banner { padding: 28px 20px; }
  .section { padding: 48px 20px; }
  .cart-drawer { width: 100%; }
}

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