/* ========================================
   BabyShop Zimbabwe - Main Stylesheet
   Colors: #ED9321 | #616160 | #F9E1C1
======================================== */

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

:root {
  --orange:      #ED9321;
  --gray:        #616160;
  --cream:       #F9E1C1;
  --dark:        #2a2928;
  --light:       #fff9f4;
  --orange-dark: #c97a18;
  --orange-light:#fdf3e3;
  --white:       #ffffff;
  --shadow:      0 4px 24px rgba(237,147,33,0.13);
  --shadow-lg:   0 8px 40px rgba(237,147,33,0.18);
  --radius:      12px;
  --radius-lg:   20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* ====== TOP BAR ====== */
.topbar {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.topbar a { color: #fff; text-decoration: underline; }

/* ====== NAV ====== */
header {
  background: #fff;
  border-bottom: 3px solid var(--cream);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 18px rgba(237,147,33,0.10);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 24px; gap: 20px;
}
.logo img { height: 62px; object-fit: contain; }
nav ul { list-style: none; display: flex; align-items: center; gap: 6px; }
nav ul li a {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--gray);
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--orange-light);
  color: var(--orange);
}
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  border-radius: 25px !important;
  padding: 9px 22px !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }

.cart-btn {
  position: relative;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  width: 44px; height: 44px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cart-btn:hover { background: var(--orange); color: #fff; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--orange);
  color: #fff; font-size: 0.7rem; font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--orange); border-radius: 3px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 2px solid var(--cream);
  padding: 16px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--cream); }
.mobile-menu ul li a {
  display: block; padding: 12px 4px;
  font-weight: 700; color: var(--gray);
  font-size: 1rem;
}
.mobile-menu ul li a:hover { color: var(--orange); }

/* ====== FOOTER ====== */
footer {
  background: var(--dark);
  color: #ccc;
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding: 0 24px;
}
.footer-brand img { height: 52px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: #aaa; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--cream); font-size: 1.1rem;
  margin-bottom: 16px; padding-bottom: 8px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 0.9rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-contact p { font-size: 0.9rem; color: #aaa; margin-bottom: 10px; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact span { color: var(--orange); font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid #3a3938;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 0.83rem;
  color: #666;
}
.footer-bottom a { color: var(--orange); }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #3a3938;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; color: #ccc;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--orange); color: #fff; }

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(249,225,193,0.92) 0%, rgba(249,225,193,0.6) 55%, rgba(249,225,193,0.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 80px 24px;
  max-width: 600px; margin-left: 80px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff; font-size: 0.78rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--dark);
  line-height: 1.12;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--orange); }
.hero p {
  font-size: 1.1rem; color: var(--gray);
  margin-bottom: 32px; max-width: 460px;
  font-weight: 600;
}
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff; font-weight: 800; font-size: 1rem;
  padding: 14px 34px; border-radius: 30px;
  border: none; cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(237,147,33,0.35);
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(237,147,33,0.45); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange); font-weight: 800; font-size: 1rem;
  padding: 13px 32px; border-radius: 30px;
  border: 2.5px solid var(--orange);
  cursor: pointer; transition: all 0.25s;
}
.btn-outline:hover { background: var(--orange); color: #fff; }

/* ====== SECTION COMMON ====== */
.section { padding: 70px 0; }
.section-alt { background: var(--orange-light); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow {
  display: inline-block;
  color: var(--orange); font-weight: 800;
  font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); color: var(--dark); margin-bottom: 12px; }
.section-head p { color: var(--gray); max-width: 540px; margin: 0 auto; font-size: 1rem; }
.divider {
  width: 56px; height: 4px;
  background: var(--orange); border-radius: 3px;
  margin: 14px auto 0;
}

/* ====== CATEGORIES GRID ====== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  min-height: 320px;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  transition: transform 0.5s;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(42,41,40,0.82) 0%, rgba(0,0,0,0.1) 60%);
}
.cat-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: #fff;
}
.cat-info h3 { font-size: 1.5rem; margin-bottom: 6px; }
.cat-info p { font-size: 0.87rem; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.cat-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff; font-weight: 700; font-size: 0.83rem;
  padding: 7px 18px; border-radius: 20px;
  transition: background 0.2s;
}
.cat-btn:hover { background: var(--orange-dark); }

/* ====== PRODUCT GRID ====== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/3.4;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--orange);
  color: #fff; font-size: 0.72rem; font-weight: 800;
  padding: 4px 10px; border-radius: 12px;
  letter-spacing: 0.05em;
}
.product-badge.new { background: #27ae60; }
.product-body { padding: 16px; }
.product-body h3 { font-family: 'Nunito', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.product-body .age { font-size: 0.78rem; color: var(--gray); margin-bottom: 8px; }
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--orange); margin-bottom: 12px; }
.product-price del { color: #bbb; font-size: 0.85rem; font-weight: 400; margin-left: 6px; }
.add-to-cart {
  width: 100%; background: var(--orange);
  color: #fff; border: none; border-radius: 8px;
  padding: 10px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s;
}
.add-to-cart:hover { background: var(--orange-dark); }

/* ====== WHY US ====== */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  text-align: center; padding: 36px 24px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-bottom: 4px solid var(--orange);
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-5px); }
.why-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  border-radius: 50%; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ====== BANNER / PROMO ====== */
.promo-banner {
  background: var(--orange);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '👶';
  position: absolute;
  font-size: 10rem;
  opacity: 0.1;
  left: 5%; top: 50%; transform: translateY(-50%);
}
.promo-banner::after {
  content: '🍼';
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  right: 5%; top: 50%; transform: translateY(-50%);
}
.promo-banner h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 10px; }
.promo-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }
.btn-white {
  display: inline-block;
  background: #fff; color: var(--orange);
  font-weight: 800; font-size: 1rem;
  padding: 13px 32px; border-radius: 30px;
  transition: all 0.25s; border: 2.5px solid #fff;
}
.btn-white:hover { background: transparent; color: #fff; }

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
  border-left: 4px solid var(--orange);
}
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.93rem; color: var(--gray); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--orange); font-size: 1rem;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-loc { font-size: 0.78rem; color: #aaa; }

/* ====== ABOUT PAGE ====== */
.about-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--orange-light) 100%);
  padding: 80px 0;
  text-align: center;
}
.about-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--dark); margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; color: var(--gray); max-width: 600px; margin: 0 auto; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 380px; object-fit: cover; }
.about-text h2 { font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: var(--gray); margin-bottom: 16px; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; text-align: center;
}
.stat-box {
  background: #fff; border-radius: var(--radius);
  padding: 28px 16px; box-shadow: var(--shadow);
}
.stat-box .num { font-size: 2.4rem; font-weight: 900; color: var(--orange); font-family: 'Playfair Display', serif; }
.stat-box p { font-size: 0.85rem; color: var(--gray); font-weight: 600; }

/* ====== CONTACT PAGE ====== */
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-form-wrap {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form-wrap h2 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form-wrap > p { color: var(--gray); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.88rem; margin-bottom: 6px; color: var(--dark); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--cream);
  border-radius: 10px; font-family: 'Nunito', sans-serif;
  font-size: 0.93rem; color: var(--dark);
  background: var(--light);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--orange);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info h3 { font-size: 1.5rem; margin-bottom: 20px; }
.info-card {
  background: #fff; border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  margin-bottom: 16px;
  display: flex; gap: 16px; align-items: flex-start;
}
.info-card .icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.info-card h4 { font-size: 0.93rem; font-weight: 800; margin-bottom: 4px; }
.info-card p { font-size: 0.87rem; color: var(--gray); }
.map-placeholder {
  background: var(--cream); border-radius: var(--radius);
  height: 220px; display: flex; align-items: center;
  justify-content: center; margin-top: 16px;
  font-size: 1rem; color: var(--gray); font-weight: 600;
  border: 2px dashed var(--orange);
}

/* ====== SHOP PAGE ====== */
.shop-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 32px; align-items: start;
}
.shop-sidebar {
  background: #fff; border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
  position: sticky; top: 90px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 {
  font-size: 0.88rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--dark); margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 2px solid var(--cream);
}
.filter-check { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; cursor: pointer; font-size: 0.9rem; }
.filter-check input[type=checkbox] { accent-color: var(--orange); width: 16px; height: 16px; }
.price-range input { width: 100%; accent-color: var(--orange); }
.shop-main {}
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.shop-toolbar p { font-size: 0.9rem; color: var(--gray); }
.sort-select {
  padding: 8px 14px; border: 2px solid var(--cream);
  border-radius: 8px; font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; color: var(--dark); background: #fff;
}
.sort-select:focus { outline: none; border-color: var(--orange); }

/* ====== CART DRAWER ====== */
.cart-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.5); z-index: 9998;
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: -420px;
  width: 420px; height: 100vh;
  background: #fff; z-index: 9999;
  box-shadow: -4px 0 30px rgba(0,0,0,0.2);
  transition: right 0.35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-header {
  padding: 24px; border-bottom: 2px solid var(--cream);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-size: 1.3rem; }
.cart-close {
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; color: var(--gray);
  transition: color 0.2s;
}
.cart-close:hover { color: var(--orange); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--cream);
}
.cart-item img {
  width: 72px; height: 72px;
  object-fit: cover; border-radius: 10px;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
.cart-item-info p { font-size: 0.82rem; color: var(--gray); }
.cart-item-price { font-weight: 800; color: var(--orange); font-size: 0.95rem; }
.qty-ctrl {
  display: flex; align-items: center; gap: 8px; margin-top: 8px;
}
.qty-ctrl button {
  width: 26px; height: 26px; border-radius: 6px;
  border: 1.5px solid var(--cream); background: #fff;
  cursor: pointer; font-weight: 800; font-size: 1rem;
  transition: all 0.2s;
}
.qty-ctrl button:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.qty-ctrl span { font-weight: 700; min-width: 20px; text-align: center; }
.remove-item { background: none; border: none; cursor: pointer; color: #ddd; font-size: 1rem; transition: color 0.2s; padding: 4px; }
.remove-item:hover { color: #e74c3c; }
.cart-footer { padding: 20px; border-top: 2px solid var(--cream); }
.cart-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1.1rem; margin-bottom: 16px; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty .icon { font-size: 3rem; margin-bottom: 16px; }
.cart-empty p { color: var(--gray); margin-bottom: 20px; }

/* ====== ORDER MODAL ====== */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 10000;
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  width: 96%; max-width: 560px;
  max-height: 90vh; overflow-y: auto;
  padding: 36px; position: relative;
}
.modal h2 { font-size: 1.6rem; margin-bottom: 6px; }
.modal .subtitle { color: var(--gray); margin-bottom: 24px; font-size: 0.9rem; }
.modal-close {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--gray);
}
.modal-close:hover { color: var(--orange); }
.order-summary {
  background: var(--orange-light);
  border-radius: 10px; padding: 16px;
  margin-bottom: 20px; font-size: 0.88rem;
}
.order-summary h4 { font-size: 0.9rem; margin-bottom: 10px; color: var(--orange); }
.order-item-row { display: flex; justify-content: space-between; margin-bottom: 6px; }
.order-total-row { display: flex; justify-content: space-between; font-weight: 800; border-top: 1px solid #ecd3ac; padding-top: 10px; margin-top: 6px; }
.success-msg {
  display: none; text-align: center; padding: 20px 0;
}
.success-msg .icon { font-size: 3rem; margin-bottom: 16px; }
.success-msg h3 { font-size: 1.4rem; margin-bottom: 8px; color: #27ae60; }
.success-msg p { color: var(--gray); font-size: 0.93rem; }

/* ====== ADMIN ====== */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--dark); color: #ccc;
  padding: 0;
  position: fixed; width: 260px; height: 100vh;
  overflow-y: auto;
}
.admin-brand {
  padding: 24px 20px;
  border-bottom: 1px solid #3a3938;
  display: flex; align-items: center; gap: 12px;
}
.admin-brand img { height: 44px; filter: brightness(0) invert(1); }
.admin-brand span { font-weight: 800; font-size: 0.85rem; color: #aaa; letter-spacing: 0.08em; text-transform: uppercase; }
.admin-nav { padding: 16px 0; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 24px; font-size: 0.93rem; font-weight: 600;
  color: #aaa; cursor: pointer; transition: all 0.2s;
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { background: rgba(237,147,33,0.1); color: var(--orange); border-left-color: var(--orange); }
.admin-nav-item.active { background: rgba(237,147,33,0.12); color: var(--orange); border-left-color: var(--orange); }
.admin-nav-item .icon { font-size: 1.1rem; width: 20px; }
.admin-main { margin-left: 260px; padding: 0; background: #f5f5f3; min-height: 100vh; }
.admin-topbar {
  background: #fff; padding: 16px 32px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #eee; position: sticky; top: 0; z-index: 100;
}
.admin-topbar h1 { font-size: 1.3rem; color: var(--dark); }
.admin-content { padding: 32px; }
.admin-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-bottom: 32px;
}
.admin-card {
  background: #fff; border-radius: var(--radius);
  padding: 22px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--orange);
}
.admin-card .num { font-size: 2rem; font-weight: 900; color: var(--dark); font-family: 'Playfair Display', serif; }
.admin-card .label { font-size: 0.82rem; color: var(--gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.admin-card .trend { font-size: 0.8rem; color: #27ae60; font-weight: 700; margin-top: 8px; }
.admin-table-wrap {
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); overflow: hidden;
}
.admin-table-head {
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid #f0f0ef;
}
.admin-table-head h3 { font-size: 1rem; }
table { width: 100%; border-collapse: collapse; }
table thead tr { background: #fafaf9; }
table th { padding: 12px 20px; text-align: left; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); border-bottom: 2px solid #f0f0ef; }
table td { padding: 14px 20px; font-size: 0.9rem; border-bottom: 1px solid #f5f5f3; }
table tbody tr:hover { background: #fafaf9; }
.status-badge {
  display: inline-block; padding: 4px 10px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.04em;
}
.status-badge.pending { background: #fff3cd; color: #856404; }
.status-badge.confirmed { background: #d1ecf1; color: #0c5460; }
.status-badge.delivered { background: #d4edda; color: #155724; }
.btn-sm {
  padding: 6px 14px; font-size: 0.8rem; border-radius: 7px;
  font-weight: 700; cursor: pointer; border: none;
  transition: all 0.2s;
}
.btn-sm.edit { background: var(--cream); color: var(--gray); }
.btn-sm.edit:hover { background: var(--orange); color: #fff; }
.btn-sm.delete { background: #fde8e8; color: #c0392b; }
.btn-sm.delete:hover { background: #c0392b; color: #fff; }
.product-thumb { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; }
.admin-form-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 24px;
}
.admin-form-card h3 { font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid #f0f0ef; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.img-upload-area {
  border: 2px dashed var(--cream); border-radius: 10px;
  padding: 32px; text-align: center; cursor: pointer;
  transition: all 0.2s; background: #fafaf9;
}
.img-upload-area:hover { border-color: var(--orange); background: var(--orange-light); }
.img-upload-area .icon { font-size: 2.5rem; margin-bottom: 12px; }
.img-upload-area p { font-size: 0.88rem; color: var(--gray); }
.tab-nav { display: flex; gap: 4px; margin-bottom: 24px; flex-wrap: wrap; }
.tab-btn {
  padding: 9px 20px; border-radius: 8px; border: none;
  font-weight: 700; font-size: 0.88rem; cursor: pointer;
  background: #fff; color: var(--gray);
  transition: all 0.2s; box-shadow: 0 1px 6px rgba(0,0,0,0.07);
}
.tab-btn.active { background: var(--orange); color: #fff; }

/* ====== PAGE HERO BANNER ====== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--orange-light) 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(237,147,33,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--dark); margin-bottom: 12px; }
.page-hero p { color: var(--gray); font-size: 1rem; max-width: 520px; }
.breadcrumb { font-size: 0.84rem; color: var(--gray); margin-bottom: 14px; }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

/* ====== FLASH MESSAGES ====== */
.flash { padding: 14px 20px; border-radius: 10px; margin-bottom: 20px; font-weight: 600; font-size: 0.92rem; }
.flash.success { background: #d4edda; color: #155724; border-left: 4px solid #27ae60; }
.flash.error { background: #f8d7da; color: #721c24; border-left: 4px solid #e74c3c; }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .admin-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav ul, .desktop-only { display: none; }
  .hamburger { display: flex; }
  .hero-content { margin-left: 24px; }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; right: -100%; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-cards { grid-template-columns: 1fr 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { margin-left: 20px; max-width: 90%; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .admin-cards { grid-template-columns: 1fr; }
}
