/* [project]/app/globals.css [app-client] (css) */
:root {
  --primary: #006b5e;
  --primary-light: #00897b;
  --primary-dark: #004d40;
  --accent: #ff6b35;
  --accent2: #d4a017;
  --success: #2e7d32;
  --danger: #c62828;
  --warning: #f9a825;
  --accent-new: #10b981;
  --bg: #f3f7f6;
  --surface: #fff;
  --surface2: #eef3f1;
  --border: #d0e0de;
  --text: #1a2e2b;
  --text-muted: #5a7370;
  --text-xs: 12px;
  --text-sm: 13px;
  --text-base: 15px;
  --text-md: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 38px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px #006b5e17;
  --shadow-hover: 0 8px 32px #006b5e2e;
  --shadow-lg: 0 8px 32px #006b5e2e;
  --vm-teal: #0f6b5e;
  --vm-teal-light: #e8f4f2;
  --vm-teal-text: #0a4f45;
  --vm-border: #dde8e6;
  --vm-row-alt: #f4f9f8;
  --vm-step-btn-bg: #fff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-md);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: DM Sans, sans-serif;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(16px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuFade {
  from {
    opacity: 0;
    transform: translateY(-8px)scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0)scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

@keyframes checkDraw {
  from {
    stroke-dashoffset: 60px;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes confetti {
  0% {
    opacity: 1;
    transform: translateY(-10px)rotate(0);
  }

  100% {
    opacity: 0;
    transform: translateY(80px)rotate(720deg);
  }
}

@keyframes ripple {
  0% {
    opacity: .4;
    transform: scale(0);
  }

  100% {
    opacity: 0;
    transform: scale(4);
  }
}

.fade-up {
  animation: .6s both fadeUp;
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .2s;
}

.delay-3 {
  animation-delay: .3s;
}

.delay-4 {
  animation-delay: .4s;
}

.page, .main-wrapper, .container {
  max-width: 1440px;
  margin: 0 auto;
  animation: .45s both fadeUp;
}

.main-wrapper {
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}

.scroll-row {
  padding-bottom: var(--sp-2);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  gap: 14px;
  display: flex;
  overflow-x: auto;
}

.scroll-row::-webkit-scrollbar {
  height: 4px;
}

.scroll-row::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.badge {
  font-size: var(--text-xs);
  border-radius: 4px;
  padding: 3px 7px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
}

.badge--bestseller {
  background: var(--accent2);
  color: #fff;
}

.badge--off {
  background: var(--success);
  color: #fff;
}

.badge--new {
  background: var(--primary);
  color: #fff;
}

.badge--exclusive, .undefined {
  background: var(--accent);
  color: #fff;
}

.stock-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  display: inline-block;
}

.stock-dot--in {
  background: var(--success);
}

.stock-dot--low {
  background: var(--warning);
}

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

.divider {
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  height: 1px;
  margin: var(--sp-2) 0;
}

.top-banner {
  background: var(--primary);
  color: #fff;
  font-size: var(--text-xs);
  align-items: center;
  height: 34px;
  display: flex;
  overflow: hidden;
}

.marquee-track {
  white-space: nowrap;
  animation: 28s linear infinite marquee;
  display: flex;
}

.marquee-track span {
  align-items: center;
  gap: var(--sp-2);
  padding: 0 32px;
  display: flex;
}

.marquee-track .dot {
  background: #a7f3d0;
  border-radius: 50%;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
}

header {
  border-bottom: 1px solid var(--border);
  z-index: 200;
  background: #fff;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 12px #0000000f;
}

.header-top {
  max-width: 1380px;
  padding: var(--sp-3) var(--sp-6);
  justify-content: space-around;
  align-items: center;
  gap: var(--sp-4);
  margin: 0 auto;
  display: flex;
}

.logo {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-2xl);
  color: var(--primary);
  white-space: nowrap;
  align-items: center;
  gap: 2px;
  font-weight: 800;
  display: flex;
}

.logo span {
  color: var(--accent);
}

.logo-icon {
  background: var(--primary);
  border-radius: var(--radius-sm);
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: var(--text-xl);
  margin-right: var(--sp-1);
  justify-content: center;
  align-items: center;
  display: flex;
}

.search-wrap {
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 10px;
  flex: 1;
  max-width: 800px;
  transition: border-color .2s;
  display: flex;
  overflow: visible;
}

.search-wrap:focus-within {
  border-color: var(--primary);
}

.search-cat {
  border: none;
  border-right: 1px solid var(--border);
  font-size: var(--text-base);
  color: var(--text-muted);
  background: var(--surface2);
  cursor: pointer;
  outline: none;
  padding: 0 14px;
}

.search-wrap input {
  padding: 11px var(--sp-4);
  font-size: var(--text-md);
  color: var(--text);
  background: #fff;
  border: none;
  outline: none;
  flex: 1;
  min-width: 0;
}

.search-wrap button {
  background: var(--primary);
  padding: 0 var(--sp-5);
  color: #fff;
  cursor: pointer;
  font-size: var(--text-xl);
  border: none;
  flex-shrink: 0;
  transition: background .2s;
}

.search-wrap button:hover {
  background: var(--primary-dark);
}

.header-actions {
  flex-shrink: 0;
  align-items: center;
  gap: 10px;
  display: flex;
}

.header-btn {
  cursor: pointer;
  color: var(--text-muted);
  font-size: var(--text-md);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-weight: bold;
  transition: all .2s;
  display: flex;
}

.header-btn:hover {
  background: var(--surface2);
  color: var(--primary);
}

.cart-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px var(--sp-5);
  font-weight: 700;
  font-size: var(--text-md);
  cursor: pointer;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  border: none;
  border-radius: 9px;
  transition: background .2s;
  display: flex;
}

.cart-count {
  color: var(--accent);
  width: 20px;
  height: 20px;
  font-size: var(--text-xs);
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  display: flex;
}

.user-menu-wrap {
  position: relative;
}

.user-btn {
  align-items: center;
  gap: var(--sp-2);
  border: 1.5px solid var(--border);
  cursor: pointer;
  font-size: var(--text-base);
  color: var(--text);
  background: #fff;
  border-radius: 24px;
  padding: 6px 12px 6px 6px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.user-btn:hover, .user-btn.open {
  border-color: var(--primary);
  background: var(--surface2);
}

.user-avatar {
  width: 28px;
  height: 28px;
  font-size: var(--text-xs);
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  display: flex;
  overflow: hidden;
}

.user-avatar img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.user-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 96px;
  overflow: hidden;
}

.user-chevron {
  color: var(--text-muted);
  font-size: 10px;
  transition: transform .2s;
}

.user-btn.open .user-chevron {
  transform: rotate(180deg);
}

.user-dropdown {
  border: 1.5px solid var(--border);
  z-index: 1300;
  background: #fff;
  border-radius: 14px;
  min-width: 200px;
  animation: .2s both menuFade;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px #00000024;
}

.user-dropdown-head {
  padding: 14px var(--sp-4) 12px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
}

.user-dropdown-name {
  font-size: var(--text-md);
  color: var(--text);
  font-weight: 700;
}

.user-dropdown-email {
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
  margin-top: 2px;
  overflow: hidden;
}

.user-dropdown-b2b {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.user-menu-item {
  padding: 11px var(--sp-4);
  font-size: var(--text-md);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-weight: 500;
  text-decoration: none;
  transition: background .12s;
  display: flex;
}

.user-menu-item:hover {
  background: var(--surface2);
}

.user-menu-item.danger {
  color: var(--danger);
}

.user-menu-item.danger:hover {
  background: #fee2e2;
}

.user-menu-divider {
  background: var(--border);
  height: 1px;
  margin: var(--sp-1) 0;
}

.user-btn-skeleton {
  background: linear-gradient(90deg, #e8eeec 25%, #f3f7f6 50%, #e8eeec 75%) 0 0 / 200% 100%;
  border-radius: 24px;
  width: 100px;
  height: 36px;
  animation: 1.4s infinite shimmer;
}

.nav-bar {
  border-top: 1px solid var(--border);
  background: #fff;
}

.nav-inner {
  max-width: 1380px;
  padding: 0 var(--sp-6);
  scrollbar-width: none;
  align-items: center;
  margin: 0 auto;
  display: flex;
  overflow-x: auto;
}

.nav-inner::-webkit-scrollbar {
  display: none;
}

.nav-link {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-md);
  color: var(--text-muted);
  white-space: nowrap;
  border-bottom: 2.5px solid #0000;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  transition: all .2s;
  display: flex;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-link.highlight {
  color: var(--accent);
  font-weight: 600;
}

.nav-link .arrow {
  font-size: 10px;
}

.sec-head {
  margin-bottom: var(--sp-4);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sec-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-xl);
  color: var(--text);
  align-items: center;
  gap: 10px;
  font-weight: 700;
  display: flex;
}

.sec-title:before {
  content: "";
  background: var(--primary);
  border-radius: 2px;
  width: 4px;
  height: 22px;
  display: inline-block;
}

.sec-link {
  font-size: var(--text-base);
  color: var(--primary);
  align-items: center;
  gap: 4px;
  font-weight: 600;
  transition: gap .2s;
  display: flex;
}

.sec-link:hover {
  gap: 8px;
}

.section-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-2xl);
  color: var(--text);
  margin-bottom: var(--sp-5);
  align-items: center;
  gap: 12px;
  font-weight: 700;
  display: flex;
}

.breadcrumb {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
  align-items: center;
  gap: 6px;
  display: flex;
}

.breadcrumb strong {
  color: var(--text);
}

.hero {
  margin: var(--sp-5) 0;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.hero-track {
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.hero-slide {
  align-items: center;
  min-width: 100%;
  height: 340px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-slide.s1 {
  background: linear-gradient(135deg, #003d35 0%, #006b5e 50%, #00897b 100%);
}

.hero-slide.s2 {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.hero-slide.s3 {
  background: linear-gradient(135deg, #4a0e0e 0%, #7b2d2d 50%, #c62828 100%);
}

.hero-content {
  z-index: 2;
  max-width: 55%;
  padding: 48px;
  position: relative;
}

.hero-eyebrow {
  font-size: var(--text-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffffb3;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-4xl);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.hero-title .accent {
  color: #a7f3d0;
}

.hero-sub {
  font-size: var(--text-md);
  color: #ffffffbf;
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

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

.btn-hero-primary {
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-md);
  cursor: pointer;
  background: #fff;
  border: none;
  padding: 12px 26px;
  transition: transform .2s;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
}

.btn-hero-secondary {
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--text-md);
  cursor: pointer;
  background: none;
  border: 2px solid #ffffff80;
  padding: 12px 26px;
  transition: background .2s;
}

.btn-hero-secondary:hover {
  background: #ffffff1a;
}

.hero-badge {
  top: var(--sp-5);
  right: var(--sp-5);
  background: var(--accent);
  color: #fff;
  padding: var(--sp-2) var(--sp-4);
  font-size: var(--text-sm);
  border-radius: 20px;
  font-weight: 700;
  animation: 2s infinite pulse;
  position: absolute;
}

.hero-visual {
  opacity: .15;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  width: 45%;
  height: 100%;
  font-size: 120px;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.hero-dots {
  bottom: var(--sp-4);
  gap: var(--sp-2);
  z-index: 3;
  display: flex;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dot {
  cursor: pointer;
  background: #fff6;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  transition: all .2s;
}

.hero-dot.active {
  background: #fff;
  border-radius: 4px;
  width: 24px;
}

.hero-nav {
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: var(--text-xl);
  z-index: 3;
  background: #fff3;
  border: none;
  border-radius: 50%;
  transition: background .2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hero-nav:hover {
  background: #ffffff59;
}

.hero-nav.prev {
  left: var(--sp-4);
}

.hero-nav.next {
  right: var(--sp-4);
}

.brands-row {
  border-radius: var(--radius);
  padding: 18px var(--sp-6);
  margin: var(--sp-5) 0;
  box-shadow: var(--shadow);
  background: #fff;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.brands-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  white-space: nowrap;
  padding-right: var(--sp-5);
  border-right: 1px solid var(--border);
  margin-right: var(--sp-5);
  flex-shrink: 0;
  font-weight: 700;
}

.brands-track {
  flex-shrink: 0;
  align-items: center;
  gap: 28px;
  animation: 20s linear infinite marquee;
  display: flex;
}

.brand-item {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-lg);
  color: var(--text-muted);
  white-space: nowrap;
  padding: 6px var(--sp-4);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 6px;
  font-weight: 700;
  transition: all .2s;
}

.brand-item:hover {
  color: var(--primary);
  border-color: var(--border);
  background: var(--surface2);
}

.categories-section {
  margin: var(--sp-6) 0;
}

.cat-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
  display: grid;
}

.cat-card {
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1.5px solid #0000;
  padding: 18px 12px;
  transition: all .25s;
}

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

.cat-icon {
  margin-bottom: 10px;
  font-size: 34px;
  display: block;
}

.cat-name {
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}

.cat-count {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 3px;
}

.featured-section {
  margin: var(--sp-8) 0;
}

.featured-grid {
  gap: var(--sp-4);
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}

.feat-banner {
  cursor: pointer;
  border-radius: 14px;
  align-items: flex-end;
  height: 160px;
  transition: transform .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feat-banner:hover {
  transform: scale(1.02);
}

.feat-banner.large {
  grid-column: span 2;
}

.feat-bg {
  padding-right: var(--sp-5);
  opacity: .25;
  pointer-events: none;
  justify-content: flex-end;
  align-items: center;
  font-size: 80px;
  display: flex;
  position: absolute;
  inset: 0;
}

.feat-content {
  z-index: 2;
  padding: var(--sp-5) var(--sp-6);
  color: #fff;
  position: relative;
}

.feat-eyebrow {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
}

.feat-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-xl);
  margin-bottom: var(--sp-2);
  font-weight: 800;
  line-height: 1.2;
}

.feat-cta {
  color: #fff;
  padding: 6px var(--sp-4);
  font-size: var(--text-sm);
  cursor: pointer;
  background: #ffffff40;
  border: 1px solid #ffffff80;
  border-radius: 20px;
  font-weight: 600;
  transition: background .2s;
}

.feat-cta:hover {
  background: #fff6;
}

.product-section {
  margin: var(--sp-8) 0;
}

.prod-scroll {
  padding-bottom: var(--sp-2);
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  gap: 14px;
  display: flex;
  overflow-x: auto;
}

.prod-scroll::-webkit-scrollbar {
  height: 4px;
}

.prod-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.prod-card {
  border-radius: var(--radius);
  min-width: 178px;
  max-width: 245px;
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #0000;
  flex-shrink: 0;
  transition: all .25s;
  position: relative;
  overflow: visible;
}

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

.pc-img {
  background: var(--surface2);
  justify-content: center;
  align-items: center;
  height: 148px;
  font-size: 52px;
  display: flex;
  position: relative;
  overflow: visible;
}

.pc-img:after {
  content: "";
  background: linear-gradient(#0000 60%, #0000000a);
  position: absolute;
  inset: 0;
}

.pc-badge-wrap {
  top: var(--sp-2);
  left: var(--sp-2);
  gap: var(--sp-1);
  z-index: 1;
  flex-direction: column;
  display: flex;
  position: absolute;
}

.pc-badge {
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

.pc-badge.bs {
  background: var(--accent2);
  color: #fff;
}

.pc-badge.off {
  background: var(--success);
  color: #fff;
}

.pc-badge.ex {
  background: var(--accent);
  color: #fff;
}

.pc-wish {
  top: var(--sp-2);
  right: var(--sp-2);
  z-index: 1;
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  font-size: 14px;
  transition: transform .2s;
  display: flex;
  position: absolute;
  box-shadow: 0 1px 4px #0000001f;
}

.pc-wish:hover {
  transform: scale(1.15);
}

.pc-name {
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: var(--sp-2);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.pc-name:hover {
  text-decoration: underline;
}

.pc-pricing {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  display: flex;
}

.pc-price {
  font-size: var(--text-lg);
  color: var(--primary);
  font-weight: 800;
}

.pc-mrp {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-decoration: line-through;
}

.pc-stock {
  font-size: var(--text-xs);
  margin-bottom: var(--sp-2);
  align-items: center;
  gap: 4px;
  display: flex;
}

.pc-add {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  width: 100%;
  font-weight: 700;
  font-size: var(--text-base);
  border: none;
  border-radius: 7px;
  padding: 9px;
  transition: background .2s;
}

.pc-add:hover {
  background: var(--primary-light);
}

.pc-b2b-row {
  align-items: center;
  gap: 5px;
  margin: 4px 0 6px;
  display: flex;
}

.pc-b2b-label {
  color: #1e40af;
  background: #dbeafe;
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 700;
}

.pc-b2b-price {
  font-size: var(--text-sm);
  color: #1e40af;
  font-weight: 700;
}

.pc-b2b-save {
  color: var(--success);
  font-size: 10px;
  font-weight: 600;
}

.pc-variant-hint {
  color: var(--text-muted);
  margin-bottom: 4px;
  font-size: 10px;
}

.ad-banners {
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.ad-banner {
  height: 130px;
  padding: var(--sp-6) var(--sp-8);
  cursor: pointer;
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  transition: transform .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.ad-banner:hover {
  transform: scale(1.01);
}

.ad-eyebrow {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 700;
}

.ad-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-xl);
  margin-bottom: 10px;
  font-weight: 800;
  line-height: 1.2;
}

.ad-btn {
  color: inherit;
  padding: 6px var(--sp-4);
  font-size: var(--text-sm);
  cursor: pointer;
  background: #00000026;
  border: 1px solid #ffffff80;
  border-radius: 20px;
  font-weight: 600;
}

.ad-visual {
  opacity: .3;
  flex-shrink: 0;
  font-size: 70px;
}

.community-section {
  margin: var(--sp-8) 0;
}

.community-grid {
  gap: var(--sp-4);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.comm-card {
  cursor: pointer;
  border-radius: 14px;
  align-items: flex-end;
  height: 160px;
  transition: transform .25s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.comm-card:hover {
  transform: translateY(-4px);
}

.comm-card.tall {
  grid-column: span 2;
}

.comm-bg {
  opacity: .2;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  display: flex;
  position: absolute;
  inset: 0;
}

.comm-content {
  z-index: 2;
  padding: var(--sp-4) var(--sp-5);
  color: #fff;
  width: 100%;
  position: relative;
}

.comm-label {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
}

.comm-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-lg);
  font-weight: 800;
}

.brand-showcase {
  margin: var(--sp-8) 0;
}

.brand-grid {
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  display: grid;
}

.brand-card {
  width: 200px;
  padding: var(--sp-4) 12px;
  text-align: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  background: #fff;
  border: 1.5px solid #0000;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.brand-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.brand-logo {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-md);
  color: var(--text);
  margin-bottom: 4px;
  font-weight: 800;
}

.brand-type {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.stats-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: var(--sp-8) var(--sp-10);
  margin: var(--sp-8) 0;
  gap: var(--sp-5);
  border-radius: 14px;
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.stat-item {
  text-align: center;
  color: #fff;
}

.stat-num {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-3xl);
  margin-bottom: 4px;
  font-weight: 800;
}

.stat-label {
  font-size: var(--text-base);
  opacity: .8;
}

.newsletter {
  margin: var(--sp-8) 0;
  box-shadow: var(--shadow);
  align-items: center;
  gap: var(--sp-10);
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  display: flex;
}

.nl-content {
  flex: 1;
  min-width: 0;
}

.nl-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-2);
  font-weight: 700;
}

.nl-sub {
  font-size: var(--text-md);
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}

.nl-form {
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.nl-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 200px;
  padding: 11px var(--sp-4);
  font-size: var(--text-md);
  color: var(--text);
  outline: none;
  flex: 1;
  transition: border-color .2s;
}

.nl-input:focus {
  border-color: var(--primary);
}

.nl-btn {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-md);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  padding: 11px 28px;
  transition: background .2s;
}

.nl-btn:hover {
  background: var(--primary-dark);
}

.nl-visual {
  flex-shrink: 0;
  font-size: 80px;
}

footer {
  color: #fff;
  margin-top: var(--sp-10);
  background: #0d1f1c;
}

.footer-main {
  max-width: 1380px;
  padding: 48px var(--sp-6) 32px;
  gap: var(--sp-10);
  grid-template-columns: 1.8fr repeat(4, 1fr);
  margin: 0 auto;
  display: grid;
}

.footer-logo {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.footer-logo span {
  color: var(--accent);
}

.footer-desc {
  font-size: var(--text-base);
  color: #7a9e9b;
  margin-bottom: var(--sp-5);
  line-height: 1.7;
}

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

.social-btn {
  border-radius: var(--radius-sm);
  width: 36px;
  height: 36px;
  font-size: var(--text-lg);
  cursor: pointer;
  color: #7a9e9b;
  background: none;
  border: 1px solid #2a3e3c;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.social-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.footer-apps {
  margin-top: var(--sp-4);
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.app-btn {
  border-radius: var(--radius-sm);
  padding: var(--sp-2) 14px;
  align-items: center;
  gap: var(--sp-2);
  cursor: pointer;
  background: none;
  border: 1px solid #2a3e3c;
  transition: border-color .2s;
  display: flex;
}

.app-btn:hover {
  border-color: var(--primary);
}

.app-btn .aicon {
  font-size: var(--text-xl);
}

.app-btn .atxt {
  color: #7a9e9b;
  font-size: 10px;
  line-height: 1.3;
  display: block;
}

.app-btn .aname {
  font-size: var(--text-base);
  color: #fff;
  font-weight: 600;
  display: block;
}

.footer-col h4 {
  font-size: var(--text-sm);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: var(--sp-4);
  font-weight: 700;
}

.footer-col a {
  font-size: var(--text-base);
  color: #7a9e9b;
  margin-bottom: 9px;
  transition: color .2s;
  display: block;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact {
  font-size: var(--text-base);
  color: #7a9e9b;
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.footer-contact .ci {
  align-items: flex-start;
  gap: var(--sp-2);
  display: flex;
}

.footer-contact .ci span:first-child {
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-mid {
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-xs);
  color: #5a7370;
  text-align: center;
  border-top: 1px solid #1e3330;
  border-bottom: 1px solid #1e3330;
  line-height: 1.9;
}

.footer-mid .city-label {
  color: #7a9e9b;
  font-weight: 600;
}

.footer-bottom {
  max-width: 1380px;
  padding: var(--sp-5) var(--sp-6);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  display: flex;
}

.footer-copy {
  font-size: var(--text-sm);
  color: #5a7370;
}

.footer-payments {
  gap: var(--sp-2);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.pay-chip {
  color: #7a9e9b;
  font-size: var(--text-xs);
  background: #1e3330;
  border-radius: 5px;
  padding: 4px 10px;
  font-weight: 600;
}

.toast {
  bottom: var(--sp-6);
  background: var(--text);
  color: #fff;
  padding: 13px var(--sp-6);
  font-size: var(--text-md);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  border-radius: 9px;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  display: flex;
  position: fixed;
  left: 50%;
  transform: translateX(-50%)translateY(80px);
  box-shadow: 0 8px 32px #0003;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%)translateY(0);
}

.toast.green {
  border-left: 4px solid var(--success);
}

.accordion-section {
  border-radius: var(--radius);
  padding: var(--sp-2) 0;
  box-shadow: var(--shadow);
  margin-bottom: var(--sp-5);
  background: #fff;
}

.accordion-header {
  padding: var(--sp-4) var(--sp-6);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  transition: background .15s;
  display: flex;
}

.accordion-icon {
  font-size: var(--text-xl);
  color: var(--primary);
  transition: transform .25s;
}

.accordion-content {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-md);
  color: var(--text-muted);
  line-height: 1.7;
}

.features-grid {
  margin-top: var(--sp-2);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  display: grid;
}

.feature-icon {
  font-size: var(--text-2xl);
  margin-bottom: 6px;
}

.feature-title {
  font-size: var(--text-base);
  color: var(--text);
  margin-bottom: 3px;
  font-weight: 600;
}

.feature-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.5;
}

.specs-table td {
  font-size: var(--text-md);
  padding: 10px 0;
}

.plp-wrap {
  max-width: 1440px;
  margin: 0 auto;
}

.plp-head {
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-6);
  color: #fff;
  background: linear-gradient(135deg, #0a2e5c 0%, #1565c0 100%);
  padding: 28px 32px;
  animation: .4s both fadeUp;
  position: relative;
  overflow: hidden;
}

.plp-head:before {
  content: "";
  background: #ffffff0d;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -40px;
  right: -40px;
}

.plp-head h1 {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-2xl);
  margin-bottom: 4px;
  font-weight: 800;
}

.plp-head p {
  font-size: var(--text-base);
  opacity: .75;
}

.plp-toolbar {
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.plp-result-count {
  font-size: var(--text-md);
  color: var(--text-muted);
}

.plp-result-count strong {
  color: var(--text);
}

.plp-toolbar-right {
  align-items: center;
  gap: 10px;
  display: flex;
}

.sort-select {
  border: 1.5px solid var(--border);
  padding: var(--sp-2) 12px;
  font-size: var(--text-base);
  color: var(--text);
  cursor: pointer;
  background: #fff;
  border-radius: 9px;
  outline: none;
}

.sort-select:focus {
  border-color: var(--primary);
}

.view-toggle {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  display: flex;
  overflow: hidden;
}

.view-btn {
  padding: var(--sp-2) 13px;
  font-size: var(--text-lg);
  cursor: pointer;
  color: var(--text-muted);
  background: #fff;
  border: none;
  transition: background .15s;
}

.view-btn.active {
  background: var(--primary);
  color: #fff;
}

.mobile-filter-btn {
  padding: var(--sp-2) 14px;
  border: 1.5px solid var(--border);
  font-size: var(--text-base);
  cursor: pointer;
  color: var(--text);
  background: #fff;
  border-radius: 9px;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  display: none;
}

.active-filters {
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
  display: flex;
}

.filter-chip {
  font-size: var(--text-sm);
  color: #1d4ed8;
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-weight: 600;
  display: flex;
}

.filter-chip-remove {
  font-size: var(--text-base);
  cursor: pointer;
  color: #60a5fa;
  background: none;
  border: none;
  padding: 0 0 0 2px;
  line-height: 1;
}

.filter-chip-remove:hover {
  color: #ef4444;
}

.plp-layout {
  gap: var(--sp-6);
  grid-template-columns: 260px 1fr;
  align-items: start;
  display: grid;
}

.filter-sidebar {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  top: var(--sp-4);
  background: #fff;
  animation: .4s both slideIn;
  position: sticky;
  overflow: hidden;
}

.filter-sidebar-head {
  padding: var(--sp-4) 18px;
  border-bottom: 1px solid var(--border);
  background: var(--surface2);
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.filter-sidebar-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-md);
  color: var(--text);
  font-weight: 800;
}

.filter-clear-all {
  font-size: var(--text-sm);
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  font-weight: 700;
}

.filter-clear-all:hover {
  text-decoration: underline;
}

.filter-group {
  padding: 14px 18px;
}

.filter-group-title {
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
}

.filter-divider {
  background: var(--border);
  height: 1px;
}

.filter-search-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  padding: var(--sp-2) 10px;
  font-size: var(--text-base);
  color: var(--text);
  box-sizing: border-box;
  outline: none;
}

.filter-search-input:focus {
  border-color: var(--primary);
}

.filter-checkbox-row, .filter-radio-row {
  align-items: center;
  gap: var(--sp-2);
  padding: 5px 0;
  display: flex;
}

.filter-checkbox, .filter-radio {
  width: 15px;
  height: 15px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-checkbox-label {
  font-size: var(--text-base);
  color: var(--text);
  flex: 1;
}

.filter-badge-pill {
  border-radius: 10px;
  flex: 1;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
}

.filter-custom-price {
  align-items: center;
  gap: var(--sp-2);
  margin-top: 10px;
  display: flex;
}

.filter-price-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  min-width: 0;
  color: var(--text);
  outline: none;
  flex: 1;
  padding: 7px 10px;
}

.filter-price-input:focus {
  border-color: var(--primary);
}

.plp-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  display: grid;
}

.plp-list {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.plp-list-card {
  border: 1.5px solid var(--border);
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: #fff;
  border-radius: 14px;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  transition: border-color .18s, box-shadow .18s;
  animation: .35s both fadeUp;
  display: grid;
}

.plp-list-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 18px #006b5e1a;
}

.plp-list-icon {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 36px;
  transition: opacity .18s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.plp-list-icon:hover {
  opacity: .85;
}

.plp-list-icon img {
  object-fit: contain;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 4px;
  position: absolute;
  inset: 0;
}

.plp-list-info {
  min-width: 0;
}

.plp-list-brand {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
}

.plp-list-name-link {
  color: inherit;
  text-decoration: none;
  display: block;
}

.plp-list-name {
  font-size: var(--text-md);
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 600;
  line-height: 1.3;
  transition: color .15s;
}

.plp-list-name-link:hover .plp-list-name {
  color: var(--primary);
  text-decoration: underline;
}

.plp-list-meta {
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  display: flex;
}

.plp-list-price {
  font-size: var(--text-lg);
  color: var(--primary);
  font-weight: 800;
}

.plp-list-mrp {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: line-through;
}

.plp-list-disc {
  font-size: var(--text-xs);
  color: var(--success);
  padding: 2px var(--sp-2);
  background: #dcfce7;
  border-radius: 10px;
  font-weight: 700;
}

.plp-list-actions {
  gap: var(--sp-2);
  flex-direction: column;
  align-items: flex-end;
  display: flex;
}

.plp-list-add {
  background: var(--primary);
  color: #fff;
  font-size: var(--text-base);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 9px;
  padding: 9px 18px;
  font-weight: 700;
  transition: background .2s;
}

.plp-list-add:hover {
  background: var(--primary-dark);
}

.plp-list-stock {
  font-size: var(--text-xs);
  text-align: right;
  font-weight: 600;
}

.plp-skeleton-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  display: grid;
}

.skeleton-card {
  border: 1.5px solid var(--border);
  padding: var(--sp-4);
  background: #fff;
  border-radius: 14px;
}

.skeleton-img {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0 0 / 200% 100%;
  border-radius: 10px;
  height: 120px;
  animation: 1.4s infinite shimmer;
}

.skeleton-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%) 0 0 / 200% 100%;
  border-radius: 6px;
  height: 12px;
  margin-top: 10px;
  animation: 1.4s infinite shimmer;
}

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

.plp-error {
  text-align: center;
  padding: 48px var(--sp-6);
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1.5px solid #fecaca;
}

.plp-error-icon {
  margin-bottom: 10px;
  font-size: 40px;
}

.plp-error-msg {
  font-size: var(--text-md);
  color: #dc2626;
  margin-bottom: var(--sp-4);
}

.plp-error-retry {
  background: var(--primary);
  color: #fff;
  padding: 10px var(--sp-6);
  font-weight: 700;
  font-size: var(--text-md);
  cursor: pointer;
  border: none;
  border-radius: 10px;
}

.plp-empty {
  text-align: center;
  padding: 64px var(--sp-6);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.plp-empty-icon {
  margin-bottom: 12px;
  font-size: 52px;
}

.plp-empty-title {
  font-family: DM Sans, sans-serif;
  font-size: var(--text-xl);
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 800;
}

.plp-empty-sub {
  font-size: var(--text-md);
  color: var(--text-muted);
  margin-bottom: var(--sp-5);
}

.plp-pagination {
  justify-content: center;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-top: 32px;
  display: flex;
}

.page-btn {
  padding: var(--sp-2) 14px;
  border: 1.5px solid var(--border);
  font-size: var(--text-base);
  cursor: pointer;
  color: var(--text);
  background: #fff;
  border-radius: 9px;
  font-weight: 600;
  transition: all .15s;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
}

.page-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.page-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.products-grid {
  margin-bottom: var(--sp-10);
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  display: grid;
}

.product-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #0000;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}

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

.pc-image {
  aspect-ratio: 1;
  background: var(--surface2);
  justify-content: center;
  align-items: center;
  font-size: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pc-wishlist {
  cursor: pointer;
  width: 30px;
  height: 30px;
  font-size: var(--text-lg);
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 1px 4px #0000001a;
}

.pc-price-row {
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: 12px;
  display: flex;
}

.pc-cta {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  width: 100%;
  font-weight: 600;
  font-size: var(--text-base);
  border: none;
  border-radius: 7px;
  padding: 9px;
  transition: background .2s;
}

.pc-cta:hover {
  background: var(--primary-light);
}

.pc-cta.options {
  color: var(--primary);
  border: 1.5px solid var(--primary);
  background: none;
}

.pc-cta.options:hover {
  background: var(--primary);
  color: #fff;
}

.reviews-section {
  border-radius: var(--radius);
  padding: var(--sp-6);
  box-shadow: var(--shadow);
  margin-bottom: var(--sp-6);
  background: #fff;
}

.reviews-header {
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.rating-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: 3px;
}

.btn-rate {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-md);
  border: none;
  padding: 10px 22px;
}

.review-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--text-md);
  padding: 30px;
}

.review-login-note {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: 14px;
}

.share-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.share-label {
  font-size: var(--text-base);
  color: var(--text-muted);
  font-weight: 500;
}

.share-btn {
  cursor: pointer;
  width: 34px;
  height: 34px;
  font-size: var(--text-lg);
  color: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: transform .2s;
  display: flex;
}

.share-btn:hover {
  transform: scale(1.15);
}

.share-btn.facebook {
  background: #3b5998;
}

.share-btn.twitter {
  background: #1da1f2;
}

.share-btn.linkedin {
  background: #0077b5;
}

.share-btn.reddit {
  background: #ff4500;
}

.share-btn.whatsapp {
  background: #25d366;
}

.sugg-dropdown {
  border: 1.5px solid var(--border);
  z-index: 1200;
  background: #fff;
  border-radius: 14px;
  max-height: 480px;
  animation: .18s both suggFade;
  position: absolute;
  overflow-y: auto;
  box-shadow: 0 16px 48px #00000026, 0 2px 8px #0000000f;
}

.sugg-dropdown::-webkit-scrollbar {
  width: 4px;
}

.sugg-dropdown::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.sugg-section-label {
  text-transform: uppercase;
  letter-spacing: .9px;
  color: var(--text-muted);
  padding: 12px var(--sp-4) 6px;
  align-items: center;
  gap: var(--sp-2);
  z-index: 1;
  background: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  position: sticky;
  top: 0;
}

.sugg-section-label:after {
  content: "";
  background: var(--border);
  flex: 1;
  height: 1px;
}

.sugg-item {
  padding: 10px var(--sp-4);
  color: inherit;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  transition: background .12s;
  display: flex;
}

.sugg-item:hover, .sugg-item.si-active {
  background: var(--surface2);
}

.sugg-item-icon {
  border-radius: var(--radius-sm);
  background: var(--surface2);
  border: 1px solid var(--border);
  width: 34px;
  height: 34px;
  font-size: var(--text-xl);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.sugg-item-label {
  font-size: var(--text-base);
  color: var(--text);
  flex: 1;
  font-weight: 600;
  line-height: 1.2;
}

.sugg-item-label mark {
  color: var(--text);
  background: #fde68a;
  border-radius: 2px;
  padding: 0 1px;
}

.sugg-item-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 1px;
}

.sugg-item-type {
  text-transform: uppercase;
  letter-spacing: .4px;
  border-radius: 10px;
  flex-shrink: 0;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
}

.sugg-item-type.product {
  color: #1d4ed8;
  background: #dbeafe;
}

.sugg-item-type.brand {
  color: #15803d;
  background: #dcfce7;
}

.sugg-item-type.category {
  color: #92400e;
  background: #fef3c7;
}

.sugg-trending {
  padding: var(--sp-2) var(--sp-4) 14px;
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.sugg-trend-pill {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  font-weight: 500;
  transition: all .15s;
  display: flex;
}

.sugg-trend-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #eff6ff;
}

.sugg-recent-row {
  padding: 9px var(--sp-4);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  transition: background .12s;
  display: flex;
}

.sugg-recent-row:hover {
  background: var(--surface2);
}

.sugg-recent-left {
  font-size: var(--text-base);
  color: var(--text-muted);
  align-items: center;
  gap: 10px;
  display: flex;
}

.sugg-recent-del {
  font-size: var(--text-md);
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 4px;
  padding: 2px 6px;
  transition: color .12s;
}

.sugg-recent-del:hover {
  color: #ef4444;
}

.sugg-empty {
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  color: var(--text-muted);
}

.sugg-empty-icon {
  margin-bottom: 6px;
  font-size: 32px;
}

.sugg-empty-msg {
  font-size: var(--text-base);
  color: var(--text);
  font-weight: 600;
}

.sugg-empty-sub {
  font-size: var(--text-sm);
  margin-top: 2px;
}

.sugg-view-all {
  padding: 10px var(--sp-4);
  width: 100%;
  font-size: var(--text-base);
  color: var(--primary);
  border-top: 1px solid var(--border);
  background: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  transition: background .12s;
  display: flex;
}

.sugg-view-all:hover {
  background: #eff6ff;
}

.sugg-dimmer {
  z-index: 1199;
  pointer-events: none;
  background: none;
  position: fixed;
  inset: 0;
}

.vs-root {
  gap: var(--sp-5);
  flex-direction: column;
  display: flex;
}

.vs-section {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.vs-opt-hd {
  font-size: var(--text-base);
  margin: 0;
  line-height: 1;
}

.vs-opt-label {
  color: var(--text);
  font-weight: 700;
}

.vs-opt-chosen {
  color: var(--text);
  font-weight: 600;
}

.vs-opt-prompt {
  color: var(--text-muted);
  font-weight: 400;
}

.vs-slash {
  border-radius: inherit;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, #0000, #0000 4px, #ef444438 4px 5px);
  position: absolute;
  inset: 0;
}

.vm-oos-label {
  font-size: var(--text-xs);
}

.vs-btn-group {
  flex-wrap: wrap;
  gap: 7px;
  display: flex;
}

.vs-btn {
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: var(--text-base);
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: 1.5px solid #d1d5db;
  align-items: center;
  gap: 2px;
  padding: 7px 14px;
  font-weight: 600;
  transition: border-color .15s, background .15s, color .15s;
  display: inline-flex;
  position: relative;
}

.vs-btn:hover:not(:disabled) {
  border-color: var(--text);
  background: #f4f4f5;
}

.vs-btn--on {
  border-color: var(--text);
  background: var(--text);
  color: #fff;
}

.vs-btn--oos {
  opacity: .45;
  cursor: not-allowed;
}

.vs-unit {
  color: inherit;
  opacity: .7;
  font-size: 9px;
}

.vs-dropdown-wrap {
  align-items: center;
  max-width: 280px;
  display: inline-flex;
  position: relative;
}

.vs-dropdown {
  width: 100%;
  color: var(--text);
  font-size: var(--text-base);
  appearance: none;
  cursor: pointer;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  padding: 9px 36px 9px 12px;
  font-weight: 500;
  transition: border-color .15s;
}

.vs-dropdown:focus {
  border-color: var(--text);
  outline: none;
}

.vs-dd-arrow {
  color: var(--text-muted);
  pointer-events: none;
  font-size: 12px;
  position: absolute;
  right: 12px;
}

.vs-swatches {
  gap: var(--sp-2);
  flex-wrap: wrap;
  display: flex;
}

.vs-swatch {
  cursor: pointer;
  border: 2.5px solid #0000;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  transition: border-color .15s, transform .1s;
  display: flex;
  position: relative;
}

.vs-swatch:hover:not(:disabled) {
  transform: scale(1.1);
}

.vs-swatch--on {
  border-color: var(--text);
}

.vs-swatch--oos {
  opacity: .4;
  cursor: not-allowed;
}

.vs-sw-check {
  width: 14px;
  height: 14px;
}

.vs-matched-panel {
  padding: 14px var(--sp-4);
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.vs-mp-prices {
  align-items: baseline;
  gap: var(--sp-2);
  flex-wrap: wrap;
  display: flex;
}

.vs-mp-price {
  font-size: var(--text-2xl);
  color: var(--text);
  font-weight: 800;
}

.vs-mp-mrp {
  font-size: var(--text-md);
  color: #9ca3af;
  text-decoration: line-through;
}

.vs-mp-disc {
  font-size: var(--text-base);
  color: var(--success);
  font-weight: 700;
}

.vs-stock {
  font-size: var(--text-sm);
  border-radius: 20px;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  font-weight: 700;
  display: inline-flex;
}

.vs-stock:before {
  content: "";
  opacity: .7;
  background: currentColor;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  display: block;
}

.vs-stock--in {
  color: var(--success);
  background: #f0fdf4;
}

.vs-stock--low {
  color: #d97706;
  background: #fffbeb;
}

.vs-stock--out {
  color: #ef4444;
  background: #fef2f2;
}

.vs-add-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.vs-qty-ctrl {
  border: 1.5px solid #d1d5db;
  border-radius: 10px;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.vs-qty-btn {
  width: 34px;
  height: 38px;
  font-size: var(--text-xl);
  color: var(--text);
  cursor: pointer;
  background: #fff;
  border: none;
  font-weight: 600;
  transition: background .1s;
}

.vs-qty-btn:hover {
  background: #f3f4f6;
}

.vs-qty-input {
  text-align: center;
  width: 46px;
  height: 38px;
  font-size: var(--text-md);
  color: var(--text);
  background: #fff;
  border: none;
  border-left: 1px solid #d1d5db;
  border-right: 1px solid #d1d5db;
  font-weight: 700;
}

.vs-qty-input:focus {
  outline: none;
}

.vs-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.vs-add-btn {
  padding: 0 var(--sp-5);
  background: var(--vm-teal);
  color: #fff;
  height: 38px;
  font-size: var(--text-md);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 10px;
  flex: 1;
  font-weight: 700;
  transition: background .15s;
}

.vs-add-btn:hover {
  background: var(--vm-teal-text);
}

.vs-no-match {
  font-size: var(--text-base);
  color: var(--text-muted);
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 10px;
  margin: 0;
  padding: 10px 14px;
}

.vs-mx-footer {
  background: var(--surface2);
  border-radius: var(--radius-sm);
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  padding: 12px 14px;
  display: flex;
}

.vs-mx-totals {
  font-size: var(--text-md);
  color: var(--text);
  font-weight: 600;
}

.vs-mx-clear {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  padding: var(--sp-2) 18px;
  font-size: var(--text-base);
  border: none;
  font-weight: 700;
  transition: background .15s;
}

.vs-mx-clear:hover {
  background: #e55a2b;
}

.vs-mx-clear:disabled {
  opacity: .55;
  cursor: not-allowed;
}

@media (max-width: 1100px) {
  .cat-grid, .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .product-layout, .product-details {
    grid-template-columns: 1fr 1fr;
  }

  .sidebar {
    grid-column: 1 / -1;
    position: static;
  }
}

@media (max-width: 900px) {
  .community-grid {
    grid-template-columns: 1fr 1fr;
  }

  .comm-card.tall {
    grid-column: span 2;
  }

  .stats-bar {
    padding: var(--sp-6);
    grid-template-columns: 1fr 1fr;
  }

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

  .filter-sidebar {
    z-index: 1000;
    border-radius: 0;
    width: 300px;
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
  }

  .filter-sidebar.mobile-open {
    animation: .25s slideIn;
    display: block;
  }

  .mobile-filter-btn {
    display: flex;
  }

  .plp-grid, .plp-skeleton-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page, .main-wrapper {
    padding-left: var(--sp-4);
    padding-right: var(--sp-4);
  }

  .header-top {
    padding: 12px var(--sp-4);
    flex-wrap: wrap;
    gap: 12px;
  }

  .search-wrap {
    flex: 0 0 100%;
    order: 3;
  }

  .search-cat, .header-btn span:not(.icon) {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    padding: var(--sp-6) var(--sp-5);
  }

  .hero-title {
    font-size: 26px;
  }

  .hero-slide {
    height: 300px;
  }

  .hero-visual {
    display: none;
  }

  .cat-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

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

  .feat-banner.large {
    grid-column: span 1;
  }

  .ad-banners {
    grid-template-columns: 1fr;
  }

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

  .comm-card.tall {
    grid-column: span 2;
  }

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

  .sidebar {
    grid-column: 1;
  }

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

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

  .plp-skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nl-visual {
    display: none;
  }

  .newsletter {
    align-items: flex-start;
    gap: var(--sp-5);
    padding: var(--sp-6);
    flex-direction: column;
  }

  .footer-main {
    gap: var(--sp-6);
    padding: 32px var(--sp-4) var(--sp-6);
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .product-details {
    grid-template-columns: 1fr;
  }

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

  .plp-skeleton-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plp-list-card {
    grid-template-columns: 64px 1fr;
  }

  .plp-list-actions {
    display: none;
  }
}

@media (max-width: 480px) {
  .cat-grid {
    gap: var(--sp-2);
    grid-template-columns: repeat(3, 1fr);
  }

  .cat-icon {
    font-size: 28px;
  }

  .hero-slide {
    height: 240px;
  }

  .hero-title {
    font-size: 22px;
  }

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

  .btn-hero-primary, .btn-hero-secondary {
    text-align: center;
  }

  .stats-bar {
    padding: var(--sp-5) var(--sp-4);
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .stat-num {
    font-size: var(--text-2xl);
  }

  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .comm-card.tall {
    grid-column: span 1;
  }

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

  .price-current {
    font-size: 24px;
  }

  .product-title {
    font-size: var(--text-xl);
  }

  .matrix-header div, .matrix-row div {
    padding: var(--sp-2) 10px;
  }

  .vs-mx-footer {
    align-items: stretch;
    gap: var(--sp-2);
    flex-direction: column;
  }

  .vs-add-row {
    flex-direction: column;
    align-items: stretch;
  }

  .vs-add-btn {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-name {
    font-size: 11px;
  }

  .hero-title {
    font-size: 19px;
  }

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

.prod-slider-wrap {
  box-shadow: var(--shadow);
  background: #fff;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.slider-topbar {
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px 0;
  display: flex;
}

.slider-topbar-title {
  color: var(--text);
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.slider-topbar-sub {
  color: var(--text-muted);
  font-size: 12px;
}

.slider-topbar-link {
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
}

.slider-topbar-link:hover {
  background: var(--primary);
  color: #fff;
}

.slider-filter-row {
  scrollbar-width: none;
  gap: 8px;
  padding: 12px 20px;
  display: flex;
  overflow-x: auto;
}

.slider-filter-row::-webkit-scrollbar {
  display: none;
}

.sf-chip {
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: all .2s;
}

.sf-chip.active, .sf-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #eef9f7;
}

.slider-viewport {
  padding: 0 20px 20px;
  overflow: hidden;
}

.slider-track {
  gap: 14px;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.slider-prod-card {
  background: var(--surface2);
  cursor: pointer;
  border: 1.5px solid #0000;
  border-radius: 12px;
  flex-shrink: 0;
  min-width: 168px;
  max-width: 168px;
  transition: all .25s;
  overflow: hidden;
}

.slider-prod-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  transform: translateY(-4px);
}

.spc-img {
  background: #fff;
  justify-content: center;
  align-items: center;
  height: 130px;
  font-size: 52px;
  display: flex;
  position: relative;
}

.spc-badge-wrap {
  flex-direction: column;
  gap: 3px;
  display: flex;
  position: absolute;
  top: 7px;
  left: 7px;
}

.spc-badge {
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 9.5px;
  font-weight: 700;
}

.spc-badge.bs {
  background: var(--accent-gold);
  color: #fff;
}

.spc-badge.off {
  background: var(--success);
  color: #fff;
}

.spc-badge.new {
  background: var(--primary);
  color: #fff;
}

.spc-badge.ex {
  background: var(--accent);
  color: #fff;
}

.spc-wish {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  font-size: 13px;
  display: flex;
  position: absolute;
  top: 7px;
  right: 7px;
  box-shadow: 0 1px 4px #0000001a;
}

.spc-body {
  padding: 10px 12px;
}

.spc-brand {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 700;
}

.spc-name {
  color: var(--text);
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 7px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.spc-price-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
  display: flex;
}

.spc-price {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.spc-mrp {
  color: var(--text-muted);
  font-size: 10.5px;
  text-decoration: line-through;
}

.spc-disc {
  color: var(--success);
  background: #e8f5e9;
  border-radius: 8px;
  padding: 1px 5px;
  font-size: 10px;
  font-weight: 700;
}

.spc-add {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 7px;
  width: 100%;
  padding: 7px;
  font-family: DM Sans, sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  transition: background .2s;
}

.spc-add:hover {
  background: var(--primary-light);
}

.slider-nav-row {
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 20px 16px;
  display: flex;
}

.slider-nav-btn {
  background: var(--surface2);
  border: 1.5px solid var(--border);
  cursor: pointer;
  width: 34px;
  height: 34px;
  color: var(--primary);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  transition: all .2s;
  display: flex;
}

.slider-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

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

.slider-dot {
  background: var(--border);
  cursor: pointer;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  transition: all .2s;
}

.slider-dot.active {
  background: var(--primary);
  border-radius: 4px;
  width: 20px;
}

.benefits-card {
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.benefits-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  display: flex;
}

.bh-icon {
  font-size: 20px;
}

.bh-title {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.bh-sub {
  color: #ffffffbf;
  margin-top: 1px;
  font-size: 11px;
}

.benefit-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  transition: background .15s;
  display: flex;
}

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

.benefit-item:hover {
  background: var(--surface2);
}

.bi-icon {
  border-radius: 8px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 16px;
  display: flex;
}

.bi-title {
  color: var(--text);
  font-size: 12.5px;
  font-weight: 700;
}

.bi-desc {
  color: var(--text-muted);
  margin-top: 1px;
  font-size: 10.5px;
}

.bi-arrow {
  color: var(--text-muted);
  margin-left: auto;
  font-size: 12px;
}

.payment-card {
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.payment-header {
  background: linear-gradient(135deg, #1a1a2e, #1565c0);
  border-radius: 10px;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  display: flex;
}

.ph-icon {
  font-size: 18px;
}

.ph-title {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
}

.payment-body {
  padding: 14px 18px;
}

.pay-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-bottom: 12px;
  display: grid;
}

.pay-pill {
  background: var(--surface2);
  text-align: center;
  cursor: pointer;
  border: 1.5px solid #0000;
  border-radius: 8px;
  padding: 7px 5px;
  transition: all .2s;
}

.pay-pill:hover {
  border-color: var(--primary);
  background: #eef9f7;
}

.pay-pill .pi {
  margin-bottom: 2px;
  font-size: 17px;
}

.pay-pill .pn {
  color: var(--text-muted);
  font-size: 9.5px;
  font-weight: 700;
}

.pay-div {
  background: var(--border);
  height: 1px;
  margin: 10px 0;
}

.emi-title {
  color: var(--text);
  align-items: center;
  gap: 6px;
  margin-bottom: 7px;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
}

.emi-badge {
  background: var(--success);
  color: #fff;
  border-radius: 8px;
  padding: 2px 6px;
  font-size: 9px;
}

.emi-chips {
  flex-wrap: wrap;
  gap: 5px;
  display: flex;
}

.emi-chip {
  color: var(--success);
  cursor: pointer;
  background: #e8f5e9;
  border: 1px solid #c8e6c9;
  border-radius: 14px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  transition: all .2s;
}

.emi-chip:hover {
  background: var(--success);
  color: #fff;
}

.cod-row {
  background: #fff3e0;
  border: 1px solid #ffe0b2;
  border-radius: 7px;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 8px 10px;
  display: flex;
}

.cod-row .ci {
  font-size: 14px;
}

.cod-row .ct {
  color: #e65100;
  font-size: 11px;
  font-weight: 600;
}

.breadcrumb {
  color: var(--text-muted);
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 22px 0 14px;
  font-size: 12px;
  display: flex;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

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

.breadcrumb .sep {
  color: var(--border);
}

.section2-grid {
  align-items: start;
  gap: 20px;
  display: grid;
}

.product-main {
  flex-direction: column;
  gap: 16px;
  display: flex;
}

.product-details {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.image-section {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  width: 425px;
  padding: 20px;
}

.main-image {
  aspect-ratio: 1;
  background: var(--surface2);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.badge-exclusive {
  background: var(--accent);
  color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 12px;
  left: 12px;
}

.badge-bestseller {
  background: var(--accent-gold);
  color: #fff;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: 12px;
  right: 12px;
}

.badge-new {
  background: var(--accent-new);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .3px;
  z-index: 15;
  border-radius: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 12px;
  left: 12px;
}

.wishlist-btn {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 18px;
  display: flex;
  position: absolute;
  bottom: 12px;
  right: 12px;
  box-shadow: 0 2px 8px #0000001f;
}

.thumb-strip {
  gap: 10px;
  margin-top: 14px;
  display: flex;
}

.thumb {
  border: 2px solid var(--border);
  cursor: pointer;
  background: var(--surface2);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 62px;
  height: 62px;
  font-size: 26px;
  transition: border-color .2s;
  display: flex;
  overflow: hidden;
}

.thumb.active {
  border-color: var(--primary);
}

.view-counter {
  color: var(--text-muted);
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 12px;
  display: flex;
}

.share-row {
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  display: flex;
}

.share-label {
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
}

.share-btn {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  display: flex;
}

.product-info-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 22px;
}

.brand-tag {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 7px;
  font-size: 11.5px;
  font-weight: 700;
}

.product-title {
  margin-bottom: 7px;
  font-family: DM Sans, sans-serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.product-tagline {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.55;
}

.miles-bar {
  color: #fff;
  background: linear-gradient(135deg, #1b4332, #2d6a4f);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding: 10px 16px;
  display: flex;
}

.miles-earn-text {
  font-size: 13px;
  font-weight: 500;
}

.miles-badge {
  background: var(--accent-gold);
  color: #fff;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
}

.price-block {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.price-row {
  align-items: center;
  gap: 6px;
  display: flex;
}

.customer-label, .b2b-label {
  color: #fff;
  background: #10b981;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 700;
}

.price-current {
  font-size: 16px;
  font-weight: 700;
}

.price-mrp {
  color: #888;
  text-decoration: line-through;
}

.price-discount {
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
}

.offers-section {
  margin-bottom: 18px;
}

.offers-title {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 9px;
  font-size: 12.5px;
  font-weight: 700;
}

.offer-item {
  border-left: 3px solid var(--primary);
  background: #f0fbf9;
  border-radius: 0 7px 7px 0;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  padding: 8px 12px;
  font-size: 13px;
  display: flex;
}

.offer-dot {
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 4px;
}

.offer-item.qty {
  border-left-color: var(--accent-gold);
  background: #fff8ec;
}

.offer-item.qty .offer-dot {
  background: var(--accent-gold);
}

.offer-item strong {
  color: var(--primary);
}

.offer-item.qty strong {
  color: var(--accent-gold);
}

.delivery-section {
  margin-bottom: 18px;
}

.delivery-label {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
}

.pincode-row {
  gap: 8px;
  display: flex;
}

.pincode-input {
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  outline: none;
  flex: 1;
  padding: 9px 14px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  transition: border-color .2s;
}

.pincode-input:focus {
  border-color: var(--primary);
}

.pincode-btn {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 9px 18px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.return-tag {
  color: var(--success);
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 12px;
  display: flex;
}

.variant-title {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 9px;
  font-size: 12.5px;
  font-weight: 700;
}

.variant-cards {
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  display: flex;
}

.variant-card {
  border: 1.5px solid var(--border);
  cursor: pointer;
  border-radius: 10px;
  padding: 14px 16px;
  transition: all .2s;
  position: relative;
}

.variant-card:hover {
  border-color: var(--primary-light);
}

.variant-card.selected {
  border-color: var(--primary);
  background: #f0fbf9;
}

.variant-card.out-of-stock {
  opacity: .7;
}

.vc-top {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.vc-name {
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.vc-sku {
  color: var(--text-muted);
  font-size: 11px;
}

.vc-price-row {
  align-items: center;
  gap: 10px;
  display: flex;
}

.vc-price {
  color: var(--primary);
  font-size: 17px;
  font-weight: 700;
}

.vc-mrp {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: line-through;
}

.vc-disc {
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}

.vc-stock {
  color: var(--success);
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 12px;
  display: flex;
}

.stock-dot {
  background: var(--success);
  border-radius: 50%;
  width: 7px;
  height: 7px;
}

.stock-dot.low {
  background: var(--warning);
}

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

.vc-stock.low-stock {
  color: var(--warning);
}

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

.vc-actions {
  gap: 8px;
  margin-top: 10px;
  display: flex;
}

.btn-add {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 7px;
  padding: 8px 18px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}

.btn-add:hover {
  background: var(--primary-light);
}

.btn-oos {
  background: var(--surface2);
  color: var(--text-muted);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
}

.btn-request {
  color: var(--accent);
  border: 1.5px solid var(--accent);
  cursor: pointer;
  background: none;
  border-radius: 7px;
  padding: 8px 14px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}

.btn-request:hover {
  background: var(--accent);
  color: #fff;
}

.variant-section {
  margin-bottom: 0;
}

.variant-matrix {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.matrix-header {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  font-size: 12px;
  font-weight: 600;
  display: grid;
}

.matrix-header div, .matrix-row div {
  padding: 9px 14px;
}

.matrix-header div {
  text-align: center;
}

.matrix-row {
  border-top: 1px solid var(--border);
  background: #fff;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  transition: background .15s;
  display: grid;
}

.matrix-row:hover {
  background: var(--surface2);
}

.size-cell {
  color: var(--text);
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
}

.size-img {
  background: var(--surface2);
  width: 30px;
  height: 30px;
  color: var(--text-muted);
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  display: flex;
}

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

.qty-stepper {
  border: 1.5px solid var(--border);
  border-radius: 6px;
  align-items: center;
  width: fit-content;
  margin: 0 auto 3px;
  display: flex;
  overflow: hidden;
}

.qty-stepper button {
  background: var(--surface2);
  cursor: pointer;
  color: var(--primary);
  border: none;
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: background .15s;
}

.qty-stepper button:hover {
  background: var(--border);
}

.qty-stepper input {
  text-align: center;
  width: 36px;
  color: var(--text);
  background: #fff;
  border: none;
  padding: 5px 0;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.qty-price {
  color: var(--text-muted);
  font-size: 11px;
}

.qty-price strong {
  color: var(--primary);
  font-size: 12px;
}

.wire-summary {
  background: var(--surface2);
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding: 11px 14px;
  display: flex;
}

.wire-summary-text {
  color: var(--text);
  font-size: 13.5px;
  font-weight: 600;
}

.sidebar-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  padding: 20px;
}

.sidebar-title {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
  padding-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.summary-row {
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13.5px;
  display: flex;
}

.summary-row .label {
  color: var(--text-muted);
}

.summary-row .value {
  color: var(--text);
  font-weight: 600;
}

.summary-row.total {
  border-top: 1px solid var(--border);
  margin-top: 4px;
  padding-top: 10px;
}

.summary-row.total .value {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}

.summary-discount {
  color: var(--success);
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 600;
}

.discount-tiers {
  margin-bottom: 14px;
}

.dt-label {
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 7px;
  font-size: 11.5px;
  font-weight: 700;
}

.tier-row {
  border: 1px solid var(--border);
  border-radius: 7px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  padding: 8px 10px;
  font-size: 12px;
  transition: all .2s;
  display: flex;
}

.tier-row.active {
  border-color: var(--success);
  background: #e8f5e9;
}

.tier-row.next {
  border-color: var(--accent-gold);
  background: #fff8ec;
}

.tier-badge {
  font-size: 13px;
  font-weight: 700;
}

.tier-row.active .tier-badge {
  color: var(--success);
}

.tier-row.next .tier-badge {
  color: var(--accent-gold);
}

.tier-condition {
  color: var(--text-muted);
  font-size: 11px;
}

.gift-progress {
  margin-bottom: 14px;
}

.gift-progress-label {
  color: var(--text-muted);
  margin-bottom: 7px;
  font-size: 12px;
}

.gift-progress-label strong {
  color: var(--accent);
}

.progress-bar-wrap {
  background: var(--surface2);
  border-radius: 20px;
  height: 7px;
  margin-bottom: 9px;
  overflow: hidden;
}

.progress-bar-fill {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 20px;
  height: 100%;
  transition: width .4s;
}

.gift-icons {
  gap: 7px;
  display: flex;
}

.gift-icon {
  background: var(--surface2);
  border: 1.5px dashed var(--border);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 19px;
  display: flex;
}

.gift-icon.unlocked {
  border-color: var(--success);
  background: #e8f5e9;
}

.btn-go-cart {
  border: 2px solid var(--primary);
  width: 100%;
  color: var(--primary);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  margin-bottom: 9px;
  padding: 11px;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: all .2s;
}

.btn-go-cart:hover {
  background: var(--surface2);
}

.btn-buy-now {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 9px;
  padding: 12px;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: background .2s;
}

.btn-bulk {
  width: 100%;
  color: var(--primary-light);
  border: 1.5px dashed var(--primary-light);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  padding: 9px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}

.btn-bulk:hover {
  background: var(--surface2);
}

.trust-badges {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  display: grid;
}

.trust-item {
  text-align: center;
  background: var(--surface2);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  display: flex;
}

.trust-icon {
  font-size: 20px;
}

.trust-text {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.payment-options {
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 7px;
  display: flex;
}

.payment-chip {
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--surface2);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
}

.accordion-section {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 20px;
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

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

.accordion-header {
  cursor: pointer;
  color: var(--text);
  -webkit-user-select: none;
  user-select: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
  display: flex;
}

.accordion-header:hover {
  background: var(--surface2);
}

.accordion-icon {
  color: var(--primary);
  font-size: 18px;
  transition: transform .25s;
}

.accordion-icon.open {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  transition: max-height .35s;
  overflow: hidden;
}

.accordion-body.open {
  max-height: 600px;
}

.accordion-content {
  color: var(--text-muted);
  padding: 0 22px 18px;
  font-size: 13.5px;
  line-height: 1.7;
}

.features-grid {
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 11px;
  margin-top: 8px;
  display: grid;
}

.feature-item {
  background: var(--surface2);
  border-radius: 8px;
  padding: 13px;
}

.feature-icon {
  margin-bottom: 5px;
  font-size: 20px;
}

.feature-title {
  color: var(--text);
  margin-bottom: 2px;
  font-size: 12.5px;
  font-weight: 600;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.5;
}

.specs-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 8px;
}

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

.specs-table td {
  padding: 9px 0;
  font-size: 13px;
}

.specs-table td:first-child {
  color: var(--text-muted);
  width: 45%;
  font-weight: 500;
}

.specs-table td:last-child {
  color: var(--text);
  font-weight: 600;
}

.reviews-section {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
  margin-bottom: 22px;
  padding: 22px;
}

.reviews-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  display: flex;
}

.avg-rating {
  align-items: center;
  gap: 10px;
  display: flex;
}

.rating-number {
  color: var(--primary);
  font-family: DM Sans, sans-serif;
  font-size: 38px;
  font-weight: 800;
}

.stars {
  color: var(--accent-gold);
  font-size: 19px;
}

.rating-count {
  color: var(--text-muted);
  margin-top: 2px;
  font-size: 12px;
}

.btn-rate {
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.review-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 28px;
  font-size: 13.5px;
}

.section-title {
  color: var(--text);
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-family: DM Sans, sans-serif;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.section-title:after {
  content: "";
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
  flex: 1;
  height: 2px;
}

.products-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 36px;
  display: grid;
}

.product-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  background: #fff;
  transition: transform .2s, box-shadow .2s;
  overflow: hidden;
}

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

.pc-image {
  aspect-ratio: 1;
  background: var(--surface2);
  justify-content: center;
  align-items: center;
  font-size: 42px;
  display: flex;
  position: relative;
}

.pc-badge {
  border-radius: 4px;
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  top: 10px;
  left: 10px;
}

.pc-badge.bestseller {
  background: var(--accent-gold);
  color: #fff;
}

.pc-badge.exclusive {
  background: var(--accent);
  color: #fff;
}

.pc-badge.new {
  background: var(--primary);
  color: #fff;
}

.pc-wishlist {
  cursor: pointer;
  background: #fff;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 29px;
  height: 29px;
  font-size: 14px;
  display: flex;
  position: absolute;
  top: 10px;
  right: 10px;
  box-shadow: 0 1px 4px #0000001a;
}

.pc-body {
  padding: 13px;
}

.pc-brand {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 700;
}

.pc-name {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.pc-price-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
  display: flex;
}

.pc-price {
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
}

.pc-mrp {
  color: var(--text-muted);
  font-size: 11.5px;
  text-decoration: line-through;
}

.pc-disc {
  color: var(--success);
  background: #e8f5e9;
  border-radius: 9px;
  padding: 2px 6px;
  font-size: 10.5px;
  font-weight: 600;
}

.pc-cta {
  width: 100%;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  cursor: pointer;
  background: none;
  border-radius: 7px;
  padding: 8px;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}

.pc-cta:hover {
  background: var(--primary);
  color: #fff;
}

.swiper-horizontal .swiper-button-next, .swiper-horizontal ~ .swiper-button-next, .swiper-horizontal .swiper-button-prev, .swiper-horizontal ~ .swiper-button-prev {
  color: #1f2937;
  opacity: .92;
  z-index: 25;
  background: #fffffff2;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  transition: all .28s cubic-bezier(.4, 0, .2, 1);
  top: 50%;
  left: auto;
  right: 16px;
  transform: translateY(-50%);
  box-shadow: 0 6px 16px #0000002e;
}

.swiper-button-next:hover, .swiper-button-next:focus {
  opacity: 1;
  border: 1px solid var(--accent, #6366f1);
  background: #fff;
  transform: translateY(-50%)scale(1.15);
  box-shadow: 0 10px 24px #00000040;
}

.swiper-button-next svg, .swiper-button-prev svg {
  stroke-width: 2.2px;
  width: 24px !important;
  height: 24px !important;
}

.swiper-button-prev.swiper-button-disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: .3 !important;
}

.swiper .swiper-button-next, .swiper .swiper-button-prev {
  opacity: .92;
}

.swiper:hover .swiper-button-next, .swiper:hover .swiper-button-prev {
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper-button-next {
    width: 40px;
    height: 40px;
    right: 10px;
  }

  .swiper-button-next svg {
    width: 20px !important;
    height: 20px !important;
  }
}

.section1-grid {
  grid-template-columns: 2fr 1fr;
  align-items: start;
  gap: 20px;
  margin: 20px 0;
  display: grid;
}

.product-details {
  grid-template-columns: 400px 1fr;
  align-items: start;
  gap: 16px;
  display: grid;
}

.image-section {
  border-radius: var(--radius);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-shadow: var(--shadow);
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
}

.product-info-card {
  min-width: 0;
}

.col4-sidebar {
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  flex-direction: column;
  gap: 14px;
  max-height: calc(100vh - 96px);
  display: flex;
  position: sticky;
  top: 80px;
  overflow-y: auto;
}

.col4-sidebar::-webkit-scrollbar {
  width: 4px;
}

.col4-sidebar::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.product-main {
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  display: flex;
}

@media (max-width: 1280px) {
  .section1-grid {
    grid-template-columns: 1fr 300px;
  }

  .product-details {
    grid-template-columns: 340px 1fr;
  }
}

@media (max-width: 1100px) {
  .section1-grid {
    grid-template-columns: 1fr;
  }

  .col4-sidebar {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
    max-height: none;
    display: grid;
    position: static;
    overflow-y: visible;
  }

  .product-details {
    grid-template-columns: 320px 1fr;
  }
}

@media (max-width: 900px) {
  .product-details {
    grid-template-columns: 1fr;
  }

  .image-section {
    max-width: 480px;
    margin: 0 auto;
  }

  .col4-sidebar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .product-details {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .image-section {
    max-width: 100%;
    padding: 14px;
  }

  .col4-sidebar {
    grid-template-columns: 1fr;
  }

  .section1-grid {
    gap: 12px;
    margin: 12px 0;
  }

  .price-block {
    gap: 6px;
  }

  .price-row {
    flex-wrap: wrap;
    gap: 4px;
  }

  .product-title {
    font-size: var(--text-xl);
  }

  .variant-cards {
    gap: 8px;
  }

  .vc-actions {
    flex-wrap: wrap;
  }

  .thumb-strip {
    scrollbar-width: none;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .thumb-strip::-webkit-scrollbar {
    display: none;
  }

  .share-row {
    flex-wrap: wrap;
    gap: 6px;
  }

  .pincode-row {
    gap: 6px;
  }

  .pincode-btn {
    white-space: nowrap;
    padding: 9px 12px;
    font-size: 12px;
  }

  .benefits-header {
    padding: 11px 14px;
  }

  .accordion-header {
    padding: 12px 14px;
    font-size: 13px;
  }

  .accordion-content {
    padding: 0 14px 14px;
  }

  .sidebar-card {
    padding: 14px;
  }

  .trust-badges {
    gap: 6px;
  }

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

@media (max-width: 480px) {
  .image-section {
    border-radius: var(--radius-sm);
    padding: 10px;
  }

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

  .product-title {
    font-size: var(--text-lg);
  }

  .price-row {
    align-items: baseline;
    gap: 4px;
  }

  .price-current {
    font-size: 20px;
  }

  .miles-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 10px 12px;
  }

  .vc-actions {
    flex-direction: column;
  }

  .btn-add, .btn-request, .btn-oos {
    text-align: center;
    width: 100%;
  }

  .offer-item {
    padding: 7px 10px;
    font-size: 12px;
  }

  .btn-go-cart, .btn-buy-now, .btn-bulk {
    padding: 10px;
    font-size: 13px;
  }

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

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

  .tier-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .gift-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .col4-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav, .navbar, .mega-menu, .nav-menu {
    display: none !important;
  }
}

.pc-img-add {
  cursor: pointer;
  z-index: 2;
  background: #fff;
  border: 1.5px solid #1e4fa0;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2px;
  min-width: 80px;
  padding: 7px 16px;
  transition: background .15s;
  display: flex;
  position: absolute;
  bottom: -7px;
  right: 0;
  box-shadow: 0 2px 8px #0000001f;
}

.pc-img-add:hover {
  background: #1e4fa0;
}

.pc-img-add:hover .pc-img-add-label {
  color: #fff;
}

.pc-img-add:hover .pc-img-add-sub {
  color: #fffc;
}

.pc-img-add--oos {
  cursor: default;
  border-color: #9ca3af;
}

.pc-img-add--oos:hover {
  background: #fff;
}

.pc-img-add--oos:hover .pc-img-add-label {
  color: #9ca3af;
}

.pc-img-add--loading {
  opacity: .8;
  cursor: wait;
  border-color: #93c5fd;
}

.pc-img-add--loading:hover {
  background: #fff;
}

.pc-img-add--loading:hover .pc-img-add-label {
  color: #93c5fd;
}

.pc-img-add-label {
  color: #1e4fa0;
  letter-spacing: .5px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color .15s;
}

.pc-img-add--oos .pc-img-add-label {
  color: #9ca3af;
}

.pc-img-add--loading .pc-img-add-label {
  color: #93c5fd;
}

.pc-img-add-sub {
  color: #6b7280;
  white-space: nowrap;
  margin-top: 1px;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  transition: color .15s;
}

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

.pc-rating-star {
  color: #fff;
  background: #1a7a3e;
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 11.5px;
  font-weight: 700;
}

.pc-rating-count {
  color: #555;
  font-size: 12px;
}

.pc-coins {
  align-items: center;
  gap: 4px;
  margin: 3px 0;
  display: flex;
}

.pc-coins-icon {
  font-size: 14px;
}

.pc-coins-val {
  color: #d97706;
  font-size: 12.5px;
  font-weight: 700;
}

.pc-similar {
  color: #1a7a3e;
  border-top: 1px solid #f0f0f0;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 8px 0 2px;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s;
  display: flex;
}

.pc-similar:hover {
  opacity: .75;
}

.pc-similar span {
  font-size: 15px;
}

.pc-desc {
  color: #6b7280;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 4px 0 5px;
  padding: 0;
  font-size: 11.5px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.header-search-only {
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  display: flex;
}

.header-search-only .search-wrap {
  width: 100%;
  max-width: 1100px;
}

.brand-showcase-track::-webkit-scrollbar {
  display: none;
}

.brand-card {
  box-shadow: 0 2px 8px #0000000a;
}

header {
  background: linear-gradient(#fff 0%, #f8fcfb 100%);
  border-bottom: 1px solid #dce9e6;
  box-shadow: 0 4px 18px #0f40390f;
}

.header-top {
  gap: 18px;
  padding: 14px 28px;
}

.search-wrap {
  border: 1px solid #d6e6e2;
  border-radius: 12px;
  box-shadow: inset 0 1px #fffc;
}

.search-wrap input {
  padding: 12px 14px;
}

.search-wrap button {
  border-radius: 10px;
  margin: 4px;
  padding: 0 16px;
}

.header-actions {
  gap: 8px;
}

.header-btn {
  background: #fff;
  border: 1px solid #e1ece9;
  border-radius: 10px;
  flex-direction: row;
  gap: 6px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 600;
}

.header-btn .icon {
  font-size: 15px;
}

.cart-btn {
  background: #0f766e;
  border: 1px solid #0b5f58;
  border-radius: 10px;
  padding: 10px 14px;
}

.cart-btn:hover {
  background: #0d685f;
}

.cart-count {
  color: #0f766e;
}

.nav-inner {
  gap: 2px;
  padding: 0 24px;
}

.nav-link {
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  padding: 12px 13px;
  font-weight: 600;
}

.nav-link:hover, .nav-link.active {
  background: #edf7f5;
}

.btn-go-cart, .btn-buy-now, .btn-bulk, .btn-rate, .pc-add, .btn-add-to-cart, .btn-buy-now-inline {
  letter-spacing: .1px;
  border-radius: 10px;
  font-weight: 700;
}

.btn-go-cart {
  border: 1px solid #0f766e;
}

.btn-buy-now {
  background: #0f766e;
}

.btn-buy-now:hover {
  background: #0d685f;
}

.btn-bulk {
  color: #0f766e;
  border: 1px dashed #0f766e;
}

.product-info-tabs {
  background: #fff;
  border: 1px solid #dce9e6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0f40390f;
}

.product-info-tabs-nav {
  background: #f8fcfb;
  border-bottom: 1px solid #e7f0ee;
  align-items: center;
  display: flex;
  overflow-x: auto;
}

.product-info-tab {
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 700;
  transition: color .18s, border-color .18s, background .18s;
}

.product-info-tab:hover {
  color: var(--primary);
  background: #f1f9f7;
}

.product-info-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: #fff;
}

.product-info-tab-panel {
  padding: 18px 20px;
}

.product-info-copy-block + .product-info-copy-block {
  border-top: 1px solid #edf4f2;
  margin-top: 16px;
  padding-top: 16px;
}

.product-info-copy-block h3 {
  color: var(--text);
  margin-bottom: 8px;
  font-size: 16px;
}

.product-info-description p, .product-info-description li, .product-info-description div {
  color: #3e5b58;
  line-height: 1.7;
}

.product-tab-accordion {
  box-shadow: none;
  border: 1px solid #e7f0ee;
  margin-bottom: 0;
}

.product-tab-reviews {
  box-shadow: none;
  border: 1px solid #e7f0ee;
  margin-bottom: 0;
  padding: 18px;
}

.product-info-empty {
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .header-top {
    gap: 10px;
    padding: 12px 14px;
  }

  .header-btn {
    padding: 7px 9px;
    font-size: 12px;
  }

  .nav-inner {
    padding: 0 10px;
  }

  .product-info-tab-panel {
    padding: 14px;
  }
}

.variant-card--rich {
  background: #fff;
  border: 1px solid #d6e5e2;
  border-radius: 14px;
  justify-content: space-between;
  align-items: stretch;
  gap: 14px;
  padding: 14px;
  display: flex;
  box-shadow: 0 3px 14px #1118270d;
}

.variant-card--rich .vc-rich-left {
  flex: 1;
  gap: 14px;
  min-width: 0;
  display: flex;
}

.variant-card--rich .vc-rich-thumb {
  background: #f8fcfb;
  border: 1px solid #e3eeeb;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 92px;
  min-width: 92px;
  height: 92px;
  display: flex;
}

.variant-card--rich .vc-rich-thumb img {
  object-fit: contain;
  width: 76px;
  height: 76px;
}

.variant-card--rich .vc-rich-thumb span {
  font-size: 30px;
}

.variant-card--rich .vc-rich-main {
  flex: 1;
  min-width: 0;
}

.variant-card--rich .vc-rich-title {
  font-size: var(--text-lg);
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 700;
  line-height: 1.3;
}

.variant-card--rich .vc-rich-price-line {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.variant-card--rich .vc-rich-price {
  color: var(--text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.variant-card--rich .vc-rich-mrp {
  font-size: var(--text-lg);
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1;
  text-decoration: line-through;
}

.variant-card--rich .vc-rich-disc {
  font-size: var(--text-sm);
  color: #1d4ed8;
  background: #e9f2ff;
  border-radius: 8px;
  padding: 3px 8px;
  font-weight: 700;
}

.variant-card--rich .vc-rich-deals {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  display: flex;
}

.variant-card--rich .vc-rich-deal-chip {
  background: #fff;
  border: 1px solid #d5e4f5;
  border-radius: 10px;
  min-width: 208px;
  padding: 8px 10px;
}

.variant-card--rich .vc-rich-deal-off {
  color: var(--success);
  font-size: var(--text-sm);
  font-weight: 700;
  line-height: 1.2;
}

.variant-card--rich .vc-rich-deal-text {
  font-size: var(--text-base);
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
}

.variant-card--rich .vc-rich-meta {
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
  display: flex;
}

.variant-card--rich .vc-sku {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.variant-card--rich .vc-rich-right {
  justify-content: center;
  align-items: center;
  min-width: 124px;
  display: flex;
}

.variant-card--rich .vc-rich-add {
  background: var(--primary);
  border: 1px solid var(--primary-dark);
  color: #fff;
  min-width: 110px;
  height: 42px;
  font-size: var(--text-md);
  letter-spacing: .2px;
  border-radius: 10px;
  font-weight: 700;
}

.variant-card--rich .vc-rich-add:hover {
  background: var(--primary-light);
}

.vc-rich-stepper {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.vc-rich-stepper-btn {
  width: 36px;
  height: 40px;
  color: var(--text);
  cursor: pointer;
  background: #f7fbfa;
  border: none;
  font-size: 20px;
  font-weight: 700;
}

.vc-rich-stepper-btn:hover {
  background: #edf5f3;
}

.vc-rich-stepper-qty {
  text-align: center;
  min-width: 44px;
  font-size: var(--text-md);
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 1200px) {
  .variant-card--rich .vc-rich-title {
    font-size: var(--text-md);
  }

  .variant-card--rich .vc-rich-price {
    font-size: 24px;
  }

  .variant-card--rich .vc-rich-mrp {
    font-size: var(--text-md);
  }

  .variant-card--rich .vc-rich-disc, .variant-card--rich .vc-rich-deal-text {
    font-size: var(--text-sm);
  }

  .variant-card--rich .vc-rich-deal-off, .variant-card--rich .vc-rich-meta {
    font-size: var(--text-xs);
  }
}

@media (max-width: 900px) {
  .variant-card--rich {
    flex-direction: column;
  }

  .variant-card--rich .vc-rich-thumb {
    width: 72px;
    min-width: 72px;
    height: 72px;
  }

  .variant-card--rich .vc-rich-thumb img {
    width: 58px;
    height: 58px;
  }

  .variant-card--rich .vc-rich-title {
    font-size: var(--text-md);
  }

  .variant-card--rich .vc-rich-price {
    font-size: 22px;
  }

  .variant-card--rich .vc-rich-mrp {
    font-size: var(--text-sm);
  }

  .variant-card--rich .vc-rich-disc, .variant-card--rich .vc-rich-meta {
    font-size: var(--text-xs);
  }

  .variant-card--rich .vc-rich-deal-text {
    font-size: var(--text-sm);
  }

  .variant-card--rich .vc-rich-deal-off {
    font-size: var(--text-xs);
  }

  .variant-card--rich .vc-rich-add {
    width: 100%;
    font-size: var(--text-md);
    height: 40px;
  }

  .vc-rich-stepper {
    justify-content: space-between;
    width: 100%;
  }

  .vc-rich-stepper-btn {
    width: 40px;
    height: 40px;
  }
}

/* [next]/internal/font/google/poppins_ea5171cd.module.css [app-client] (css) */
@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/0d7395fc9d2cc18e-s.7d222f88.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/42fdc379e58c639f-s.b1aa8bd6.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../media/9f07c7c28a9bc3ba-s.p.7823a06e.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/508e9c8e4bf8c79e-s.98682dc7.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/276786042f62a244-s.82453280.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../media/edcf447d6990da7e-s.p.850bf14d.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/3d649eca0e6ca1fb-s.6e6e2abc.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/da1f5095ad42b608-s.a7ef1596.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../media/5de307a1cf21ffb0-s.p.f148bf57.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/f8108b279d18af14-s.bab2a84a.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/e9dbbfb7e7bc7f69-s.397543e6.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../media/b06c83c7cc676c09-s.p.cad8f45c.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/5929d901dfa1aeda-s.1783cc3e.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/845d40ca8bfb4186-s.09c9cb19.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b6620be20ad708dd-s.p.558c4465.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/7e832ad540183e91-s.a2f18b1a.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/2094fb60fd9c8287-s.3ed55436.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../media/c875c6f5d3e977ac-s.p.80fc2c9e.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/41e95f694c5c4549-s.666bad7d.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/6c55a692938ebbbc-s.0a77efb4.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../media/a218039a3287bcfd-s.p.4a23d71b.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/bdc7e24a509eb931-s.43b0b13e.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/0da9c7f357bd9d4d-s.b2288445.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../media/8e6fa89aa22d24ec-s.p.3aec397d.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/0a7740363b4d4863-s.95e4158a.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/5f9d24ebef5d5292-s.bd593fbe.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../media/e2334d715941921e-s.p.d82a9aff.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/b53057dbf91a7acf-s.c55744ae.woff2") format("woff2");
  unicode-range: U+900-97F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/798ea22d9983e047-s.b460e02c.woff2") format("woff2");
  unicode-range: U+100-2BA, U+2BD-2C5, U+2C7-2CC, U+2CE-2D7, U+2DD-2FF, U+304, U+308, U+329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../media/47fe1b7cd6e6ed85-s.p.855a563b.woff2") format("woff2");
  unicode-range: U+??, U+131, U+152-153, U+2BB-2BC, U+2C6, U+2DA, U+2DC, U+304, U+308, U+329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Poppins Fallback;
  src: local(Arial);
  ascent-override: 93.62%;
  descent-override: 31.21%;
  line-gap-override: 8.92%;
  size-adjust: 112.16%;
}

.poppins_ea5171cd-module__eIW34G__className {
  font-family: Poppins, Poppins Fallback;
}

.poppins_ea5171cd-module__eIW34G__variable {
  --font-poppins: "Poppins", "Poppins Fallback";
}

/*# sourceMappingURL=%5Broot-of-the-server%5D__c7b4b46f._.css.map*/