/* =============================================
   BELIMAA — Main Stylesheet
   Premium Cultural & Spiritual eCommerce
   Color: Light Blue (#a8d8ea / #e8f4f8) + Light Green (#a8e6cf / #e8f8f0)
   ============================================= */

/* ---- CSS Variables ---- */
:root {
  --blue-deep:    #0f4fd1;
  --blue-mid:     #2d7df2;
  --blue-light:   #a8d8ea;
  --blue-pale:    #e8f4fb;
  --green-deep:   #4fb510;
  --green-mid:    #74cf2c;
  --green-light:  #a8e6cf;
  --green-pale:   #e8f8f2;
  --gradient-nav: linear-gradient(90deg, #0b1f4d 0%, #12357a 55%, #1b4f9c 100%);
  --brand-blue:   #4057c8;
  --brand-green:  #4aa548;
  --gradient-hero: linear-gradient(135deg, #e8f4fb 0%, #e8f8f2 100%);
  --gradient-card: linear-gradient(135deg, #f0faff 0%, #f0fff8 100%);
  --gradient-btn:  linear-gradient(135deg, #0f4fd1 0%, #2d7df2 100%);
  --ink:           #1a2332;
  --ink2:          #3d5166;
  --ink3:          #6b7f93;
  --white:         #ffffff;
  --surface:       #f8feff;
  --border:        #d4eaf4;
  --shadow-sm:     0 2px 8px rgba(42,127,186,0.10);
  --shadow-md:     0 6px 24px rgba(42,127,186,0.14);
  --shadow-lg:     0 16px 48px rgba(42,127,186,0.18);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     20px;
  --radius-xl:     28px;
  --transition:    all 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Poppins', 'Inter', sans-serif;
  --font-body:     'Inter', 'Poppins', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body:not(.site-shell-ready) #navbar,
body:not(.site-shell-ready) footer {
  opacity: 0;
  visibility: hidden;
}

body.site-shell-ready #navbar,
body.site-shell-ready footer {
  opacity: 1;
  visibility: visible;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--blue-pale); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 6px; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-nav);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 24px rgba(11,31,77,0.32);
  transition: var(--transition);
}
#navbar.scrolled {
  box-shadow: 0 12px 28px rgba(11,31,77,0.40);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}
/* Logo */
.nav-logo {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo-mark {
  display: none;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-brand {
  font-family: var(--font-heading);
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}
.nav-logo-brand span.b { color: var(--brand-blue); }
.nav-logo-brand span.g { color: var(--brand-green); }
.nav-logo-tagline {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-top: 7px;
}
/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.12);
}
/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  padding: 6px 14px;
  gap: 8px;
  transition: var(--transition);
}
.nav-search:focus-within {
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.10);
}
.nav-search input {
  background: none;
  border: none;
  color: #fff;
  font-size: 0.85rem;
  width: 160px;
}
.nav-search input::placeholder { color: rgba(255,255,255,0.58); }
.nav-search svg { color: rgba(255,255,255,0.7); }
.nav-search .fa-search { color: rgba(255,255,255,0.7) !important; }
.nav-icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.10);
  border-radius: 50%;
  color: #fff;
  transition: var(--transition);
  font-size: 1.1rem;
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.16); }
.nav-badge {
  position: absolute;
  top: -4px; right: -4px;
  background: #ff5252;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.nav-cta {
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 22px;
  border: 1.5px solid rgba(255,255,255,0.14);
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.nav-cta:hover {
  background: #fff;
  color: #111;
}
/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
/* Mobile Nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--gradient-nav);
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a {
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { background: rgba(255,255,255,0.10); color: #fff; }
.nav-mobile.open { display: flex; }
.nav-slogan { display: none; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: calc(100vh - 68px);
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(42,127,186,0.12) 0%, transparent 55%),
    radial-gradient(circle at 85% 30%, rgba(42,158,106,0.10) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232a7fba' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(42,127,186,0.12), rgba(42,158,106,0.10));
  border: 1px solid rgba(42,127,186,0.25);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 18px;
}
.hero-title .accent-blue { color: var(--blue-deep); }
.hero-title .accent-green { color: var(--green-deep); }
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--ink2);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 480px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(42,127,186,0.08);
  border: 1px solid rgba(42,127,186,0.18);
  color: var(--blue-deep);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-main-image {
  width: 100%;
  aspect-ratio: 4/3.5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-floating-card.card-1 {
  bottom: -20px;
  left: -30px;
  color: var(--green-deep);
}
.hero-floating-card.card-2 {
  top: -16px;
  right: -20px;
  color: var(--blue-deep);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--blue-deep);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--ink3);
  font-weight: 500;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 32px;
  transition: var(--transition);
  letter-spacing: 0.02em;
  cursor: pointer;
}
.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 4px 18px rgba(42,127,186,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(42,127,186,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}
.btn-outline:hover {
  background: var(--blue-deep);
  color: #fff;
}
.btn-ghost {
  background: rgba(42,127,186,0.08);
  color: var(--blue-deep);
  border: 1px solid rgba(42,127,186,0.15);
}
.btn-ghost:hover {
  background: var(--blue-deep);
  color: #fff;
}
.btn-sm {
  font-size: 0.8rem;
  padding: 8px 18px;
}
.btn-lg {
  font-size: 1rem;
  padding: 16px 36px;
}
.btn-full { width: 100%; }
.btn-icon { gap: 6px; }

/* =============================================
   SECTION LAYOUT
   ============================================= */
.section {
  padding: 72px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.section-sm { padding: 48px 24px; }
.section-full { padding: 72px 24px; max-width: 100%; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}
.section-subtitle {
  font-size: 0.95rem;
  color: var(--ink3);
  margin-bottom: 36px;
  max-width: 540px;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-block;
}
.view-all-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.view-all-link:hover { color: var(--green-deep); gap: 8px; }
.divider {
  width: 56px;
  height: 4px;
  background: var(--gradient-btn);
  border-radius: 4px;
  margin: 8px 0 20px;
}

/* =============================================
   CATEGORY STRIP
   ============================================= */
.category-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.category-strip::-webkit-scrollbar { display: none; }
.category-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cat-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink2);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.cat-tab:hover { color: var(--blue-deep); border-color: var(--blue-light); }
.cat-tab.active { color: var(--blue-deep); border-color: var(--blue-deep); }
.cat-tab-icon { font-size: 1.1rem; }

/* =============================================
   CATEGORY CARDS (Homepage)
   ============================================= */
.category-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 3/4;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.category-card img.fit-contain {
  object-fit: cover;
  object-position: center;
  background: transparent;
  padding: 0;
}
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}
.category-card-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 4px;
}
.category-card-count {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.premium-discovery-section {
  background:
    radial-gradient(circle at top right, rgba(42,127,186,0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(42,127,186,0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(11, 31, 77, 0.06);
}

.premium-products-grid .product-card {
  border-color: rgba(27, 79, 156, 0.1);
  box-shadow: 0 14px 34px rgba(17, 40, 85, 0.08);
}

.assist-product-card {
  display: block;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(42,127,186,0.12);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 24px rgba(17, 40, 85, 0.06);
  color: inherit;
  transition: var(--transition);
}

.assist-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(17, 40, 85, 0.1);
  border-color: rgba(42,127,186,0.24);
}

.assist-product-card-inner {
  display: flex;
  gap: 12px;
  align-items: center;
}

.assist-product-badge {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(42,127,186,0.1);
  color: var(--blue-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =============================================
   PRODUCT CARD
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.products-grid-5 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 18px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(42,127,186,0.07);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(42,127,186,0.15);
}
.product-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gradient-card);
}
.product-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img-wrap img { transform: scale(1.05); }
.product-card-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}
.badge-sale { background: #ff5252; color: #fff; }
.badge-new { background: var(--green-deep); color: #fff; }
.badge-featured { background: var(--blue-deep); color: #fff; }
.product-card-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  border: 1px solid rgba(0,0,0,0.06);
}
.product-card-wishlist:hover { background: #fff; transform: scale(1.12); }
.product-card-wishlist.active { color: #ff5252; }
.product-card-actions-hover {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(4px);
  padding: 10px;
  display: flex;
  gap: 6px;
  transition: bottom 0.28s ease;
}
.product-card:hover .product-card-actions-hover { bottom: 0; }
@media (hover: none), (pointer: coarse) {
  .product-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
  }
  .product-card:hover .product-card-img-wrap img {
    transform: none;
  }
  .product-card-actions-hover {
    position: static;
    bottom: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0 14px 14px;
  }
}
.product-card-info {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.product-card-name {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  margin-top: auto;
}
.price-current {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green-deep);
}
.price-original {
  font-size: 0.82rem;
  color: var(--ink3);
  text-decoration: line-through;
}
.price-discount {
  font-size: 0.72rem;
  font-weight: 700;
  background: #fff3e0;
  color: #e65100;
  padding: 2px 6px;
  border-radius: 6px;
}
.product-card-add-btn {
  background: var(--gradient-btn);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.product-card-add-btn:hover {
  opacity: 0.9;
  transform: scale(0.99);
}

/* =============================================
   HORIZONTAL SCROLL SECTION
   ============================================= */
.scroll-section {
  overflow: hidden;
}
.scroll-track {
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.scroll-track::-webkit-scrollbar { display: none; }
.scroll-inner {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 4px 2px;
}
.scroll-inner .product-card {
  width: 226px;
  flex-shrink: 0;
}
.scroll-controls {
  display: flex;
  gap: 8px;
}
.scroll-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--ink2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.scroll-btn:hover {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

/* =============================================
   CATEGORY SECTION STRIP (colored)
   ============================================= */
.cat-section {
  padding: 64px 0;
  overflow: hidden;
}
.cat-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.cat-section.alt-bg {
  background: var(--blue-pale);
}
.cat-section.alt-bg2 {
  background: var(--green-pale);
}
.cat-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cat-section-label.temple { background: rgba(42,127,186,0.12); color: var(--blue-deep); }
.cat-section-label.festival { background: rgba(255,152,0,0.12); color: #e65100; }
.cat-section-label.home-decor { background: rgba(42,158,106,0.12); color: var(--green-deep); }
.cat-section-label.embroidery { background: rgba(156,39,176,0.12); color: #7b1fa2; }
.cat-section-label.metal { background: rgba(121,85,72,0.12); color: #5d4037; }

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 0 28px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 7px 18px;
  border-radius: 22px;
  font-size: 0.83rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--ink2);
  cursor: pointer;
  transition: var(--transition);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--gradient-btn);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 3px 12px rgba(42,127,186,0.28);
}
.filter-bar-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 7px 16px;
  transition: var(--transition);
}
.filter-bar-search:focus-within {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(90,175,224,0.15);
}
.filter-bar-search input {
  border: none;
  background: none;
  font-size: 0.85rem;
  color: var(--ink);
  width: 180px;
}
.filter-sort {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  background: #fff;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
}
.filter-sort:focus { border-color: var(--blue-mid); }

/* =============================================
   PRODUCT DETAIL PAGE
   ============================================= */
.product-detail-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-detail-images {}
.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 14px;
  cursor: zoom-in;
  transition: var(--transition);
}
.product-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.product-thumbs::-webkit-scrollbar { display: none; }
.product-thumb {
  width: 70px; height: 70px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb.active { border-color: var(--blue-deep); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Product Info */
.product-detail-info {}
.product-detail-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-detail-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
}
.product-detail-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.stars { color: #f9a825; font-size: 0.9rem; }
.rating-count { font-size: 0.82rem; color: var(--ink3); }
.product-detail-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.detail-price-current {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--green-deep);
}
.detail-price-original {
  font-size: 1.1rem;
  color: var(--ink3);
  text-decoration: line-through;
}
.detail-price-off {
  font-size: 0.82rem;
  font-weight: 700;
  background: #fff3e0;
  color: #e65100;
  padding: 3px 9px;
  border-radius: 8px;
}
.product-detail-desc {
  font-size: 0.92rem;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.product-detail-qty {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-label { font-size: 0.88rem; font-weight: 600; color: var(--ink2); }
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink2);
  transition: var(--transition);
  background: #fff;
}
.qty-btn:hover { background: var(--blue-pale); color: var(--blue-deep); }
.qty-num {
  width: 44px; height: 36px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  border: none;
  background: #fff;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.product-detail-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 20px;
}
.product-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--ink3);
}
.product-meta span { display: flex; align-items: center; gap: 8px; }
.product-meta strong { color: var(--ink2); }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--ink3);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--blue-mid); transition: var(--transition); }
.breadcrumb a:hover { color: var(--blue-deep); }
.breadcrumb-sep { color: var(--ink3); }

/* =============================================
   PAGE HEADER BANNER
   ============================================= */
.page-banner {
  background: var(--gradient-nav);
  padding: 40px 24px;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}
.page-banner-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  position: relative;
  z-index: 2;
}

/* =============================================
   TRUST STRIP
   ============================================= */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.trust-icon {
  width: 44px; height: 44px;
  background: var(--gradient-card);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-text-label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.trust-text-sub { font-size: 0.72rem; color: var(--ink3); }

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
  background: var(--gradient-btn);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}
.newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 8px;
}
.newsletter-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 13px 20px;
  border-radius: 32px;
  border: none;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.18);
  color: #fff;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter-input:focus { background: rgba(255,255,255,0.28); }
.newsletter-submit {
  background: #fff;
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-submit:hover { transform: scale(1.04); }

/* =============================================
   VENDOR REGISTRATION
   ============================================= */
.vendor-section {
  padding: 72px 24px;
  background:
    radial-gradient(circle at top left, rgba(90, 175, 224, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(74, 165, 72, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
}
.vendor-shell {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: start;
}
.vendor-copy { padding: 16px 0; }
.vendor-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 12px 0 16px;
}
.vendor-sub {
  max-width: 540px;
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--ink2);
}
.vendor-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.vendor-point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(42,127,186,0.12);
  box-shadow: 0 12px 30px rgba(25, 45, 84, 0.06);
}
.vendor-point i {
  margin-top: 2px;
  color: var(--green-deep);
}
.vendor-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(27, 48, 80, 0.08);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 24px 60px rgba(18, 35, 73, 0.12);
  backdrop-filter: blur(12px);
}
.vendor-form {
  display: grid;
  gap: 16px;
}
.vendor-grid {
  display: grid;
  gap: 16px;
}
.vendor-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.vendor-field {
  display: grid;
  gap: 8px;
}
.vendor-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink2);
}
.vendor-input {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 0.92rem;
  color: var(--ink);
  transition: var(--transition);
}
.vendor-input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 4px rgba(90,175,224,0.12);
}
.vendor-textarea {
  min-height: 132px;
  resize: vertical;
}
.vendor-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 4px;
}
.vendor-submit,
.vendor-whatsapp {
  justify-content: center;
}
.vendor-submit {
  min-width: 230px;
}
.vendor-whatsapp {
  min-width: 190px;
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--gradient-nav);
  color: rgba(255,255,255,0.75);
  padding: 18px 16px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 14px;
  padding-bottom: 10px;
}
.footer-brand {}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.footer-logo-mark { display: none !important; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
  color: var(--brand-blue);
}
.footer-brand-name .g { color: var(--brand-green); }
.footer-tagline {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 6px;
  font-weight: 700;
}
.footer-desc {
  font-size: 0.7rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.62);
  margin-bottom: 8px;
  max-width: 220px;
}
.footer-socials {
  display: flex;
  gap: 6px;
}
.footer-social-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  transition: var(--transition);
  background: rgba(255,255,255,0.08);
}
.footer-social-btn:hover {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #fff;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-col a {
  display: block;
  font-size: 0.69rem;
  color: rgba(255,255,255,0.62);
  margin-bottom: 4px;
  transition: var(--transition);
}
.footer-contact-item a,
.footer-map-link {
  display: inline-flex;
  margin-bottom: 0;
}
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 5px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.62);
}
.footer-contact-item svg { flex-shrink: 0; color: rgba(255,255,255,0.82); margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.63rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }
.footer-grid-compact {
  grid-template-columns: minmax(210px, 1fr) minmax(180px, .9fr) minmax(260px, 1.25fr);
}
.footer-dropdowns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 8px;
}
.footer-dropdown {
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.footer-dropdown summary {
  list-style: none;
  cursor: pointer;
  padding: 8px 11px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-dropdown summary::-webkit-details-marker { display: none; }
.footer-dropdown summary::after {
  content: '+';
  font-size: 0.86rem;
  line-height: 1;
  color: rgba(255,255,255,0.75);
}
.footer-dropdown[open] summary::after { content: '-'; }
.footer-dropdown-links {
  padding: 0 11px 9px;
  display: grid;
  gap: 2px;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 1px;
  font-size: 0.66rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
}
.footer-contact-item a:hover,
.footer-map-link:hover {
  padding-left: 0;
}
.footer-map-wrap {
  margin-top: 6px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.footer-map {
  width: 100%;
  height: 110px;
  border: 0;
  display: block;
}

/* =============================================
   TOAST
   ============================================= */
#toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 32px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
  pointer-events: none;
  max-width: 320px;
}
#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
#toast.success { background: var(--green-deep); }
#toast.error { background: #e53935; }

/* =============================================
   CART SIDEBAR / FLOATING
   ============================================= */
.cart-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.cart-float-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 24px rgba(42,127,186,0.4);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.cart-float-btn:hover { transform: scale(1.08); }
.cart-float-count {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: #ff5252;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-float {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); }

/* =============================================
   ADMIN PANEL
   ============================================= */
.admin-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background: linear-gradient(180deg, #0d2035 0%, #0d2a1a 100%);
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.admin-sidebar-logo {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-nav {
  padding: 16px 12px;
  flex: 1;
}
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 3px;
}
.admin-nav-item:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-nav-item.active { background: var(--gradient-btn); color: #fff; }
.admin-main {
  background: #f5f7fa;
  padding: 28px;
  overflow-y: auto;
}
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 14px;
}
.admin-header-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
}
.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.admin-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.admin-stat-label {
  font-size: 0.82rem;
  color: var(--ink3);
}
.admin-table-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
}
.admin-table-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-table-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table th, .admin-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.admin-table th {
  font-weight: 700;
  color: var(--ink2);
  background: #f9fafb;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.admin-table td { color: var(--ink2); }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: var(--blue-pale); }
.admin-img-thumb {
  width: 42px; height: 42px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.status-active { background: #e8f5e9; color: #2e7d32; }
.status-inactive { background: #fce4ec; color: #c62828; }
.status-pending { background: #fff3e0; color: #e65100; }
.status-confirmed { background: #e3f2fd; color: #1565c0; }
.status-delivered { background: #e8f5e9; color: #2e7d32; }
/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.95);
  transition: transform 0.28s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close:hover { background: #e0e0e0; }
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 22px;
}
/* Form */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--ink2);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--ink);
  background: #fff;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(90,175,224,0.15); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7f93' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
/* Image Upload */
.img-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--blue-pale);
}
.img-upload-area:hover, .img-upload-area.drag-over {
  border-color: var(--blue-mid);
  background: rgba(90,175,224,0.08);
}
.img-upload-icon { font-size: 2rem; margin-bottom: 8px; }
.img-upload-text { font-size: 0.88rem; color: var(--ink3); }
.img-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.img-preview-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.img-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.img-preview-remove {
  position: absolute;
  top: 3px; right: 3px;
  width: 20px; height: 20px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
}

/* =============================================
   CART PAGE
   ============================================= */
.cart-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}
.cart-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
}
.cart-item-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; color: var(--ink); font-size: 0.92rem; margin-bottom: 4px; }
.cart-item-cat { font-size: 0.75rem; color: var(--blue-mid); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.cart-item-price { font-weight: 800; color: var(--green-deep); font-size: 1rem; margin-top: 6px; }
.cart-item-remove { color: var(--ink3); font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.cart-item-remove:hover { color: #e53935; }
.cart-summary {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.cart-summary-title { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 800; margin-bottom: 18px; }
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.cart-summary-row.total {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  border-bottom: none;
  padding-top: 14px;
}
.cart-summary-row.total .val { color: var(--green-deep); }
.cart-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--ink3);
}
.cart-empty-icon { font-size: 4rem; margin-bottom: 16px; }
.cart-empty-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--ink2); }

/* =============================================
   LOADING SPINNER
   ============================================= */
.loader-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
}
.loader {
  width: 40px; height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--blue-mid);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.skeleton {
  background: linear-gradient(90deg, #e8eef4 25%, #f5f8fb 50%, #e8eef4 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* =============================================
   EMPTY STATE
   ============================================= */
.empty-state {
  text-align: center;
  padding: 72px 24px;
  color: var(--ink3);
}
.empty-icon { font-size: 3.5rem; margin-bottom: 14px; opacity: 0.6; }
.empty-title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--ink2); margin-bottom: 6px; }
.empty-sub { font-size: 0.88rem; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 0;
}
.page-btn {
  min-width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink2);
  cursor: pointer;
  transition: var(--transition);
  background: #fff;
}
.page-btn.active, .page-btn:hover {
  background: var(--gradient-btn);
  color: #fff;
  border-color: transparent;
}

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .footer-grid-compact { grid-template-columns: 1fr 1fr; }
  .footer-dropdowns { grid-template-columns: 1fr 1fr; }
  .category-cards { grid-template-columns: repeat(3, 1fr); }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { gap: 36px; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 36px; }
  .nav-inner { gap: 16px; padding: 0 18px; }
  .nav-search input { width: 120px; }
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {
  .nav-inner { min-height: 72px; padding: 0 16px; gap: 12px; }
  .nav-logo { min-width: 0; }
  .nav-right { margin-left: auto; }
  .nav-links { display: none; }
  .nav-search { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-logo-brand { font-size: 1.6rem; }
  .nav-logo-tagline { font-size: 0.68rem; margin-top: 6px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-tags { justify-content: center; }
  .hero-stats { display: none; }
  .category-cards { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .products-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .cart-grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid-compact { grid-template-columns: 1fr; }
  .footer-dropdowns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .newsletter-form { flex-direction: column; }
  .vendor-shell { grid-template-columns: 1fr; }
  .vendor-grid-two { grid-template-columns: 1fr; }
  .vendor-card { padding: 20px; border-radius: 22px; }
  .vendor-actions { flex-direction: column; }
  .vendor-submit, .vendor-whatsapp { width: 100%; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; }
  .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header { flex-direction: column; align-items: flex-start; }
  .page-banner { padding: 28px 16px; }
  .section { padding: 48px 16px; }
  .scroll-controls { display: none; }
  .product-card-name { min-height: 46px; }
}
@media (max-width: 480px) {
  .nav-inner { padding: 0 12px; }
  .nav-logo-brand { font-size: 1.35rem; }
  .nav-logo-tagline { font-size: 0.62rem; }
  .category-cards { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; gap: 12px; }
  .admin-stat-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .category-card { min-height: 240px; }
  .product-main-img { min-height: 280px; object-fit: cover; }
  .product-detail-actions { flex-direction: column; }
  .qty-controls { width: 100%; justify-content: space-between; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item-img { width: 100%; height: 220px; }
  .coupon-row { flex-direction: column; }
}

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

.nav-auth-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-auth-ghost {
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.nav-auth-ghost:hover {
  background: rgba(255,255,255,0.16);
}

.nav-auth-solid {
  color: #0b1f4d;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,0.2);
}

.nav-auth-solid:hover {
  transform: translateY(-1px);
}

.nav-user-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.auth-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 12px;
  margin-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.auth-mobile-actions .nav-auth-btn,
.auth-mobile-actions .nav-user-pill {
  width: 100%;
}

.nav-mobile-auth-copy {
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  font-weight: 600;
}

.auth-modal-box {
  max-width: 460px;
}

.auth-modal-head {
  margin-bottom: 18px;
}

.auth-modal-subtitle {
  color: var(--ink3);
  font-size: 0.88rem;
  margin-top: -10px;
  margin-bottom: 4px;
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  background: var(--blue-pale);
  border-radius: 999px;
}

.auth-tab {
  min-height: 40px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink2);
}

.auth-tab.active {
  background: #fff;
  color: var(--blue-deep);
  box-shadow: 0 4px 16px rgba(15, 79, 209, 0.12);
}

.auth-submit-btn:disabled {
  opacity: 0.8;
  cursor: wait;
}

.auth-switch-copy {
  margin-top: 14px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--ink3);
}

.auth-switch-copy button {
  color: var(--blue-deep);
  font-weight: 700;
}


.auth-modal-shell {
  max-width: 860px;
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(11,31,77,0.22);
}

.auth-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 560px;
}

.auth-side-panel {
  background: linear-gradient(180deg, #12357a 0%, #0f4fd1 100%);
  color: #fff;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 10px;
}

.auth-brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.auth-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
}

.auth-brand-copy {
  color: rgba(255,255,255,0.74);
  font-size: 0.82rem;
}

.auth-side-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.auth-side-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 18px 0 14px;
}

.auth-side-panel p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.75;
}

.auth-side-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.auth-side-points div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  line-height: 1.5;
}

.auth-main-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  padding: 34px 32px;
}

.auth-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.auth-method,
.auth-tab {
  min-height: 44px;
  border-radius: 10px;
}

.auth-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.auth-social-btn {
  min-height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--ink2);
  font-size: 0.84rem;
  font-weight: 700;
}

.auth-inline-note {
  font-size: 0.8rem;
  color: var(--ink3);
  margin: 10px 0 14px;
  line-height: 1.55;
}

.auth-switch-copy {
  margin-top: 14px;
  color: var(--ink3);
  font-size: 0.84rem;
}

.auth-switch-copy button {
  color: var(--blue-deep);
  font-weight: 700;
}

.auth-method {
  min-height: 44px;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--ink2);
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.auth-method.active {
  background: #fff;
  color: var(--blue-deep);
  border-color: rgba(45,125,242,0.2);
  box-shadow: 0 8px 24px rgba(15,79,209,0.08);
}

.auth-social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.auth-social-btn {
  min-height: 46px;
  border-radius: 14px;
  font-size: 0.84rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  transition: var(--transition);
}

.auth-social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15,79,209,0.08);
}

.auth-social-btn.google {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.auth-social-btn.facebook {
  background: linear-gradient(135deg, #eef4ff 0%, #f7f9ff 100%);
}

.auth-inline-note {
  margin: 8px 0 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--ink2);
  font-size: 0.82rem;
  line-height: 1.55;
}

.auth-dev-otp {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #0b1f4d;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.auth-otp-input {
  letter-spacing: 0.28em;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
}

@media (max-width: 920px) {
  .auth-modal-shell {
    max-width: 560px;
  }

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

  .auth-side-panel {
    padding: 28px 24px;
  }

  .auth-main-panel {
    padding: 28px 22px;
  }
}

@media (max-width: 640px) {
  .auth-social-grid,
  .auth-methods {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   2026 Premium Navigation + Layout Refresh
   ============================================= */
:root {
  --site-bg: #ffffff;
  --surface-soft: #f7f8fa;
  --surface-muted: #fbfbfc;
  --border-strong: #e7e8ec;
  --sidebar-width: 292px;
  --sidebar-collapsed-width: 96px;
  --topbar-height: 0px;
  --sky-nav-start: #173a7a;
  --sky-nav-mid: #1d458d;
  --sky-nav-end: #224f9d;
  --premium-shadow: 0 20px 45px rgba(15, 23, 42, 0.06);
  --nav-surface: rgba(255,255,255,0.08);
  --nav-surface-strong: rgba(255,255,255,0.14);
  --nav-surface-glass: rgba(255,255,255,0.1);
  --nav-outline: rgba(255,255,255,0.16);
}

body {
  background: var(--site-bg);
}

body.has-sidebar-nav {
  padding-left: var(--sidebar-width);
  padding-top: 0;
  background: var(--site-bg);
  transition: padding-left 0.35s ease;
}

body.nav-open {
  overflow: hidden;
}

body.has-sidebar-nav.nav-collapsed {
  padding-left: var(--sidebar-collapsed-width);
}

.page-top-slogan-banner {
  display: flex;
  justify-content: center;
  padding: 18px 24px 0;
  animation: sloganReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-top-slogan-banner-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(23, 58, 122, 0.1);
  box-shadow: 0 18px 40px rgba(16, 31, 68, 0.1);
}

.page-top-slogan-banner-text {
  display: block;
  font-family: 'Noto Serif Devanagari', serif;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 8px 22px rgba(23, 58, 122, 0.1);
  text-rendering: optimizeLegibility;
}

.page-top-slogan-banner-text .slogan-blue {
  color: #2d7df2;
}

.page-top-slogan-banner-text .slogan-deep {
  color: #173a7a;
}

.page-top-slogan-banner-text .slogan-green {
  color: #5fb92f;
}

@keyframes sloganReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

body.has-sidebar-nav .hero,
body.has-sidebar-nav .section,
body.has-sidebar-nav .cat-section,
body.has-sidebar-nav .page-banner,
body.has-sidebar-nav .cart-wrap,
body.has-sidebar-nav .cat-layout,
body.has-sidebar-nav .product-wrap,
body.has-sidebar-nav .footer-inner,
body.has-sidebar-nav .about-page,
body.has-sidebar-nav .about-page-hero-inner {
  scroll-margin-top: 18px;
}

body.has-sidebar-nav #navbar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--sidebar-width);
  z-index: 1200;
  background:
    radial-gradient(circle at top left, rgba(89, 153, 255, 0.24), transparent 28%),
    radial-gradient(circle at 78% 18%, rgba(112, 214, 61, 0.16), transparent 22%),
    linear-gradient(180deg, var(--sky-nav-start) 0%, var(--sky-nav-mid) 56%, var(--sky-nav-end) 100%);
  border-right: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 14px 34px rgba(35, 116, 173, 0.24);
  overflow: hidden;
  transition: width 0.35s ease, box-shadow 0.35s ease;
}

body.has-sidebar-nav #navbar.scrolled {
  box-shadow: none;
}

body.has-sidebar-nav #navbar .nav-inner {
  max-width: none;
  min-height: 100%;
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.nav-rail-header {
  position: relative;
  display: block;
  padding: 0 0 8px;
}

body.has-sidebar-nav .nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-height: 76px;
  padding: 6px 56px 12px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.nav-logo-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--nav-surface-glass);
  border: 1px solid var(--nav-outline);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  backdrop-filter: blur(14px);
}

.nav-logo-mark-inner {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(72, 123, 255, 0.92), rgba(96, 207, 44, 0.86));
  color: #fff;
  box-shadow: 0 10px 24px rgba(11, 21, 54, 0.22);
}

.nav-logo-mark-inner i {
  font-size: 0.92rem;
}

.brand-logo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.nav-logo-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-bottom: 5px;
}

.brand-logo-title {
  display: block;
  font-size: clamp(2rem, 2.2vw, 2.25rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.brand-logo-title .brand-blue {
  color: #3f72ff;
  text-shadow: 0 0 18px rgba(63, 114, 255, 0.28);
}

.brand-logo-title .brand-green {
  color: #6ed02d;
  text-shadow: 0 0 18px rgba(110, 208, 45, 0.24);
}

.brand-logo-tagline {
  display: block;
  text-align: left;
  color: rgba(255,255,255,0.96);
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.2;
  margin-top: 3px;
  text-shadow: 0 2px 14px rgba(4, 13, 38, 0.18);
}

.nav-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  flex: 1;
}

body.has-sidebar-nav .nav-search {
  background: var(--nav-surface-glass);
  border: 1px solid var(--nav-outline);
  border-radius: 16px;
  padding: 11px 13px;
  gap: 10px;
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

body.has-sidebar-nav .nav-search:focus-within {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

body.has-sidebar-nav .nav-search input,
body.has-sidebar-nav .nav-search i {
  color: #fff !important;
}

body.has-sidebar-nav .nav-search input::placeholder {
  color: rgba(255,255,255,0.66);
}

body.has-sidebar-nav .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  flex: 0 1 auto;
}

.nav-section-label {
  padding: 4px 2px 2px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}

.nav-section-label-spaced {
  margin-top: 4px;
}

body.has-sidebar-nav .nav-links a,
.nav-dropdown-toggle {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 11px 42px 11px 14px;
  border-radius: 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.26s ease, border-color 0.26s ease, transform 0.26s ease, box-shadow 0.26s ease, color 0.26s ease;
}

body.has-sidebar-nav .nav-links a::before,
.nav-dropdown-toggle::before {
  display: none;
}

.nav-item-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  transition: inherit;
}

.nav-item-copy {
  min-width: 0;
  flex: 1;
}

body.has-sidebar-nav .nav-links a:hover,
body.has-sidebar-nav .nav-links a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  background: color-mix(in srgb, white 15%, transparent);
  border-color: rgba(255,255,255,0.14);
  color: #fff;
  box-shadow: 0 18px 30px rgba(8,20,56,0.18);
  transform: translateY(-1px);
}

body.has-sidebar-nav .nav-links a:hover .nav-item-icon,
body.has-sidebar-nav .nav-links a.active .nav-item-icon,
.nav-dropdown-toggle:hover .nav-item-icon,
.nav-dropdown.open .nav-dropdown-toggle .nav-item-icon {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}

.nav-dropdown {
  display: grid;
  gap: 4px;
}

.nav-dropdown-toggle > .fa-chevron-down {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: transform 0.28s ease, color 0.28s ease;
}

.nav-dropdown.open .nav-dropdown-toggle > .fa-chevron-down {
  transform: translateY(-50%) rotate(180deg);
  color: #fff;
}

.nav-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: grid;
  gap: 6px;
  margin-left: 18px;
  padding: 6px 0 0 18px;
  border-left: 1px solid rgba(255,255,255,0.12);
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  max-height: 420px;
  opacity: 1;
}

.nav-dropdown-menu a {
  min-height: 40px;
  padding: 8px 14px 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 12px;
}

body.has-sidebar-nav .nav-right {
  display: grid;
  gap: 10px;
  align-items: stretch;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.nav-meta-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: color-mix(in srgb, white 10%, transparent);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
}

.nav-meta-chip {
  display: inline-flex;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.88);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-meta-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  line-height: 1.5;
}

body.has-sidebar-nav .auth-actions,
body.has-sidebar-nav .auth-mobile-actions {
  display: grid;
  gap: 10px;
}

body.has-sidebar-nav .auth-mobile-actions {
  padding-top: 8px;
  margin-top: 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}

body.has-sidebar-nav .nav-auth-btn,
body.has-sidebar-nav .nav-user-pill {
  width: 100%;
  min-height: 40px;
  border-radius: 12px;
  font-size: 0.84rem;
}

body.has-sidebar-nav .nav-auth-ghost {
  color: #0b4e78;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.82);
}

body.has-sidebar-nav .nav-auth-ghost:hover {
  background: rgba(255,255,255,0.92);
}

body.has-sidebar-nav .nav-auth-solid {
  color: #0b4e78;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.9);
}

body.has-sidebar-nav .nav-user-pill,
body.has-sidebar-nav .nav-mobile-auth-copy {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
}

body.has-sidebar-nav .nav-actions-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: stretch;
  gap: 8px;
}

body.has-sidebar-nav .nav-icon-btn {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

body.has-sidebar-nav .nav-icon-btn:hover {
  background: rgba(255,255,255,0.18);
  box-shadow: 0 16px 28px rgba(8,20,56,0.2);
}

body.has-sidebar-nav .nav-cta {
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(236,242,255,0.96));
  color: #103d74;
  border: 1px solid rgba(255,255,255,0.94);
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(8,20,56,0.14);
}

body.has-sidebar-nav .nav-cta:hover {
  color: #0b4e78;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(61, 142, 199, 0.22);
}

body.has-sidebar-nav .nav-hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  position: absolute;
  top: 0;
  right: 0;
  backdrop-filter: blur(14px);
}

body.has-sidebar-nav .nav-mobile {
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
}

body.has-sidebar-nav .nav-slogan { display: none; }

body.has-sidebar-nav.nav-collapsed #navbar {
  width: var(--sidebar-collapsed-width);
}

body.has-sidebar-nav.nav-collapsed .brand-logo-copy {
  display: none;
}

body.has-sidebar-nav.nav-collapsed .nav-logo {
  justify-content: center;
  padding-right: 0;
}

body.has-sidebar-nav.nav-collapsed .nav-logo-mark {
  margin: 0 auto;
}

body.has-sidebar-nav.nav-collapsed .nav-panel {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

body.has-sidebar-nav:not(.nav-collapsed) .nav-panel {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.has-sidebar-nav .hero,
body.has-sidebar-nav .cat-hero,
body.has-sidebar-nav .page-banner,
body.has-sidebar-nav .cat-layout,
body.has-sidebar-nav .cart-wrap,
body.has-sidebar-nav #product-section,
body.has-sidebar-nav footer,
body.has-sidebar-nav .about-page,
body.has-sidebar-nav .about-page-hero {
  background: #fff;
}

body.has-sidebar-nav .hero::before {
  background:
    radial-gradient(circle at 12% 22%, rgba(15, 79, 209, 0.07) 0%, transparent 45%),
    radial-gradient(circle at 88% 16%, rgba(116, 207, 44, 0.06) 0%, transparent 40%);
}

body.has-sidebar-nav .section,
body.has-sidebar-nav .cat-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

body.has-sidebar-nav .alt-bg,
body.has-sidebar-nav .alt-bg2,
body.has-sidebar-nav .cat-hero,
body.has-sidebar-nav .page-banner,
body.has-sidebar-nav .category-strip,
body.has-sidebar-nav .cart-summary,
body.has-sidebar-nav .checkout-form {
  background: #fff;
}

body.has-sidebar-nav .section-badge,
body.has-sidebar-nav .hero-badge,
body.has-sidebar-nav .cat-section-label {
  background: #f5f7fb;
  border-color: #e8ebf2;
}

body.has-sidebar-nav .category-card,
body.has-sidebar-nav .product-card,
body.has-sidebar-nav .assist-product-card,
body.has-sidebar-nav .cat-sidebar-card,
body.has-sidebar-nav .cart-card,
body.has-sidebar-nav .about-preview-card,
body.has-sidebar-nav .about-principle-card,
body.has-sidebar-nav .about-highlight-card,
body.has-sidebar-nav .about-story-card,
body.has-sidebar-nav .about-cta-panel {
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: var(--premium-shadow);
}

body.has-sidebar-nav footer {
  background: linear-gradient(180deg, var(--sky-nav-start) 0%, var(--sky-nav-mid) 56%, var(--sky-nav-end) 100%);
  border-top: 1px solid rgba(255,255,255,0.32);
  margin-top: 14px;
}

body.has-sidebar-nav .footer-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 14px 20px 6px;
}

body.has-sidebar-nav .footer-grid,
body.has-sidebar-nav .footer-grid-compact {
  grid-template-columns: minmax(220px, 1.2fr) minmax(180px, 0.9fr) 150px;
  gap: 10px 14px;
  align-items: end;
  width: 100%;
}

.footer-brand-image {
  width: 118px;
}

body.has-sidebar-nav .footer-brand-logo {
  display: flex;
  align-items: flex-end;
  margin-bottom: 0;
}

body.has-sidebar-nav .footer-brand-copy {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

body.has-sidebar-nav .footer-brand .brand-logo-title {
  font-size: clamp(1.9rem, 2vw, 2.35rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

body.has-sidebar-nav .footer-brand .brand-logo-tagline {
  margin-top: 0;
  font-size: 0.9rem;
  line-height: 1.15;
  color: rgba(255,255,255,0.98);
  text-shadow: 0 2px 12px rgba(4, 13, 38, 0.18);
}

footer .footer-tagline {
  display: none;
}

body.has-sidebar-nav .footer-brand-logo,
body.has-sidebar-nav .footer-brand-name,
body.has-sidebar-nav .footer-desc,
body.has-sidebar-nav .footer-col h4,
body.has-sidebar-nav .footer-contact-item,
body.has-sidebar-nav .footer-dropdown summary,
body.has-sidebar-nav .footer-dropdown-links a,
body.has-sidebar-nav .footer-bottom {
  color: #fff;
}

body.has-sidebar-nav .footer-desc,
body.has-sidebar-nav .footer-contact-item,
body.has-sidebar-nav .footer-dropdown-links a,
body.has-sidebar-nav .footer-bottom span {
  color: rgba(255,255,255,0.92);
  font-size: 0.76rem;
}

body.has-sidebar-nav .footer-brand,
body.has-sidebar-nav .footer-col,
body.has-sidebar-nav .footer-dropdowns {
  display: grid;
  align-content: end;
  justify-items: start;
  gap: 4px;
}

body.has-sidebar-nav .footer-brand {
  grid-column: 1;
  align-content: start;
}

body.has-sidebar-nav .footer-col-contact {
  grid-column: 2;
}

body.has-sidebar-nav .footer-col-location {
  grid-column: 3;
  justify-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  grid-template-areas:
    "title map"
    "address map"
    "link map";
  align-items: end;
  justify-items: start;
  text-align: left;
  width: 320px;
  gap: 4px 10px;
}

body.has-sidebar-nav .footer-col-location h4 {
  grid-area: title;
  align-self: end;
}

body.has-sidebar-nav .footer-col-location .footer-contact-item {
  grid-area: address;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  margin-bottom: 0;
  align-self: end;
}

body.has-sidebar-nav .footer-col-location .footer-map-link {
  grid-area: link;
  justify-self: start;
  position: static;
  margin-top: 0;
  align-self: end;
}

body.has-sidebar-nav .footer-dropdown summary::after {
  color: rgba(255,255,255,0.7);
}

body.has-sidebar-nav .footer-social-btn {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
}

body.has-sidebar-nav .footer-social-btn:hover {
  background: rgba(255,255,255,0.16);
  box-shadow: 0 16px 28px rgba(8,20,56,0.2);
}

body.has-sidebar-nav .footer-map-wrap {
  grid-area: map;
  width: 140px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  margin-left: auto;
  position: static;
  margin-top: 2px;
  align-self: end;
}

body.has-sidebar-nav .footer-map {
  width: 100%;
  height: 100%;
}

body.has-sidebar-nav .footer-bottom {
  margin-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 5px;
}

body.has-sidebar-nav .footer-col h4,
body.has-sidebar-nav .footer-dropdown summary {
  font-size: 0.78rem;
  margin-bottom: 0;
}

body.has-sidebar-nav .footer-contact-item,
body.has-sidebar-nav .footer-dropdown-links a {
  line-height: 1.35;
  text-align: left;
}

body.has-sidebar-nav .footer-socials {
  gap: 5px;
}

.about-preview-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border-radius: 28px;
}

.about-preview-text {
  color: var(--ink2);
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 760px;
}

.about-preview-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 18px;
  background: #111827;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  transition: var(--transition);
}

.about-preview-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(17, 24, 39, 0.18);
}

.about-page-hero {
  padding: 42px 24px 14px;
  background: #fff;
}

.about-page-hero-inner,
.about-page {
  max-width: 1240px;
  margin: 0 auto;
}

.about-page {
  padding: 22px 24px 56px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  margin-bottom: 24px;
}

.about-story-card,
.about-story-highlight,
.about-principles,
.about-cta-panel {
  border-radius: 28px;
}

.about-story-card {
  padding: 34px;
}

.about-story-card h2,
.about-principles h3,
.about-principle-card h3 {
  font-family: var(--font-heading);
}

.about-story-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  line-height: 1.14;
  color: var(--ink);
}

.about-story-card p {
  color: var(--ink2);
  line-height: 1.85;
  font-size: 1rem;
  margin-top: 14px;
}

.about-story-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f4f7fb;
  color: var(--ink3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-story-highlight {
  display: grid;
  gap: 16px;
}

.about-highlight-card {
  padding: 24px;
  border-radius: 24px;
}

.about-highlight-card strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 10px;
}

.about-highlight-card p {
  color: var(--ink2);
  line-height: 1.7;
  font-size: 0.95rem;
}

.about-principles {
  padding: 12px 0 0;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-principle-card {
  padding: 26px;
  border-radius: 24px;
}

.about-principle-card h3 {
  font-size: 1.08rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.about-principle-card p {
  color: var(--ink2);
  line-height: 1.7;
  font-size: 0.92rem;
}

.about-cta-panel {
  margin-top: 24px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1180px) {
  body.has-sidebar-nav .footer-grid,
  body.has-sidebar-nav .footer-grid-compact {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  body.has-sidebar-nav .footer-brand,
  body.has-sidebar-nav .footer-col-contact,
  body.has-sidebar-nav .footer-dropdowns,
  body.has-sidebar-nav .footer-col-location {
    grid-column: auto;
    width: auto;
    height: auto;
    align-content: start;
  }

  .about-principles-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  body.has-sidebar-nav {
    padding-left: 0;
    padding-top: 88px;
  }

  body.has-sidebar-nav #navbar {
    width: 100%;
    right: 0;
    bottom: auto;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  body.has-sidebar-nav #navbar .nav-inner {
    min-height: auto;
    padding: 10px 14px 12px;
    gap: 10px;
  }

  body.has-sidebar-nav .nav-logo {
    min-height: 62px;
    padding: 4px 52px 10px 0;
  }

  .nav-rail-header {
    display: block;
  }

  body.has-sidebar-nav .nav-hamburger {
    display: inline-flex;
  }

  body.has-sidebar-nav .nav-hamburger span {
    background: #fff;
  }

  .nav-panel {
    display: flex;
    max-height: 0;
    padding-top: 0;
    opacity: 1;
    transform: none;
    overflow: hidden;
    transition: max-height 0.32s ease;
  }

  body.nav-open .nav-panel {
    max-height: 80vh;
  }

  body.has-sidebar-nav.nav-collapsed {
    padding-left: 0;
  }

  body.has-sidebar-nav.nav-collapsed .nav-panel {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  body.has-sidebar-nav.nav-collapsed .brand-logo-copy {
    display: flex;
  }

  .nav-section-label,
  .nav-meta-card {
    display: none;
  }

  .about-preview-card,
  .about-story-grid,
  .about-cta-panel {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .about-page-hero,
  .about-page {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 640px) {
  .page-top-slogan-banner {
    padding: 14px 14px 0;
  }

  .page-top-slogan-banner-inner {
    min-height: 38px;
    padding: 8px 16px;
  }

  .page-top-slogan-banner-text {
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .page-top-slogan-banner-inner {
    width: 100%;
    max-width: 320px;
  }

  .page-top-slogan-banner-text {
    white-space: normal;
    text-align: center;
    line-height: 1.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-top-slogan-banner {
    animation: none;
  }
}

@media (max-width: 768px) {
  body.has-sidebar-nav .hero-inner,
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  body.has-sidebar-nav .footer-grid,
  body.has-sidebar-nav .footer-grid-compact {
    grid-template-columns: 1fr;
  }

  body.has-sidebar-nav .footer-inner {
    padding: 16px 14px 8px;
  }

  body.has-sidebar-nav .footer-col-location {
    justify-self: start;
    justify-items: start;
    text-align: left;
    align-content: start;
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "address"
      "link"
      "map";
    width: auto;
  }

  body.has-sidebar-nav .footer-col-location .footer-contact-item {
    justify-content: flex-start;
    text-align: left;
  }

  body.has-sidebar-nav .footer-map-wrap {
    width: 100%;
    max-width: 150px;
    margin-left: 0;
    position: static;
  }

  body.has-sidebar-nav .footer-col-location .footer-map-link {
    position: static;
  }

  .about-preview-card,
  .about-story-card,
  .about-highlight-card,
  .about-principle-card,
  .about-cta-panel {
    padding: 22px;
  }
}

/* =============================================
   2026 Premium Commerce Refresh
   ============================================= */
:root {
  --brand-bg: #ffffff;
  --brand-text: #10213b;
  --brand-muted: #60708a;
  --brand-line: #dde6f2;
  --brand-line-strong: #cfd9e8;
  --brand-blue-deep: #143a8c;
  --brand-blue: #1f56c3;
  --brand-blue-soft: #edf3ff;
  --brand-green: #1ea672;
  --brand-green-strong: #0f8d5f;
  --brand-green-soft: #edf9f4;
  --brand-green-gradient: linear-gradient(135deg, #1bb875 0%, #79d86f 100%);
  --brand-card-shadow: 0 18px 50px rgba(16, 33, 59, 0.08);
  --brand-card-shadow-hover: 0 26px 64px rgba(16, 33, 59, 0.14);
  --brand-radius-sm: 14px;
  --brand-radius-md: 22px;
  --brand-radius-lg: 32px;
  --brand-max: 1240px;
  --nav-height: 82px;
}

html {
  background: var(--brand-bg);
}

body {
  background: var(--brand-bg);
  color: var(--brand-text);
  font-family: 'Poppins', sans-serif;
}

body:not(.site-shell-ready) #navbar,
body:not(.site-shell-ready) footer {
  opacity: 0;
  visibility: hidden;
}

a,
button,
input,
select,
textarea {
  transition: background-color 0.24s ease, border-color 0.24s ease, color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease, opacity 0.24s ease;
}

.section,
.cart-wrap,
.product-detail-wrap,
.cat-layout,
.page-shell,
.page-hero,
.page-subnav,
.page-content,
.checkout-panel {
  max-width: var(--brand-max);
  margin-left: auto;
  margin-right: auto;
}

.page-shell {
  padding: 0 24px 72px;
}

.top-offer-bar {
  background: var(--brand-blue-deep);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.top-offer-bar-inner {
  max-width: var(--brand-max);
  min-height: 40px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.top-offer-divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(207, 217, 232, 0.8);
  box-shadow: 0 10px 30px rgba(16, 33, 59, 0.05);
}

#navbar.scrolled {
  box-shadow: 0 14px 34px rgba(16, 33, 59, 0.08);
}

.nav-inner {
  max-width: var(--brand-max);
  min-height: var(--nav-height);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.nav-logo-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  line-height: 1;
}

.nav-logo-brand,
.footer-brand-mark {
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.nav-logo-sanskrit {
  margin-left: 2px;
  font-family: 'Noto Serif Devanagari', serif;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: var(--brand-muted);
  white-space: nowrap;
}

.brand-blue {
  color: var(--brand-blue);
}

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

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  overflow: visible;
}

.nav-links a,
.nav-dropdown-toggle {
  color: var(--brand-text);
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active,
.nav-dropdown.open .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.nav-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
  margin-left: auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.auth-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.auth-mobile-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.nav-auth-btn,
.nav-user-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.nav-auth-solid {
  color: var(--brand-blue-deep);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31, 86, 195, 0.14);
  box-shadow: 0 16px 32px rgba(20, 58, 140, 0.1);
  backdrop-filter: blur(14px);
}

.nav-auth-solid:hover {
  transform: translateY(-2px);
  color: var(--brand-blue);
  background: rgba(237,243,255,0.94);
  border-color: rgba(31, 86, 195, 0.26);
  box-shadow: 0 20px 36px rgba(20, 58, 140, 0.14);
}

.nav-auth-ghost,
.nav-user-pill {
  color: var(--brand-text);
  background: #fff;
  border: 1px solid var(--brand-line);
}

.nav-auth-ghost:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.nav-right-tagline {
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #173f97;
  background: linear-gradient(90deg, #173f97 0%, #2e63d4 45%, #19a56f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  margin-left: 2px;
  padding-left: 2px;
  text-shadow: 0 8px 24px rgba(23, 63, 151, 0.12);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: clamp(170px, 13vw, 220px);
  min-width: clamp(170px, 13vw, 220px);
  padding: 0 14px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: #fff;
}

.nav-search input {
  flex: 1;
  border: 0;
  background: transparent;
  color: var(--brand-text);
  font-size: 0.9rem;
}

.nav-search input::placeholder {
  color: var(--brand-muted);
}

.nav-search:focus-within {
  border-color: rgba(31, 86, 195, 0.38);
  box-shadow: 0 0 0 4px rgba(31, 86, 195, 0.08);
}

.nav-search-shell {
  position: relative;
}

.nav-search-shell.open .nav-search {
  border-color: rgba(31, 86, 195, 0.3);
  box-shadow: 0 0 0 4px rgba(31, 86, 195, 0.08);
}

.nav-search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: min(520px, 92vw);
  max-height: min(72vh, 620px);
  overflow: auto;
  padding: 10px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.44);
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(22px);
  box-shadow: 0 26px 70px rgba(16, 33, 59, 0.16);
  z-index: 45;
  animation: searchDropdownIn 0.18s ease;
}

.nav-search-shell-mobile .nav-search-dropdown {
  width: 100%;
}

.search-panel-section {
  display: grid;
  gap: 10px;
}

.search-panel-section + .search-panel-section {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(20, 58, 140, 0.08);
}

.search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 4px 0;
}

.search-panel-head span,
.search-clear-btn {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand-muted);
}

.search-clear-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  letter-spacing: 0.08em;
}

.search-results-list,
.search-skeleton-list {
  display: grid;
  gap: 8px;
}

.search-row-option {
  width: 100%;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,0.54);
  padding: 10px;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.search-row-option:hover,
.search-row-option.active {
  background: rgba(244, 248, 255, 0.96);
  box-shadow: 0 14px 30px rgba(20, 58, 140, 0.08);
  transform: translateY(-1px);
}

.search-row-thumb-wrap,
.search-skeleton-thumb {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  overflow: hidden;
  background: #eef4ff;
}

.search-row-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-row-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.search-row-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--brand-text);
}

.search-row-title mark {
  background: transparent;
  color: var(--brand-blue);
  font-weight: 800;
}

.search-row-meta,
.search-row-price {
  font-size: 0.78rem;
  color: var(--brand-muted);
}

.search-row-price {
  font-weight: 700;
  color: var(--brand-text);
  white-space: nowrap;
}

.search-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-pill {
  border: 1px solid rgba(20, 58, 140, 0.1);
  background: rgba(255,255,255,0.86);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-text);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.search-pill:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  transform: translateY(-1px);
}

.search-empty-state {
  display: grid;
  gap: 10px;
  padding: 10px 4px;
}

.search-empty-state strong {
  font-size: 0.96rem;
  color: var(--brand-text);
}

.search-empty-state p {
  margin: 0;
  font-size: 0.84rem;
  color: var(--brand-muted);
  line-height: 1.7;
}

.search-skeleton-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
}

.search-skeleton-lines {
  display: grid;
  gap: 10px;
}

.search-skeleton-line,
.search-skeleton-thumb {
  background: linear-gradient(90deg, rgba(235, 241, 249, 1) 0%, rgba(223, 232, 244, 1) 50%, rgba(235, 241, 249, 1) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

.search-skeleton-line {
  height: 12px;
  border-radius: 999px;
}

.search-skeleton-line.short {
  width: 60%;
}

@keyframes searchDropdownIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-icon-btn,
.nav-cta,
.nav-hamburger {
  height: 46px;
  border-radius: 999px;
}

.nav-icon-btn {
  width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--brand-line);
  color: var(--brand-text);
}

.nav-icon-btn:hover,
.nav-icon-btn.active {
  border-color: rgba(31, 86, 195, 0.3);
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.nav-badge {
  background: var(--brand-green-gradient);
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
}

.nav-cta,
.btn-primary,
.product-card-add-btn,
.cart-primary-btn,
.whatsapp-order-btn {
  background: var(--brand-blue-deep);
  background-image: linear-gradient(135deg, #143a8c 0%, #245fcb 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 14px 28px rgba(20, 58, 140, 0.18);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-cta:hover,
.btn-primary:hover,
.product-card-add-btn:hover,
.cart-primary-btn:hover,
.whatsapp-order-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 36px rgba(20, 58, 140, 0.22);
}

.btn,
.product-card-secondary-btn,
.filter-chip,
.page-chip,
.summary-pill {
  border-radius: 999px;
}

.btn {
  padding: 13px 22px;
  font-size: 0.92rem;
  font-weight: 700;
}

.btn-outline,
.btn-ghost,
.product-card-secondary-btn,
.filter-chip,
.page-chip,
.summary-pill,
.icon-button,
.mini-action {
  background: #fff;
  color: var(--brand-text);
  border: 1px solid var(--brand-line);
  box-shadow: none;
}

.btn-outline:hover,
.btn-ghost:hover,
.product-card-secondary-btn:hover,
.filter-chip:hover,
.page-chip:hover,
.summary-pill:hover,
.icon-button:hover,
.mini-action:hover {
  color: var(--brand-blue);
  border-color: rgba(31, 86, 195, 0.34);
  background: var(--brand-blue-soft);
}

.btn:disabled,
button:disabled,
.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.nav-hamburger {
  display: none;
  width: 46px;
  border: 1px solid var(--brand-line);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}

.nav-hamburger span {
  width: 18px;
  height: 2px;
  background: var(--brand-text);
  border-radius: 999px;
}

.nav-dropdown {
  position: relative;
  z-index: 30;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  box-shadow: var(--brand-card-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  border-radius: 14px;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.nav-mobile {
  display: none;
  padding: 0 24px 20px;
  border-top: 1px solid var(--brand-line);
  background: rgba(255, 255, 255, 0.98);
}

.nav-mobile.open {
  display: block;
}

.nav-mobile-search {
  padding: 18px 0 12px;
}

.nav-mobile-search .nav-search,
.nav-mobile-search .nav-search-shell {
  width: 100%;
  min-width: 0;
}

.nav-mobile-links {
  display: grid;
  gap: 8px;
}

.nav-mobile-links a {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--brand-line);
  background: #fff;
  font-weight: 600;
}

.nav-mobile-links a.active {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  border-color: rgba(31, 86, 195, 0.3);
}

.auth-mobile-actions .nav-auth-btn,
.auth-mobile-actions .nav-user-pill {
  width: 100%;
}

.nav-mobile-cta {
  display: inline-flex;
  margin-top: 14px;
}

.page-top-slogan-banner {
  display: none;
}

.page-hero,
.page-banner,
.cat-hero {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  padding: 48px 24px 28px;
  border-bottom: 1px solid var(--brand-line);
}

.page-hero-inner,
.page-banner-inner {
  max-width: var(--brand-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title,
.page-banner-title,
.cat-hero-title {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.06em;
  color: var(--brand-text);
}

.page-subtitle,
.page-banner-sub,
.cat-hero-sub {
  max-width: 700px;
  margin-top: 12px;
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.products-catalog-page .page-hero-inner {
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 36px;
}

.products-catalog-page .page-hero-inner > div:first-child {
  max-width: 720px;
}

.products-catalog-page .page-title {
  max-width: 10ch;
  font-size: clamp(2.5rem, 4.6vw, 4.3rem);
  line-height: 1.04;
}

.products-catalog-page .page-subtitle {
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--brand-muted);
}

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

.page-subnav {
  padding: 18px 24px 0;
}

.page-subnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-chip,
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.86rem;
  font-weight: 600;
}

.page-chip.active,
.filter-chip.active {
  color: #fff;
  border-color: transparent;
  background: var(--brand-green-gradient);
  box-shadow: 0 16px 30px rgba(30, 166, 114, 0.18);
}

.control-panel,
.panel-card,
.cart-summary,
.checkout-form,
.product-panel,
.cat-sidebar-card,
.feature-card,
.info-card,
.surface-card,
.cart-item,
.delivery-info {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-md);
  box-shadow: var(--brand-card-shadow);
}

.control-panel,
.panel-card,
.checkout-form,
.cart-summary,
.product-panel,
.cat-sidebar-card,
.feature-card,
.info-card,
.surface-card {
  padding: 24px;
}

.listing-toolbar,
.toolbar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.toolbar-group,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.premium-input,
.premium-select,
.form-control,
.coupon-row input,
.price-range input,
.qty-num,
textarea.form-control {
  min-height: 48px;
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--brand-line);
  background: #fff;
  color: var(--brand-text);
  padding: 0 16px;
  font-size: 0.92rem;
}

textarea.form-control {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.premium-input:focus,
.premium-select:focus,
.form-control:focus,
.coupon-row input:focus,
.price-range input:focus,
.qty-num:focus,
textarea.form-control:focus {
  border-color: rgba(31, 86, 195, 0.42);
  box-shadow: 0 0 0 4px rgba(31, 86, 195, 0.08);
}

.premium-grid-2,
.cart-grid,
.product-detail-grid,
.cat-layout {
  display: grid;
  gap: 24px;
}

.cat-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  padding: 36px 24px 72px;
}

.category-strip {
  background: transparent;
  border-bottom: 0;
  padding: 18px 24px 0;
}

.category-strip-inner {
  max-width: var(--brand-max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.cat-tab {
  min-height: 44px;
  border-radius: 999px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--brand-line);
  color: var(--brand-text);
  font-size: 0.86rem;
}

.cat-tab.active {
  color: #fff;
  background: linear-gradient(135deg, #143a8c 0%, #245fcb 100%);
  border-color: transparent;
}

.cat-tab-icon {
  font-size: 0.85rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.products-catalog-page .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  background: #fff;
  box-shadow: var(--brand-card-shadow);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--brand-card-shadow-hover);
  border-color: rgba(31, 86, 195, 0.18);
}

.product-card-img-wrap {
  aspect-ratio: 1 / 1.06;
  background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
}

.products-catalog-page .product-card {
  border-radius: 30px;
}

.products-catalog-page .product-card-img-wrap {
  aspect-ratio: 1 / 1.14;
}

.product-card-img-wrap img {
  transition: transform 0.45s ease;
}

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

.product-card-topline {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 58px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 2;
}

.product-card-topline-inline {
  position: static;
  left: auto;
  right: auto;
  top: auto;
  margin-bottom: 2px;
  z-index: auto;
}

.product-card-badge {
  position: static;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-sale {
  background: rgba(30, 166, 114, 0.14);
  color: var(--brand-green-strong);
}

.badge-featured {
  background: rgba(20, 58, 140, 0.1);
  color: var(--brand-blue-deep);
}

.product-card-wishlist {
  width: 40px;
  height: 40px;
  top: 14px;
  right: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 33, 59, 0.08);
  color: var(--brand-text);
}

.product-card-wishlist.active {
  color: #e04b6f;
}

.product-card-info {
  padding: 18px 18px 20px;
  gap: 14px;
}

.products-catalog-page .product-card-info {
  padding: 22px 22px 24px;
  gap: 16px;
}

.product-card-category {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--brand-muted);
}

.product-card-name {
  font-size: 1rem;
  line-height: 1.45;
  color: var(--brand-text);
}

.products-catalog-page .product-card-name {
  font-size: 1.08rem;
  line-height: 1.5;
}

.product-card-price {
  gap: 10px;
  margin-bottom: 0;
}

.price-current {
  font-size: 1.1rem;
  color: var(--brand-text);
}

.products-catalog-page .price-current {
  font-size: 1.24rem;
}

.price-original {
  color: var(--brand-muted);
}

.product-card-actions {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 10px;
  margin-top: auto;
}

.product-card-secondary-btn,
.product-card-add-btn {
  min-height: 46px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0 16px;
  border-radius: 999px;
}

.products-catalog-page .product-card-secondary-btn,
.products-catalog-page .product-card-add-btn {
  min-height: 48px;
  font-size: 0.92rem;
}

.product-card-add-btn.is-added {
  background: var(--brand-green-gradient);
}

.empty-state {
  padding: 48px 24px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  border: 1px dashed var(--brand-line-strong);
  border-radius: var(--brand-radius-md);
}

.empty-icon,
.cart-empty-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 1.05rem;
  font-weight: 800;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: #fff;
  font-weight: 700;
  color: var(--brand-text);
}

.page-btn.active,
.page-btn:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #143a8c 0%, #245fcb 100%);
}

.product-detail-wrap {
  padding: 32px 24px 72px;
}

.product-detail-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start;
}

.product-detail-images,
.product-detail-info {
  background: transparent;
}

.product-main-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid var(--brand-line);
  background: #f7fbff;
  box-shadow: var(--brand-card-shadow);
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-thumb {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--brand-line);
  cursor: pointer;
  background: #fff;
}

.product-thumb.active {
  border-color: rgba(31, 86, 195, 0.35);
  box-shadow: 0 0 0 4px rgba(31, 86, 195, 0.08);
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-detail-info {
  display: grid;
  gap: 20px;
}

.product-detail-cat,
.product-detail-rating,
.product-detail-price,
.product-detail-actions,
.product-meta,
.product-detail-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-detail-cat {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.product-detail-rating {
  color: var(--brand-muted);
  font-size: 0.92rem;
}

.stars {
  color: #ffbe3c;
  letter-spacing: 0.12em;
}

.detail-price-current {
  font-size: clamp(1.7rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--brand-text);
}

.detail-price-original {
  text-decoration: line-through;
  color: var(--brand-muted);
}

.detail-price-off {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(30, 166, 114, 0.12);
  color: var(--brand-green-strong);
  font-weight: 700;
}

.product-detail-desc {
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.qty-controls {
  display: inline-grid;
  grid-template-columns: 44px minmax(60px, auto) 44px;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: #fff;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-text);
}

.qty-btn:hover {
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

.qty-num {
  text-align: center;
  padding: 0;
}

.product-detail-actions .btn {
  min-height: 54px;
}

.product-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.product-meta span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--brand-line);
}

.product-tag {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-green-soft);
  color: var(--brand-green-strong);
}

.delivery-info {
  gap: 16px;
  align-items: flex-start;
}

.tab-nav {
  gap: 10px;
  border-bottom: 0;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.tab-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  background: #fff;
  color: var(--brand-muted);
}

.tab-btn.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #143a8c 0%, #245fcb 100%);
}

.tab-pane {
  padding: 24px;
  border: 1px solid var(--brand-line);
  border-radius: var(--brand-radius-md);
  background: #fff;
  box-shadow: var(--brand-card-shadow);
}

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

.cart-wrap {
  padding: 32px 24px 72px;
}

.cart-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: start;
}

.cart-empty {
  padding: 56px 24px;
  border: 1px dashed var(--brand-line-strong);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin-bottom: 14px;
}

.cart-item-img {
  width: 104px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--brand-line);
}

.cart-item-cat {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: var(--brand-muted);
  text-transform: uppercase;
}

.cart-item-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-text);
  margin-top: 6px;
}

.cart-item-price {
  margin-top: 6px;
  color: var(--brand-muted);
}

.cart-item-remove {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--brand-line);
  color: #d24d65;
}

.cart-item-remove:hover {
  background: #fff3f5;
  border-color: #f2c1ca;
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  color: var(--brand-muted);
}

.cart-summary-row.total {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--brand-line);
  color: var(--brand-text);
  font-size: 1.08rem;
  font-weight: 800;
}

.coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.payment-option {
  min-height: 58px;
  padding: 0 16px;
  border-radius: 18px;
  border: 1px solid var(--brand-line);
  background: #fff;
}

.payment-option.active,
.payment-option:hover {
  border-color: rgba(31, 86, 195, 0.32);
  background: var(--brand-blue-soft);
}

.footer-inner.premium-footer {
  max-width: var(--brand-max);
  margin: 0 auto;
  padding: 42px 24px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: 28px;
}

footer {
  margin-top: 24px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  border-top: 1px solid var(--brand-line);
}

.footer-brand-block,
.footer-links-block,
.footer-contact-block {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-brand-copy,
.footer-contact-block p,
.footer-links-block a {
  color: var(--brand-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer-links-block {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-links-block h4,
.footer-mini-label {
  color: var(--brand-text);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-links-block a:hover,
.footer-contact-block a:hover {
  color: var(--brand-blue);
}

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

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-line);
  background: #fff;
  color: var(--brand-text);
}

.footer-social-btn:hover {
  background: var(--brand-blue-deep);
  color: #fff;
  border-color: transparent;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--brand-line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--brand-muted);
  font-size: 0.82rem;
}

#toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  z-index: 1200;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(16, 33, 59, 0.92);
  color: #fff;
  box-shadow: 0 20px 40px rgba(16, 33, 59, 0.24);
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.success {
  background: rgba(15, 141, 95, 0.96);
}

#toast.error {
  background: rgba(194, 63, 88, 0.95);
}

@media (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-catalog-page .page-hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .products-catalog-page .page-title,
  .products-catalog-page .page-subtitle {
    max-width: 100%;
  }

  .products-catalog-page .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 900px) {
  #navbar {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(188, 203, 224, 0.95);
    box-shadow: 0 12px 28px rgba(16, 33, 59, 0.08);
  }

  .nav-inner {
    grid-template-columns: auto 1fr auto;
    min-height: 76px;
  }

  .nav-links,
  .nav-right .auth-actions,
  .nav-right-tagline,
  .nav-right .nav-search-shell,
  .nav-right .nav-search,
  .nav-right .nav-cta {
    display: none;
  }

  .nav-logo {
    min-width: 0;
  }

  .nav-logo-brand {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .nav-logo-sanskrit {
    color: var(--brand-text);
    opacity: 0.72;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-icon-btn,
  .nav-hamburger {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 1px solid rgba(31, 86, 195, 0.22);
    box-shadow: 0 12px 24px rgba(20, 58, 140, 0.1);
    color: var(--brand-text);
  }

  .nav-hamburger span {
    background: var(--brand-text);
  }

  .page-hero-inner,
  .page-banner-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-hero-actions {
    justify-content: flex-start;
  }

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

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-item {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .cart-item .qty-controls,
  .cart-item > div[style*="text-align:right"],
  .cart-item-remove {
    grid-column: 2;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 1360px) {
  .nav-inner {
    gap: 16px;
  }

  .nav-links a,
  .nav-dropdown-toggle {
    padding: 10px 10px;
    font-size: 0.88rem;
  }

  .nav-search {
    width: 180px;
    min-width: 180px;
  }

  .nav-right-tagline {
    display: none;
  }
}

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

  .nav-auth-btn,
  .nav-user-pill {
    padding: 0 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .page-shell,
  .product-detail-wrap,
  .cart-wrap,
  .page-hero,
  .page-banner,
  .cat-hero,
  .page-subnav,
  .category-strip,
  .cat-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .top-offer-bar-inner,
  .nav-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nav-inner {
    gap: 10px;
    min-height: 72px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-icon-btn,
  .nav-hamburger {
    width: 44px;
    height: 44px;
  }

  .nav-mobile {
    padding: 0 16px 18px;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid rgba(188, 203, 224, 0.7);
  }

  .nav-mobile-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    color: var(--brand-text);
  }

  .auth-mobile-actions {
    margin-top: 12px;
  }

  .auth-mobile-actions .nav-auth-btn,
  .auth-mobile-actions .nav-user-pill {
    min-height: 46px;
    background: #fff;
    border: 1px solid rgba(31, 86, 195, 0.18);
    color: var(--brand-text);
  }

  .nav-search-dropdown {
    width: 100%;
    left: 0;
    right: 0;
    max-height: 60vh;
  }

  .search-row-option {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .search-row-price {
    grid-column: 2;
  }

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

  .products-catalog-page .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

  .page-title,
  .page-banner-title,
  .cat-hero-title,
  .product-detail-title {
    letter-spacing: -0.04em;
  }

  .nav-logo-stack {
    gap: 4px;
  }

  .nav-logo-sanskrit {
    font-size: 0.74rem;
  }
}

.home-offer-strip {
  background: linear-gradient(90deg, #143a8c 0%, #245fcb 100%);
  color: #fff;
}

.home-offer-strip-inner {
  max-width: var(--brand-max);
  min-height: 52px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 700;
}

.home-offer-strip-inner a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-hero {
  padding: 28px 24px 32px;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.home-hero-inner {
  max-width: var(--brand-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.home-hero-copy {
  display: grid;
  gap: 18px;
}

.home-hero-title {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  background: linear-gradient(135deg, #d6ff00 0%, #7dff2b 34%, #00f5a0 68%, #00e5ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(125, 255, 43, 0.18);
}

.home-hero-subtitle {
  max-width: 580px;
  color: var(--brand-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-visual-card {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--brand-card-shadow-hover);
  border: 1px solid rgba(31, 86, 195, 0.12);
  background: #fff;
}

.hero-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual-card.primary {
  inset: 0;
}

.hero-floating-offer {
  position: absolute;
  right: 0;
  top: 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--brand-green-gradient);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(30, 166, 114, 0.2);
}

.home-shell {
  padding-top: 32px;
}

.home-section {
  margin-bottom: 32px;
}

.home-category-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.home-promo-banner-inner {
  min-height: 180px;
  padding: 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(30, 166, 114, 0.18), transparent 34%),
    linear-gradient(135deg, #eff6ff 0%, #ffffff 48%, #effaf4 100%);
  border: 1px solid var(--brand-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--brand-line);
  background: #fff;
  box-shadow: var(--brand-card-shadow);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--brand-text);
}

.trust-card p {
  color: var(--brand-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--brand-blue-soft);
  color: var(--brand-blue);
}

@media (max-width: 1180px) {
  .home-hero-inner {
    grid-template-columns: 1fr;
  }

  .home-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-hero-visual {
    min-height: 360px;
  }

  .hero-visual-card.primary {
    inset: 0;
  }

  .home-promo-banner-inner {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .home-offer-strip-inner {
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .home-category-scroller {
    grid-auto-columns: minmax(190px, 1fr);
  }

  .home-hero-visual {
    min-height: 300px;
  }

  .hero-visual-card.primary {
    inset: 0;
  }
}

.belimaa-about-page {
  background:
    radial-gradient(circle at top left, rgba(31, 86, 195, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(30, 166, 114, 0.08), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.belimaa-about-hero,
.belimaa-about-section {
  max-width: var(--brand-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.belimaa-about-hero {
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 28px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 72px;
}

.belimaa-about-hero-media {
  position: relative;
  min-height: 76vh;
}

.belimaa-about-hero-image {
  position: absolute;
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(16, 33, 59, 0.08);
  box-shadow: 0 32px 80px rgba(16, 33, 59, 0.12);
}

.belimaa-about-hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1.04);
}

.belimaa-about-hero-image-main {
  inset: 0 18% 0 0;
  background: linear-gradient(180deg, rgba(16, 33, 59, 0.12), rgba(16, 33, 59, 0.38));
}

.belimaa-about-hero-image-main::before {
  background-image:
    linear-gradient(180deg, rgba(16, 33, 59, 0.16), rgba(16, 33, 59, 0.34)),
    url("../images/BM-logo-192.png");
  background-size: cover, min(58%, 420px);
  background-position: center, center;
}

.belimaa-about-hero-image-accent {
  right: 0;
  bottom: 8%;
  width: 34%;
  height: 42%;
  background: linear-gradient(180deg, rgba(16, 33, 59, 0.08), rgba(16, 33, 59, 0.26));
}

.belimaa-about-hero-image-accent::before {
  background-image:
    linear-gradient(180deg, rgba(16, 33, 59, 0.08), rgba(16, 33, 59, 0.26)),
    url("../images/BM-logo-192.png");
  background-size: cover, min(62%, 180px);
  background-position: center, center;
}

.belimaa-about-hero-copy {
  display: grid;
  gap: 18px;
}

.belimaa-about-title,
.belimaa-section-title {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--brand-text);
}

.belimaa-about-title {
  font-size: clamp(2.9rem, 6vw, 5.3rem);
}

.belimaa-section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.belimaa-about-lead,
.belimaa-founder-copy p,
.belimaa-section-heading p,
.belimaa-vision-panel p,
.belimaa-credit-panel p {
  margin: 0;
  max-width: 700px;
  color: var(--brand-muted);
  font-size: 1rem;
  line-height: 1.95;
}

.belimaa-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.belimaa-about-section {
  padding-top: 24px;
  padding-bottom: 72px;
}

.belimaa-founder-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: center;
}

.belimaa-founder-photo-frame {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 32px 80px rgba(16, 33, 59, 0.12);
}

.belimaa-founder-photo,
.belimaa-founder-photo-glow {
  position: absolute;
  inset: 0;
}

.belimaa-founder-photo {
  background-image:
    linear-gradient(180deg, rgba(12, 26, 58, 0.10), rgba(12, 26, 58, 0.28)),
    url("../images/BM-logo-192.png");
  background-size: cover, min(56%, 340px);
  background-repeat: no-repeat;
  background-position: center, center;
}

.belimaa-founder-photo-glow {
  inset: auto 28px 28px auto;
  width: 128px;
  height: 128px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 166, 114, 0.44), rgba(30, 166, 114, 0));
  filter: blur(12px);
}

.belimaa-founder-copy {
  display: grid;
  gap: 18px;
}

.belimaa-founder-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.belimaa-founder-meta div,
.belimaa-craft-card,
.belimaa-vision-panel,
.belimaa-credit-panel {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(16, 33, 59, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(16, 33, 59, 0.08);
}

.belimaa-founder-meta span {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.belimaa-founder-meta strong {
  font-size: 1.18rem;
  color: var(--brand-text);
}

.belimaa-section-heading {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin-bottom: 24px;
}

.belimaa-craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.belimaa-craft-card {
  display: grid;
  gap: 16px;
  align-content: start;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.belimaa-craft-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 70px rgba(16, 33, 59, 0.12);
}

.belimaa-craft-card h3 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1.32rem;
  line-height: 1.3;
  color: var(--brand-text);
  letter-spacing: -0.02em;
}

.belimaa-craft-card p {
  margin: 0;
  color: var(--brand-muted);
  line-height: 1.8;
}

.belimaa-craft-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--brand-blue);
  background: linear-gradient(180deg, #edf4ff 0%, #f6fbff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.belimaa-vision-panel,
.belimaa-credit-panel {
  text-align: center;
  display: grid;
  gap: 16px;
  justify-items: center;
}

@media (max-width: 1180px) {
  .belimaa-about-hero,
  .belimaa-founder-section,
  .belimaa-craft-grid {
    grid-template-columns: 1fr;
  }

  .belimaa-about-hero {
    min-height: auto;
  }

  .belimaa-about-hero-media {
    min-height: 480px;
  }
}

@media (max-width: 820px) {
  .belimaa-about-hero,
  .belimaa-about-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .belimaa-founder-meta,
  .belimaa-craft-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .belimaa-about-hero-media {
    min-height: 340px;
  }

  .belimaa-about-hero-image-main {
    inset: 0 10% 0 0;
  }

  .belimaa-about-hero-image-accent {
    width: 40%;
    height: 34%;
  }

  .belimaa-founder-photo-frame {
    min-height: 420px;
  }
}
