/* ===== KAROVI FASHION - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700&family=Urbanist:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary: #D7AD6C;
  --primary-light: #F4E9D4;
  --primary-dark: #B8924E;
  --dark: #0D1117;
  --dark-nav: #131B2E;
  --text: #212121;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --white: #ffffff;
  --danger: #EF4444;
  --success: #10B981;
  --font-body: 'Work Sans', Arial, sans-serif;
  --font-heading: 'Urbanist', Arial, sans-serif;
  --font-alt: 'Lato', Arial, sans-serif;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary); }
img { max-width: 100%; height: auto; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #C49B45;
  color: #fff;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
/* Full-width inner: marquee left | phone right */
.ann-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}
.ann-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-flex;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 500;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-content span { padding: 0 6px; }
.marquee-sep { color: rgba(255,255,255,0.55); padding: 0 12px; font-size: 10px; }
.ann-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  opacity: 0.95;
}
.ann-phone i { font-size: 12px; }
.ann-phone:hover { color: #fff; opacity: 1; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.header-main {
  padding: 11px 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img { height: 52px; width: auto; }
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

/* Search — takes all available space */
.header-search {
  flex: 1;
  position: relative;
  min-width: 0;
}
.header-search form { position: relative; }
.header-search input {
  width: 100%;
  padding: 11px 44px 11px 46px;
  border: 1.5px solid #E8E8E8;
  border-radius: 30px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  background: #FAFAFA;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.header-search input:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(215,173,108,0.10);
}
.header-search input::placeholder { color: #aaa; }
.header-search .search-icon {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  color: #aaa; font-size: 15px; pointer-events: none;
}
.header-search .search-clear {
  position: absolute; right: 16px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted); cursor: pointer;
  display: none; font-size: 13px;
}

/* Search Dropdown */
.search-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  z-index: 999; display: none; overflow: hidden;
  border: 1px solid var(--border);
}
.search-dropdown.show { display: block; }
.search-dropdown-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; transition: var(--transition);
  border-bottom: 1px solid #F3F4F6; cursor: pointer;
}
.search-dropdown-item:hover { background: var(--primary-light); }
.search-dropdown-item img { width: 44px; height: 52px; object-fit: cover; border-radius: var(--radius-sm); }
.search-dropdown-item .item-info .name { font-size: 13px; font-weight: 600; color: var(--text); line-height: 1.3; }
.search-dropdown-item .item-info .price { font-size: 13px; color: var(--primary); font-weight: 700; }
.search-dropdown-item .item-info .mrp { font-size: 12px; color: var(--text-muted); text-decoration: line-through; }

/* Header Actions */
.header-actions {
  display: flex; align-items: center;
  gap: 8px; flex-shrink: 0;
}

/* Wishlist — bare heart icon, no background */
.btn-wishlist {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: transparent; border: none;
  border-radius: 50%; cursor: pointer;
  color: var(--text-muted); font-size: 20px;
  transition: color .2s;
}
.btn-wishlist:hover { color: var(--danger); }

/* Account — pill: light gold bg, user icon + text */
.btn-account {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none; border-radius: 30px;
  font-size: 13.5px; font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer; white-space: nowrap;
  transition: background .2s, color .2s;
  text-decoration: none; line-height: 1;
}
.btn-account i { font-size: 16px; }
.btn-account:hover { background: var(--primary); color: #fff; }

/* Cart — pill: gold bg, cart icon + price */
.btn-cart {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff;
  border: none; border-radius: 30px;
  font-size: 13.5px; font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer; white-space: nowrap;
  position: relative; transition: background .2s;
  line-height: 1;
}
.btn-cart i { font-size: 16px; }
.btn-cart:hover { background: var(--primary-dark); }

.cart-count-badge {
  background: var(--danger); color: #fff;
  border-radius: 50%; min-width: 20px; height: 20px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -6px; right: -6px;
  border: 2px solid #fff; padding: 0 2px;
}

/* Account Dropdown */
.account-dropdown { position: relative; }
.account-dropdown-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  min-width: 200px; z-index: 9999;
  display: none; overflow: hidden;
  border: 1px solid var(--border);
}
.account-dropdown-menu.show { display: block; }
.account-dropdown-menu a {
  display: flex; align-items: center;
  padding: 11px 18px; font-size: 13px; font-weight: 500;
  color: var(--text); border-bottom: 1px solid #F3F4F6;
  transition: var(--transition); gap: 8px;
}
.account-dropdown-menu a:hover { background: var(--primary-light); color: var(--primary-dark); }
.account-dropdown-menu a:last-child { border-bottom: none; }

/* ===== NAV BAR ===== */
.site-nav {
  background: #fff;
  border-top: 1px solid var(--border);
  /* Desktop: always visible as normal block */
  display: block;
  position: static;
  transform: none;
  width: auto;
  box-shadow: none;
}
.nav-inner {
  display: flex; align-items: center; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.nav-inner::-webkit-scrollbar { display: none; }
.nav-item { position: relative; flex-shrink: 0; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 11px 16px;
  font-size: 13px; font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text); white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.nav-link i { font-size: 13px; opacity: 0.65; }

/* ===== MOBILE MENU ===== */
/* Hide on mobile — for header elements */
.hide-on-mobile { display: flex; }

/* Nav drawer inner wrapper */
.nav-drawer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

/* Search inside drawer */
.drawer-search {
  display: none;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #fafafa;
}
.drawer-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  padding: 8px 16px;
}
.drawer-search-wrap i { color: var(--text-muted); font-size: 14px; }
.drawer-search-wrap input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  background: transparent;
  font-family: var(--font-body);
}

/* Drawer bottom account links */
.drawer-bottom-links {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  margin-top: auto;
  padding: 8px 0;
}
.drawer-bottom-links a {
  display: flex;
  align-items: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background .15s;
}
.drawer-bottom-links a:last-child { border-bottom: none; }
.drawer-bottom-links a:hover { background: var(--primary-light); color: var(--primary-dark); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
  align-items: center;
  justify-content: center;
}

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1999;
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.nav-overlay.show {
  display: block;
  pointer-events: auto;
}
/* Never show overlay on desktop */
@media (min-width: 769px) {
  .nav-overlay { display: none !important; }
}

/* Mobile nav header inside drawer */
.mobile-nav-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Mobile search toggle button (hidden on desktop) */
.mobile-search-btn {
  display: none;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.mobile-search-btn:hover { background: var(--primary-light); }


/* ===== CART SIDEBAR ===== */
.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  backdrop-filter: blur(2px);
}
.cart-sidebar-overlay.show { display: block; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;
  height: 100vh;
  background: #fff;
  z-index: 2001;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 30px rgba(0,0,0,0.15);
}
.cart-sidebar.open { right: 0; }
.cart-sidebar-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-sidebar-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.cart-sidebar-close {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: var(--text-muted);
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}
.cart-sidebar-close:hover { color: var(--danger); }
.cart-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F3F4F6;
  position: relative;
}
.cart-sidebar-item img {
  width: 70px;
  height: 85px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.cart-sidebar-item .info { flex: 1; min-width: 0; }
.cart-sidebar-item .name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.cart-sidebar-item .meta { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.cart-sidebar-item .price { font-size: 14px; font-weight: 700; color: var(--primary); }

.cart-item-remove {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #F3F4F6;
  background: #fff;
  color: var(--text-muted);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s;
}
.cart-item-remove:hover {
  background: #FEF2F2;
  color: var(--danger);
  border-color: #FCA5A5;
}
.cart-sidebar-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: #FAFAFA;
}
.cart-sidebar-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.cart-sidebar-subtotal span:last-child { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn-primary-custom {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(215,173,108,0.4);
}
.btn-outline-custom {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 26px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
}
.btn-dark-custom {
  background: var(--dark-nav);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-dark-custom:hover { background: #1e2a3e; color: #fff; }

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.hero-banner-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Remove old overlay/text styles (kept empty for safety) */
.hero-slide { display: block; }
.hero-slide-overlay,
.hero-slide-content,
.hero-badge,
.hero-title,
.hero-subtitle,
.hero-btns,
.btn-hero-primary,
.carousel-caption-custom { display: none !important; }

.hero-indicators {
  bottom: 24px !important;
}
.hero-indicators button {
  width: 32px !important;
  height: 4px !important;
  border-radius: 2px !important;
  opacity: 0.6 !important;
}
.hero-indicators button.active {
  opacity: 1 !important;
  background: var(--primary) !important;
  width: 50px !important;
}

@media (max-width: 992px) { .hero-banner-img { height: 420px; } }
@media (max-width: 768px) { .hero-banner-img { height: 300px; } }
@media (max-width: 576px) { .hero-banner-img { height: 220px; } }


/* ===== CATEGORY CIRCLES ===== */
.cat-circles-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cat-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex: 0 0 auto;
}
.cat-circle-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}
.cat-circle-item:hover .cat-circle-wrap {
  border-color: var(--primary);
  transform: translateY(-6px);
}
.cat-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s;
}
.cat-circle-item:hover .cat-circle-img {
  transform: scale(1.08);
}
.cat-circle-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  padding: 18px 10px 10px;
  text-align: center;
}
.cat-circle-name {
  display: block;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}
.cat-circle-count {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  margin-top: 2px;
}
.cat-circle-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  max-width: 140px;
  line-height: 1.3;
}
.cat-circle-item:hover .cat-circle-label {
  color: var(--primary-dark);
}

/* ===== SECTION TITLES ===== */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title .eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 8px;
}
.section-title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
}
.section-title p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 15px;
}
.title-divider {
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ===== CATEGORY CIRCLES ===== */
.category-circle {
  text-align: center;
  cursor: pointer;
}
.category-circle .circle-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 3px solid transparent;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.category-circle .circle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.category-circle:hover .circle-img {
  border-color: var(--primary);
  box-shadow: 0 0 0 5px var(--primary-light);
}
.category-circle:hover .circle-img img { transform: scale(1.08); }
.category-circle .circle-name {
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text);
}
.category-circle:hover .circle-name { color: var(--primary); }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--primary-light);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #E53935;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: -0.3px;
  box-shadow: 0 2px 8px rgba(229,57,53,0.4);
  line-height: 1.2;
}
.sold-out-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #1F2937;
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.product-badge + .sold-out-badge { top: 70px; }

/* Action icons — always visible, not just on hover */
.product-card-actions {
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 1;
  z-index: 3;
}
.product-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  transition: background .2s, color .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.product-action-btn:hover {
  background: var(--primary);
  color: var(--dark-nav);
  transform: scale(1.08);
}
.product-action-btn.in-wishlist { background: #FEF2F2; color: var(--danger); }

.product-card-add-btn {
  position: absolute;
  bottom: -52px;
  left: 0; right: 0;
  background: var(--primary);
  color: var(--dark-nav);
  border: none;
  padding: 13px 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: bottom .25s ease, background .2s;
  font-family: var(--font-heading);
  letter-spacing: 0.8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.product-card:hover .product-card-add-btn { bottom: 0; }
.product-card-add-btn:hover { background: var(--primary-dark); color: #fff; }

.product-card-body {
  padding: 14px;
}
.product-card-category {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.product-card-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-title:hover { color: var(--primary); }
.product-card-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.size-chip {
  padding: 2px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.size-chip:hover, .size-chip.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.price-current {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  font-family: var(--font-heading);
}
.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--primary-light);
  padding: 24px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.feature-text p { font-size: 12px; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  height: 100%;
}
.testimonial-stars { color: #FBBF24; font-size: 16px; margin-bottom: 12px; }
.testimonial-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .name { font-size: 14px; font-weight: 700; }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); }

/* ===== FOOTER ===== */
/* ═══════════════════════════════════════════════════════
   FOOTER - Reference matched
═══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--dark-nav);
  color: rgba(255,255,255,0.65);
  padding-top: 64px;
}

/* Main grid — 4 columns */
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr 1.6fr;
  gap: 48px;
  padding-bottom: 52px;
}

/* Col 1 brand */
.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-wrap img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: brightness(10) saturate(0) contrast(0.9); /* white logo */
}
.footer-contact-info p {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
  margin: 0;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.60);
  transition: color .2s;
}
.footer-contact-info a:hover { color: var(--primary); }

/* Headings */
.footer-heading {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  margin-top: 0;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 13px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  transition: color .2s, padding-left .2s;
  display: block;
  line-height: 1.4;
}
.footer-links a:hover {
  color: rgba(255,255,255,0.95);
  padding-left: 4px;
}

/* Newsletter col */
.footer-nl-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-nl-form input {
  width: 100%;
  padding: 13px 18px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 13px;
  outline: none;
  transition: border-color .2s;
}
.footer-nl-form input::placeholder { color: rgba(255,255,255,0.38); }
.footer-nl-form input:focus { border-color: var(--primary); }
.footer-nl-form button {
  width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  background: var(--primary);
  color: var(--dark-nav);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.footer-nl-form button:hover {
  background: #c49a56;
  transform: translateY(-1px);
}
.footer-nl-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
  margin: 0 0 20px;
}

/* Social icons */
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.fsoc-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  transition: transform .2s, opacity .2s;
  text-decoration: none;
}
.fsoc-btn:hover { transform: translateY(-3px); opacity: .9; color: #fff; }
.fsoc-fb  { background: #1877f2; }
.fsoc-ig  { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.fsoc-yt  { background: #ff0000; }
.fsoc-pt  { background: #e60023; }
.fsoc-wa  { background: #25d366; }

/* Bottom bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-inner > p {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  margin: 0;
}
.footer-payments {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}
.payment-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  letter-spacing: .5px;
  border: 1px solid rgba(255,255,255,0.10);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 40px;
  }
}
@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }
  .site-footer { padding-top: 44px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-payments { justify-content: center; }
}

/* ── keep old social-link class working if used elsewhere ── */
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 15px; transition: var(--transition);
}
.social-link:hover { background: var(--primary); color: #fff; }



/* ===== PAGE HERO (internal pages) ===== */
.page-hero {
  background: var(--primary-light);
  background-image: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
}
.breadcrumb-custom { list-style: none; padding: 0; display: flex; flex-wrap: wrap; row-gap: 4px; gap: 8px; align-items: center; margin-top: 8px; }
.breadcrumb-custom li { font-size: 13px; color: var(--text-muted); }
.breadcrumb-custom li a { color: var(--text-muted); }
.breadcrumb-custom li a:hover { color: var(--primary); }
.breadcrumb-custom li:not(:last-child)::after { content: '»'; margin-left: 8px; }
.breadcrumb-custom li:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }

/* ===== PRODUCT LIST PAGE ===== */
.filter-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.filter-sidebar h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-light);
}
.filter-group { margin-bottom: 24px; }
.size-filter-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.size-filter-btn {
  padding: 6px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
  color: var(--text);
}
.size-filter-btn:hover, .size-filter-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.price-range-display { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
input[type="range"] { width: 100%; accent-color: var(--primary); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: #F9FAFB;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.products-count { font-size: 13px; color: var(--text-muted); }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font-body);
  outline: none;
  cursor: pointer;
  background: #fff;
}
.sort-select:focus { border-color: var(--primary); }

/* ===== PRODUCT DETAIL ===== */
.product-gallery { position: sticky; top: 100px; }
.product-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumb {
  width: 70px;
  height: 85px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 12px;
}
.product-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-price-row .current { font-size: 28px; font-weight: 800; color: var(--primary-dark); }
.product-price-row .original { font-size: 18px; color: var(--text-muted); text-decoration: line-through; }
.product-price-row .badge-discount {
  background: var(--danger);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

.size-selector { margin-bottom: 16px; }
.size-selector label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}
.size-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  min-width: 44px;
  padding: 8px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.size-btn:hover { border-color: var(--primary); }
.size-btn.active, .size-btn.selected {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  width: fit-content;
}
.qty-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: #F9FAFB;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-selector button:hover { background: var(--primary); color: #fff; }
.qty-selector input {
  width: 60px;
  height: 40px;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  outline: none;
}

.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.product-icon-actions { display: flex; gap: 12px; }
.btn-add-cart {
  flex: 1;
  min-width: 180px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.5px;
}
.btn-add-cart:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,173,108,0.4);
}
.btn-buy-now {
  flex: 1;
  min-width: 150px;
  background: var(--dark-nav);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-buy-now:hover { background: #1e2a3e; color: #fff; }

.product-meta-box {
  background: var(--primary-light);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 20px;
}
.product-meta-box .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
}
.product-meta-box .meta-item:last-child { margin-bottom: 0; }
.product-meta-box .meta-item i { color: var(--primary); font-size: 16px; }

/* Tabs */
.product-tabs { margin-top: 32px; }
.product-tabs .nav-tabs { border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.product-tabs .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  border: none;
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: 0;
  transition: var(--transition);
}
.product-tabs .nav-link.active, .product-tabs .nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: transparent;
}

/* Stars */
.stars { color: #FBBF24; }
.star-empty { color: #E5E7EB; }

/* ===== CART PAGE ===== */
.cart-item-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 16px;
}
.cart-item-img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.cart-totals-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.cart-totals-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
}
.totals-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #F3F4F6;
}
.totals-row.total {
  font-size: 17px;
  font-weight: 700;
  border-bottom: none;
  color: var(--text);
}
.totals-row.total span:last-child { color: var(--primary); }
.discount-row { color: var(--success); }
.coupon-input-row { display: flex; gap: 8px; margin: 12px 0; }
.coupon-input-row input {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
}
.coupon-input-row input:focus { border-color: var(--primary); }
.coupon-input-row button {
  padding: 10px 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.coupon-input-row button:hover { background: var(--primary-dark); }

/* ===== CHECKOUT PAGE ===== */
.checkout-section {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}
.checkout-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--primary-light);
}
.checkout-section-title .step-no {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.form-control-custom {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: var(--transition);
  color: var(--text);
  background: #fff;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(215,173,108,0.12);
}
.form-label-custom {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  display: block;
}

/* Payment Methods */
.payment-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:hover { border-color: var(--primary-light); }
.payment-option.selected { border-color: var(--primary); background: var(--primary-light); }
.payment-option label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.payment-option img { height: 28px; }

/* ===== ORDER SUCCESS ===== */
.order-success-box {
  text-align: center;
  padding: 60px 40px;
}
.order-success-icon {
  width: 90px;
  height: 90px;
  background: #D1FAE5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 40px;
  color: var(--success);
}

/* ===== MY ACCOUNT ===== */
.account-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.sidebar-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--dark-nav);
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.account-nav {
  display: flex;
  flex-direction: column;
}
.account-nav a {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  text-decoration: none;
  gap: 10px;
}
.account-nav a:last-child { border-bottom: none; }
.account-nav a:hover,
.account-nav a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding-left: 26px;
}
.account-nav a.active {
  border-left: 3px solid var(--primary);
  font-weight: 700;
}

.account-sidebar-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.account-sidebar-item:last-child { border-bottom: none; }
.account-sidebar-item:hover, .account-sidebar-item.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.account-sidebar-item i { font-size: 16px; width: 20px; color: var(--primary); }

.account-stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  text-align: center;
  transition: var(--transition);
}
.account-stat-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.account-stat-card .stat-no { font-size: 32px; font-weight: 800; color: var(--primary); }
.account-stat-card .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

/* ===== ADMIN PANEL ===== */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background: #F1F5F9;
}
.admin-sidebar {
  width: 260px;
  background: var(--dark-nav);
  color: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  transition: var(--transition);
}
.admin-sidebar.collapsed { width: 64px; }
.admin-sidebar-logo {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-sidebar-logo img { width: 36px; height: 36px; filter: brightness(2); }
.admin-sidebar-logo .brand { font-size: 18px; font-weight: 800; color: var(--primary); letter-spacing: 0.5px; }
.admin-sidebar-logo .brand small { display: block; font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 400; }
.admin-nav { flex: 1; overflow-y: auto; padding: 16px 0; }
.admin-nav-section {
  margin-bottom: 6px;
  padding: 0 12px;
}
.admin-nav-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.3);
  padding: 10px 8px 6px;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  cursor: pointer;
  margin-bottom: 2px;
  white-space: nowrap;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.admin-nav-item.active { background: var(--primary); color: #fff; }
.admin-nav-item i { font-size: 16px; width: 20px; flex-shrink: 0; }
.admin-nav-item .badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  border-radius: 10px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
}

.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 90;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.admin-topbar h2 { font-size: 20px; font-weight: 700; color: var(--text); }
.admin-topbar-right { display: flex; align-items: center; gap: 14px; }

.admin-content { padding: 28px; flex: 1; }

/* Admin Cards */
.admin-stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.admin-stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.admin-stat-card .stat-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.stat-icon-primary { background: #FEF3D4; color: var(--primary-dark); }
.stat-icon-success { background: #D1FAE5; color: #059669; }
.stat-icon-info { background: #DBEAFE; color: #2563EB; }
.stat-icon-warning { background: #FEF3C7; color: #D97706; }
.admin-stat-card .stat-value { font-size: 26px; font-weight: 800; color: var(--text); }
.admin-stat-card .stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-stat-card .stat-change { font-size: 12px; font-weight: 600; margin-top: 4px; }
.stat-change-up { color: var(--success); }
.stat-change-down { color: var(--danger); }

.admin-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.admin-card-header h5 { font-size: 15px; font-weight: 700; }
.admin-card-body { padding: 0; }

/* Admin Table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.admin-table thead tr {
  background: #F8FAFC;
  border-bottom: 2px solid var(--border);
}
.admin-table th {
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  white-space: nowrap;
  text-align: left;
}
.admin-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #F3F4F6;
  vertical-align: middle;
}
.admin-table tr:hover td { background: #FAFAFA; }
.admin-table tr:last-child td { border-bottom: none; }

.admin-table img {
  width: 44px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.badge-pending { background: #FEF3C7; color: #D97706; }
.badge-confirmed { background: #DBEAFE; color: #2563EB; }
.badge-shipped { background: #E0E7FF; color: #7C3AED; }
.badge-delivered { background: #D1FAE5; color: #059669; }
.badge-cancelled { background: #FEE2E2; color: #DC2626; }
.badge-active { background: #D1FAE5; color: #059669; }
.badge-inactive { background: #F3F4F6; color: var(--text-muted); }
.badge-cod { background: #FEF9C3; color: #CA8A04; }
.badge-paid { background: #D1FAE5; color: #059669; }

.admin-btn {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.admin-btn-primary { background: var(--primary); color: #fff; }
.admin-btn-primary:hover { background: var(--primary-dark); color: #fff; }
.admin-btn-success { background: var(--success); color: #fff; }
.admin-btn-danger { background: var(--danger); color: #fff; }
.admin-btn-danger:hover { background: #dc2626; color: #fff; }
.admin-btn-outline { background: #fff; border: 1.5px solid var(--border); color: var(--text); }
.admin-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.admin-btn-sm { padding: 4px 10px; font-size: 11px; }

/* Admin Form */
.admin-form-group { margin-bottom: 20px; }
.admin-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.admin-form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: #fff;
}
.admin-form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(215,173,108,0.12);
}
select.admin-form-control { cursor: pointer; }
textarea.admin-form-control { resize: vertical; min-height: 100px; }

.admin-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: #FAFAFA;
}
.admin-search-bar input {
  flex: 1;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  max-width: 280px;
}
.admin-search-bar input:focus { border-color: var(--primary); }
.admin-search-bar select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  cursor: pointer;
}

/* Pagination */
.pagination-admin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  background: #FAFAFA;
  font-size: 13px;
  color: var(--text-muted);
}
.pagination-admin .page-nums { display: flex; gap: 4px; }
.page-btn {
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--text);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.page-btn.disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ===== ALERTS ===== */
.alert-custom {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.alert-success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.alert-error { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }
.alert-warning { background: #FEF3C7; color: #92400E; border-left: 4px solid #FBBF24; }
.alert-info { background: #DBEAFE; color: #1E40AF; border-left: 4px solid #3B82F6; }

/* ===== TOGGLE SWITCH ===== */
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #CBD5E1;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  left: 3px;
  top: 3px;
  transition: var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ===== MESSAGES / TOASTS ===== */
.messages-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast-msg {
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-left: 4px solid var(--primary);
  animation: slideIn 0.3s ease;
  font-size: 14px;
}
.toast-msg.success { border-left-color: var(--success); }
.toast-msg.error { border-left-color: var(--danger); }
.toast-msg.warning { border-left-color: #FBBF24; }
.toast-msg i { font-size: 18px; color: var(--primary); flex-shrink: 0; margin-top: 1px; }
.toast-msg.success i { color: var(--success); }
.toast-msg.error i { color: var(--danger); }
.toast-close {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-muted);
  flex-shrink: 0;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== UTILS ===== */
.section-padding { padding: 60px 0; }
.section-padding-sm { padding: 40px 0; }
.bg-light-custom { background: #F9FAFB; }
.bg-primary-light { background: var(--primary-light); }
.text-primary-custom { color: var(--primary); }
.text-muted-custom { color: var(--text-muted); }
.rounded-custom { border-radius: var(--radius); }
.rounded-lg-custom { border-radius: var(--radius-lg); }
.shadow-custom { box-shadow: var(--shadow); }

/* ===== EMPTY STATE ===== */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}
.empty-state i { font-size: 56px; margin-bottom: 16px; opacity: 0.3; }
.empty-state h4 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ===== RESPONSIVE ===== */
/* ─── Tablet / Medium ─── */
@media (max-width: 992px) {
  /* Admin Sidebar - slide out on tablet/mobile */
  .admin-sidebar {
    transform: translateX(-100%);
    z-index: 1050;
  }
  .admin-sidebar.mobile-open { transform: translateX(0); }
  .admin-main { margin-left: 0 !important; }
  .admin-content { padding: 16px; }
  .admin-topbar { padding: 0 16px; }
  .admin-topbar-left { gap: 8px; }
  .stat-cards-row { grid-template-columns: repeat(2, 1fr); }

  /* Store */
  .header-phone { display: none; }
  .cat-circle-wrap { width: 130px; height: 130px; }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {

  /* Announcement bar - scroll still works, hide phone on mobile */
  .announcement-bar { font-size: 11px; }
  .ann-phone { display: none; }
  .ann-inner { padding: 0 12px; }

  /* Header: hamburger | logo center | cart only */
  .header-main {
    padding: 9px 0; gap: 0;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
  }
  .mobile-menu-btn {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; font-size: 22px; padding: 0;
  }
  .site-logo { justify-content: center; }
  .site-logo img { height: 40px; }
  .site-logo .logo-text { font-size: 22px; }

  /* Hide desktop-only elements on mobile */
  .header-search { display: none; }
  .hide-on-mobile { display: none !important; }

  /* Cart: icon only, circular on mobile */
  .header-actions { gap: 4px; justify-content: flex-end; }
  .btn-cart {
    border-radius: 50%; padding: 0;
    width: 40px; height: 40px;
    justify-content: center;
  }
  .btn-cart .hide-on-mobile { display: none !important; }

  /* Nav: left slide-in drawer */
  .site-nav {
    display: none !important;
    position: fixed;
    top: 0; left: 0; bottom: 0; width: 280px;
    background: #fff; z-index: 2000;
    overflow-y: auto; overflow-x: hidden;
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    border-top: none;
  }
  .site-nav.mobile-open {
    display: block !important;
    transform: translateX(0);
  }
  .mobile-nav-header { display: flex; }
  .drawer-search { display: block; }
  .drawer-bottom-links { display: flex; }
  .nav-inner { flex-direction: column; padding: 0; }
  .nav-item { width: 100%; }
  .nav-link {
    padding: 15px 0;
    margin: 0 20px;
    border-bottom: 1px solid var(--border);
    font-size: 15px; font-weight: 600;
    display: flex; align-items: center;
    gap: 14px;
    width: calc(100% - 40px);
    color: var(--text);
    border-left: none; border-right: none; border-top: none;
    border-radius: 0;
  }
  .nav-item:last-child .nav-link { border-bottom: none; }
  .nav-link i {
    color: var(--primary); font-size: 16px;
    width: 22px; text-align: center; flex-shrink: 0;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--primary-dark);
    border-bottom-color: var(--border);
    background: none;
  }

  /* Cart sidebar full width */
  .cart-sidebar { width: 100%; right: -100%; }

  /* Hero */
  .hero-banner-img { height: 300px; }

  /* Categories circles */
  .cat-circles-row { gap: 10px; }
  .cat-circle-wrap { width: 90px; height: 90px; }
  .cat-circle-label { font-size: 11px; max-width: 90px; }
  .cat-circle-name { font-size: 10px; }
  .cat-circle-count { display: none; }

  /* General */
  .section-title h2 { font-size: 22px; }
  .product-card-img { aspect-ratio: 2/3; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-payments { justify-content: center; }
  .page-hero h1 { font-size: 24px; }
  .product-info-title { font-size: 20px; }
  .product-price-row .current { font-size: 22px; }

  /* Admin responsive */
  .admin-table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .admin-table { min-width: 600px; }
  .stat-cards-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .admin-content { padding: 14px 12px; }
}

/* ─── Small Mobile ─── */
@media (max-width: 576px) {
  .hero-banner-img { height: 220px; }

  /* Tighter header */
  .header-main { grid-template-columns: 40px 1fr auto; }
  .site-logo img { height: 36px; }
  .site-logo .logo-text { font-size: 20px; }

  /* Categories: smaller circles */
  .cat-circles-row { gap: 8px; }
  .cat-circle-wrap { width: 72px; height: 72px; }
  .cat-circle-label { font-size: 10px; max-width: 72px; }

  /* Features */
  .feature-item { flex-direction: column; text-align: center; }

  /* Product */
  .product-actions { flex-direction: column; }
  .product-icon-actions { flex-direction: row; }
  .btn-add-cart, .btn-buy-now { justify-content: center; }
  .breadcrumb-custom { font-size: 11.5px; gap: 5px; }
  .breadcrumb-custom li { font-size: 11.5px; }
  .breadcrumb-custom li:not(:last-child) { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .breadcrumb-custom li:last-child { max-width: 130px; }

  /* Admin */
  .stat-cards-row { grid-template-columns: 1fr; }
  .admin-topbar { padding: 0 10px; }
  .admin-topbar h1 { font-size: 15px; }
  .table td, .table th { font-size: 12px; padding: 8px 6px; }
  .btn-sm { padding: 4px 8px; font-size: 11px; }

  /* Account sidebar on mobile */
  .account-sidebar { margin-bottom: 20px; }
  .account-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .account-nav a {
    flex: 1 0 auto;
    padding: 10px 14px;
    font-size: 12px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    justify-content: center;
    text-align: center;
  }
  .account-nav a.active {
    border-left: none;
    border-bottom: 3px solid var(--primary);
    padding-left: 14px;
  }
}



/* ═══════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
═══════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none; /* hidden on desktop */
}

@media (max-width: 768px) {
  /* Show bottom nav */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
    height: 60px;
    align-items: stretch;
  }

  /* Push page content up so footer not hidden behind bottom nav */
  body { padding-bottom: 60px; }

  .mob-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    text-decoration: none;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
  }
  .mob-nav-item i {
    font-size: 20px;
    line-height: 1;
  }
  .mob-nav-item span {
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
  }
  .mob-nav-item.active,
  .mob-nav-item:hover {
    color: var(--primary-dark);
  }
  .mob-nav-item.active i {
    color: var(--primary);
  }

  /* Cart icon with badge */
  .mob-cart-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mob-cart-badge {
    position: absolute;
    top: -7px;
    right: -9px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border: 2px solid #fff;
  }
}

/* ═══════════════════════════════════════════════════════
   NEW ARRIVALS — Filter Tabs + Load More
═══════════════════════════════════════════════════════ */
.na-filter-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0;
}
.na-tab {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-muted);
  padding: 10px 18px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.na-tab:hover { color: var(--primary-dark); }
.na-tab.active {
  color: var(--dark-nav);
  border-bottom-color: var(--dark-nav);
}

/* Load More btn */
.btn-load-more {
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 30px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  transition: background .2s, color .2s;
  letter-spacing: .5px;
}
.btn-load-more:hover {
  background: var(--primary);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   MOST LOVED — Masonry / Pinterest grid
═══════════════════════════════════════════════════════ */
.most-loved-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 260px 260px;
  gap: 10px;
}
.ml-item {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}
/* 3rd and 8th items span 2 rows */
.ml-item:nth-child(3) { grid-row: span 2; border-radius: 12px; }
.ml-img-wrap {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}
.ml-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ml-img-wrap:hover img { transform: scale(1.05); }

/* Most Loved — simple Shop Now overlay on hover */
.ml-dot { display: none; }
.ml-popup-card { display: none; }
.ml-shop-overlay {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  background: var(--primary);
  color: var(--dark-nav);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.8px;
  text-align: center;
  padding: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: bottom .25s ease, background .2s;
}
.ml-img-wrap:hover .ml-shop-overlay { bottom: 0; }
.ml-shop-overlay:hover { background: var(--primary-dark); color: #fff; }

/* Text tiles */
.ml-text-tile {
  width: 100%; height: 100%;
  background: #e8e4de;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}
.ml-text-tile.ml-text-light { background: #dce6e8; }
.ml-text-tile h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-nav);
  line-height: 1.2;
  margin-bottom: 10px;
}
.ml-text-tile p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 992px) {
  .most-loved-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .ml-item:nth-child(n+7) { display: none; }
}
@media (max-width: 640px) {
  .most-loved-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .ml-item:nth-child(n+5) { display: none; }
  .ml-item:nth-child(3) { grid-row: span 1; }
}

/* ═══════════════════════════════════════════════════════
   KURTIS LIFESTYLE SECTION
═══════════════════════════════════════════════════════ */
.kurtis-lifestyle-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 36px;
  align-items: start;
}
.kurtis-lifestyle-right img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
}
.product-card-sm .product-card-img img { height: 200px; display: block; }
.product-card-sm .product-card-body { padding: 10px 12px 8px; }

/* Kurtis Lifestyle specific card */
.ks-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.ks-card-img {
  position: relative;
  overflow: hidden;
  line-height: 0; /* kills any whitespace gap below img */
}
.ks-card-img a { display: block; line-height: 0; }
.ks-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .4s;
}
.ks-card:hover .ks-card-img img { transform: scale(1.04); }
.ks-card-img .product-card-add-btn {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  transition: bottom .25s ease, background .2s;
}
.ks-card:hover .ks-card-img .product-card-add-btn { bottom: 0; }
.ks-card-body {
  padding: 12px 14px 14px;
  background: #fff;
  flex: 1;
}
.ks-card-body .product-card-category {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.ks-card-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ks-card-title:hover { color: var(--primary); }

@media (max-width: 992px) {
  .kurtis-lifestyle-wrap {
    grid-template-columns: 1fr;
  }
  .kurtis-lifestyle-right { display: none; }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS — Auto-sliding
═══════════════════════════════════════════════════════ */
.testimonials-section { background: #fff; }
.testimonials-track-wrap { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}
.testimonial-card-slide {
  flex: 0 0 calc(33.333% - 16px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tc-stars { color: #F59E0B; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.tc-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px; color: var(--primary-dark);
  flex-shrink: 0;
}
.tc-name { font-weight: 700; font-size: 14px; color: var(--text); }
.tc-role { font-size: 12px; color: var(--text-muted); }
.tc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.tc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: background .2s, width .2s;
  padding: 0;
}
.tc-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

@media (max-width: 768px) {
  .testimonial-card-slide { flex: 0 0 calc(50% - 12px); }
  .na-filter-tabs { gap: 4px; }
  .na-tab { padding: 8px 12px; font-size: 13px; }
}
@media (max-width: 576px) {
  .testimonial-card-slide { flex: 0 0 calc(100% - 0px); }
}

/* ═══════════════════════════════════════════════════════
   BEST SELLERS SECTION
═══════════════════════════════════════════════════════ */
.bestsellers-section { background: #f7f5f0; }

.bs-card .product-card-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.bs-card .product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .4s ease;
}
.bs-card:hover .product-card-img img { transform: scale(1.04); }

.bs-card .product-card-body {
  padding: 14px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bs-card .product-card-add-btn {
  /* Best sellers use same hover slide-up as other cards */
  border-radius: 0;
}

/* ═══════════════════════════════════════════════════════
   AUTH PAGES (Login / Register)
═══════════════════════════════════════════════════════ */
.auth-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  height: 100%;
}
.auth-box-alt {
  background: #fafafa;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.auth-box-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-nav);
  margin-bottom: 28px;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
}
.auth-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.auth-input {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color .2s;
}
.auth-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(215,173,108,0.12);
}
.auth-input-wrap {
  position: relative;
  display: flex;
}
.auth-input-wrap .auth-input { flex: 1; border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.auth-eye-btn {
  padding: 0 14px;
  border: 1.5px solid var(--border);
  border-left: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fafafa;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 15px;
  transition: background .2s;
}
.auth-eye-btn:hover { background: var(--primary-light); color: var(--primary-dark); }
.auth-check {
  font-size: 13px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}
.auth-link { color: var(--primary-dark); text-decoration: none; font-weight: 600; }
.auth-link:hover { color: var(--primary); }
.auth-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.btn-karovi-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--primary); color: var(--dark-nav);
  padding: 12px 28px; border-radius: 30px;
  font-size: 14px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: 0.5px; cursor: pointer; border: 2px solid var(--primary);
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-karovi-primary:hover { background: var(--primary-dark); color: #fff; border-color: var(--primary-dark); }
.btn-karovi-primary-sm {
  display: inline-flex; align-items: center;
  background: var(--primary); color: var(--dark-nav);
  padding: 10px 20px; border-radius: 25px;
  font-size: 13px; font-weight: 700; font-family: var(--font-heading);
  cursor: pointer; border: none; white-space: nowrap;
  text-decoration: none; transition: background .2s;
}
.btn-karovi-primary-sm:hover { background: var(--primary-dark); color: #fff; }
.btn-karovi-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--primary-dark);
  padding: 11px 28px; border-radius: 30px;
  font-size: 14px; font-weight: 700; font-family: var(--font-heading);
  cursor: pointer; border: 2px solid var(--primary);
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-karovi-outline:hover { background: var(--primary); color: var(--dark-nav); }
.btn-karovi-dark {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--dark-nav); color: #fff;
  padding: 14px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 700; font-family: var(--font-heading);
  letter-spacing: 1px; cursor: pointer; border: 2px solid var(--dark-nav);
  text-decoration: none; transition: background .2s;
}
.btn-karovi-dark:hover { background: #1e2b47; }

/* ═══════════════════════════════════════════════════════
   CART PAGE
═══════════════════════════════════════════════════════ */
.cart-table-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow-x: auto;
  margin-bottom: 20px;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead tr {
  border-bottom: 2px solid var(--border);
}
.cart-table th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.cart-table td { padding: 16px; vertical-align: middle; border-bottom: 1px solid #f3f4f6; }
.cart-table tbody tr:last-child td { border-bottom: none; }
.cart-remove-btn {
  background: none; border: 1.5px solid #ddd;
  width: 24px; height: 24px; border-radius: 50%;
  font-size: 14px; line-height: 1; color: #bbb;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
}
.cart-remove-btn:hover { background: var(--danger); color: #fff; border-color: var(--danger); }
.cart-product-info { display: flex; align-items: center; gap: 14px; }
.cart-product-img { width: 72px; height: 88px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.cart-product-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; display: block; text-decoration: none; }
.cart-product-name:hover { color: var(--primary); }
.cart-product-size { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.cart-price-cell { font-size: 14px; font-weight: 600; white-space: nowrap; }
.cart-subtotal-cell { font-size: 15px; font-weight: 700; color: var(--primary); white-space: nowrap; }
.cart-coupon-bar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 16px;
}
.cart-coupon-form { display: flex; gap: 10px; }
.cart-coupon-form input {
  flex: 1; max-width: 300px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 25px;
  font-size: 13px; outline: none;
}
.cart-coupon-form input:focus { border-color: var(--primary); }
.cart-trust-bar {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-item {
  flex: 1;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item i { font-size: 22px; color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.trust-item strong { font-size: 13px; font-weight: 700; display: block; margin-bottom: 2px; }
.trust-item p { font-size: 12px; color: var(--text-muted); margin: 0; }
.trust-item a { color: var(--primary); font-weight: 600; }

/* Cart Totals */
.cart-totals-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}
.cart-totals-title { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.cart-totals-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
  font-size: 14px;
}
.cart-discount-row { color: var(--success); }
.cart-totals-total {
  padding-top: 16px; margin-top: 4px;
  border-top: 2px solid var(--border);
  border-bottom: none;
  font-size: 15px; font-weight: 700;
}
.cart-total-amount { font-size: 22px; font-weight: 800; color: var(--primary); }
.cart-delivery-note {
  font-size: 12px; color: var(--text-muted);
  background: #fffbf3;
  border: 1px solid #f4e9cc;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: 14px 0;
}
.cart-info-box {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}
.section-heading-lg { font-size: 22px; font-weight: 800; color: var(--dark-nav); }
.col-lg-2-4 { flex: 0 0 20%; max-width: 20%; }
@media (max-width: 768px) { .col-lg-2-4 { flex: 0 0 50%; max-width: 50%; } .cart-trust-bar { flex-direction: column; } .trust-item { border-right: none; border-bottom: 1px solid var(--border); } .trust-item:last-child { border-bottom: none; } }

/* ═══════════════════════════════════════════════════════
   CHECKOUT PAGE
═══════════════════════════════════════════════════════ */
.checkout-section { padding: 36px 0 60px; }
.checkout-notices {
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 14px;
}
.checkout-notices p { margin-bottom: 4px; }
.checkout-notices p:last-child { margin-bottom: 0; }
.checkout-link { color: var(--primary-dark); font-weight: 600; text-decoration: none; }
.checkout-link:hover { color: var(--primary); }
.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.checkout-step-header {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 24px;
  background: #fafafa;
  border-bottom: 1px solid var(--border);
}
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--primary);
  color: var(--dark-nav);
  font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.checkout-step-header h4 { margin: 0; font-size: 17px; font-weight: 700; }
.checkout-card-body { padding: 24px; }
.checkout-label {
  display: block; font-size: 13.5px;
  font-weight: 600; color: var(--text);
  margin-bottom: 6px;
}
.checkout-input {
  display: block; width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px; font-family: var(--font-body);
  color: var(--text); background: #fff; outline: none;
  transition: border-color .2s;
}
.checkout-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(215,173,108,0.1); }
.checkout-check { font-size: 14px; cursor: pointer; display: flex; align-items: center; gap: 8px; }

/* Order Summary Table */
.checkout-order-table { padding: 0 24px 24px; }
.co-table-head {
  display: flex; justify-content: space-between;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--text-muted); text-transform: uppercase;
  padding: 16px 0 10px;
  border-bottom: 1px solid var(--border);
}
.co-table-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid #f5f5f5;
}
.co-item-info { display: flex; align-items: flex-start; gap: 8px; flex: 1; }
.co-item-name { font-size: 13px; font-weight: 600; display: block; line-height: 1.3; }
.co-item-qty { font-size: 12px; color: var(--text-muted); }
.co-item-total { font-size: 13px; font-weight: 600; color: var(--primary); white-space: nowrap; }
.co-totals { border-top: 2px solid var(--border); margin-top: 8px; }
.co-total-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.co-grand-total {
  font-size: 16px; font-weight: 800;
  border-bottom: none;
  color: var(--dark-nav);
}
.co-grand-total span:last-child { color: var(--primary); font-size: 20px; }
.co-delivery-note {
  font-size: 12px; color: var(--text-muted);
  background: #fffbf3; border: 1px solid #f4e9cc;
  border-radius: var(--radius-sm);
  padding: 10px 12px; margin-top: 12px;
}

/* Payment methods */
.co-offer-box {
  background: #fffbf3; border: 1px solid #f4e9cc;
  border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 13px;
  margin-bottom: 16px;
}
.payment-methods-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.payment-method-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background .15s;
}
.payment-method-item:last-child { border-bottom: none; }
.pm-label {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; margin: 0;
}
.pm-label input[type="radio"] { accent-color: var(--primary); width: 16px; height: 16px; }
.payment-method-item.active { background: #fffbf3; }
.pm-body { padding: 0 16px 14px 42px; }
.pm-badge {
  background: #072654; color: #fff;
  font-size: 10px; padding: 2px 7px;
  border-radius: 4px; font-weight: 700;
}

/* ═══ COLOR SELECTOR ═══ */
.color-selector { margin-bottom: 16px; }
.color-selector label {
  display: block;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 8px;
}
.color-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.color-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border: 2px solid var(--border);
  border-radius: 25px;
  font-size: 13px; font-weight: 600;
  background: #fff; color: var(--text);
  cursor: pointer; transition: all .2s;
  line-height: 1;
}
.color-btn.selected {
  border-color: var(--dark-nav);
  background: #f7f5f0;
  color: var(--dark-nav);
}
.color-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}
.color-btn:disabled { opacity: 0.3; cursor: not-allowed; }
/* The color circle inside btn */
.color-btn-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
  display: block;
}
.color-btn.selected .color-btn-dot {
  border: 2px solid var(--dark-nav);
  box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--dark-nav);
}

/* ═══ ADD TO CART BUTTON SPINNER ═══ */
.btn-add-cart:disabled { opacity: 0.7; cursor: not-allowed; }
.product-card-add-btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* ═══════════════════════════════════════════════════════
   FILTER SIDEBAR V2
═══════════════════════════════════════════════════════ */
.filter-sidebar-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.fsb-section {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.fsb-section:last-child { border-bottom: none; }
.fsb-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.fsb-price-display {
  font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 10px;
}
.fsb-range {
  width: 100%; cursor: pointer;
  accent-color: var(--primary);
  height: 4px;
}
.fsb-apply-btn {
  display: block; width: 100%;
  margin-top: 12px; padding: 9px;
  background: var(--primary); color: var(--dark-nav);
  border: none; border-radius: 25px;
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.fsb-apply-btn:hover { background: var(--primary-dark); color: #fff; }
.fsb-size-grid { display: flex; flex-wrap: wrap; gap: 6px; }
.fsb-size-btn {
  padding: 6px 12px; border: 1.5px solid #e5e7eb;
  border-radius: 6px; font-size: 12px; font-weight: 700;
  background: #fff; color: var(--text);
  cursor: pointer; transition: all .15s;
  min-width: 40px; text-align: center;
}
.fsb-size-btn:hover { border-color: var(--primary); color: var(--primary-dark); }
.fsb-size-btn.active { background: var(--primary); border-color: var(--primary); color: var(--dark-nav); }
.fsb-color-list { display: flex; flex-direction: column; gap: 4px; max-height: 280px; overflow-y: auto; padding-right: 4px; }
.fsb-color-list::-webkit-scrollbar { width: 4px; }
.fsb-color-list::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
.fsb-color-list::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.fsb-color-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border: 1.5px solid transparent;
  border-radius: 8px; font-size: 13px; font-weight: 500;
  background: transparent; color: var(--text);
  cursor: pointer; transition: all .15s; text-align: left; width: 100%;
}
.fsb-color-btn:hover { background: var(--primary-light); border-color: var(--primary); }
.fsb-color-btn.active { background: var(--primary-light); border-color: var(--primary); color: var(--primary-dark); font-weight: 700; }
.fsb-color-dot {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.18); flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.fsb-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; cursor: pointer;
}
.fsb-check input { accent-color: var(--primary); width: 15px; height: 15px; }
.fsb-color-count {
  margin-left: auto;
  font-size: 11px; font-weight: 600;
  color: var(--text-muted);
  background: #f0f0f0;
  border-radius: 20px;
  padding: 1px 7px;
  min-width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.fsb-color-btn.active .fsb-color-count {
  background: var(--primary);
  color: #fff;
}
.fsb-clear-btn {
  display: block; padding: 14px 20px;
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-decoration: none;
  border-top: 1px solid var(--border);
  transition: color .2s;
}
.fsb-clear-btn:hover { color: var(--danger); }
/* Clear Filters button — category page */
.clear-filter-btn {
  display: block; width: 100%;
  padding: 10px 0; margin-top: 8px;
  text-align: center; font-size: 13px; font-weight: 600;
  background: #fff; color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.clear-filter-btn:hover {
  background: #FEF2F2; color: #DC2626; border-color: #FCA5A5;
}

/* Category filter tabs */
.cat-filter-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto; scrollbar-width: none;
}
.cat-filter-tabs::-webkit-scrollbar { display: none; }
.cat-filter-tab {
  display: flex; align-items: center;
  padding: 10px 16px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  text-decoration: none; transition: color .2s, border-color .2s;
}
.cat-filter-tab:hover { color: var(--primary-dark); }
.cat-filter-tab.active { color: var(--dark-nav); border-bottom-color: var(--dark-nav); }

/* ═══ COLOR CHIPS ON PRODUCT CARDS ═══ */
.product-card-colors {
  display: flex; align-items: center; gap: 4px;
  margin-bottom: 4px; flex-wrap: wrap;
}
.color-dot-chip {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15); display: inline-block;
  flex-shrink: 0;
}
.color-more {
  font-size: 11px; color: var(--text-muted); font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   CARD-LEVEL SIZE / COLOR SELECTORS (homepage cards)
═══════════════════════════════════════════════════════ */
.card-variant-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 5px 0 4px;
}
.card-size-btn {
  padding: 3px 9px;
  border: 1.5px solid #e5e7eb;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-heading);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
  line-height: 1.4;
}
.card-size-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}
.card-size-btn.selected {
  background: var(--dark-nav);
  border-color: var(--dark-nav);
  color: #fff;
}
.card-color-btn {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, border-color .15s;
  padding: 0;
  flex-shrink: 0;
}
.card-color-btn:hover {
  transform: scale(1.2);
}
.card-color-btn.selected {
  border: 2px solid var(--dark-nav);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--dark-nav);
  transform: scale(1.1);
}
.card-color-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: none;
}

/* ── Variant display in checkout order summary ── */
.co-item-variant {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}



/* ── Checkout inline login form ── */
.checkout-inline-form {
  background: #fafafa;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}

/* ═══════════════════════════════════════════════════════
   ACCOUNT PAGES
═══════════════════════════════════════════════════════ */
.account-sidebar-v2 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.acc-sidebar-title {
  font-size: 13px; font-weight: 800;
  letter-spacing: 1.5px; color: var(--text-muted);
  padding: 18px 20px 10px;
  border-bottom: 1px solid var(--border);
}
.acc-sidebar-nav { display: flex; flex-direction: column; }
.acc-sidebar-nav a {
  display: block; padding: 12px 20px;
  font-size: 14px; font-weight: 600; color: var(--text);
  text-decoration: none; border-bottom: 1px solid #f5f5f5;
  transition: background .15s, color .15s;
}
.acc-sidebar-nav a:last-child { border-bottom: none; }
.acc-sidebar-nav a:hover { background: var(--primary-light); color: var(--primary-dark); }
.acc-sidebar-nav a.active { background: var(--dark-nav); color: #fff; }

/* Account dashboard widgets */
.account-widget-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px;
  text-align: center; text-decoration: none; color: var(--text);
  transition: box-shadow .2s, transform .2s;
}
.account-widget-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,.1);
  transform: translateY(-3px); color: var(--primary-dark);
}
.account-widget-card i { color: #ccc; }
.account-widget-card:hover i { color: var(--primary); }
.account-widget-card .fw-700 { font-weight: 700; font-size: 14px; margin-top: 4px; }

/* Address cards */
.address-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px;
  position: relative;
}
.address-card-default { border-color: var(--primary); }
.address-default-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary); color: var(--dark-nav);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 20px;
}
.address-card-name { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.address-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 10px; }
.address-card-type { background: #f3f4f6; color: var(--text-muted); font-size: 11px; }
.address-card-empty {
  background: #fafafa; border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
.address-card-empty a { color: var(--primary-dark); font-weight: 600; text-decoration: none; }

/* Order meta boxes */
.order-meta-box {
  background: #fafafa; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; text-align: center;
}
.order-meta-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.order-meta-val { font-size: 14px; font-weight: 700; color: var(--text); }

/* ── Saved addresses on checkout ── */
.saved-addr-card {
  background: #fafafa;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  min-height: 80px;
}
.saved-addr-card:hover { border-color: var(--primary); background: #fffbf3; }
.saved-addr-card.selected { border-color: var(--primary); background: #fffbf3; box-shadow: 0 0 0 2px rgba(215,173,108,.25); }
.saved-addr-default { border-color: #10b981; }
.saved-addr-badge {
  position: absolute; top: 8px; right: 8px;
  background: #10b981; color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 12px;
}
.saved-addr-name { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.saved-addr-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   INTL-TEL-INPUT — Global Karovi theme
   Applies to all phone fields across all pages
═══════════════════════════════════════════════════════ */
.iti { display: block !important; width: 100% !important; }

.iti__tel-input,
.iti input[type="tel"] {
  display: block !important;
  width: 100% !important;
  padding: 11px 14px 11px 100px !important;
  height: 46px !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  color: #333 !important;
  background: #fff !important;
  outline: none !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  transition: border-color .2s, box-shadow .2s !important;
}
.iti__tel-input:focus,
.iti input[type="tel"]:focus {
  border-color: #D7AD6C !important;
  box-shadow: 0 0 0 3px rgba(215,173,108,.12) !important;
}
.iti--separate-dial-code .iti__selected-flag {
  height: 46px !important;
  padding: 0 10px 0 12px !important;
  background: #f9f9f9 !important;
  border-right: 1.5px solid #e5e7eb !important;
  border-radius: 5px 0 0 5px !important;
  display: flex !important;
  align-items: center !important;
}
.iti--separate-dial-code .iti__selected-flag:hover {
  background: #f3ead9 !important;
}
.iti__selected-dial-code {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #333 !important;
  margin-left: 6px !important;
}
.iti__country-list {
  border-radius: 8px !important;
  box-shadow: 0 8px 30px rgba(0,0,0,.15) !important;
  border: 1px solid #e5e7eb !important;
  font-size: 13px !important;
  z-index: 9999 !important;
  min-width: 280px !important;
}
.iti__country { padding: 8px 14px !important; }
.iti__country.iti__highlight { background: #fdf8ee !important; }
.iti__country-name { font-weight: 500 !important; margin-left: 8px !important; }
.iti__dial-code { color: #888 !important; margin-left: 4px !important; }
.iti__flag-box { margin-right: 4px !important; }

/* ── Order detail — mobile item cards ── */
.order-item-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
  align-items: flex-start;
}
.order-item-card:last-child { border-bottom: none; }
.oic-left img {
  width: 64px; height: 80px;
  object-fit: cover; object-position: top;
  border-radius: 8px; flex-shrink: 0;
}
.oic-img-placeholder {
  width: 64px; height: 80px;
  background: #f3f4f6; border-radius: 8px;
}
.oic-right { flex: 1; min-width: 0; }
.oic-name {
  font-size: 13px; font-weight: 600;
  color: var(--text); line-height: 1.4;
  margin-bottom: 6px;
}
.oic-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 6px; }
.oic-tag {
  background: #f3f4f6; color: var(--text-muted);
  font-size: 11px; font-weight: 600;
  padding: 2px 8px; border-radius: 12px;
}
.oic-row { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.oic-label { font-weight: 600; }
.oic-total {
  font-size: 15px; font-weight: 800;
  color: var(--primary);
}

/* ── Transaction detail boxes ── */
.txn-detail-box {
  background: #f9fafb;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.txn-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.txn-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.txn-mono {
  font-family: monospace;
  font-size: 12px;
  word-break: break-all;
  background: #f3f4f6;
  padding: 2px 6px;
  border-radius: 4px;
}