/* =====================================================
   DEALPORT – E-commerce Landing Page Styles
   ===================================================== */

:root {
  --green-primary: #22c55e;
  --green-dark:    #16a34a;
  --green-light:   #ecfdf5;
  --text-primary:  #1f2937;
  --text-secondary:#6b7280;
  --card-bg:       #ffffff;
  --page-bg:       #f8fafc;
  --border:        #e5e7eb;
  --danger:        #ef4444;
  --warning:       #f59e0b;
  --radius:        12px;
  --shadow:        0 2px 16px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 30px rgba(34,197,94,0.18);
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--page-bg);
  color: var(--text-primary);
  margin: 0;
}

/* ===== NAVBAR ===== */
.navbar-top {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  z-index: 1050;
}

.logo-brand {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-deal { color: var(--text-primary); }
.logo-port { color: var(--green-primary); }

.location-selector { cursor: pointer; }
.loc-label { font-size: 0.68rem; color: var(--text-secondary); line-height: 1; }
.loc-addr  { font-size: 0.8rem; font-weight: 700; color: var(--text-primary); }

/* Search */
.search-group {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--green-primary);
}
.search-cat {
  border: none;
  border-right: 1.5px solid var(--border);
  border-radius: 0;
  font-size: 0.82rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  max-width: 110px;
  background: #f9fafb;
}
.search-cat:focus { box-shadow: none; }
.search-input {
  border: none;
  font-size: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.search-input:focus { box-shadow: none; }
.btn-search {
  background: var(--green-primary);
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0 18px;
  border: none;
  transition: background 0.2s;
}
.btn-search:hover { background: var(--green-dark); color: #fff; }

/* Nav Icons */
.nav-icon-btn {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.7rem;
  transition: color 0.2s;
  position: relative;
}
.nav-icon-btn i { font-size: 1.25rem; display: block; }
.nav-icon-btn:hover { color: var(--green-primary); }
.nav-icon-btn span { line-height: 1; }

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

/* ===== CATEGORY NAV ===== */
.category-nav {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
}
.category-nav .dropdown-menu {
  z-index: 1051; /* above sticky navbar-top (1050) */
}
.cat-scroll {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  white-space: nowrap;
}
.cat-scroll::-webkit-scrollbar { display: none; }
.cat-link {
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 2.5px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cat-link:hover,
.cat-link.active {
  color: var(--green-primary);
  border-bottom-color: var(--green-primary);
}
.cat-link.dropdown-toggle::after { margin-left: 4px; }

/* ===== HERO ===== */
.hero-section { overflow: hidden; }
.hero-swiper { width: 100%; }

.hero-slide {
  height: 420px;
  position: relative;
  overflow: hidden;
}

.slide-1 {
  background: linear-gradient(135deg, #0d4a28 0%, #16a34a 40%, #22c55e 100%);
}
.slide-2 {
  background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 60%, #3b82f6 100%);
}

.hero-content { padding: 40px 20px 40px 0; z-index: 2; position: relative; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.3);
}

.hero-title {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 14px;
}
.hero-title span { color: #bbf7d0; }
.deal-pct { color: #fde68a !important; }

.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  margin-bottom: 24px;
  max-width: 400px;
}

.btn-hero-primary {
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 10px 24px;
  border: none;
  transition: all 0.25s;
}
.btn-hero-primary:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,0.4);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 10px;
  padding: 10px 24px;
  transition: all 0.25s;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* Hero image */
.hero-img-col { position: relative; }
.hero-img-wrap { position: relative; height: 420px; display: flex; align-items: flex-end; }
.hero-main-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  opacity: 0.75;
  border-radius: var(--radius) 0 0 var(--radius);
  mask-image: linear-gradient(to left, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}
.hero-float-card { top: 60px; left: -60px; }
.hero-float-card.card-2 { top: auto; bottom: 80px; left: -80px; animation-delay: 1.5s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Swiper hero controls */
.hero-prev, .hero-next {
  width: 40px !important;
  height: 40px !important;
  background: rgba(255,255,255,0.9) !important;
  border-radius: 50% !important;
  color: var(--text-primary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1rem;
  transition: all 0.2s;
}
.hero-prev::after, .hero-next::after { display: none; }
.hero-prev:hover, .hero-next:hover { background: #fff !important; box-shadow: var(--shadow); }

.hero-pagination { bottom: 16px !important; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5); }
.hero-pagination .swiper-pagination-bullet-active { background: #fff; }

/* ===== SECTIONS ===== */
.section-pad { padding: 48px 0; }
.bg-page { background: var(--page-bg); }
.bg-light-green { background: var(--green-light); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.section-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.section-sub {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.btn-view-all {
  background: transparent;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 8px;
  padding: 6px 16px;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-view-all:hover {
  background: var(--green-primary);
  color: #fff;
}

/* ===== FEATURED CATEGORY CARDS ===== */
.feat-card {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.feat-large { height: 100%; min-height: 340px; }
.feat-sm    { height: 160px; }

.feat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  transition: opacity 0.3s;
}
.feat-card:hover .feat-overlay { opacity: 0.85; }

.feat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
}
.feat-tag {
  display: inline-block;
  background: var(--green-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feat-content h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.feat-content h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}

.btn-feat {
  background: #fff;
  color: var(--green-dark);
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-feat:hover { background: var(--green-primary); color: #fff; }

.btn-feat-sm {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s;
}
.btn-feat-sm:hover { background: var(--green-primary); color: #fff; border-color: var(--green-primary); }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1.5px solid var(--border);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(34,197,94,0.3);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Subtle pattern overlay for empty space */
.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(34,197,94,0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
}

.product-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;      /* ← full image, no crop */
  padding: 10px;            /* ← breathing room around image */
  transition: transform 0.4s;
}

.product-card:hover .product-img {
  transform: scale(1.06);
  z-index: 1;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-img { mix-blend-mode: multiply; }

.badge-discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--danger);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.btn-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}
.btn-wishlist:hover { color: var(--danger); background: #fff; }

.product-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-stars {
  font-size: 0.7rem;
  color: var(--warning);
  margin-bottom: 8px;
}
.product-stars span { color: var(--text-secondary); font-size: 0.68rem; }

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}
.price-now { font-size: 1.05rem; font-weight: 800; color: var(--text-primary); }
.price-old { font-size: 0.78rem; color: var(--text-secondary); text-decoration: line-through; }

.product-actions { margin-top: auto; }
.btn-add-cart {
  background: var(--green-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 8px 14px;
  transition: all 0.2s;
  width: 100%;
}
.btn-add-cart:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.btn-viewd {
  background: var(--green-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 8px;
  padding: 8px 14px;
  transition: all 0.2s;
  width: 100%;
}
.btn-viewd:hover { background: var(--green-dark); color: #fff; transform: translateY(-1px); }

.btn-view {
  font-size: 0.75rem;
  color: var(--green-primary);
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
  margin-top: 6px;
}
.btn-view:hover { text-decoration: underline; color: var(--green-dark); }

/* Trending banner */
.trending-banner {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--green-primary);
}
.trending-banner h4 {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 12px;
}
.trending-banner img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
}

/* ===== EXPLORE ===== */
.explore-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.explore-scroll::-webkit-scrollbar { display: none; }

.explore-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.explore-card:hover { transform: translateY(-4px); }
.explore-card:hover .explore-icon { box-shadow: var(--shadow-hover); }

.explore-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.explore-card span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ===== BEST SELLING PROMO ===== */
.best-swiper { padding: 8px 4px 24px !important; }

.promo-card {
  border-radius: var(--radius);
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.promo-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 8px;
  margin: 10px 0;
}
.promo-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.promo-headline {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
}
.promo-price-badge {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 4px 0;
}

.promo-dark  { background: #1a1a2e; color: #fff; }
.promo-dark .promo-tag { color: var(--green-primary); }
.promo-dark .promo-price-badge { color: var(--warning); }

.promo-light { background: #f1f5f9; color: var(--text-primary); }
.promo-light .promo-tag { color: var(--green-dark); }
.promo-light .promo-price-badge { color: var(--danger); }

.promo-red   { background: linear-gradient(135deg, #7f1d1d, #dc2626); color: #fff; }
.promo-red .promo-tag { color: #fca5a5; }
.promo-red .promo-price-badge { color: #fef08a; }

.promo-blue  { background: linear-gradient(135deg, #0c4a6e, #0284c7); color: #fff; }
.promo-blue .promo-tag { color: #7dd3fc; }

.promo-dark2 { background: #111827; color: #fff; }
.promo-dark2 .promo-tag { color: #fbbf24; }
.promo-dark2 .promo-price-badge { color: #4ade80; }

.promo-purple { background: linear-gradient(135deg, #3b0764, #7c3aed); color: #fff; }
.promo-purple .promo-tag { color: #c4b5fd; }
.promo-purple .promo-price-badge { color: #fef08a; }

.btn-promo {
  background: var(--green-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-promo:hover { background: var(--green-dark); color: #fff; }

.btn-promo-dark {
  background: var(--text-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s;
}
.btn-promo-dark:hover { background: #374151; color: #fff; }

/* Swiper controls shared */
.best-prev, .best-next,
.deals-prev, .deals-next {
  width: 36px !important;
  height: 36px !important;
  background: var(--card-bg) !important;
  border-radius: 50% !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  top: 50% !important;
  border: 1.5px solid var(--border) !important;
}
.best-prev::after, .best-next::after,
.deals-prev::after, .deals-next::after { display: none; }
.best-prev:hover, .best-next:hover,
.deals-prev:hover, .deals-next:hover {
  background: var(--green-primary) !important;
  color: #fff !important;
  border-color: var(--green-primary) !important;
}

.deals-swiper { padding: 8px 4px 16px !important; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.featured-testimonial {
  border-color: var(--green-primary);
  background: linear-gradient(135deg, #fff 80%, #ecfdf5 100%);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--green-primary);
}
.testi-stars { font-size: 0.75rem; }
.testi-quote {
  font-size: 2rem;
  color: var(--green-primary);
  opacity: 0.3;
}
.testi-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.testi-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-cta-main {
  background: var(--green-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 36px;
  border-radius: 10px;
  border: none;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.btn-cta-main:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-light);
  border-top: 2px solid var(--border);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-secondary);
  max-width: 320px;
  margin: 8px auto 0;
}

.footer-heading {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--green-primary); }

.newsletter-group {
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--green-primary);
}
.newsletter-group .form-control {
  border: none;
  font-size: 0.82rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.newsletter-group .form-control:focus { box-shadow: none; }
.btn-newsletter {
  background: var(--green-primary);
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0 18px;
  border-radius: 0;
  transition: background 0.2s;
}
.btn-newsletter:hover { background: var(--green-dark); color: #fff; }

.footer-bottom {
  border-top: 1.5px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.footer-bottom p { margin: 0; }

.social-icons { display: flex; align-items: center; gap: 8px; }
.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.social-btn:hover { transform: scale(1.15); opacity: 0.9; color: #fff; }
.social-btn.fb { background: #1877f2; }
.social-btn.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.tw { background: #000; }
.social-btn.li { background: #0a66c2; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-slide { height: 320px; }
  .hero-img-col { display: none !important; }
  .hero-content { padding: 30px 0; }
}

@media (max-width: 767px) {
  .hero-slide { height: 300px; }
  .section-pad { padding: 32px 0; }
  .feat-large { min-height: 240px; }
  .feat-sm { height: 130px; }
  .product-img-wrap { height: 160px; }
  .explore-icon { width: 64px; height: 64px; font-size: 1.6rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 575px) {
  .logo-brand { font-size: 1.2rem; }
  .hero-title { font-size: 1.4rem; }
  .section-title { font-size: 1.25rem; }
  .product-img-wrap { height: 140px; }
  .product-name { font-size: 0.82rem; }
  .price-now { font-size: 0.95rem; }
}

/* Utility */
.fw-600 { font-weight: 600; }

/* =====================================================
   DYNAMIC PRODUCTS & SKELETONS
   ===================================================== */

/* Show More button */
.btn-show-more {
  background: transparent;
  border: 1.5px solid var(--green-primary);
  color: var(--green-primary);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 10px;
  padding: 10px 32px;
  transition: all 0.2s;
}
.btn-show-more:hover {
  background: var(--green-primary);
  color: #fff;
}

/* Out of stock button */
.btn-out-of-stock {
  background: #9ca3af !important;
  cursor: not-allowed;
  opacity: 0.75;
}

/* ── Skeleton loader ─────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position:  600px 0; }
}

.skeleton-line,
.skeleton-img {
  border-radius: 6px;
  background: linear-gradient(90deg, #e5e7eb 25%, #f3f4f6 50%, #e5e7eb 75%);
  background-size: 600px 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton-img  { width: 100%; height: 200px; }
.skeleton-line { height: 14px; margin-bottom: 8px; display: block; }
.w-200px { width: 200px; }
.w-80px  { width: 80px; }
.w-60px  { width: 60px; }
.w-full  { width: 100%; }
.w-100px { width: 100px; }

.skeleton-card {
  pointer-events: none;
  border: 1.5px solid var(--border) !important;
  box-shadow: none !important;
}

/* ── Error / empty state ─────────────────────────── */
.api-error-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-secondary);
}
.api-error-state i {
  font-size: 3rem;
  color: var(--warning);
  display: block;
  margin-bottom: 16px;
}
.api-error-state h4 {
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.api-error-state p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* ── Category divider label ─────────────────────── */
.category-section {
  border-top: 3px solid var(--green-light);
  position: relative;
}
.category-section:first-child { border-top: none; }

/* ── Tag badge (e.g. "new", "hot") ──────────────────────────── */
.badge-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: capitalize;
}
.badge-tag--new    { background: var(--green-primary); }
.badge-tag--hot    { background: #f97316; }
.badge-tag--sale   { background: var(--danger); }

/* Out-of-stock overlay badge */
.badge-out-of-stock {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  padding: 5px;
  letter-spacing: 0.3px;
}

/* =====================================================
   NAVBAR – AUTH, WISHLIST DRAWER, LOCATION, ACCOUNT
   ===================================================== */

/* Location button reset */
.location-selector {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  line-height: 1.2;
}
.location-selector:hover .loc-addr { color: var(--green-primary); }

/* ── Account dropdown ─────────────────────────────── */
.account-dropdown {
  min-width: 240px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 6px;
}
.account-dropdown .dropdown-item {
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.15s;
}
.account-dropdown .dropdown-item:hover { background: var(--green-light); }
.account-dropdown .dropdown-item.text-danger:hover { background: #fef2f2; }

.dropdown-user-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px 8px;
}
.dropdown-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dropdown-user-name  { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); line-height: 1.2; }
.dropdown-user-email { font-size: 0.72rem; color: var(--text-secondary); }

/* ── Wishlist nav badge ───────────────────────────── */
.wishlist-nav-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--danger);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Wishlist Drawer ──────────────────────────────── */
.wishlist-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1060;
  box-shadow: -8px 0 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.wishlist-drawer.open { right: 0; }

.wishlist-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1.5px solid var(--border);
  flex-shrink: 0;
}
.btn-close-drawer {
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-close-drawer:hover { background: #f3f4f6; color: var(--text-primary); }

.wishlist-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  scrollbar-width: thin;
}

.drawer-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.drawer-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}
.drawer-product-row:hover { box-shadow: var(--shadow); }
.drawer-product-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.drow-info { flex: 1; min-width: 0; }
.drow-name  { font-size: 0.85rem; font-weight: 700; color: var(--text-primary);
              white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.drow-cat   { font-size: 0.7rem; color: var(--green-primary); font-weight: 600; margin-bottom: 2px; }
.drow-price { font-size: 0.95rem; font-weight: 800; color: var(--text-primary); }
.drow-remove {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 0.9rem;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.drow-remove:hover { background: #fef2f2; color: var(--danger); }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1055;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.drawer-backdrop.open { opacity: 1; pointer-events: all; }

/* ── Location modal ───────────────────────────────── */
.location-modal-content {
  border-radius: var(--radius);
  border: none;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.location-map-wrap { border-radius: var(--radius); overflow: hidden; }
.map-placeholder {
  height: 180px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--green-primary);
}
.detected-address-box {
  background: var(--green-light);
  border: 1.5px solid var(--green-primary);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* ── Order row (profile) ──────────────────────────── */
.order-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.order-id    { font-weight: 800; color: var(--green-dark); flex: 1; }
.order-date  { color: var(--text-secondary); }
.order-total { font-weight: 700; }
.order-status {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: capitalize;
}
.order-status--pending   { background: #fef3c7; color: #92400e; }
.order-status--delivered { background: #d1fae5; color: #065f46; }
.order-status--cancelled { background: #fee2e2; color: #991b1b; }

/* @media (max-width: 575px) {
  .wishlist-drawer { width: 100vw; }
} */

/* =====================================================
   TESTIMONIALS – DYNAMIC ADDITIONS
   ===================================================== */

.testi-stars-row i { color: var(--warning); font-size: 0.78rem; }
.testi-footer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.testi-date { font-size: 0.7rem; color: var(--text-secondary); }
.testi-avatar-wrap { position: relative; flex-shrink: 0; }
.testi-avatar-fallback {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green-primary); color: #fff;
  font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--green-light);
}
.testi-form-card {
  background: #fff; border: 1.5px solid var(--green-primary);
  border-radius: var(--radius); padding: 28px;
  max-width: 680px; margin: 0 auto;
}
.testi-login-prompt {
  text-align: center; padding: 32px;
  background: #fff; border: 1.5px dashed var(--border);
  border-radius: var(--radius); max-width: 480px; margin: 0 auto;
}
.testi-already-reviewed {
  text-align: center; padding: 32px;
  background: var(--green-light); border: 1.5px solid var(--green-primary);
  border-radius: var(--radius); max-width: 480px; margin: 0 auto;
}
.star-picker { display: flex; gap: 6px; margin-bottom: 4px; }
.star-pick {
  font-size: 1.5rem; color: #d1d5db;
  cursor: pointer; transition: color 0.15s, transform 0.15s;
}
.star-pick:hover, .star-pick.hovered { color: var(--warning); transform: scale(1.15); }
.star-pick.selected { color: var(--warning); }



/* =====================================================
   DEALPORT – Mini Footer + Become-a-Seller Modal
   Append this block to the END of CustomerHomePage.css
   ===================================================== */

/* ── Mini Footer ──────────────────────────────────── */
.site-footer-mini {
  background: var(--green-light);
  border-top: 2px solid var(--border);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-mini-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 32px 0 24px;
  border-bottom: 1.5px solid var(--border);
}

/* Brand column */
.footer-mini-brand {
  min-width: 160px;
}
.footer-mini-tagline {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin: 6px 0 0;
  max-width: 180px;
  line-height: 1.5;
}

/* Links column */
.footer-mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  padding-top: 6px;
}
.footer-mini-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-mini-links a:hover { color: var(--green-primary); }

/* Newsletter column */
.footer-mini-newsletter {
  min-width: 240px;
  max-width: 300px;
}
.footer-mini-nl-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 8px;
}

/* Bottom bar */
.footer-mini-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  font-size: 0.78rem;
  color: var(--text-secondary);
}
.footer-mini-bottom p { margin: 0; }
.footer-mini-ssl {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Responsive footer */
@media (max-width: 991px) {
  .footer-mini-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .footer-mini-newsletter {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .footer-mini-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 20px;
  }
  .footer-mini-links { gap: 6px 14px; }
  .footer-mini-bottom { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
  .footer-mini-ssl { order: 3; }
}

/* ── Become a Seller Modal ────────────────────────── */
.seller-modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.seller-modal-header {
  background: linear-gradient(135deg, #0d4a28, #16a34a);
  border: none;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.seller-modal-header .modal-title {
  color: #fff;
  font-size: 1.1rem;
}
.seller-modal-header .text-muted {
  color: rgba(255,255,255,0.7) !important;
}

.seller-form-section {
  background: var(--page-bg);
  border-radius: var(--radius);
  padding: 20px;
  border: 1.5px solid var(--border);
}

.seller-section-label {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

/* Use existing profile-input styles (already in CustomerHomePage.css via profile.css) */
/* profile-label and btn-save / btn-cancel already exist */

/* =====================================================
   MOBILE NAV MENU – slides down from hamburger button
   The JS inserts #mobileNavMenu as a sibling after header.navbar-top.
   Toggle is class-only: .mobile-nav-open shows it, no class hides it.
   ===================================================== */
.mobile-nav-menu {
  display: none;                     /* hidden until .mobile-nav-open added */
  width: 100%;
  background: #fff;
  border-bottom: 2px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 8px 0 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  position: relative;
  z-index: 1047;
}

.mobile-nav-menu.mobile-nav-open {
  display: block;
  animation: mobileMenuSlideDown 0.22s ease;
}

@keyframes mobileMenuSlideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* User header block inside mobile menu */
.mobile-nav-user {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px 12px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 6px;
}

.mobile-nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.mobile-nav-email {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* Individual nav links */
.mobile-nav-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
  background: var(--green-light);
  color: var(--green-dark);
}

.mobile-nav-item.text-danger:hover {
  background: #fef2f2;
  color: var(--danger) !important;
}

.mobile-nav-menu hr {
  margin: 6px 20px;
  border-color: var(--border);
  opacity: 1;
}


/* =====================================================
   NEW ARRIVALS PAGE – NewArrivals.html
   ===================================================== */

/* ── Hero banner ──────────────────────────────────── */
.na-hero {
  background: linear-gradient(135deg, #0d4a28 0%, #16a34a 50%, #22c55e 100%);
  padding: 48px 0 40px;
  position: relative;
  overflow: hidden;
}
.na-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.na-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.na-hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.na-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}
.na-hero-title span { color: #bbf7d0; }
.na-hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  margin: 0;
}

/* Hero stat chips */
.na-hero-stats {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.na-stat {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 12px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
  min-width: 80px;
}
.na-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.na-stat-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ── Filter bar ───────────────────────────────────── */
.na-filter-bar {
  background: #fff;
  border-bottom: 1.5px solid var(--border);
  z-index: 900;
  top: 0;   /* sits just below the main navbar which is also sticky */
}
.na-filter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
}
.na-filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex: 1;
}
.na-pill {
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 20px;
  padding: 4px 14px;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.18s;
  white-space: nowrap;
}
.na-pill:hover { border-color: var(--green-primary); color: var(--green-dark); }
.na-pill.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #fff;
  font-weight: 700;
}
.na-filter-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.na-count {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  font-weight: 600;
}
.na-sort {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border-color: var(--border);
  border-radius: 8px;
  min-width: 160px;
}
.na-sort:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(34,197,94,0.12); }

/* ── "NEW" ribbon on cards ────────────────────────── */
.na-new-ribbon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 3px;
  z-index: 2;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 767px) {
  .na-hero-stats { display: none; }
  .na-filter-inner { flex-direction: column; align-items: stretch; }
  .na-filter-right { justify-content: space-between; }
  .na-sort { flex: 1; }
}
@media (max-width: 575px) {
  .na-hero { padding: 32px 0 28px; }
  .na-hero-title { font-size: 1.8rem; }
}

/* ════════════════════════════════════════════════════════════
   ADMIN STOREFRONT PREVIEW — navbar badge & notification bar
   Applied when an admin visits the Customer storefront.
   ════════════════════════════════════════════════════════════ */

/* ── Navbar badge row ── */
.admin-storefront-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.admin-nav-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,158,11,0.35);
  border: 2px solid rgba(255,255,255,0.8);
}

.admin-nav-name {
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
  white-space: nowrap;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: rgba(245,158,11,0.13);
  color: #92400e;
  border: 1px solid rgba(245,158,11,0.35);
  white-space: nowrap;
}

.admin-nav-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(34,197,94,0.3);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.admin-nav-back-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34,197,94,0.4);
  color: #fff !important;
}

/* ── Admin notification banner (replaces "Become a Seller" CTA) ── */
.seller-notif-admin {
  background: linear-gradient(90deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
}

.seller-notif-admin .seller-notif-icon {
  color: #d97706;
}

.seller-notif-admin .admin-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(245,158,11,0.15);
  color: #92400e;
  border: 1px solid rgba(245,158,11,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.seller-notif-admin .admin-panel-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(34,197,94,0.3);
  transition: background 0.2s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.seller-notif-admin .admin-panel-btn:hover {
  background: linear-gradient(135deg, #16a34a, #15803d);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(34,197,94,0.4);
  color: #fff !important;
}