/* ===== SECTION 3 — EXPLORE THE VEYRA WELLNESS ECOSYSTEM (Commerce) ===== */

/* — Foundation — */
.w-ecosystem-commerce {
  width: 100%;
  background: #FFFFFF;
  padding: 64px 0 72px;
}
.w-eco-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 52px;
}

/* — Header — */
.w-eco-header { text-align: center; margin-bottom: 40px; }
.w-eco-heading {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #040D2E;
  margin: 0;
}
.w-eco-accent {
  width: 80px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #099EF8 0%, #6B0DD8 48%, #FF6B35 100%);
  margin: 10px auto 16px;
}
.w-eco-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #667085;
  max-width: 680px;
  margin: 0 auto;
}

/* — Category Navigation — */
.w-cat-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}
.w-cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid #E2E8F0;
  border-radius: 999px;
  background: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #475467;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
}
.w-cat-tab:hover {
  border-color: #099EF8;
  color: #099EF8;
  transform: translateY(-1px);
}
.w-cat-tab.active {
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border-color: transparent;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(107, 13, 216, 0.16);
}
.w-cat-tab-icon { display: flex; align-items: center; justify-content: center; }
.w-cat-tab-icon svg { width: 18px; height: 18px; }

/* — Category Color Identity Variables — */
.w-cat-tab[data-cat="weight-management"]   { --cat-color: #0384AB; --cat-color-2: #19C6D3; }
.w-cat-tab[data-cat="hair-skin"]           { --cat-color: #C026D3; --cat-color-2: #EC4899; }
.w-cat-tab[data-cat="hormonal-health"]     { --cat-color: #F97316; --cat-color-2: #FF9F1C; }
.w-cat-tab[data-cat="energy-performance"]  { --cat-color: #099EF8; --cat-color-2: #2563EB; }
.w-cat-tab[data-cat="strength-recovery"]   { --cat-color: #061155; --cat-color-2: #2563EB; }
.w-cat-tab[data-cat="wellness-longevity"]  { --cat-color: #FFB700; --cat-color-2: #FFD700; }
.w-cat-tab[data-cat="peptides"]            { --cat-color: #6B0DD8; --cat-color-2: #8B2EE8; }

/* — Product Grid — */
.w-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* — Product Card — */
.w-product-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E5EAF2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(4, 13, 46, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.w-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(4, 13, 46, 0.12);
}

/* Card Image Area */
.w-product-card-img {
  height: 250px;
  background: linear-gradient(145deg, #FBFCFE, #F3F6FA);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.w-product-card-img img {
  object-fit: contain;
  max-width: 84%;
  max-height: 88%;
  display: block;
  transition: transform 300ms ease;
}
.w-product-card:hover .w-product-card-img img {
  transform: scale(1.04);
}

/* Badge */
.w-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  z-index: 2;
}
.w-product-badge.bestseller { background: linear-gradient(100deg, #0384AB, #19C6D3); }
.w-product-badge.featured   { background: linear-gradient(100deg, #099EF8, #2563EB); }
.w-product-badge.new        { background: linear-gradient(100deg, #6B0DD8, #8B2EE8); }

/* Card Body */
.w-product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.w-product-card-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #040D2E;
  margin: 0 0 6px;
  cursor: pointer;
  transition: color 150ms ease;
}
.w-product-card-title:hover { color: var(--card-accent, #099EF8); }

.w-product-card-form {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--card-accent, #099EF8);
  margin: 0 0 8px;
}

.w-product-card-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.45;
  color: #667085;
  margin: 0 0 16px;
  flex: 1;
}

/* Card Footer */
.w-product-card-footer {
  margin-bottom: 14px;
}
.w-product-card-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #040D2E;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.w-product-card-price-compare {
  font-size: 14px;
  font-weight: 400;
  color: #98A2B3;
  text-decoration: line-through;
}
.w-product-card-price-tbd {
  font-size: 18px;
  color: #667085;
}
.w-product-card-price-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #667085;
  margin-top: 2px;
}

/* Card Actions */
.w-product-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.w-btn-details {
  height: 44px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #DDE3ED;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #040D2E;
  cursor: pointer;
  transition: all 180ms ease;
}
.w-btn-details:hover {
  border-color: #099EF8;
  color: #099EF8;
}
.w-btn-addcart {
  height: 46px;
  width: 100%;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border: none;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 180ms ease;
  box-shadow: 0 4px 12px rgba(9, 158, 248, 0.2);
}
.w-btn-addcart:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(9, 158, 248, 0.3);
}
.w-btn-get-started {
  height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border: none;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
  transition: all 180ms ease;
  box-shadow: 0 4px 12px rgba(9, 158, 248, 0.2);
}
.w-btn-get-started:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(9, 158, 248, 0.3);
}
.w-btn-notify, .w-btn-waitlist {
  height: 46px;
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #DDE3ED;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #475467;
  cursor: pointer;
  transition: all 180ms ease;
}
.w-btn-notify:hover, .w-btn-waitlist:hover {
  border-color: #6B0DD8;
  color: #6B0DD8;
}

/* Sample tag */
.w-sample-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #FFF3CD;
  color: #856404;
}

/* Empty state */
.w-eco-empty {
  text-align: center;
  padding: 60px 20px;
  color: #667085;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
}

/* ===== QUICK VIEW MODAL ===== */
.w-qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 46, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  overflow: hidden;
}
.w-qv-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.w-qv-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(940px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(4, 13, 46, 0.25);
  overflow: hidden;
  z-index: 9001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease, transform 250ms ease;
}
.w-qv-overlay.open .w-qv-drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.w-qv-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(4, 13, 46, 0.12);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.w-qv-close:hover { background: #F3F6FA; }
.w-qv-close svg { width: 18px; height: 18px; color: #475467; }

.w-qv-content {
  display: block;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

/* Only the inner container owns the two-column grid */
.w-qv-content-inner {
  display: grid;
  grid-template-columns: minmax(0, 46%) minmax(0, 54%);
  width: 100%;
  min-width: 0;
  max-height: calc(100vh - 48px);
}

/* Quick View — Image Side */
.w-qv-media {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 40px;
  background: #f6f9fd;
  overflow: hidden;
}
.w-qv-media img {
  display: block;
  width: min(82%, 330px);
  max-width: 330px;
  max-height: 440px;
  object-fit: contain;
}

/* Quick View — Content Side */
.w-qv-details {
  min-width: 0;
  padding: 38px 42px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.w-qv-category {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.w-qv-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #040D2E;
  margin: 0 0 6px;
  line-height: 1.15;
}
.
.w-qv-descriptor {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 8px;
}
w-qv-form {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 16px;
}
.w-qv-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #040D2E;
  margin: 0 0 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.w-qv-price-compare {
  font-size: 16px;
  font-weight: 400;
  color: #98A2B3;
  text-decoration: line-through;
}
.w-qv-desc {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #475467;
  margin: 0 0 20px;
}
.w-qv-best-for {
  margin: 0 0 20px;
}
.w-qv-best-for-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #040D2E;
  margin: 0 0 6px;
}
.w-qv-best-for-text {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #475467;
  line-height: 1.5;
}
.w-qv-benefits {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.w-qv-benefits li {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  color: #344054;
  line-height: 1.5;
  padding: 6px 0 6px 24px;
  position: relative;
}
.w-qv-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  opacity: 0.15;
}
.w-qv-benefits li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
}

/* Quick View — Quantity + Add to Cart */
.w-qv-actions {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #E5EAF2;
}
.w-qv-quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.w-qv-quantity-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #040D2E;
}
.w-qv-quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #DDE3ED;
  border-radius: 8px;
  overflow: hidden;
}
.w-qv-quantity button {
  width: 34px;
  height: 34px;
  border: none;
  background: #F8FAFC;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #475467;
  cursor: pointer;
  transition: background 150ms ease;
}
.w-qv-quantity button:hover { background: #E5EAF2; }
.w-qv-quantity input {
  width: 44px;
  height: 34px;
  border: none;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #040D2E;
  -moz-appearance: textfield;
}
.w-qv-quantity input::-webkit-outer-spin-button,
.w-qv-quantity input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.w-qv-addcart {
  height: 50px;
  width: 100%;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 180ms ease;
  box-shadow: 0 6px 16px rgba(9, 158, 248, 0.22);
}
.w-qv-addcart:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(9, 158, 248, 0.3);
}
.w-qv-notify, .w-qv-waitlist {
  height: 50px;
  width: 100%;
  background: #F8FAFC;
  border: 1px solid #DDE3ED;
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #475467;
  cursor: pointer;
  transition: all 180ms ease;
}
.w-qv-notify:hover, .w-qv-waitlist:hover {
  border-color: #6B0DD8;
  color: #6B0DD8;
}
.w-qv-get-started {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border: none;
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  text-decoration: none;
  transition: all 180ms ease;
  box-shadow: 0 6px 16px rgba(9, 158, 248, 0.22);
}
.w-qv-get-started:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(9, 158, 248, 0.3);
}

/* ===== CART DRAWER ===== */
.w-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 13, 46, 0.45);
  backdrop-filter: blur(3px);
  z-index: 9100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  overflow: hidden;
}
.w-cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.w-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -10px 0 40px rgba(4, 13, 46, 0.15);
  z-index: 9101;
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.w-cart-overlay.open .w-cart-drawer {
  transform: translateX(0);
}
.w-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #E5EAF2;
}
.w-cart-title {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #040D2E;
  margin: 0;
}
.w-cart-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #F8FAFC;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms ease;
}
.w-cart-close:hover { background: #E5EAF2; }
.w-cart-close svg { width: 18px; height: 18px; color: #475467; }

.w-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.w-cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: #98A2B3;
}
.w-cart-empty p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 16px 0 4px;
  color: #475467;
}
.w-cart-empty-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  color: #98A2B3;
}

.w-cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F0F3F8;
  align-items: center;
}
.w-cart-item:last-child { border-bottom: none; }
.w-cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(145deg, #FBFCFE, #F3F6FA);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.w-cart-item-thumb img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.w-cart-item-info {
  flex: 1;
  min-width: 0;
}
.w-cart-item-name {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #040D2E;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w-cart-item-form {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #98A2B3;
  margin: 0 0 6px;
}
.w-cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.w-cart-item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #DDE3ED;
  border-radius: 6px;
  overflow: hidden;
}
.w-cart-item-qty button {
  width: 26px;
  height: 26px;
  border: none;
  background: #F8FAFC;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #475467;
  cursor: pointer;
}
.w-cart-item-qty button:hover { background: #E5EAF2; }
.w-cart-item-qty span {
  width: 30px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #040D2E;
}
.w-cart-item-price {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #040D2E;
}
.w-cart-item-remove {
  border: none;
  background: none;
  color: #98A2B3;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: color 150ms ease;
  padding: 4px;
}
.w-cart-item-remove:hover { color: #E5484D; }

.w-cart-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid #E5EAF2;
}
.w-cart-subtotal {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.w-cart-subtotal-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #040D2E;
}
.w-cart-subtotal-amount {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #040D2E;
}
.w-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.w-cart-continue {
  height: 44px;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid #DDE3ED;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #040D2E;
  cursor: pointer;
  transition: all 180ms ease;
}
.w-cart-continue:hover { border-color: #099EF8; color: #099EF8; }
.w-cart-checkout {
  height: 48px;
  width: 100%;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  border: none;
  border-radius: 9px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 180ms ease;
  box-shadow: 0 4px 14px rgba(9, 158, 248, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.w-cart-checkout:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(9, 158, 248, 0.3);
}

/* Floating Cart Button */
.w-cart-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(100deg, #099EF8, #6B0DD8);
  box-shadow: 0 8px 24px rgba(9, 158, 248, 0.3);
  cursor: pointer;
  z-index: 8500;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform 200ms ease, opacity 300ms ease, visibility 300ms ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Show FAB when cart has items OR product ecosystem is in view */
.cart-has-items .w-cart-fab,
.commerce-in-view .w-cart-fab {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.w-cart-fab:hover { transform: scale(1.08); }
.w-cart-fab svg { width: 24px; height: 24px; }
.w-cart-fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #FF6B35;
  color: #FFFFFF;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

/* ===== TABLET 1024px ===== */
@media (max-width: 1024px) {
  .w-eco-inner { padding: 0 32px; }
  .w-product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .w-qv-drawer { width: min(940px, calc(100vw - 32px)); }
  .w-qv-content-inner { grid-template-columns: minmax(0, 42%) minmax(0, 58%); }
}

/* ===== TABLET 768px ===== */
@media (max-width: 768px) {
  .w-eco-inner { padding: 0 24px; }
  .w-ecosystem-commerce { padding: 48px 0 56px; }
  .w-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .w-qv-drawer { width: calc(100vw - 24px); max-height: calc(100vh - 24px); }
  .w-qv-content-inner {
    display: grid;
    grid-template-columns: 1fr;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }
  .w-qv-media {
    min-height: 240px;
    padding: 24px;
  }
  .w-qv-media img {
    width: min(72%, 240px);
    max-height: 260px;
  }
  .w-qv-details {
    overflow: visible;
    padding: 26px 24px 30px;
  }
  .w-qv-title { font-size: 24px; }
}

/* ===== MOBILE 430px ===== */
@media (max-width: 480px) {
  .w-eco-inner { padding: 0 18px; }
  .w-ecosystem-commerce { padding: 40px 0 48px; }
  .w-eco-header { margin-bottom: 28px; }
  .w-eco-heading { font-size: 15px; letter-spacing: 0.20em; }
  .w-eco-sub { font-size: 14px; }
  .w-cat-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 4px;
  }
  .w-cat-nav::-webkit-scrollbar { display: none; }
  .w-cat-tab {
    flex-shrink: 0;
    padding: 0 16px;
    font-size: 13px;
  }
  .w-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .w-product-card-img { height: 220px; }
  .w-product-card-title { font-size: 16px; }
  .w-product-card-desc { font-size: 13px; }

  .w-qv-drawer {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .w-qv-drawer {
    width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .w-qv-content-inner {
    max-height: 100vh;
    overflow-y: auto;
  }
  .w-qv-details { padding: 20px 18px 24px; }
  .w-qv-title { font-size: 22px; }
  .w-qv-desc { font-size: 14px; }

  .w-cart-drawer { width: 100vw; }
  .w-cart-fab { bottom: calc(14px + env(safe-area-inset-bottom)); right: 14px; width: 52px; height: 52px; }
}

/* Treatment represented line in Quick View */
.w-qv-treatment {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  font-style: normal;
  color: #667085;
  margin: 0 0 16px;
}
.w-qv-treatment-label {
  font-weight: 600;
  color: #667085;
}
