/* ============================================================
   STEADYVOLT ENERGY - Main Stylesheet
   File: assets/css/style.css
============================================================ */

/* ── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --green: #00A86B;
  --green-dark: #00875A;
  --green-light: #E6F7F1;
  --forest: #1B4D3E;
  --gold: #F5A623;
  --white: #FFFFFF;
  --off-white: #F7FAF9;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --danger: #EF4444;
  --danger-light: #FEF2F2;
  --warning: #F59E0B;
  --info: #3B82F6;

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Syne', 'Inter', sans-serif;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .12);
  --shadow-green: 0 8px 24px rgba(0, 168, 107, .25);

  --transition: 0.2s ease;
  --container: 1280px;
  --nav-h: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green);
  text-decoration: none;
}

a:hover {
  color: var(--green-dark);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.25;
  font-weight: 700;
}

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

/* ── SECTIONS ───────────────────────────────────────────── */
.section-pad {
  padding: 80px 0;
}

.bg-off-white {
  background: var(--off-white);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
  color: #fff;
}

.btn-outline {
  border-color: var(--green);
  color: var(--green);
  background: transparent;
}

.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

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

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

.btn-white {
  background: var(--white);
  color: var(--forest);
}

.btn-white:hover {
  background: var(--green-light);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: #fff;
}

.btn-danger {
  background: var(--danger);
  color: var(--white);
  border-color: var(--danger);
}

.btn-danger:hover {
  background: #dc2626;
  color: #fff;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 5px 10px;
  font-size: 0.78rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}

.btn[disabled] {
  opacity: .5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── ALERTS ─────────────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.92rem;
}

.alert-success {
  background: var(--green-light);
  color: var(--forest);
  border: 1px solid #b3e8d4;
}

.alert-error {
  background: var(--danger-light);
  color: #7f1d1d;
  border: 1px solid #fca5a5;
}

.alert-info {
  background: #EFF6FF;
  color: #1e3a5f;
  border: 1px solid #bfdbfe;
}

.alert-warning {
  background: #FFFBEB;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* ── ANNOUNCEMENT BAR ───────────────────────────────────── */
.announcement-bar {
  background: var(--forest);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
}

.announcement-bar i {
  color: var(--green);
  margin-right: 6px;
}

/* ── HEADER ─────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--forest);
  flex-shrink: 0;
}

.nav-logo:hover {
  color: var(--forest);
}

.nav-logo em {
  color: var(--green);
  font-style: normal;
}

.logo-mark {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--green-light);
  color: var(--green);
}

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

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
  transition: all var(--transition);
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1rem;
}

.nav-icon-btn:hover {
  background: var(--green-light);
  color: var(--green);
}

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

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

/* User dropdown */
.nav-user-dropdown {
  position: relative;
}

.user-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
}

.nav-user-dropdown:hover .user-dropdown-menu,
.nav-user-dropdown.open .user-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.udm-header {
  padding: 10px 12px 10px;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 4px;
}

.udm-header strong {
  display: block;
  font-size: 0.9rem;
}

.udm-header span {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.user-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 0.88rem;
  transition: background var(--transition);
}

.user-dropdown-menu a:hover {
  background: var(--green-light);
  color: var(--green);
}

.udm-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 4px 0;
}

/* Search bar */
.search-bar {
  position: relative;
}

.search-bar i {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-500);
  font-size: 0.85rem;
}

.search-bar input {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 9px 12px 9px 34px;
  font-size: 0.88rem;
  width: 200px;
  outline: none;
  transition: all var(--transition);
  background: var(--gray-50);
}

.search-bar input:focus {
  border-color: var(--green);
  background: var(--white);
  width: 260px;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  max-height: 360px;
  overflow-y: auto;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-100);
  text-decoration: none;
  color: var(--gray-900);
}

.search-result-item:hover {
  background: var(--green-light);
}

.search-result-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.search-result-item .sri-name {
  font-size: 0.88rem;
  font-weight: 500;
}

.search-result-item .sri-price {
  font-size: 0.82rem;
  color: var(--green);
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--white);
  padding: 80px 32px 32px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: var(--radius);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 1rem;
}

.mobile-nav a:hover {
  background: var(--green-light);
  color: var(--green);
}

.mobile-nav .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, .5);
}

.nav-overlay.visible {
  display: block;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--forest) 0%, #0e3028 100%);
  padding: 100px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-eyebrow span {
  width: 32px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-content p {
  color: rgba(255, 255, 255, .75);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 32px;
}

.hero-stat strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}

.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .05em;
}

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

.hero-icon-card {
  width: 280px;
  height: 280px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.hero-big-icon {
  font-size: 8rem;
  color: var(--green);
  opacity: .8;
}

.hero-float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.82rem;
}

.hero-float-badge strong {
  display: block;
  font-size: 0.88rem;
}

.hero-float-badge span {
  color: var(--gray-500);
  font-size: 0.75rem;
}

.badge-1 {
  bottom: 30px;
  left: -20px;
}

.badge-2 {
  top: 30px;
  right: -20px;
}

.badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--forest);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--gray-500);
  max-width: 560px;
  font-size: 0.97rem;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

/* ── CATEGORIES GRID ────────────────────────────────────── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  color: var(--gray-900);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cat-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-green);
  transform: translateY(-4px);
}

.cat-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
  transition: all var(--transition);
}

.cat-card:hover .cat-icon {
  background: var(--green);
  color: var(--white);
}

.cat-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.cat-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── PRODUCTS ───────────────────────────────────────────── */
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.products-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.products-tabs .tab-btn {
  padding: 8px 18px;
  border-radius: 99px;
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}

.products-tabs .tab-btn.active,
.products-tabs .tab-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gray-300);
}

.product-img-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-50);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-300);
}

.product-img-placeholder.large {
  min-height: 320px;
  font-size: 5rem;
}

.product-img-placeholder.small {
  min-height: 80px;
  font-size: 1.8rem;
}

.product-info {
  padding: 16px;
}

.product-brand {
  font-size: 0.75rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}

.product-name {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 4px 0 8px;
  line-height: 1.35;
  color: var(--gray-900);
  text-transform: capitalize;
}

.product-name a {
  color: inherit;
}

.product-name a:hover {
  color: var(--green);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.stars i {
  color: var(--gold);
  font-size: 0.8rem;
}

.rating-num,
.rating-count {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest);
}

.price-old {
  font-size: 0.82rem;
  color: var(--gray-400);
  text-decoration: line-through red;
}

.add-cart-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}

.add-cart-btn:hover {
  background: var(--green-dark);
  transform: scale(1.1);
}

.out-of-stock-btn {
  color: var(--danger);
  font-size: 1.1rem;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 700;
}

.badge-sale {
  background: var(--danger);
  color: var(--white);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.badge-out {
  background: var(--danger);
  color: var(--white);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.badge-low {
  background: var(--warning);
  color: var(--white);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
}

.badge-featured {
  background: var(--gold);
  color: var(--white);
}

.badge-warn {
  background: var(--warning);
  color: var(--white);
}

.badge-keyword {
  background: var(--green-light);
  color: var(--green);
  padding: 3px 8px;
  margin: 2px;
  font-size: 0.8rem;
  border-radius: 99px;
  display: inline-block;
}

/* ── WHY US ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--green-light);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews-slider-wrap {
  margin-bottom: 32px;
}

.reviewsSwiper {
  overflow: hidden;
  padding: 4px 4px 8px;
}

.reviewsSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.reviewsSwiper .swiper-slide .review-card {
  width: 100%;
  height: 100%;
}

/* Brand the Swiper pagination bullets to match the site's green */
.slider-dots.swiper-pagination .swiper-pagination-bullet {
  background: var(--gray-300, #e5e7eb);
  opacity: 1;
  width: 9px;
  height: 9px;
  margin: 0 3px !important;
  transition: background var(--transition, .2s ease), transform .2s ease;
}

.slider-dots.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--green);
  transform: scale(1.15);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.review-stars {
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-author strong {
  font-size: 0.88rem;
  display: block;
}

.review-author span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.slider-dots.swiper-pagination {
  position: static !important;
  width: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #4285F4;
  margin-top: 8px;
  font-weight: 500;
}

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--green) 0%, var(--forest) 100%);
  padding: 70px 0;
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 32px;
  font-size: 1rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btns a,
.hero-btns a {

  display: inline-flex;
  align-items: center;
  justify-content: center;

}

.cta-btns a {
  width: 230px;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, .8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo em {
  color: var(--green);
  font-style: normal;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, .65);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--green);
}

.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .65);
  transition: color var(--transition);
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, .65);
}

.footer-contact-list i {
  color: var(--green);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, .5);
}

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

/* ── FORMS ───────────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  font-size: 0.85rem;
  pointer-events: none;
  z-index: 1;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  padding: 11px 14px 11px 38px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
  color: var(--gray-900);
}

.input-wrap select {
  padding-left: 38px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

input:not(.input-wrap input),
select:not(.input-wrap select),
textarea:not(.input-wrap textarea) {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
  color: var(--gray-900);
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 168, 107, .12);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.input-wrap textarea {
  padding-left: 14px;
}

.input-disabled {
  background: var(--gray-50) !important;
  color: var(--gray-500) !important;
  cursor: not-allowed;
}

.hint {
  font-size: 0.78rem;
  color: var(--gray-500);
  margin-top: 5px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.toggle-pw {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.toggle-pw:hover {
  color: var(--green);
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  margin-bottom: 20px;
  width: 100%;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--green);
  padding: 0;
  flex: 0.1;
}

.checkbox-label p {
  flex: .8;
  font-size: 0.8rem;
}

.toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.toggle-label input {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
}

.pw-strength-bar {
  height: 4px;
  background: var(--gray-200);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.pw-strength-bar div {
  height: 100%;
  border-radius: 99px;
  transition: all 0.3s;
  width: 0;
}

.pw-strength-label {
  font-size: 0.78rem;
}

.remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.remember-row label {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
  cursor: pointer;
  flex: 0.8;
  padding: 0;
}

.remember-row label input {
  accent-color: var(--green);
  width: 20px;
}

/* ── AUTH PAGES ─────────────────────────────────────────── */
.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.auth-visual {
  background: linear-gradient(160deg, var(--forest) 0%, #0b2a23 100%);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.auth-visual-top a {
  color: var(--white);
}

.auth-visual-mid h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.auth-visual-mid p {
  color: rgba(255, 255, 255, .7);
  font-size: 0.95rem;
}

.auth-visual-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.auth-visual-stats div strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-display);
}

.auth-visual-stats div span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .6);
}

.auth-visual-features div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .8);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.auth-visual-features i {
  color: var(--green);
}

.auth-visual-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.vstep {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .5);
}

.vstep.active {
  color: var(--white);
  font-weight: 600;
}

.vstep span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
}

.vstep.active span {
  background: var(--green);
}

.vstep-line {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, .2);
}

.auth-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: var(--white);
}

.auth-form-card {
  width: 100%;
  max-width: 440px;
}

.auth-mobile-logo {
  display: none;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 28px;
}

.auth-form-card h1 {
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 6px;
}

.auth-sub {
  color: var(--gray-500);
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.auth-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  padding: 13px;
}

.auth-switch {
  text-align: center;
  font-size: 0.88rem;
  margin-top: 20px;
  color: var(--gray-500);
}

.auth-guest-note {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-top: 16px;
  text-align: center;
}

.auth-success {
  text-align: center;
  padding: 24px 0;
}

.success-icon {
  font-size: 4rem;
  color: var(--green);
  margin-bottom: 16px;
}

/* OTP inputs */
.otp-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 24px 0;
}

.otp-digit {
  width: 52px;
  height: 60px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: all var(--transition);
}

.otp-digit:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 168, 107, .12);
}

.otp-resend {
  text-align: center;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: var(--gray-500);
}

.otp-timer {
  font-weight: 600;
  color: var(--green);
}

.link-btn {
  background: none;
  border: none;
  color: var(--green);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  padding: 0;
}

/* ── SHOP PAGE ──────────────────────────────────────────── */
.shop-page {
  padding: 32px 0 80px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.sidebar-section {
  margin-bottom: 28px;
}

.sidebar-section h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: all var(--transition);
}

.sidebar-list a:hover,
.sidebar-list a.active {
  background: var(--green-light);
  color: var(--green);
}

.sidebar-search {
  display: flex;
  gap: 6px;
}

.sidebar-search input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.85rem;
  outline: none;
}

.sidebar-search input:focus {
  border-color: var(--green);
}

.sidebar-search button {
  padding: 9px 14px;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
}

.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.price-range-inputs input {
  flex: 1;
  padding: 9px 12px 9px 30px;
}

.price-range-inputs span {
  color: var(--gray-400);
  flex-shrink: 0;
}

.btn-sm.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.sidebar-toggle {
  display: none;
}

.sidebar-toggle-close {
  display: none;
}

.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-result-info {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--gray-500);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.shop-sort select {
  padding: 8px 32px 8px 12px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  font-size: 0.85rem;
  cursor: pointer;
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") no-repeat right 10px center;
}

/* ── PRODUCT DETAIL ─────────────────────────────────────── */
.product-detail-page {
  padding: 32px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}

.gallery-main {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-50);
  cursor: zoom-in;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: border-color var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--green);
}

.product-detail-name {
  font-size: 1.7rem;
  font-family: var(--font-display);
  margin: 6px 0 16px;
}

.product-rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.rating-link {
  font-size: 0.85rem;
  color: var(--green);
  text-decoration: underline;
  cursor: pointer;
}

.stock-badge {
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.in-stock {
  color: var(--green);
}

.out-stock {
  color: var(--danger);
}

.product-detail-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.detail-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
  font-family: var(--font-display);
}

.detail-price-old {
  font-size: 1rem;
  color: var(--gray-400);
  text-decoration: line-through red;

}

.product-short-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.product-sku {
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-minus,
.qty-plus {
  width: 36px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  color: var(--gray-700);
  font-size: 0.85rem;
  transition: background var(--transition);
  border: none;
  cursor: pointer;
}

.qty-minus:hover,
.qty-plus:hover {
  background: var(--green-light);
  color: var(--green);
}

.qty-val {
  width: 52px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0;
}

.wishlist-btn.in-wishlist {
  background: #fff0f0;
  border-color: var(--danger);
  color: var(--danger);
}

.wishlist-btn.in-wishlist i {
  color: var(--danger);
}

.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  padding: 6px 12px;
  border-radius: 99px;
}

.trust-badge i {
  color: var(--green);
}

.product-specs {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  margin-top: 20px;
}

.product-specs h3 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
  color: var(--gray-500);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.specs-table th {
  padding: 8px 12px;
  text-align: left;
  font-weight: 600;
  color: var(--gray-700);
  width: 40%;
  background: var(--gray-50);
}

.specs-table td {
  padding: 8px 12px;
  color: var(--gray-600);
}

/* Product tabs */
.product-tabs-section {
  margin-bottom: 64px;
}

.product-tab-btns {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 32px;
  gap: 4px;
}

.product-tab-btns .tab-btn {
  padding: 10px 24px;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: -2px;
}

.product-tab-btns .tab-btn.active {
  color: var(--green);
  border-bottom-color: var(--green);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.product-description {
  line-height: 1.75;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.reviews-summary {
  margin-bottom: 28px;
}

.avg-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--forest);
  font-family: var(--font-display);
  margin-right: 8px;
}

.review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-100);
}

.review-item-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}

.review-item-header>div:nth-child(2) {
  flex: 1;
}

.review-item-header strong {
  display: block;
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.78rem;
  color: var(--gray-400);
  flex-shrink: 0;
}

.review-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.review-body {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.write-review {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 32px;
}

.write-review h3 {
  margin-bottom: 20px;
}

.star-picker {
  display: flex;
  gap: 6px;
  font-size: 1.5rem;
  cursor: pointer;
  margin-bottom: 4px;
}

.star-picker i {
  color: var(--gray-300);
  transition: color var(--transition);
}

.star-picker i.active,
.star-picker i:hover {
  color: var(--gold);
}

.auth-note {
  background: var(--gray-100);
  padding: 16px;
  border-radius: var(--radius);
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Related products */
.related-products {
  margin-top: 40px;
}

.related-products .section-title {
  margin-bottom: 24px;
}

/* ── CART PAGE ──────────────────────────────────────────── */
.cart-page {
  padding: 32px 0 80px;
}

.page-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 32px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.cart-items-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cart-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: var(--gray-500);
}

.text-danger {
  color: var(--danger);
}

.text-green {
  color: var(--green);
}

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

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--gray-900);
  margin-bottom: 4px;
  display: block;
}

.cart-item-price {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-item-total {
  font-weight: 700;
  color: var(--forest);
  font-size: 1rem;
  flex-shrink: 0;
}

.cart-continue {
  margin-top: 16px;
}

.order-summary {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.order-summary h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gray-200);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.summary-row.total-row {
  font-size: 1.05rem;
  padding-top: 14px;
  border-top: 1px solid var(--gray-200);
  margin-top: 4px;
}

.summary-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 10px 0;
}

.summary-note {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--forest);
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-login-prompt {
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
  margin-top: 16px;
  text-align: center;
}

.checkout-login-prompt i {
  font-size: 1.5rem;
  color: var(--gray-400);
  margin-bottom: 8px;
  display: block;
}

.checkout-login-prompt p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.summary-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.summary-trust span {
  font-size: 0.75rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 4px;
}

.coupon-row {
  display: flex;
  gap: 10px;
}

.checkout-form-section {
  border-top: 1px solid var(--gray-200);
  padding-top: 24px;
  margin-top: 24px;
}

.checkout-form-section h2 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.saved-addresses {
  margin-bottom: 20px;
}

.address-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.address-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
}

.address-card.selected,
.address-card:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.address-card strong {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--green);
}

/* ── PROFILE PAGES ──────────────────────────────────────── */
.profile-page {
  padding: 40px 0 80px;
}

.profile-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}

.profile-sidebar {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}

.profile-sidebar-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-200);
}

.sidebar-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.profile-sidebar-user strong {
  display: block;
  font-size: 0.9rem;
}

.profile-sidebar-user span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.profile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 2px;
}

.profile-nav a:hover,
.profile-nav a.active {
  background: var(--green-light);
  color: var(--green);
}

.profile-nav a.text-danger:hover {
  background: var(--danger-light);
  color: var(--danger);
}

.profile-nav-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

.profile-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.profile-card-header h2 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile-welcome {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--forest), #0e3028);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  color: var(--white);
}

.profile-welcome h1 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.profile-welcome p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .7);
}

.profile-welcome-avatar img,
.profile-welcome-avatar .avatar-initials {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--green);
}

.avatar-initials {
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.profile-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.profile-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.profile-stat-card i {
  font-size: 1.4rem;
  color: var(--green);
}

.profile-stat-card strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--forest);
}

.profile-stat-card span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.avatar-upload-section {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.avatar-preview img,
.avatar-preview .avatar-initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green-light);
}

/* ── DATA TABLES ────────────────────────────────────────── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.data-table th {
  padding: 10px 14px;
  text-align: left;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--gray-500);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  white-space: nowrap;
}

.data-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:hover td {
  background: var(--gray-50);
}

.table-wrap {
  overflow-x: auto;
}

.orders-table-wrap {
  overflow-x: auto;
}

/* Status pills */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-pending {
  background: #FEF3C7;
  color: #92400E;
}

.status-paid {
  background: #D1FAE5;
  color: #065F46;
}

.status-processing {
  background: #DBEAFE;
  color: #1E40AF;
}

.status-shipped {
  background: #E0E7FF;
  color: #3730A3;
}

.status-delivered {
  background: #D1FAE5;
  color: #065F46;
}

.status-cancelled {
  background: #FEE2E2;
  color: #991B1B;
}

.status-refunded {
  background: #F3F4F6;
  color: #374151;
}

.status-unpaid {
  background: #FEE2E2;
  color: #991B1B;
}

.status-failed {
  background: #FEE2E2;
  color: #991B1B;
}

.status-active {
  background: #D1FAE5;
  color: #065F46;
}

.status-inactive {
  background: #F3F4F6;
  color: #6B7280;
}

/* ── PAGINATION ─────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.page-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition);
  text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* ── EMPTY STATE ────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray-400);
}

.empty-state i {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.empty-state h2,
.empty-state h3 {
  color: var(--gray-600);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.empty-state.large i {
  font-size: 6rem;
}

.empty-state.small {
  padding: 40px 20px;
}

.empty-state.small i {
  font-size: 2.5rem;
}

/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--gray-500);
}

.breadcrumb a:hover {
  color: var(--green);
}

.breadcrumb i.fa-chevron-right {
  font-size: 0.65rem;
}

.breadcrumb span {
  color: var(--gray-800);
  font-weight: 500;
}

/* ── CHATBOT ─────────────────────────────────────────────── */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
}

.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: var(--shadow-green);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chatbot-toggle:hover {
  background: var(--green-dark);
  transform: scale(1.05);
}

.chatbot-icon-close {
  display: none;
}

.chatbot-unread {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--danger);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chatbot-box {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  max-height: 480px;
}

.chatbot-header {
  background: var(--forest);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.chatbot-header-info strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.chatbot-status {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot-status i {
  color: #4ade80;
  font-size: 0.55rem;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, .7);
  cursor: pointer;
  font-size: 1rem;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 85%;
  font-size: 0.86rem;
  line-height: 1.55;
  padding: 10px 14px;
  border-radius: var(--radius-lg);
}

.chat-msg.bot {
  background: var(--gray-100);
  color: var(--gray-800);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--green);
  color: var(--white);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.chat-msg a {
  color: var(--green);
  font-weight: 600;
}

.chat-msg.bot a {
  color: var(--green-dark);
}

.chat-typing {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  align-self: flex-start;
  width: fit-content;
}

.chat-typing span {
  width: 6px;
  height: 6px;
  background: var(--gray-400);
  border-radius: 50%;
  animation: typing 1.2s infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  60%,
  100% {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-6px)
  }
}

.chatbot-input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
}

.chatbot-input-area input {
  flex: 1;
  border: 1.5px solid var(--gray-200);
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.85rem;
  outline: none;
}

.chatbot-input-area input:focus {
  border-color: var(--green);
}

#chatbotSend {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 92px;
  right: 24px;
  z-index: 490;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--white);
}

/* ── TRACK ORDER ────────────────────────────────────────── */
.track-search {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.track-search .input-wrap {
  flex: 1;
}

.order-track-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 24px;
}

.order-track-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.order-track-header h2 {
  font-size: 1.2rem;
  font-family: var(--font-display);
  margin-bottom: 4px;
}

.order-track-header p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.track-progress {
  display: flex;
  align-items: center;
  padding: 28px;
  overflow-x: auto;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
  text-align: center;
}

.track-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.track-step.done .track-step-dot {
  background: var(--green);
  color: var(--white);
}

.track-step.active .track-step-dot {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 168, 107, .2);
}

.track-step span {
  font-size: 0.72rem;
  color: var(--gray-500);
  font-weight: 500;
}

.track-step.done span,
.track-step.active span {
  color: var(--forest);
  font-weight: 600;
}

.track-step-line {
  flex: 1;
  height: 3px;
  background: var(--gray-200);
  min-width: 30px;
}

.track-step-line.done {
  background: var(--green);
}

.track-number-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-light);
  padding: 16px 28px;
}

.track-number-box i {
  color: var(--green);
  font-size: 1.2rem;
}

.track-number-box strong {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-500);
}

.track-number-box span {
  font-weight: 600;
}

.order-track-address {
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.order-track-address h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-track-address p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--gray-700);
}

.order-track-items {
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.order-track-items h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-track-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
}

.order-track-item:last-child {
  border-bottom: none;
}

.order-track-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.order-track-item>div {
  flex: 1;
}

.order-track-item>div strong {
  display: block;
}

.order-track-item>div span {
  color: var(--gray-500);
  font-size: 0.8rem;
}

.order-track-totals {
  padding: 16px 28px;
  border-bottom: 1px solid var(--gray-100);
}

.order-track-totals>div {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.order-track-totals .total-row {
  font-size: 1rem;
  font-weight: 700;
  padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}

.order-track-help {
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.order-track-help i {
  color: var(--green);
  font-size: 1.1rem;
}

/* ── PAGE HERO SM ────────────────────────────────────────── */
.page-hero-sm {
  background: linear-gradient(135deg, var(--forest), #0e3028);
  padding: 50px 0;
  color: var(--white);
  text-align: center;
}

.page-hero-sm h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.page-hero-sm p {
  color: rgba(255, 255, 255, .7);
}

/* ── UTILITIES ──────────────────────────────────────────── */
.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--gray-500);
}

.text-red {
  color: var(--danger);
}

.no-content {
  color: var(--gray-400);
  font-style: italic;
  padding: 24px 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .shop-layout {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .search-bar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .auth-page {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    display: none;
  }

  .auth-mobile-logo {
    display: flex;
  }

  .auth-form-side {
    padding: 32px 20px;
  }

  .cart-layout {
    grid-template-columns: 1fr;
  }

  .profile-layout {
    grid-template-columns: 1fr;
  }

  .profile-sidebar {
    position: static;
  }

  .profile-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 60px 0;
  }

  .section-pad {
    padding: 56px 0;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 600;
    background: var(--white);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
  }

  .shop-sidebar.open {
    transform: none;
  }

  .sidebar-toggle {
    display: flex;
  }

  .sidebar-toggle-close {
    display: flex;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    align-items: center;
    justify-content: center;
  }

  .profile-stats-grid {
    grid-template-columns: 1fr;
  }

  .address-cards {
    grid-template-columns: 1fr;
  }

  .chatbot-box {
    width: calc(100vw - 48px);
    right: -8px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .product-brand {
    font-size: 0.65rem;
  }

  .product-name {
    font-size: 0.75rem;
  }

  .stars i {
    font-size: 0.55rem;
  }

  .rating-num,
  .rating-count {
    font-size: 0.68rem;
  }

  .price-current {
    font-size: 0.75rem;
    font-weight: 600;
  }

  .price-old {
    font-size: 0.62rem;
  }

  .add-cart-btn {
    width: 26px;
    height: 26px;
  }

  .add-cart-btn i {
    font-size: 0.6rem;
  }
}

@media (max-width: 420px) {
  .product-brand {
    font-size: 0.45rem;
  }

  .product-name {
    font-size: 0.5rem;
  }

  .price-current {
    font-size: 0.48rem;
  }

  .price-old {
    font-size: 0.4rem;
  }

  .add-cart-btn {
    width: 16px;
    height: 16px;
  }

  .add-cart-btn i {
    font-size: 0.4rem;
  }
}

@media (max-width: 380px) {
  .nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
  }
}

/* ── Admin "view only" shopping notice ────────────────────────── */
.admin-view-only-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 500;
}

.admin-cart-notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ── Staff-written review badge (storefront) ──────────────────── */
.staff-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #1B4D3E;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}