/* =============================================
   MEEZAB HONEY — Main Stylesheet
   ============================================= */

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

:root {
  --honey:      #F59E0B;
  --honey-dark: #D97706;
  --honey-deep: #B45309;
  --brown:      #3D1C02;
  --brown-dark: #1C0A00;
  --cream:      #FFFBF0;
  --cream-dark: #FFF3D6;
  --white:      #FFFFFF;
  --text:       #1a1a1a;
  --text-muted: #6b7280;
  --border:     #e5e7eb;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.14);
  --radius:     12px;
  --radius-sm:  6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

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

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

/* ---- Topbar ---- */
.topbar {
  background: var(--brown-dark);
  color: #ccc;
  font-size: 12px;
  padding: 7px 0;
}
.topbar a { color: var(--honey); }
.topbar .tb-links a { margin-left: 18px; }
.topbar .tb-links a:hover { color: var(--white); }

/* ---- Navbar ---- */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-logo {
  max-height: 80px;
  max-width: 350px;
  height: auto;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  padding: 6px 14px !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--honey-dark) !important; }
.nav-link.active { color: var(--honey-dark) !important; }
.navbar-icons a {
  position: relative;
  margin-left: 12px;
  color: var(--text);
  font-size: 18px;
  transition: color .2s;
  display: flex; align-items: center; justify-content: center;
}
.navbar-icons a:hover { color: var(--honey-dark); }
.badge-count {
  position: absolute;
  top: -7px; right: -9px;
  background: var(--honey);
  color: var(--white);
  border-radius: 50%;
  font-size: 9px;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}

.cart-badge, .wishlist-badge {
  position: absolute !important;
  top: -7px !important; right: -9px !important;
  background: var(--honey) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  font-size: 9px !important;
  width: 18px !important; height: 18px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  font-weight: 700 !important;
  z-index: 1000 !important;
}

/* Hide badges when they contain 0 or are empty */
.cart-badge:empty, .wishlist-badge:empty,
.cart-badge[data-count="0"], .wishlist-badge[data-count="0"] {
  display: none !important;
}

/* Hide badges when text content is "0" */
.cart-badge:contains("0"), .wishlist-badge:contains("0") {
  display: none !important;
}

/* Additional hide rules for zero values */
.cart-badge[style*="display: none"], .wishlist-badge[style*="display: none"] {
  display: none !important;
}

/* ---- Buttons ---- */
.btn-honey {
  background: var(--honey);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-honey:hover { background: var(--honey-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.4); color: var(--white); }

.btn-outline-honey {
  background: transparent;
  border: 2px solid var(--honey);
  color: var(--honey);
  border-radius: 50px;
  padding: 10px 26px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-honey:hover { background: var(--honey); color: var(--white); transform: translateY(-2px); }

.btn-brown {
  background: var(--brown-dark);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-brown:hover { background: var(--brown); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--brown-dark);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

/* ---- Hero Slider ---- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15);
  border: 1px solid rgba(245,158,11,.3);
  color: var(--honey);
  font-size: 12px; font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
}
.hero-stat {
  display: flex; flex-direction: column;
}
.hero-stat strong {
  font-size: 26px; font-weight: 800; color: var(--honey); line-height: 1;
}
.hero-stat span {
  font-size: 12px; color: rgba(255,255,255,.7); margin-top: 2px;
}
.hero-floating {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  font-size: 22px;
}
.hero-float-1 { bottom: 40px; left: -20px; }
.hero-float-2 { top: 40px; right: -20px; }
.hero-floating div { font-size: 12px; line-height: 1.4; }
.hero-floating strong { display: block; font-size: 13px; color: var(--brown-dark); }

/* ---- Section Styles ---- */
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.bg-cream { background: var(--cream); }

.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--brown-dark);
  margin-bottom: 12px;
}
.section-title p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honey-dark);
  display: block;
  margin-bottom: 10px;
}

/* ---- Category Cards ---- */
.cat-card { transition: transform .3s; display: block; }
.cat-card:hover .cat-inner { transform: scale(1.08); }
.cat-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: #fff;
  padding: 32px 16px 14px;
}

/* Ensure proper grid layout */
.row {
  position: relative;
  z-index: 1;
}

/* ---- Product Cards ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.product-card-actions {
  position: absolute;
  top: 10px; right: 10px;
  display: flex; flex-direction: column; gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all .25s;
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card-actions a {
  width: 36px; height: 36px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .2s;
  color: var(--text);
}
.product-card-actions a:hover { background: var(--honey); color: var(--white); }
.product-badge {
  position: absolute; 
  top: 10px; 
  left: 10px;
  background: var(--honey);
  color: var(--white);
  font-size: 10px; 
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  pointer-events: none;
}
.product-badge.premium { background: #10b981; }
.product-badge.new { background: #10b981; }
.product-badge.sale { background: #ef4444; }
.product-badge.organic { background: #22c55e; }
.product-badge.limited { background: #f59e0b; }
.product-badge.bestseller { background: #8b5cf6; }
.product-card-body { 
  padding: 16px; 
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--honey-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-card-body h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--brown-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.product-rating {
  color: var(--honey);
  font-size: 12px;
  margin-bottom: 8px;
}
.product-rating span { color: var(--text-muted); margin-left: 4px; font-size: 11px; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-price .price {
  font-size: 18px;
  font-weight: 800;
  color: var(--honey-dark);
}
.product-price .price-old {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.btn-add-cart {
  width: 100%;
  background: var(--cream-dark);
  border: 2px solid var(--honey);
  color: var(--honey-deep);
  border-radius: 8px;
  padding: 9px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.btn-add-cart:hover { background: var(--honey); color: var(--white); }

/* ---- Feature Cards ---- */
.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform .25s;
  height: 100%;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  color: var(--white);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(245,158,11,.3);
}
.feature-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--brown-dark);
  margin-bottom: 10px;
}
.feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; }

/* ---- Promo Banner ---- */
.promo-banner {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  border-radius: 20px;
  padding: 60px 50px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.promo-banner::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: rgba(245,158,11,.08);
  border-radius: 50%;
  top: -80px; right: -80px;
}
.promo-banner h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 12px;
  color: var(--white);
}
.promo-banner p {
  font-size: 15px; color: rgba(255,255,255,.75);
  max-width: 500px; margin-bottom: 28px; line-height: 1.8;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: transform .25s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: var(--honey); font-size: 14px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--brown-dark); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s;
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); }
.blog-card-img { height: 200px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-tag {
  background: var(--cream-dark);
  color: var(--honey-deep);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 3px 10px; border-radius: 50px;
  display: inline-block; margin-bottom: 10px;
}
.blog-card-body h5 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 12px; line-height: 1.45;
}
.blog-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-muted);
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ---- Newsletter ---- */
.newsletter {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter h2 { font-size: 32px; color: var(--brown-dark); margin: 12px 0; }
.newsletter p { font-size: 15px; color: var(--text-muted); margin-bottom: 24px; }
.newsletter-form {
  display: flex; gap: 8px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 6px 6px 6px 20px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1; border: none; outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; background: transparent; color: var(--text);
}
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ---- Footer ---- */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand span { color: var(--honey); }
.footer p { font-size: 13px; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; transition: all .2s;
}
.footer-social a:hover { background: var(--honey); color: var(--white); }
.footer-heading {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-links a:hover { color: var(--honey); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,.55);
  margin-bottom: 10px; line-height: 1.5;
}
.footer-contact-item i { color: var(--honey); font-size: 14px; margin-top: 1px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 22px 0;
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); transition: color .2s; }
.footer-bottom a:hover { color: var(--honey); }

/* ---- Shop Filter Sidebar ---- */
.filter-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  position: sticky;
  top: 80px;
}
.filter-block { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.filter-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-title {
  font-family: 'Poppins', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 6px;
}
.filter-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
  cursor: pointer; padding: 4px 0;
  transition: color .2s;
}
.filter-check:hover { color: var(--brown-dark); }
.filter-check input { accent-color: var(--honey); cursor: pointer; }
.price-range input[type=range] { accent-color: var(--honey); width: 100%; }

/* ---- Shop Toolbar ---- */
.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 24px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.view-toggle { display: flex; gap: 4px; }
.view-toggle a {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: all .2s;
}
.view-toggle a.active,
.view-toggle a:hover { background: var(--honey); color: var(--white); }

/* ---- Page Header ---- */
.page-header {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 40px 0;
  color: var(--white);
}
.page-header h1 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--white); margin-bottom: 8px;
}
.breadcrumb-item a { color: var(--honey); }
.breadcrumb-item.active { color: rgba(255,255,255,.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---- Product Detail ---- */
.product-main-img {
  background: linear-gradient(135deg, var(--cream), var(--cream-dark));
  border-radius: 16px;
  height: 380px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.product-thumb {
  width: 80px; height: 80px;
  border-radius: 10px;
  background: var(--cream);
  border: 2px solid var(--border);
  cursor: pointer; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.product-thumb:hover, .product-thumb.active { border-color: var(--honey); }
.tab-honey .nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-muted);
  padding: 12px 20px;
  border: none; border-radius: 0;
  background: none;
}
.tab-honey .nav-link.active {
  color: var(--honey-dark);
  border-bottom: 2px solid var(--honey-dark);
}
.progress-bar-wrap {
  height: 8px; background: var(--border); border-radius: 50px; overflow: hidden;
}
.progress-bar-fill {
  height: 100%; background: var(--honey); border-radius: 50px;
}

/* ---- Qty Control ---- */
.qty-control {
  display: flex; align-items: center;
  border: 2px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.qty-control button {
  width: 38px; height: 38px;
  background: var(--cream); border: none;
  font-size: 18px; font-weight: 700;
  cursor: pointer; transition: background .2s;
  color: var(--brown-dark);
}
.qty-control button:hover { background: var(--honey); color: var(--white); }
.qty-control input {
  width: 52px; text-align: center; border: none;
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--brown-dark);
  background: var(--white); outline: none;
}

/* ---- Cart ---- */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted);
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.cart-table td { padding: 16px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-product { display: flex; align-items: center; gap: 14px; }

/* ---- Account / Dashboard ---- */
.account-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.account-user-info {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 28px 20px;
  text-align: center;
  color: var(--white);
}
.account-user-info .avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--honey);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 700;
  margin: 0 auto 12px;
  border: 3px solid rgba(255,255,255,.3);
}
.account-nav a {
  display: flex; 
  align-items: center; 
  gap: 12px;
  padding: 13px 20px;
  font-size: 13px; 
  font-weight: 500;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: all .2s;
  position: relative;
  text-decoration: none;
}

.account-nav a:hover { 
  color: var(--honey-dark); 
  background: var(--cream); 
  text-decoration: none;
}

.account-nav a.active { 
  color: var(--honey-dark); 
  background: var(--cream); 
  border-left-color: var(--honey); 
  font-weight: 600; 
  text-decoration: none;
}

.account-nav a i { 
  width: 18px; 
  font-size: 16px; 
  text-align: center; 
  flex-shrink: 0;
}
.account-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.account-panel h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--brown-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.badge-status {
  font-size: 11px; font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px; display: inline-block;
}
.badge-status.delivered { background: rgba(16,185,129,.1); color: #10b981; }
.badge-status.processing { background: rgba(59,130,246,.1); color: #3b82f6; }
.badge-status.pending { background: rgba(245,158,11,.1); color: var(--honey-dark); }
.badge-status.cancelled { background: rgba(239,68,68,.1); color: #ef4444; }

/* ---- Order Tracking ---- */
.tracking-step {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
}
.tracking-step-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  position: relative;
}
.tracking-step.done .tracking-step-icon {
  background: var(--honey);
  color: var(--white);
}
.tracking-step-line {
  position: absolute; left: 50%; top: 100%;
  width: 2px; height: 32px;
  background: var(--border);
  transform: translateX(-50%);
}
.tracking-step.done .tracking-step-line { background: var(--honey); }

/* ---- Checkout ---- */
.checkout-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 16px;
  color: var(--brown-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}

/* ---- Contact ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 16px;
  transition: transform .2s;
}
.contact-info-card:hover { transform: translateY(-2px); }
.contact-info-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  color: var(--white);
  font-size: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ---- FAQ ---- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  padding: 18px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 14px;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: background .2s;
}
.faq-question:hover { background: var(--cream); }
.faq-answer {
  padding: 0 22px;
  font-size: 14px; color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-answer.open { max-height: 300px; padding: 0 22px 18px; }

/* ---- Wholesaler ---- */
.wholesale-plan {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: transform .25s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.wholesale-plan:hover { transform: translateY(-4px); }
.wholesale-plan.featured {
  background: linear-gradient(135deg, var(--honey), var(--honey-dark));
  color: var(--white);
}
.wholesale-plan h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 8px;
}

/* ---- Login / Register ---- */
.auth-wrapper {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 40px 16px;
}
.auth-card {
  background: var(--white);
  border-radius: 20px;
  padding: 44px 40px;
  width: 100%; max-width: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.auth-brand {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 800;
  color: var(--brown-dark); text-align: center;
  margin-bottom: 6px;
}
.auth-brand span { color: var(--honey); }
.auth-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; font-weight: 700;
  color: var(--brown-dark); text-align: center;
  margin-bottom: 6px;
}
.auth-subtitle { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.form-label { font-size: 13px; font-weight: 600; color: var(--brown-dark); margin-bottom: 6px; }
.form-control {
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  transition: border-color .2s;
}
.form-control:focus { border-color: var(--honey); box-shadow: 0 0 0 3px rgba(245,158,11,.12); outline: none; }

/* ---- Wishlist ---- */
.wishlist-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  transition: transform .2s;
}
.wishlist-item:hover { transform: translateX(4px); }

/* ---- Toast Notifications ---- */
.toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999;
  display: flex; flex-direction: column; gap: 10px;
  pointer-events: none;
}
.toast-notification {
  background: var(--brown-dark);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  animation: slideInToast .3s ease;
  pointer-events: all;
  max-width: 320px;
}
.toast-notification i { color: var(--honey); font-size: 16px; }
@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeOutToast {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}
.toast-notification.hide { animation: fadeOutToast .3s ease forwards; }

/* ---- Product Action Buttons ---- */
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.btn-wishlist,
.btn-save {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  color: var(--text-muted);
}

.btn-wishlist:hover {
  border-color: #e91e63;
  color: #e91e63;
  background: #fef5f7;
  transform: translateY(-2px);
}

.btn-wishlist.active {
  background: #e91e63;
  border-color: #e91e63;
  color: var(--white);
}

.btn-save:hover {
  border-color: var(--honey);
  color: var(--honey);
  background: #fffbeb;
  transform: translateY(-2px);
}

.btn-save.active {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--white);
}

.btn-add-cart {
  flex: 1;
  height: 40px;
  border: none;
  background: var(--brown);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: var(--brown-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 28, 2, 0.3);
}

.btn-add-cart:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-actions {
    gap: 6px;
  }
  
  .btn-wishlist,
  .btn-save {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .btn-add-cart {
    height: 36px;
    font-size: 12px;
  }
}

/* ---- Pagination ---- */
.pagination { gap: 2px; }
.page-link {
  color: var(--honey-dark);
  border-color: var(--border);
  font-size: 13px; padding: 6px 10px;
  border-radius: 6px;
  line-height: 1;
}
.page-link i { font-size: 11px; line-height: 1; }
.page-item.active .page-link { background: var(--honey); border-color: var(--honey); }
.page-link:hover { background: var(--cream); color: var(--honey-dark); }

/* ---- Footer Logo ---- */
.footer-logo {
  max-height: 80px;
  max-width: 350px;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  .section-pad { padding: 52px 0; }
  .promo-banner { padding: 36px 24px; }
  .product-card-img { height: 180px; }
  .hero-stats { gap: 20px; }
  .newsletter-form { flex-direction: column; padding: 12px; border-radius: 14px; }
  .newsletter-form .btn-honey { width: 100%; justify-content: center; }
  .auth-card { padding: 32px 24px; }
}

@media (max-width: 991px) {
  .filter-sidebar { position: relative; top: 0; }
}
