/* ============================================================
   NAYEL COMMERCE LLC — Main Stylesheet
   ============================================================ */

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

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:            #F8F7F4;
  --white:         #FFFFFF;
  --black:         #0A0A0A;
  --dark:          #111111;
  --mid:           #3A3A3A;
  --gray:          #6B6B6B;
  --light-gray:    #E8E7E3;
  --very-light:    #F0EFE9;
  --accent:        #B8953E;
  --accent-hover:  #A07E30;
  --accent-light:  rgba(184,149,62,0.12);
  --amazon:        #FF9900;
  --amazon-dark:   #E08800;

  --ff-head: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --sh-xs:  0 1px 3px rgba(0,0,0,0.06);
  --sh-sm:  0 2px 8px rgba(0,0,0,0.07);
  --sh-md:  0 6px 20px rgba(0,0,0,0.09);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.13);
  --sh-xl:  0 24px 64px rgba(0,0,0,0.18);

  --r-sm:  4px;
  --r:     10px;
  --r-lg:  18px;
  --r-xl:  28px;

  --ease:  cubic-bezier(0.4, 0, 0.2, 1);
  --t:     0.28s var(--ease);
  --t-lg:  0.55s var(--ease);

  --max-w: 1280px;
  --px:    clamp(20px, 4vw, 48px);
}

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

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; transition: color var(--t); }
button { cursor: pointer; font-family: var(--ff-body); border: none; background: none; }
ul, ol { list-style: none; }

/* ─── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }

/* ─── Header ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--t), box-shadow var(--t), padding var(--t);
}
.site-header.scrolled {
  background: rgba(248,247,244,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--light-gray);
  padding: 13px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.logo img { height: 42px; width: auto; object-fit: contain; }
.logo-name {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--t);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--dark);
  color: var(--white);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: background var(--t), transform var(--t);
}
.btn-cart:hover { background: var(--accent); transform: translateY(-1px); }

.cart-count {
  background: var(--amazon);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-count.has-items { display: flex; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-head);
  font-size: 34px;
  color: var(--dark);
  font-weight: 500;
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-close {
  position: absolute;
  top: 22px; right: var(--px);
  font-size: 28px;
  color: var(--gray);
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,62,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--light-gray);
}
.btn-outline:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
}
.btn-amazon {
  background: var(--amazon);
  color: var(--black);
  border-color: var(--amazon);
  font-weight: 700;
}
.btn-amazon:hover {
  background: var(--amazon-dark);
  border-color: var(--amazon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,153,0,0.35);
}
.btn-sm { padding: 10px 20px; font-size: 12px; }
.btn-lg { padding: 17px 38px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Section Headers ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 22px; height: 1.5px;
  background: var(--accent);
}
.section-title {
  font-family: var(--ff-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--accent); }
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-bg-panel {
  position: absolute;
  top: 0; right: 0;
  width: 52%;
  height: 100%;
  background: var(--very-light);
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 60px 0;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1.5px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(38px, 5.5vw, 74px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-lead {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 440px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 36px;
  border-top: 1px solid var(--light-gray);
}
.stat-num {
  font-family: var(--ff-head);
  font-size: 30px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Hero visual — product showcase tiles */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  width: 100%;
  max-width: 460px;
}
.showcase-tile {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  transition: transform var(--t), box-shadow var(--t);
}
.showcase-tile:hover { transform: translateY(-6px); box-shadow: var(--sh-xl); }
.showcase-tile:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}
.showcase-tile img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform var(--t-lg);
}
.showcase-tile:hover img { transform: scale(1.06); }

/* Product placeholder (when no real image) */
.product-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, var(--very-light) 0%, #e4e2d9 100%);
  color: var(--accent);
}
.product-placeholder svg { opacity: 0.55; }
.product-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ─── Product Cards ──────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: transform var(--t), box-shadow var(--t);
  display: flex;
  flex-direction: column;
  border: 1px solid transparent;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-xl);
  border-color: var(--light-gray);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: var(--very-light);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 28px;
  transition: transform var(--t-lg);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  z-index: 1;
}
.badge-new { background: #22C55E; }

.product-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}
.product-name {
  font-family: var(--ff-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 9px;
}
.product-desc {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}
.product-price {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}
.product-price small {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--ff-body);
}
.product-actions { display: flex; gap: 10px; }
.product-actions .btn {
  flex: 1;
  padding: 11px 14px;
  font-size: 12px;
}

/* ─── Trust Strip ────────────────────────────────────────────── */
.trust-section { background: var(--dark); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.trust-item { text-align: center; }
.trust-icon-wrap {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: background var(--t), border-color var(--t);
}
.trust-item:hover .trust-icon-wrap {
  background: rgba(184,149,62,0.18);
  border-color: var(--accent);
}
.trust-title {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.trust-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ─── About Section ──────────────────────────────────────────── */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-main {
  border-radius: var(--r-xl);
  background: var(--very-light);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 180px;
  background: var(--accent);
  border-radius: var(--r-xl);
  padding: 22px;
  text-align: center;
  box-shadow: var(--sh-xl);
}
.about-badge-num {
  font-family: var(--ff-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.about-badge-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.4;
}
.about-content { padding: 20px 0 40px; }
.about-content .section-title { text-align: left; margin-bottom: 18px; }
.about-content .section-tag { margin-bottom: 12px; }
.about-content .section-tag::before { display: none; }
.about-p {
  font-size: 15.5px;
  color: var(--gray);
  line-height: 1.82;
  margin-bottom: 14px;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 28px 0 36px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.5;
}
.check-icon {
  width: 20px; height: 20px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

/* ─── Amazon CTA Banner ──────────────────────────────────────── */
.amazon-cta {
  background: linear-gradient(130deg, #0f0f0f 0%, #1a1220 100%);
  text-align: center;
}
.amazon-cta-inner { max-width: 620px; margin: 0 auto; }
.amazon-cta h2 {
  font-family: var(--ff-head);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin-bottom: 18px;
}
.amazon-cta h2 em { font-style: italic; color: var(--amazon); }
.amazon-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  margin-bottom: 36px;
}
.amazon-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo img { height: 38px; }
.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.75;
  max-width: 270px;
}
.footer-contact { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.footer-contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact a:hover { color: var(--accent); }
.footer-contact svg { flex-shrink: 0; opacity: 0.6; }

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  transition: color var(--t);
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-amazon-link {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t);
}
.footer-amazon-link:hover { color: var(--amazon); }

/* ─── Animations ─────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.fade-up.is-visible,
.fade-left.is-visible,
.fade-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}
.d-1 { transition-delay: 0.08s; }
.d-2 { transition-delay: 0.16s; }
.d-3 { transition-delay: 0.24s; }
.d-4 { transition-delay: 0.32s; }
.d-5 { transition-delay: 0.40s; }
.d-6 { transition-delay: 0.48s; }

/* ─── Toast ──────────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 28px; right: 28px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--r);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: var(--sh-xl);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(80px);
  opacity: 0;
  transition: transform var(--t), opacity var(--t);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-check {
  width: 20px; height: 20px;
  background: #22C55E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Page: Shop ─────────────────────────────────────────────── */
.page-hero {
  padding: 150px 0 72px;
  background: var(--very-light);
  border-bottom: 1px solid var(--light-gray);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.page-hero p { font-size: 16px; color: var(--gray); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--gray);
  margin-bottom: 14px;
  justify-content: center;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb span { opacity: 0.4; }

/* ─── Page: Cart ─────────────────────────────────────────────── */
.cart-page { min-height: 80vh; padding-top: 90px; }
.cart-page-header {
  padding: 60px 0 44px;
  border-bottom: 1px solid var(--light-gray);
}
.cart-page-header h1 {
  font-family: var(--ff-head);
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.025em;
}
.cart-page-header .cart-count-text {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
  padding: 48px 0 100px;
}

.cart-items-list { display: flex; flex-direction: column; gap: 16px; }

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 20px;
  align-items: start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--sh-xs);
  border: 1px solid transparent;
  transition: box-shadow var(--t), border-color var(--t);
}
.cart-item:hover { box-shadow: var(--sh-md); border-color: var(--light-gray); }

.cart-item-img {
  width: 100px; height: 100px;
  background: var(--very-light);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }

.cart-item-name {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 5px;
}
.cart-item-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.qty-row { display: flex; align-items: center; gap: 14px; }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--light-gray);
  border-radius: 100px;
  overflow: hidden;
}
.qty-btn {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--dark);
  transition: background var(--t);
}
.qty-btn:hover { background: var(--very-light); }
.qty-val {
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  min-width: 32px;
  text-align: center;
}
.remove-item {
  font-size: 12px;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--t);
}
.remove-item:hover { color: #EF4444; }

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-item-price {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
}
.cart-amz-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--amazon);
  color: var(--black);
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  transition: background var(--t), transform var(--t);
}
.cart-amz-link:hover { background: var(--amazon-dark); transform: translateY(-1px); }

/* Cart Summary */
.cart-summary {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-md);
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: var(--ff-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}
.summary-rows { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.summary-row .label { color: var(--gray); }
.summary-row .val { font-weight: 600; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  margin-bottom: 24px;
}
.summary-total .label {
  font-family: var(--ff-head);
  font-size: 17px;
  font-weight: 600;
}
.summary-total .val {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 700;
}
.checkout-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 14px;
  line-height: 1.65;
}
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  display: none;
}
.cart-empty.show { display: block; }
.cart-empty-ico { font-size: 60px; margin-bottom: 20px; opacity: 0.22; }
.cart-empty h3 {
  font-family: var(--ff-head);
  font-size: 28px;
  margin-bottom: 10px;
}
.cart-empty p { font-size: 15px; color: var(--gray); margin-bottom: 28px; }

/* ─── Policy Pages ───────────────────────────────────────────── */
.policy-wrap { max-width: 780px; margin: 0 auto; padding: 72px var(--px) 100px; }
.policy-wrap h2 {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 14px;
  padding-top: 8px;
}
.policy-wrap h2:first-of-type { margin-top: 0; }
.policy-wrap p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.policy-wrap ul, .policy-wrap ol {
  margin: 14px 0 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.policy-wrap li { font-size: 15px; color: var(--gray); line-height: 1.7; }
.policy-wrap a { color: var(--accent); text-decoration: underline; text-decoration-color: transparent; transition: text-decoration-color var(--t); }
.policy-wrap a:hover { text-decoration-color: var(--accent); }
.policy-callout {
  background: var(--very-light);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--r) var(--r) 0;
  margin: 22px 0;
}
.policy-callout p { margin: 0; font-size: 14px; font-style: italic; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 400px; }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 768px) {
  :root { --px: 20px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-bg-panel { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; padding: 0 0 8px; }
  .showcase-grid { max-width: 100%; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }

  .products-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .trust-grid { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }

  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-right { grid-column: 1 / -1; flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .products-grid { max-width: 100%; }
  .trust-grid { grid-template-columns: 1fr; }
  .product-actions { flex-direction: column; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item-img { width: 80px; height: 80px; }
}
