/* ============================================================
   PROTEIN PARK — Eye-Catchy Light Theme
   Frontend + Admin (single stylesheet)
   ============================================================ */

:root {
  --primary: #da9203;
  --primary-dark: #00924e;
  --primary-light: #e6f9ef;
  --accent: #faa833;
  --accent-light: #fff3e8;
  --blue: #2f6bff;
  --blue-light: #eef3ff;
  --dark: #16213a;
  --text: #3d4a5c;
  --text-light: #7a8799;
  --bg: #f5f8fb;
  --white: #ffffff;
  --border: #e6ecf2;
  --shadow: 0 6px 24px rgba(22, 33, 58, 0.08);
  --shadow-lg: 0 14px 40px rgba(22, 33, 58, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --grad: linear-gradient(120deg, #da9203, #fab733);
  --grad-orange: linear-gradient(120deg, #da9203, #fab733);
  --font: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 14px; }


#whatsapp {
			position: fixed;
			right: 10px;
			bottom: 25px;
			height: 60px;
			width: 60px;
			z-index: 1999;
			border-radius: 50%;
			animation: shadow-pulse 1.3s infinite;
		}
		#whatsapp img {
			width: 100%;
		}

		@keyframes shadow-pulse
		{
		  0% {
			box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.5);
		  }
		  100% {
			box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
		  }
		}

		@keyframes shadow-pulse-big
		{
		  0% {
			box-shadow: 0 0 0 0px rgba(255, 255, 255);
		  }
		  100% {
			box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
		  }
		}




.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 26px; border-radius: 50px; font-weight: 600; font-size: 14px;
  transition: all .25s ease; border: 2px solid transparent;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 6px 18px rgba(0,183,97,.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,183,97,.45); }
.btn-accent { background: var(--grad-orange); color: #fff; box-shadow: 0 6px 18px rgba(255,122,26,.35); }
.btn-accent:hover { transform: translateY(-2px); }
.btn-outline { border-color: var(--dark); color: var(--dark); background: #fff; }
.btn-outline:hover { background: var(--primary-light); }
.btn-ghost { color: var(--text); background: #fff; border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-danger { background: #ef4444; color: #fff; }
.btn-danger:hover { background: #dc2626; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Badges / pills ---------- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.badge-green { background: var(--primary-light); color: var(--primary-dark); }
.badge-orange { background: var(--accent-light); color: var(--accent); }
.badge-blue { background: #eee; color: #ff0000; }
.badge-red { background: #fee2e2; color: #dc2626; }
.badge-gray { background: #eef1f5; color: var(--text-light); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--dark); color: #fff; font-size: 12.5px;
  padding: 7px 0; text-align: center; letter-spacing: .4px;
  overflow: hidden;
  white-space: nowrap;
}
.topbar-track { display: flex; width: max-content; animation: topbar-scroll 30s linear infinite; }
.topbar-marquee { display: flex; align-items: center; gap: 44px; padding-right: 44px; }
.topbar-marquee span { display: inline-block; }
.topbar-marquee span:not(:last-child)::after {
  content: '|'; margin-left: 44px; opacity: .45;
}
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.header-main { background: var(--white); box-shadow: 0 2px 12px rgba(22,33,58,.06); position: sticky; top: 0; z-index: 100; }

.header-row { display: flex; align-items: center; gap: 22px; padding: 14px 0; }
.header-row .logoimg{width:190px;}
.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo .logo-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; font-weight: 800;
  box-shadow: 0 6px 16px rgba(0,183,97,.4);
}
.logo .logo-text { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1.1; }
.logo .logo-text span { color: var(--primary); }

/* Search bar */
.search-wrap { flex: 1; position: relative; max-width: 660px; left:5%;}
.search-box {
  display: flex; align-items: center; background: var(--bg); border: 2px solid var(--border);
  border-radius: 50px; padding: 4px 6px 4px 18px; transition: border-color .2s;
}
.search-box:focus-within { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(0,183,97,.12); }
.search-box input { flex: 1; border: none; outline: none; background: transparent; padding: 10px 0; font-size: 14px; }
.search-box button {
  background: var(--grad); color: #fff; width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: transform .2s;
}
.search-box button:hover { transform: scale(1.06); }

/* Suggestions dropdown */
.suggest-box {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; z-index: 200; display: none;
}
.suggest-box.open { display: block; }
.suggest-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--border); cursor: pointer; transition: background .15s; }
.suggest-item:last-child { border-bottom: none; }
.suggest-item:hover, .suggest-item.active { background: var(--primary-light); }
.suggest-item img { width: 42px; height: 42px; object-fit: cover; border-radius: 8px; }
.suggest-item .s-name { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.suggest-item .s-cat { font-size: 11.5px; color: var(--text-light); }
.suggest-item .s-price { margin-left: auto; font-weight: 700; color: var(--primary); font-size: 13.5px; white-space: nowrap; }
.suggest-empty { padding: 16px; text-align: center; color: var(--text-light); font-size: 13px; }

/* Header actions */
.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

.icon-btn {
  position: relative; width: 46px; height: 46px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center; transition: all .2s; color: var(--dark);
}
.icon-btn:hover { background: var(--primary-light); color: var(--primary); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-badge {
  position: absolute; top: 3px; right: 2px; background: var(--accent); color: #fff;
  min-width: 19px; height: 19px; border-radius: 50px; font-size: 10.5px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; padding: 0 4px;
}

/* Account dropdown */
.account-wrap { position: relative; }
.account-menu {
  position: absolute; right: 0; top: calc(100% + 10px); background: #fff; min-width: 200px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; display: none; z-index: 300;
}
.account-wrap.open .account-menu { display: block; }
.account-menu a { display: block; padding: 11px 18px; font-size: 14px; font-weight: 500; transition: background .15s; }
.account-menu a:hover { background: var(--primary-light); color: var(--primary); }
.account-menu .menu-head { background: var(--grad); color: #fff; padding: 14px 18px; font-size: 13px; }
.account-menu .menu-head strong { display: block; font-size: 15px; }
.account-menu .divider { height: 1px; background: var(--border); }

/* Navigation bar */
.nav-bar { border-top: 1px solid var(--border); background: var(--white); }
.nav-row { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: flex; align-items: center; gap: 6px; padding: 12px 16px; font-weight: 600; font-size: 14px; color: var(--dark); transition: color .2s; }
.nav-link.active, .nav-link:hover { color: var(--primary); }
.nav-link .caret { font-size: 9px; transition: transform .2s; }
.nav-item:hover .caret { transform: rotate(180deg); }

/* Category mega dropdown */
.cat-dropdown {
  position: absolute; top: calc(100% + 0px); left: 0; background: #fff; min-width: 620px;
  border-radius: 0 0 var(--radius) var(--radius); box-shadow: var(--shadow-lg);
  display: none; padding: 18px; gap: 22px; z-index: 250;
}
.nav-item:hover .cat-dropdown { display: grid; grid-template-columns: 1fr 1fr; }
.cat-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 8px; }
.cat-col a { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: var(--radius-sm); font-size: 13.5px; font-weight: 500; transition: background .15s; }
.cat-col a:hover { background: var(--primary-light); color: var(--primary); }

/* Hamburger */
.hamburger { display: none; width: 46px; height: 46px; border-radius: 50%; background: var(--bg); align-items: center; justify-content: center; }
.hamburger svg { width: 22px; height: 22px; }

/* ---------- Mobile drawer ---------- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(22,33,58,.55); z-index: 400; opacity: 0; visibility: hidden; transition: all .3s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 310px; max-width: 85vw; background: #fff;
  z-index: 500; transform: translateX(-100%); transition: transform .32s ease; overflow-y: auto;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px; background: var(--grad); color: #fff; }
.drawer-head strong { font-size: 17px; }
.drawer-close { color: #fff; font-size: 22px; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.drawer-close:hover { background: rgba(255,255,255,.15); }
.drawer-nav { padding: 10px 0; }
.drawer-nav a { display: block; padding: 13px 20px; font-weight: 600; color: var(--dark); border-bottom: 1px solid var(--border); font-size: 14.5px; }
.drawer-nav a:hover { color: var(--primary); background: var(--primary-light); }
.drawer-nav .drawer-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); padding: 16px 20px 6px; font-weight: 700; }
.drawer-foot { padding: 18px 20px; display: flex; flex-direction: column; gap: 10px; }

/* ============================================================
   SLIDER (homepage hero)
   ============================================================ */
.slider { position: relative; overflow: hidden; }
.slides { display: flex; transition: transform .6s ease; }
.slide { min-width: 100%; position: relative;  }
.slide-img { display: block; width: 100%; height: auto; }
.slide picture { display: block; }
.slide picture .slide-img { width: 100%; }
.slide-content { position: absolute; top: 50%; left: 0; transform: translateY(-50%); z-index: 2; color: #fff; max-width: 560px; padding: 40px; }
.slide-tag { display: inline-block; background: var(--accent); padding: 4px 14px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.slide-content h2 { font-size: 44px; line-height: 1.15; margin-bottom: 12px; font-weight: 800; }
.slide-content p { font-size: 16px; opacity: .92; margin-bottom: 24px; }
.slide-bg { position: absolute; inset: 0; background-size: 100% 100%; background-position: center; }
.slide-bg-alt {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #00b761, #0e8f5f 40%, #2f6bff);
}
.slide-bg-alt.grad-orange { background: linear-gradient(120deg, #ff7a1a, #ffb03a); }
.slide-bg-alt.grad-blue { background: linear-gradient(120deg, #2f6bff, #7a5cff); }

.slider-dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slider-dots button { width: 10px; height: 10px; border-radius: 50px; background: rgba(255,255,255,.5); transition: all .25s; }
.slider-dots button.active { width: 28px; background: #fff; }

/* ============================================================
   SHOP NOW ALL CTA (below hero slider)
   ============================================================ */
.shop-now-all-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 28px 16px 8px;
  text-align: center;
}
.shop-now-all-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 44px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 60px;
  box-shadow: 0 10px 30px rgba(218, 146, 3, .45), inset 0 -3px 0 rgba(0,0,0,.18);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: shop-now-pulse 2.2s ease-in-out infinite;
}
/* Gold shine sweep across the button */
.shop-now-all-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,.6), transparent);
  transform: skewX(-20deg);
  animation: shop-now-shine 2.8s ease-in-out infinite;
}
.shop-now-all-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 40px rgba(218, 146, 3, .6), inset 0 -3px 0 rgba(0,0,0,.18);
}
.shop-now-all-btn:active { transform: translateY(-1px) scale(.98); }
.shop-now-all-icon {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(255,255,255,.25);
}
.shop-now-all-arrow {
  font-size: 22px;
  line-height: 1;
  transition: transform .3s ease;
}
.shop-now-all-btn:hover .shop-now-all-arrow { transform: translateX(6px); }

@keyframes shop-now-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(218, 146, 3, .45); }
  50%      { box-shadow: 0 10px 38px rgba(218, 146, 3, .75); }
}
@keyframes shop-now-shine {
  0%, 55%  { left: -80%; }
  85%, 100% { left: 130%; }
}

@media (max-width: 640px) {
  .shop-now-all-section { padding: 20px 14px 6px; }
  .shop-now-all-btn { padding: 13px 30px; font-size: 15px; gap: 10px; border-radius: 50px; }
  .shop-now-all-icon { width: 28px; height: 28px; font-size: 11px; }
  .shop-now-all-arrow { font-size: 18px; }
}
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 54px; height: 54px;
  border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; font-size: 26px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: background .2s; backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,.4); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ============================================================
   SECTIONS / HEADINGS
   ============================================================ */
.section { padding: 52px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.section-title { font-size: 28px; font-weight: 800; color: var(--dark); }
.section-title span { color: var(--primary); }
.section-sub { color: var(--text-light); font-size: 14px; margin-top: 4px; }
.section-link { color: var(--primary); font-weight: 700; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.section-link:hover { gap: 10px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  transition: all .28s ease; position: relative; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-media { position: relative; padding: 18px; background: linear-gradient(180deg, #f7fafc, #eef3f7); overflow: hidden; }
.product-media img { width: 100%; height: 210px; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-media img { transform: scale(1.06); }
.product-badges { position: absolute; top: 14px; left: 14px; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.product-combo-badge {
  display: inline-block; padding: 5px 12px; border-radius: 50px; font-size: 11.5px; font-weight: 800;
  letter-spacing: .8px; text-transform: uppercase; color: #fff; background: linear-gradient(135deg, #ff512f, #dd2476);
  box-shadow: 0 4px 12px rgba(221, 36, 118, .45); animation: comboBlink 1.4s ease-in-out infinite;
}
@keyframes comboBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .55; transform: scale(.92); }
}
.product-expiry-badge {
  display: inline-block; padding: 5px 10px; border-radius: 50px; font-size: 10.5px; font-weight: 800;
  letter-spacing: .5px; text-transform: uppercase; color: #92400e; background: #fef3c7;
  border: 1px solid #fcd34d; box-shadow: 0 3px 8px rgba(245, 158, 11, .3);
  white-space: nowrap; animation: expiryBlink 1.6s ease-in-out infinite;
}
@keyframes expiryBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}
.product-discount { position: absolute; top: 14px; right: 14px; background: var(--accent); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 10px; border-radius: 50px; z-index: 2; }
.product-expiry-stripe {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 7px 12px; font-size: 11.5px; font-weight: 800; letter-spacing: .4px;
  color: var(--primary); background: #fff;
  border-top: 1px solid #f0e3c8; white-space: nowrap;
}
.product-expiry-stripe.urgent {
  color: var(--primary); background: #fff;
  border-top: 1px solid #f0e3c8;
}

/* ============ DEAL TIMER STRIP (Daily Hot Deals) ============ */
.deal-timer-strip {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: #fff; border-radius: 10px; padding: 12px 22px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .09);
  margin: -6px 0 22px; flex-wrap: wrap;
}
.deal-timer-left { display: flex; align-items: center; gap: 12px; }
.deal-timer-accent {
  width: 5px; height: 34px; border-radius: 4px; background: var(--accent);
  transform: skewX(-8deg); box-shadow: 0 3px 8px rgba(250, 168, 51, .4);
}
.deal-timer-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 26px; font-weight: 700; font-style: italic;
  color: var(--dark); letter-spacing: .4px; white-space: nowrap;
}
.deal-timer-divider { color: #d4d4d4; font-size: 30px; font-weight: 300; line-height: 1; }
.deal-timer-right { display: flex; align-items: center; gap: 14px; }
.deal-timer-label {
  font-size: 13px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--dark); white-space: nowrap;
}
.deal-timer-cd { display: flex; align-items: center; gap: 3px; }
.deal-timer-cell { display: flex; flex-direction: column; align-items: center; }
.deal-timer-num {
  min-width: 38px; padding: 5px 6px 4px; border-radius: 8px;
  background: var(--grad-orange); color: #fff;
  font-size: 17px; font-weight: 800; font-variant-numeric: tabular-nums;
  text-align: center; line-height: 1.3;
  box-shadow: 0 4px 10px rgba(250, 168, 51, .35);
}
.deal-timer-unit {
  font-size: 8.5px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  color: var(--text-light); margin-top: 4px;
}
.deal-timer-sep {
  font-size: 17px; font-weight: 800; color: var(--accent);
  animation: dealSepBlink 1s step-end infinite; margin-top: -12px;
}
@keyframes dealSepBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}
@media (max-width: 640px) {
  .deal-timer-strip { gap: 10px; padding: 10px 14px; margin: 0 0 18px; }
  .deal-timer-title { font-size: 20px; }
  .deal-timer-divider { font-size: 24px; }
  .deal-timer-right { gap: 8px; }
  .deal-timer-label { font-size: 10px; }
  .deal-timer-num { min-width: 21px; font-size: 12px; font-weight:600; padding: 4px 5px 3px; }
  .deal-timer-unit { font-size: 7.5px; }
  .deal-timer-sep { font-size: 14px; }
}
.product-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-brand { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 700; }
.product-name { font-size: 14.5px; font-weight: 700; color: var(--dark); margin: 5px 0 10px; line-height: 1.35; flex: 1; }
.product-name a:hover { color: var(--primary); }
.product-meta { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.product-price { font-size: 19px; font-weight: 700; color: var(--dark); }
.product-mrp { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.product-save { font-size: 12px; font-weight: 700; color: var(--accent); }
.product-foot { display: flex; gap: 8px; }
.product-foot .btn { flex: 1; padding: 10px 12px; font-size: 13px; }

.stock-low { font-size: 11.5px; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.stock-out { font-size: 11.5px; color: #dc2626; font-weight: 600; margin-bottom: 10px; }

/* ============================================================
   CATEGORY TILES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 18px; }
.cat-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border);
  padding: 26px 18px; text-align: center; transition: all .25s; position: relative; overflow: hidden;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cat-card .cat-icon {
  width: 150px; height: 150px; margin: 0 auto 14px; border-radius: 18px;
  background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 26px; font-weight: 800; transition: all .25s; overflow: hidden;
}
.cat-card .cat-icon img { width: 100%; height: 100%; object-fit: cover; }
.cat-card:hover .cat-icon { background: var(--grad); color: #fff; transform: rotate(-6deg) scale(1.05); }
.cat-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); }
.cat-card p { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ============================================================
   SHOP / FILTERS
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 26px; align-items: start; }
.sidebar { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 20px; position: sticky; top: 120px; }
/* Shop filters — hidden on mobile only, toggled via the "Filters" button */
.toolbar #filterToggle { display: none; }
.sidebar h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 12px; }
.sidebar-block { margin-bottom: 22px; }
.sidebar-block:last-child { margin-bottom: 0; }
.filter-link { display: block; padding: 7px 10px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 500; transition: all .15s; color: var(--text); }
.filter-link:hover { background: var(--primary-light); color: var(--primary); }
.filter-link.active { background: var(--primary); color: #fff; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.price-box { display: flex; align-items: center; gap: 6px; }
.price-box input { width: 100%; padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm); }

.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.toolbar .count { color: var(--text-light); font-size: 14px; }
.toolbar select { padding: 9px 14px; border: 1px solid var(--border); border-radius: 50px; background: #fff; outline: none; cursor: pointer; font-weight: 600; color: var(--dark); }

.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; background: #fff; border: 1px solid var(--border); font-weight: 600; font-size: 14px; transition: all .2s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .active { background: var(--grad); color: #fff; border-color: transparent; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.gallery-main { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; padding: 24px; }
.gallery-main img { width: 100%; height: 440px; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.gallery-thumbs button { width: 74px; height: 74px; border-radius: 10px; overflow: hidden; border: 2px solid var(--border); padding: 4px; background: #fff; transition: border-color .2s; }
.gallery-thumbs button.active, .gallery-thumbs button:hover { border-color: var(--primary); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pd-brand { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); font-weight: 800; }
.pd-title { font-size: 28px; font-weight: 800; color: var(--dark); margin: 8px 0 12px; line-height: 1.25; }
.pd-rating { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.pd-rating .stars { color: #f5a623; letter-spacing: 2px; }
.pd-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.pd-price { font-size: 34px; font-weight: 800; color: var(--primary); }
.pd-mrp { font-size: 18px; color: var(--text-light); text-decoration: line-through; }
.pd-save { background: var(--primary-light); color: var(--primary-dark); font-weight: 800; font-size: 13px; padding: 5px 12px; border-radius: 50px; }
.pd-tax { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.pd-stock { display: inline-flex; align-items: center; gap: 7px; background: var(--primary-light); color: var(--primary-dark); font-weight: 700; font-size: 13px; padding: 7px 14px; border-radius: 50px; margin-bottom: 18px; }
.pd-stock.out { background: #fee2e2; color: #dc2626; }

.pd-specs { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 14px 0; margin-bottom: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pd-specs .spec { font-size: 13.5px; }
.pd-specs .spec strong { color: var(--dark); display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .5px; color: var(--text-light); }
.pd-specs .spec b { color: var(--dark); }

.pd-expiry {
  display: flex; align-items: center; gap: 8px; margin: 0 0 18px; padding: 11px 14px;
  border-radius: 10px; background: var(--primary-light); color: var(--primary-dark);
  font-size: 13px; font-weight: 600; border: 1px solid rgba(0, 183, 97, .25);
}
.pd-expiry.urgent {
  background: #fff4e5; color: #b45309; border-color: rgba(245, 158, 11, .4);
  animation: pdExpiryPulse 2s ease-in-out infinite;
}
@keyframes pdExpiryPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: 0 0 0 5px rgba(245, 158, 11, .18); }
}

.qty-stepper { display: inline-flex; align-items: center; border: 2px solid var(--border); border-radius: 50px; overflow: hidden; }
.qty-stepper button { width: 42px; height: 44px; font-size: 18px; font-weight: 700; color: var(--dark); transition: background .15s; }
.qty-stepper button:hover { background: var(--primary-light); color: var(--primary); }
.qty-stepper input { width: 52px; text-align: center; border: none; outline: none; font-weight: 700; font-size: 15px; background: transparent; }

.pd-actions { display: flex; gap: 12px; margin-bottom: 22px; flex-wrap: wrap; }
.pd-actions .btn { padding: 15px 28px; font-size: 15px; }

.pd-desc { margin-top: 8px; }
.pd-desc h4 { color: var(--dark); font-size: 16px; margin-bottom: 8px; }
.pd-desc p { color: var(--text); font-size: 14.5px; }

.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 13.5px; color: var(--text-light); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { opacity: .5; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 26px; align-items: start; }
.cart-table { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.cart-row { display: grid; grid-template-columns: 90px 1fr 130px 90px 40px; align-items: center; gap: 16px; padding: 18px; border-bottom: 1px solid var(--border); }
.cart-row:last-child { border-bottom: none; }
.cart-row img { width: 84px; height: 84px; object-fit: contain; border-radius: 10px; background: var(--bg); padding: 6px; }
.cart-item-name { font-weight: 700; color: var(--dark); font-size: 14.5px; }
.cart-item-name a:hover { color: var(--primary); }
.cart-item-meta { font-size: 12.5px; color: var(--text-light); }
.cart-item-price { font-weight: 700; color: var(--dark); }
.cart-remove { width: 36px; height: 36px; border-radius: 50%; color: #dc2626; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.cart-remove:hover { background: #fee2e2; }

.cart-summary { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; position: sticky; top: 120px; }
.cart-summary h3 { color: var(--dark); font-size: 18px; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14.5px; }
.sum-row.grand { font-size: 17px; font-weight: 800; color: var(--dark); border-top: 1px dashed var(--border); padding-top: 14px; margin-top: 4px; }
.sum-row .discount-val { color: var(--primary); font-weight: 700; }
.sum-row .free { color: var(--primary); font-weight: 700; font-size: 13px; }

.coupon-box { display: flex; gap: 8px; margin-bottom: 18px; }
.coupon-box input { flex: 1; padding: 11px 14px; border: 2px dashed var(--border); border-radius: 10px; outline: none; font-weight: 600; text-transform: uppercase; }
.coupon-box input:focus { border-color: var(--primary); }
.coupon-applied { background: var(--primary-light); border-radius: 10px; padding: 10px 14px; font-size: 13.5px; font-weight: 600; color: var(--primary-dark); margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; }
.coupon-applied button { color: #dc2626; font-size: 13px; font-weight: 700; }

/* ============================================================
   CHECKOUT
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }
.form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 26px; margin-bottom: 22px; }
.form-card h3 { color: var(--dark); font-size: 17px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.form-card h3 .num { width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group label .req { color: var(--accent); }
.form-control { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 10px; outline: none; transition: border-color .2s; background: #fff; }
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,183,97,.12); }
textarea.form-control { resize: vertical; min-height: 90px; }

/* ---------- Payment options (checkout) ---------- */
.pay-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all .25s ease;
  background: linear-gradient(180deg, #ffffff, #fafcfe);
  box-shadow: 0 2px 10px rgba(22, 33, 58, 0.04);
}
.pay-option:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(218, 146, 3, 0.12);
}
.pay-option.selected {
  border-color: var(--primary);
  background: linear-gradient(180deg, #fffdf7, #fff8ea);
  box-shadow: 0 0 0 4px rgba(218, 146, 3, 0.12), 0 8px 24px rgba(218, 146, 3, 0.14);
}
.pay-option input {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
}
.pay-option .pay-info { flex: 1; }
.pay-option .pay-info strong { display: block; color: var(--dark); font-size: 15.5px; font-weight: 700; }
.pay-option .pay-info .pay-sub { font-size: 13px; color: var(--text-light); line-height: 1.4; }
.pay-option .pay-vendor-icons {
  display: flex;
  margin-top: 10px;
  padding: 6px 10px;
  background: #fff;
  border: 1.5px dashed var(--border);
  border-radius: 10px;
}
.pay-option .pay-vendor-icons img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 6px;
}
.pay-option .pay-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  font-size: 13px;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(218, 146, 3, 0.3);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.pay-option .pay-icon.rzp { background: linear-gradient(135deg, #2f6bff, #5b8cff); box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3); }
.pay-option .pay-icon.cf { background: linear-gradient(135deg, #16213a, #3d4a5c); box-shadow: 0 4px 12px rgba(22, 33, 58, 0.3); }

/* ============================================================
   AUTH PAGES (login / signup)
   ============================================================ */
.auth-wrap { display: flex; align-items: center; justify-content: center; padding: 70px 20px; }
.auth-card { background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); width: 100%; max-width: 440px; overflow: hidden; }
.auth-head { background: var(--grad); color: #fff; padding: 30px 34px; text-align: center; }
.auth-head h2 { font-size: 24px; font-weight: 800; }
.auth-head p { font-size: 13.5px; opacity: .9; margin-top: 4px; }
.auth-body { padding: 30px 34px; }
.auth-alt { text-align: center; font-size: 14px; color: var(--text-light); margin-top: 18px; }
.auth-alt a { color: var(--primary); font-weight: 700; }
.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 18px; font-weight: 500; }
.alert-error { background: #fee2e2; color: #b91c1c; }
.alert-success { background: var(--primary-light); color: var(--primary-dark); }
.alert-info { background: var(--blue-light); color: #1d4ed8; }

/* ============================================================
   ACCOUNT PAGES
   ============================================================ */
.account-layout { display: grid; grid-template-columns: 250px 1fr; gap: 26px; align-items: start; }
.account-side { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; }
.account-user { background: var(--grad); color: #fff; padding: 22px; text-align: center; }
.account-user .avatar { width: 58px; height: 58px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 800; margin: 0 auto 10px; }
.account-user strong { display: block; }
.account-user span { font-size: 12.5px; opacity: .9; }
.account-nav a { display: flex; align-items: center; gap: 10px; padding: 13px 20px; font-size: 14px; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); transition: all .15s; }
.account-nav a:hover, .account-nav a.active { background: var(--primary-light); color: var(--primary); }
.account-nav a.active { border-left: 3px solid var(--primary); }

.table-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.table { width: 100%; border-collapse: collapse; min-width: 640px; }
.table th { text-align: left; padding: 13px 16px; background: #f8fafc; font-size: 12px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-light); border-bottom: 1px solid var(--border); }
.table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; vertical-align: middle; }
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: #fafcfe; }
.table .actions { display: flex; gap: 8px; }
.table img.thumb { width: 48px; height: 48px; object-fit: contain; border-radius: 8px; background: var(--bg); padding: 4px; }

/* Status timeline */
.status-timeline { display: flex; margin: 26px 0; }
.status-step { flex: 1; text-align: center; position: relative; }
.status-step::before { content: ''; position: absolute; top: 15px; left: -50%; width: 100%; height: 3px; background: var(--border); }
.status-step:first-child::before { display: none; }
.status-step .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--border); display: inline-flex; align-items: center; justify-content: center; position: relative; z-index: 2; color: #fff; font-size: 13px; font-weight: 800; margin-bottom: 8px; }
.status-step.done::before { background: var(--primary); }
.status-step.done .dot { background: var(--grad); }
.status-step.current .dot { background: var(--accent); box-shadow: 0 0 0 6px var(--accent-light); }
.status-step span { display: block; font-size: 12px; font-weight: 600; color: var(--text-light); }
.status-step.done span, .status-step.current span { color: var(--dark); }

/* ============================================================
   STAT CARDS (admin dashboard + misc)
   ============================================================ */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-bottom: 26px; }
.stat-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 20px 22px; display: flex; align-items: center; gap: 16px; transition: all .25s; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; flex-shrink: 0; }
.stat-card .stat-val { font-size: 24px; font-weight: 800; color: var(--dark); line-height: 1.2; }
.stat-card .stat-label { font-size: 12.5px; color: var(--text-light); font-weight: 600; }

/* Chart bars */
.chart { display: flex; align-items: flex-end; gap: 12px; height: 180px; padding: 16px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.chart .bar-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.chart .bar { width: 100%; max-width: 46px; background: var(--grad); border-radius: 8px 8px 0 0; min-height: 4px; transition: height .5s ease; position: relative; }
.chart .bar:hover { opacity: .85; }
.chart .bar-label { font-size: 11px; color: var(--text-light); font-weight: 600; }
.chart .bar-val { font-size: 11px; font-weight: 800; color: var(--primary-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark); color: #b9c3d4; margin-top: 60px; }
.footer-top { padding: 56px 0 36px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 13.5px; margin: 14px 0 18px; line-height: 1.7; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: all .2s; font-size: 15px; }
.socials a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; border-radius: 3px; background: var(--grad); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; transition: all .2s; display: inline-flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--primary); transform: translateX(4px); }
.footer-col ul a::before { content: '›'; color: var(--primary); font-weight: 700; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: 13.5px; }
.footer-contact .ic { color: var(--primary); font-weight: 800; }
.newsletter { margin-top: 6px; }
.newsletter .nl-box { display: flex; background: rgba(255,255,255,.08); border-radius: 50px; padding: 5px; margin-top: 14px; }
.newsletter input { flex: 1; background: transparent; border: none; outline: none; padding: 8px 14px; color: #fff; font-size: 13px; }
.newsletter input::placeholder { color: #8b95a8; }
.newsletter button { background: var(--grad); color: #fff; padding: 9px 18px; border-radius: 50px; font-weight: 700; font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.footer-bottom .pay-badges { display: flex; gap: 8px; }
.footer-bottom .pay-badges span { background: rgba(255,255,255,.08); padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 700; color: #dfe6f0; letter-spacing: .5px; }
.footer-bottom a { color: var(--primary); font-weight: 600; }

/* ============================================================
   TOASTS
   ============================================================ */
.toast-wrap { position: fixed; top: 20px; right: 20px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.toast { background: var(--dark); color: #fff; padding: 13px 20px; border-radius: 12px; font-size: 14px; font-weight: 500; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px; animation: toast-in .3s ease; max-width: 340px; }
.toast.success { background: var(--primary); }
.toast.error { background: #dc2626; }
.toast.info { background: var(--blue); }
@keyframes toast-in { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ============================================================
   EMPTY STATES
   ============================================================ */
.empty-state { text-align: center; padding: 60px 20px; background: #fff; border-radius: var(--radius); border: 1px dashed var(--border); }
.empty-state .empty-icon { font-size: 52px; margin-bottom: 14px; }
.empty-state h3 { color: var(--dark); font-size: 19px; margin-bottom: 6px; }
.empty-state p { color: var(--text-light); font-size: 14px; margin-bottom: 18px; }

/* ============================================================
   ADMIN LAYOUT
   ============================================================ */
.admin-body { display: flex; min-height: 100vh; background: var(--bg); }
.admin-sidebar { width: 250px; background: var(--dark); color: #b9c3d4; position: fixed; inset: 0 auto 0 0; z-index: 600; transition: transform .3s; display: flex; flex-direction: column; }
.admin-sidebar .side-brand { padding: 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-sidebar .side-brand .logo-icon { width: 38px; height: 38px; font-size: 17px; }
.admin-sidebar .side-brand strong { color: #fff; font-size: 16px; }
.admin-sidebar .side-brand span { display: block; font-size: 11px; color: #8b95a8; }
.admin-nav { flex: 1; padding: 14px 0; overflow-y: auto; }
.admin-nav .nav-head { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #6b7688; padding: 12px 22px 6px; font-weight: 700; }
.admin-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 22px; font-size: 14px; font-weight: 500; transition: all .15s; border-left: 3px solid transparent; }
.admin-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.admin-nav a.active { background: rgba(0,183,97,.15); color: #fff; border-left-color: var(--primary); }
.admin-nav a .nav-ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.admin-nav a.active .nav-ic { background: var(--grad); }
.admin-sidebar .side-foot { padding: 16px 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; }

.admin-main { flex: 1; margin-left: 250px; display: flex; flex-direction: column; min-width: 0; }
.admin-topbar { background: #fff; padding: 0 26px; height: 64px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 500; }
.admin-topbar h2 { font-size: 17px; color: var(--dark); }
.admin-topbar .admin-user { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--dark); }
.admin-topbar .admin-user .av { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; }
.admin-content { padding: 26px; }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 20px; flex-wrap: wrap; }
.admin-toolbar .search-inline { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-toolbar .form-control { min-width: 200px; }
.sidebar-toggle { display: none; }

/* Admin forms */
.admin-form-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 26px; max-width: 860px; }
.admin-form-card .form-grid { grid-template-columns: 1fr 1fr; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; }

/* Switch toggle */
.switch { position: relative; display: inline-block; width: 48px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: #cbd5e1; border-radius: 50px; transition: .25s; cursor: pointer; }
.switch .slider::before { content: ''; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .25s; box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.switch input:checked + .slider { background: var(--primary); }
.switch input:checked + .slider::before { transform: translateX(22px); }

/* Login page (admin) */
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--dark), #0f2a4d); padding: 20px; }
.admin-login-card { background: #fff; border-radius: 20px; width: 100%; max-width: 400px; padding: 36px; box-shadow: 0 24px 60px rgba(0,0,0,.3); }
.admin-login-card .logo { justify-content: center; margin-bottom: 8px; }
.admin-login-card h2 { text-align: center; color: var(--dark); font-size: 22px; margin-bottom: 4px; }
.admin-login-card .sub { text-align: center; color: var(--text-light); font-size: 13.5px; margin-bottom: 24px; }

/* Image preview in forms */
.img-preview { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.img-preview .p-item { position: relative; width: 90px; height: 90px; }
.img-preview .p-item img { width: 100%; height: 100%; object-fit: contain; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); padding: 4px; }
.img-preview .p-item button { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: #dc2626; color: #fff; font-size: 13px; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   USP STRIP (below hero)
   ============================================================ */
.usp-strip { background: var(--white); border-bottom: 1px solid var(--border); }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 8px; padding: 18px 0; }
.usp-item { display: flex; align-items: center; gap: 12px; padding: 8px 14px; border-radius: 12px; transition: background .2s; }
.usp-item:hover { background: var(--bg); }
.usp-item .usp-ic { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.usp-item strong { display: block; font-size: 13.5px; color: var(--dark); }
.usp-item span { font-size: 12px; color: var(--text-light); }
.usp-green { background: var(--primary-light); }
.usp-orange { background: var(--accent-light); }
.usp-blue { background: var(--blue-light); }

/* ============================================================
   DEAL OF THE DAY
   ============================================================ */
.deal-section { position: relative; overflow: hidden; }
.deal-banner {
  background: linear-gradient(120deg, #16213a, #1f3a63 55%, #0e8f5f);
  border-radius: 22px; padding: 46px; display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; align-items: center;
  position: relative; overflow: hidden; color: #fff;
}
.deal-banner::before { content: ''; position: absolute; right: -90px; top: -90px; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.06); }
.deal-banner::after { content: ''; position: absolute; right: 40px; bottom: -120px; width: 240px; height: 240px; border-radius: 50%; background: rgba(0,183,97,.25); }
.deal-tag { display: inline-block; background: var(--accent); padding: 5px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 14px; }
.deal-title { font-size: 34px; font-weight: 800; line-height: 1.2; margin-bottom: 10px; }
.deal-title span { color: #5ef2ae; }
.deal-desc { font-size: 15px; opacity: .9; margin-bottom: 22px; max-width: 440px; }
.deal-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.deal-price { font-size: 34px; font-weight: 800; color: #5ef2ae; }
.deal-mrp { font-size: 17px; opacity: .6; text-decoration: line-through; }
.deal-off { background: rgba(255,122,26,.9); padding: 6px 14px; border-radius: 50px; font-weight: 800; font-size: 13px; }

.deal-timer { display: flex; gap: 12px; margin-bottom: 26px; }
.deal-timer .t-box { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.15); border-radius: 12px; padding: 10px 14px; min-width: 68px; text-align: center; backdrop-filter: blur(4px); }
.deal-timer .t-box b { display: block; font-size: 24px; font-weight: 800; }
.deal-timer .t-box span { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }

.deal-product { position: relative; z-index: 2; }
.deal-product .product-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.15); }
.deal-product .product-name, .deal-product .product-price { color: #fff; }
.deal-product .product-mrp { opacity: .6; }
.deal-product .product-brand { color: rgba(255,255,255,.6); }
.deal-product .product-media { background: rgba(255,255,255,.06); }
.deal-product .btn { flex: 1; }

/* ============================================================
   PROMO BANNER GRID (mid page)
   ============================================================ */
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.promo-banner { border-radius: 20px; padding: 34px; position: relative; overflow: hidden; min-height: 200px; display: flex; flex-direction: column; justify-content: center; transition: transform .3s ease; }
.promo-banner:hover { transform: translateY(-4px); }
.promo-banner h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; line-height: 1.25; }
.promo-banner p { font-size: 14px; margin-bottom: 18px; max-width: 70%; }
.promo-banner .btn { align-self: flex-start; }
.promo-banner .pb-art { position: absolute; right: -20px; bottom: -30px; font-size: 130px; opacity: .14; font-weight: 900; transform: rotate(-12deg); pointer-events: none; }
.promo-green { background: linear-gradient(120deg, #e6f9ef, #d3f2e3); color: #0d6b3f; }
.promo-green h3 { color: #0d6b3f; }
.promo-orange { background: linear-gradient(120deg, #fff3e8, #ffe4cf); color: #c2410c; }
.promo-orange h3 { color: #c2410c; }
.promo-blue { background: linear-gradient(120deg, #eef3ff, #dde8ff); color: #1e40af; }
.promo-blue h3 { color: #1e40af; }
.promo-dark { background: linear-gradient(120deg, #16213a, #2b3a5e); color: #fff; }
.promo-dark h3 { color: #fff; }
.promo-dark p { opacity: .85; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); border-top: 1px solid var(--border); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.why-card { text-align: center; padding: 30px 22px; border-radius: var(--radius); border: 1px solid var(--border); transition: all .28s; background: var(--bg); }
.why-card:hover { background: #fff; box-shadow: var(--shadow); transform: translateY(-5px); border-color: transparent; }
.why-card .why-ic { width: 66px; height: 66px; margin: 0 auto 16px; border-radius: 20px; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 20px rgba(0,183,97,.35); }
.why-card:nth-child(2) .why-ic { background: var(--grad-orange); box-shadow: 0 8px 20px rgba(255,122,26,.35); }
.why-card:nth-child(3) .why-ic { background: linear-gradient(120deg, #2f6bff, #7a5cff); box-shadow: 0 8px 20px rgba(47,107,255,.35); }
.why-card:nth-child(4) .why-ic { background: linear-gradient(120deg, #10b981, #0ea5e9); box-shadow: 0 8px 20px rgba(16,185,129,.35); }
.why-card h3 { font-size: 16px; color: var(--dark); margin-bottom: 8px; }
.why-card p { font-size: 13.5px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testi-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border); padding: 26px; position: relative; transition: all .25s; }
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-card .quote { font-size: 40px; color: var(--primary); font-family: Georgia, serif; line-height: 1; margin-bottom: 10px; }
.testi-card p { font-size: 14px; color: var(--text); line-height: 1.7; margin-bottom: 18px; }
.testi-stars { color: #f5a623; letter-spacing: 3px; font-size: 15px; margin-bottom: 14px; }
.testi-user { display: flex; align-items: center; gap: 12px; }
.testi-user .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }
.testi-user strong { display: block; color: var(--dark); font-size: 14.5px; }
.testi-user span { font-size: 12.5px; color: var(--text-light); }
.testi-badge { position: absolute; top: 20px; right: 20px; }
.testi-badge .badge { background: var(--primary-light); color: var(--primary-dark); }

/* ============================================================
   PRODUCT SLIDER (Best Sellers / New Arrivals / Featured)
   ============================================================ */
.prod-slider-wrap { position: relative; }
.prod-slider {
  display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 22px;
  scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--border) var(--border);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
}
.prod-slider::-webkit-scrollbar { height: 8px; }
.prod-slider::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
.prod-slider::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.prod-slider .product-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.prod-slider-arrows {
  display: flex; justify-content: center; gap: 10px; margin-top: 6px;
}
@media (max-width: 640px) {
  .container { width: 100%; padding: 0 10px; }  	
  .prod-slider .product-card { flex-basis: 315px; }
  .prod-slider .product-media img { height: 150px; }
}

/* ============================================================
   BRAND SLIDER (Shop by Brand, 320x450 cards)
   ============================================================ */
.brand-slider-wrap { position: relative; }
.brand-slider {
  display: flex; gap: 22px; overflow-x: auto; padding: 10px 4px 22px;
  scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--border) var(--border);
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
}
.brand-slider::-webkit-scrollbar { height: 8px; }
.brand-slider::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
.brand-slider::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.brand-card {
  flex: 0 0 220px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border);
  overflow: hidden; transition: all .28s ease; position: relative;
  scroll-snap-align: start;
}
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.brand-card .brand-img {
  width: 100%; height: 280px; background: linear-gradient(180deg, #f7fafc, #eef3f7);
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}
.brand-card .brand-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.brand-card:hover .brand-img img { transform: scale(1.06); }
.brand-card .brand-img .brand-fallback {
  font-size: 44px; font-weight: 800; color: #fff; text-shadow: 0 4px 14px rgba(0,0,0,.25);
  text-transform: uppercase; letter-spacing: 2px;
}
.brand-card .brand-body { padding: 14px 16px 18px; text-align: center; }
.brand-card .brand-body h3 { font-size: 15.5px; font-weight: 700; color: var(--dark); }
.brand-card .brand-body span { font-size: 12px; color: var(--text-light); }
.brand-card .brand-body .btn { margin-top: 10px; width: 100%; }

.brand-slider-arrows { display: flex; gap: 8px; }
.brand-arrow {
  width: 48px; height: 48px; border-radius: 50%; background: #eee; border: 1px solid var(--border);
  display: flex; justify-content: center; font-size: 28px; font-weight: 600; color: var(--dark);
  transition: all .2s; cursor: pointer;border:1px solid #ddd;
}
.brand-arrow:hover { background: var(--grad); color: #fff; border-color: transparent; }

@media (max-width: 640px) {
  .header-row .logoimg{width:150px;}   	
  .brand-card { flex-basis: 170px; }
  .brand-card .brand-img { height: 220px; }
  .search-wrap {left:0;}
}

/* ============================================================
   CATEGORY SLIDER (Trending Categories)
   ============================================================ */
.cat-slider-wrap { position: relative; }
.cat-slider {
  display: flex; gap: 18px; overflow-x: auto; padding: 10px 4px 22px;
  scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--border) var(--border);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding: 4px;
}
.cat-slider::-webkit-scrollbar { height: 8px; }
.cat-slider::-webkit-scrollbar-track { background: var(--border); border-radius: 10px; }
.cat-slider::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
.cat-slider .cat-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
}
.cat-slider-arrows {
  display: flex; justify-content: center; gap: 10px; margin-top: 6px;
}
@media (max-width: 640px) {
  .cat-slider .cat-card { flex-basis: 160px; }
}

/* ============================================================
   SECTION TOOLS / misc
   ============================================================ */
.bg-white-section { background: var(--white); border-top: 1px solid var(--border); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.deal-product-col { display: flex; flex-direction: column; gap: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .search-wrap { order: 3; flex-basis: 100%; max-width: none; }
  .header-row { flex-wrap: wrap; }
  .nav-bar { display: none; }
  .hamburger { display: flex; }
  .shop-layout, .account-layout { grid-template-columns: 1fr; }
  .sidebar, .account-side { position: static; }
  /* Mobile: filters hidden by default, toggled via the "Filters" button */
  .toolbar #filterToggle { display: inline-flex; }
  .shop-layout .sidebar { display: none; }
  .shop-layout.filters-open .sidebar { display: block; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .product-detail { grid-template-columns: 1fr; gap: 26px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .deal-banner { grid-template-columns: 1fr; padding: 34px; }
  .deal-product { max-width: 340px; }
  .promo-grid { grid-template-columns: 1fr; }
  .slide-content h2 { font-size: 34px; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: flex; }
}

@media (max-width: 640px) {
  .header-row { padding: 12px 0; gap: 12px; }
  .logo .logo-text { font-size: 18px; }
  .slide-content { padding: 26px; }
  .slide-content h2 { font-size: 26px; }
  .slide-content p { font-size: 14px; }
  .deal-banner { padding: 26px 22px; }
  .deal-title { font-size: 26px; }
  .deal-price { font-size: 27px; }
  .deal-timer .t-box { min-width: 58px; padding: 8px 10px; }
  .deal-timer .t-box b { font-size: 19px; }
  .promo-banner { padding: 26px 22px; min-height: 170px; }
  .promo-banner h3 { font-size: 20px; }
  .section { padding: 38px 0; }
  .section-title { font-size: 16px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-media img { height: 150px; }
  .product-price { font-size: 16px; }
  .product-foot .btn { padding: 9px 8px; font-size: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .cart-row { grid-template-columns: 70px 1fr 30px; grid-template-areas: 'img info rm' 'img qty rm'; }
  .cart-row img { grid-area: img; width: 64px; height: 64px; }
  .cart-item-price { grid-area: info; }
  .qty-stepper { grid-area: qty; justify-self: start; }
  .cart-remove { grid-area: rm; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .admin-content { padding: 16px; }
  .admin-toolbar { flex-direction: column; align-items: stretch; }
  .admin-toolbar .search-inline { flex-direction: column; }
  .admin-form-card .form-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .table { min-width: 560px; }
  .pd-title { font-size: 22px; }
  .pd-price { font-size: 27px; }
  .gallery-main img { height: 280px; }
}

/* ============================================================
   EXPIRY DATE CALENDAR POPUP (admin)
   ============================================================ */
.expiry-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }

.cal-overlay {
  position: fixed; inset: 0; z-index: 999; background: rgba(15, 23, 42, .55);
  display: none; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(3px);
}
.cal-overlay.open { display: flex; }
.cal-popup {
  width: 340px; max-width: 100%; background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3); animation: calPop .25s ease;
}
@keyframes calPop {
  from { transform: translateY(14px) scale(.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 16px 18px; background: linear-gradient(135deg, #00b761, #2f6bff); color: #fff;
}
.cal-head strong { font-size: 15px; display: block; }
.cal-head span { font-size: 12px; opacity: .85; }
.cal-close {
  width: 30px; height: 30px; border-radius: 50%; border: none; background: rgba(255, 255, 255, .2);
  color: #fff; font-size: 18px; line-height: 1; cursor: pointer; transition: all .2s;
}
.cal-close:hover { background: rgba(255, 255, 255, .35); transform: rotate(90deg); }
.cal-nav { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px 4px; }
.cal-title { font-weight: 700; color: var(--dark); font-size: 14px; }
.cal-nav-btn {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--border); background: #fff;
  color: var(--dark); font-size: 16px; cursor: pointer; transition: all .2s;
}
.cal-nav-btn:hover { background: var(--primary-light); color: var(--primary); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; padding: 4px 14px; }
.cal-weekdays { color: var(--text-light); font-size: 11px; font-weight: 700; text-align: center; }
.cal-weekdays span { padding: 4px 0; }
.cal-days { padding-bottom: 12px; }
.cal-day {
  border: none; background: transparent; padding: 8px 0; border-radius: 8px; font-size: 13px;
  color: var(--dark); cursor: pointer; transition: all .15s; font-weight: 500;
}
.cal-day:hover:not(.blank):not(.past) { background: var(--primary-light); color: var(--primary); }
.cal-day.blank { cursor: default; }
.cal-day.past { color: #cbd5e1; cursor: not-allowed; }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--primary); color: var(--primary); font-weight: 700; }
.cal-day.selected { background: var(--grad); color: #fff; font-weight: 700; }
.cal-foot {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 10px 16px 16px;
}

/* ============================================================
   Product Variations — admin editor + storefront picker
   ============================================================ */

/* --- Admin: variations editor card --- */
.var-card {
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: 0 2px 14px rgba(20, 20, 43, .05);
  overflow: hidden;
}
.var-card::before {
  content: '';
  display: block;
  height: 4px;
  margin: -20px -22px 18px;
  background: linear-gradient(90deg, #f59e0b, #f7b733, #f59e0b);
}
.var-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.var-count-badge {
  background: linear-gradient(135deg, #f59e0b, #f7b733);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(245, 158, 11, .35);
}
.var-table-wrap { overflow-x: auto; }
.var-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  background: #f8fafc;
}
.var-table td {
  padding: 6px 8px;
  vertical-align: middle;
}
.var-table .form-control {
  min-width: 90px;
  padding: 7px 10px;
  font-size: 13px;
}
.var-table .form-control:focus { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245, 158, 11, .15); }
.var-row { transition: background .15s; }
.var-row:hover { background: #fffbeb; }
.var-num {
  font-weight: 700;
  color: #f59e0b;
  font-size: 13px;
  text-align: center;
}
.var-remove {
  width: 30px; height: 30px;
  border: none; border-radius: 8px;
  background: #fef2f2; color: #dc2626;
  font-size: 17px; line-height: 1;
  cursor: pointer; transition: all .15s;
}
.var-remove:hover { background: #dc2626; color: #fff; transform: scale(1.08); }
.var-remove:disabled { opacity: .35; cursor: not-allowed; }

/* --- Storefront: product page variation picker --- */
.pd-variants {
  margin: 14px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pd-var-group { display: flex; flex-direction: column; gap: 8px; }
.pd-var-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pd-var-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
}
.pd-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pd-opt-chip {
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
  position: relative;
}
.pd-opt-chip:hover:not(:disabled) {
  border-color: #f59e0b;
  color: #b45309;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(245, 158, 11, .15);
}
.pd-opt-chip.selected {
  background: linear-gradient(135deg, #f59e0b, #f7b733);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, .4);
}
.pd-opt-chip.selected::after {
  content: '\2713';
  margin-left: 6px;
  font-size: 12px;
}
.pd-opt-chip:disabled {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* --- Storefront: card "From ₹" + Choose Options --- */
.product-from-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-right: 4px;
}
.product-card .btn-primary.btn-sm {
  flex: 1;
  text-align: center;
}
.cart-item-variant { color: var(--text-light); font-weight: 400; }
