/* ===== SOULCRAFTBAZAAR — MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@500;700&display=swap');

:root {
  --primary: #f55f51;
  --primary-hover: #d86e89;
  --secondary: #d86e89;
  --accent: #fe8e06;
  --accent-soft: #f9948c;
  --accent-soft-rgb: 249,148,140;
  --cream: #FFFFFF;
  --ink: #d86e89;
  --rust: var(--primary);
  --gold: var(--accent);
  --sage: var(--secondary);
  --blush: #f9948c;
  --rust-light: #f9948c;
  --white: #FFFFFF;
  --gray: #d86e89;
  --border: #f9948c;
  --shadow: rgba(216,110,137,0.16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-accent: 'Space Grotesk', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  box-shadow: 0 2px 12px var(--shadow);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
}

.navbar-logo .logo-icon {
  width: 42px;
  height: 42px;
}

.navbar-logo .logo-icon rect { fill: var(--secondary); }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a, .nav-links button {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links button:hover,
.nav-links a.active { background: var(--blush); color: var(--rust); }

.nav-links a.active { font-weight: 600; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  z-index: 999;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover { display: block; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.85rem;
  border-radius: 0;
  color: var(--ink);
  transition: background 0.12s;
}

.dropdown-menu a:hover { background: var(--blush); color: var(--rust); }

.dropdown-menu .cat-emoji { font-size: 1rem; }

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon-btn {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--ink);
  font-size: 1.15rem;
  transition: background 0.15s;
  position: relative;
}

.nav-icon-btn:hover { background: var(--blush); color: var(--rust); }

.badge {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--rust);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 55%, var(--accent) 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, var(--rust) 1px, transparent 1px);
  background-size: 40px 40px, 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-text { color: var(--white); }

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.hero-title .highlight {
  color: var(--rust);
  display: block;
}

.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  max-width: 420px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.02em;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  width: 360px;
  height: 380px;
  position: relative;
}

.hero-product-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(var(--accent-soft-rgb),0.32);
  border-radius: 20px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}

.hero-product-emoji { font-size: 5rem; line-height: 1; }

.hero-product-label {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.1rem;
}

.hero-product-price {
  color: var(--gold);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.3rem;
}

.hero-badge-float {
  position: absolute;
  top: -12px; right: -12px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.15;
}

.section-subtitle {
  margin-top: 0.6rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== CATEGORIES ===== */
.categories-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.25rem;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.category-card:hover {
  border-color: var(--rust);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.category-emoji { font-size: 2.2rem; }

.category-name {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.category-count {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ===== OFFER BANNER ===== */
.offer-section {
  padding: 4rem 2rem;
  background: var(--blush);
}

.offer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.offer-card {
  border-radius: 18px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s;
}

.offer-card:hover { transform: scale(1.02); }

.offer-card.yellow {
  background: var(--gold);
}

.offer-card.coral {
  background: var(--rust);
}

.offer-label {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.offer-price {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  -webkit-text-stroke: 3px var(--secondary);
  text-shadow: 4px 4px 0 var(--secondary);
}

.offer-card.yellow .offer-price { color: var(--white); -webkit-text-stroke: 2px var(--secondary); text-shadow: 3px 3px 0 var(--secondary); }
.offer-card.coral .offer-price { color: var(--white); -webkit-text-stroke: 2px var(--secondary); }

.offer-sub {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
}

.offer-arrow {
  margin-top: 1.5rem;
  width: 40px; height: 40px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.offer-deco {
  position: absolute;
  right: -20px; bottom: -20px;
  font-size: 8rem;
  opacity: 0.12;
  pointer-events: none;
}

/* ===== NEW ARRIVALS ===== */
.arrivals-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow);
}

.product-img-wrap {
  height: 220px;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--rust);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px var(--shadow);
  transition: transform 0.15s;
}

.product-wish:hover { transform: scale(1.15); }

.product-info {
  padding: 1rem 1.1rem 1.2rem;
}

.product-cat {
  font-size: 0.7rem;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.product-name {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-sale {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--rust);
}

.price-orig {
  font-size: 0.8rem;
  color: var(--gray);
  text-decoration: line-through;
}

.price-off {
  font-size: 0.72rem;
  color: var(--sage);
  font-weight: 600;
}

.product-add {
  margin-top: 0.85rem;
  width: 100%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.65rem;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

.product-add:hover { background: var(--rust); }

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section .section-title { color: var(--white); }
.reviews-section .section-eyebrow { color: var(--gold); }
.reviews-section .section-subtitle { color: rgba(255,255,255,0.5); }

.reviews-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.bestseller-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}

.bestseller-emoji {
  font-size: 5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.bestseller-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bestseller-name {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.bestseller-price {
  color: var(--gold);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.bestseller-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-accent);
}

.review-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.25rem;
}

.review-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}

.review-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.review-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--rust);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-accent);
}

.review-name {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
}

.review-location {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

/* ===== BRAND COLLABORATIONS ===== */
.brands-section {
  padding: 4rem 2rem;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.brands-inner { max-width: 1200px; margin: 0 auto; }

.brands-label {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2rem;
}

.brands-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.brand-logo {
  width: 90px; height: 50px;
  background: var(--blush);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray);
  transition: border-color 0.15s, box-shadow 0.15s;
  text-align: center;
  padding: 0.4rem;
  line-height: 1.2;
}

.brand-logo:hover {
  border-color: var(--rust);
  box-shadow: 0 4px 12px var(--shadow);
  color: var(--rust);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.footer-brand .footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.2rem;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
  text-decoration: none;
}

.social-btn:hover { background: var(--accent); }

.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }

.footer-col ul li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.12s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-contact .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.12s;
}

.footer-links a:hover { color: var(--gold); }

/* ===== CART SIDEBAR ===== */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
}

.cart-overlay.open { display: block; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--ink);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}

.cart-close:hover { background: var(--blush); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--gray);
}

.cart-empty .cart-empty-icon { font-size: 3rem; margin-bottom: 0.75rem; }

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

.cart-item-img {
  width: 60px; height: 60px;
  background: var(--blush);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-accent);
  color: var(--ink);
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--rust);
  font-weight: 600;
  margin: 0.2rem 0;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}

.qty-num {
  font-size: 0.82rem;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}

.cart-item-remove {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: 1rem;
  padding: 4px;
  transition: color 0.12s;
}

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

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-family: var(--font-accent);
}

.cart-total-label { font-size: 0.85rem; color: var(--gray); }

.cart-total-val {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.btn-checkout {
  width: 100%;
  background: var(--rust);
  color: var(--white);
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.btn-checkout:hover { background: var(--primary-hover); }

/* ===== PAGE: CATEGORY ===== */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 70%, var(--accent) 100%);
  padding: 3rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.category-page-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.cat-tab {
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--ink);
  transition: all 0.15s;
}

.cat-tab.active, .cat-tab:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--white);
}

/* ===== PAGE: CONTACT ===== */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-ico {
  width: 36px; height: 36px;
  background: var(--rust-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--rust);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-det-text { font-size: 0.88rem; line-height: 1.5; color: var(--ink); }
.contact-det-text span { display: block; color: var(--gray); font-size: 0.78rem; margin-top: 0.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-accent);
  color: var(--ink);
}

.form-group input, .form-group textarea, .form-group select {
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s;
  outline: none;
}

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

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

/* ===== PAGE: ABOUT ===== */
.about-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-visual {
  background: var(--blush);
  border-radius: 20px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  min-height: 280px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
}

.value-icon { font-size: 1.8rem; margin-bottom: 0.75rem; }

.value-card h4 {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.value-card p { font-size: 0.83rem; color: var(--gray); line-height: 1.6; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--secondary);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 3000;
  transition: transform 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  z-index: 999;
  box-shadow: 0 8px 24px var(--shadow);
}

.mobile-nav.open { display: block; }

.mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }

.mobile-nav-links a, .mobile-nav-links button {
  display: block;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s;
}

.mobile-nav-links a:hover, .mobile-nav-links button:hover { background: var(--blush); color: var(--rust); }

.mobile-cat-list {
  display: none;
  padding: 0.25rem 0 0.25rem 1.2rem;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-cat-list.open { display: flex; }
.mobile-cat-list a { font-size: 0.84rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-image-container { width: 260px; height: 280px; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-cta { justify-content: center; }
  .hero-eyebrow { justify-content: center; }

  .reviews-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .cart-sidebar { width: 100%; }
  .categories-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
}

/* ===== FINAL THEME OVERRIDES ===== */
.navbar-logo .logo-icon rect {
  fill: #d86e89 !important;
}

.hero,
.page-header {
  background: linear-gradient(135deg, #d86e89 0%, #f55f51 62%, #fe8e06 100%) !important;
}

.reviews-section,
.footer {
  background: #d86e89 !important;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a.active,
.mobile-nav-links a:hover,
.mobile-nav-links button:hover {
  background: #f9948c !important;
  color: #f55f51 !important;
}

.brand-logo {
  background: #f9948c !important;
  border-color: #f9948c !important;
  color: #d86e89 !important;
}

.brand-logo:hover {
  border-color: #f55f51 !important;
  color: #f55f51 !important;
}
