/** Shopify CDN: Minification failed

Line 1630:0 Unexpected "}"

**/
/**
 * IVG Pro — Exact Theme Styles
 */

/* ── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  --page-width: 1440px;
  --page-margin: 24px;
}

/* ── Container & Global Reset ──────────────────────────────────────────────── */
.container {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--page-margin);
  padding-right: var(--page-margin);
  width: 100%;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-primary--family);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  touch-action: manipulation;
  min-height: 40px;
}

.btn-primary,
.btn-accent {
  background-color: #111111;
  color: #FFFFFF;
  border-color: #111111;
}

.btn-primary:hover,
.btn-accent:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn-pill-white {
  background-color: #FFFFFF;
  color: var(--color-foreground);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  font-weight: 500;
}

.btn-pill-white:hover {
  background-color: #F0F0F0;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-foreground);
  border-color: var(--color-border);
}

.btn-secondary:hover {
  background-color: var(--color-bg-secondary);
}

.btn-full {
  width: 100%;
}

/* ── Badges ──────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 4px;
  line-height: 1;
}

.badge-sale {
  background-color: var(--color-sale);
  color: #FFFFFF;
}

/* ── Section Headings ────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.section-header__title-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-header__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-foreground);
}

.section-header__link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.section-header__link:hover {
  color: var(--color-accent);
}

/* ── Product Grid ────────────────────────────────────────────────────────── */
.product-grid,
.product-grid-4,
.product-grid-5 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 744px) {

  .product-grid,
  .product-grid-4,
  .product-grid-5 {
    gap: 16px;
  }

  .product-grid,
  .product-grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {

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

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

/* ── Product Card (Matching Reference Design) ───────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 8px;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  height: 100%;
}

@media (min-width: 744px) {
  .product-card {
    padding: 12px;
  }
}

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

.product-card__link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Ensure interactive elements sit above the link overlay */
.product-card__wishlist,
.product-card__form {
  position: relative;
  z-index: 2;
  margin-top: auto;
}

.product-card__top {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.product-card__wishlist {
  background: #FFFFFF;
  border: none;
  color: #DDDDDD;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease;
  outline: none;
}

.product-card__wishlist:hover,
.product-card__wishlist.is-active {
  color: var(--color-accent, var(--color-accent));
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(2, 143, 1, 0.15);
}

.product-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 160px;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.product-card__image-wrapper img,
.product-card__image {
  max-width: 100%;
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-card__image-wrapper svg {
  width: 80px;
  height: 80px;
  max-width: 80px;
  max-height: 80px;
}

.product-card__title {
  font-size: 13px;
  min-height: 34px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-foreground);
  text-decoration: none;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Fixed height = 2 lines × 1.3 line-height × 13px = 33.8px, rounded up */
  min-height: calc(13px * 1.3 * 2);
}

.product-card__title:hover {
  color: var(--color-accent);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.product-card__rating-star {
  color: #FFB800;
}

.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.product-card__price {
  font-size: 15px;
  font-weight: 500;
  color: #111111;
}

.product-card__compare-price {
  font-size: 12px;
  color: #999999;
  text-decoration: line-through;
}

.product-card__add-btn {
  background-color: transparent;
  color: #111111;
  border: 1px solid #DDDDDD;
  border-radius: var(--radius-md);
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.product-card__add-btn:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
}

/* ── Circular Category Icon Tiles ────────────────────────────────────────── */
.category-circle-grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding-bottom: 8px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.category-circle-grid::-webkit-scrollbar {
  display: none;
}

.category-circle-item {
  flex-shrink: 0;
  scroll-snap-align: start;
}

@media (min-width: 744px) {
  .category-circle-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    overflow-x: visible;
  }
}

.category-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  gap: 10px;
}

.category-circle-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--color-bg-soft-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.category-circle-item:hover .category-circle-icon {
  transform: translateY(-4px);
  background-color: var(--color-accent);
  color: #FFFFFF;
}

.category-circle-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-foreground);
  line-height: 1.2;
}

/* ── Brand Rectangular Cards Row ─────────────────────────────────────────── */
.brand-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (min-width: 480px) {
  .brand-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 744px) {
  .brand-card-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
}

.brand-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 13px;
  color: var(--color-foreground);
  text-decoration: none;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
  text-align: center;
}

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

/* ── 4 White Trust Cards ─────────────────────────────────────────────────── */
.trust-cards-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 744px) {
  .trust-cards-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.trust-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-bg-soft-blue);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-foreground);
}

.trust-card__subtitle {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ── Secondary Light Green Trust Cards ────────────────────────────────────── */
.trust-cards-green {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

@media (min-width: 744px) {
  .trust-cards-green {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.trust-card-green {
  background-color: #e6f0ff;
  border: 1px solid #F8BBD0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-card-green .trust-card__icon {
  background-color: #FFFFFF;
}

/* ── Newsletter Full Width Green Section ──────────────────────────────────── */
.newsletter-banner {
  background-color: var(--color-accent);
  color: #FFFFFF;
  padding: 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 744px) {
  .newsletter-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.newsletter-banner__left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsletter-banner__icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.newsletter-banner__title {
  font-size: 20px;
  font-weight: 500;
}

.newsletter-banner__subtitle {
  font-size: 13px;
  opacity: 0.9;
  margin-top: 2px;
}

.newsletter-banner__form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}

.newsletter-banner__input {
  flex-grow: 1;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: none;
  font-size: 14px;
}

.newsletter-banner__btn {
  background-color: #111111;
  color: #FFFFFF;
  border: none;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: var(--radius-md);
  cursor: pointer;
}

.newsletter-banner__btn:hover {
  background-color: #222222;
}

/* ── Countdown Badge ──────────────────────────────────────────────────────── */
.countdown-badge {
  display: inline-flex;
  align-items: center;
  background-color: #FFF0F2;
  color: var(--color-accent);
  padding: 4px 8px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  gap: 2px;
}

@media (min-width: 744px) {
  .countdown-badge {
    padding: 6px 12px;
    font-size: 13px;
    gap: 4px;
  }
}

.countdown-box {
  background-color: var(--color-accent);
  color: #FFFFFF;
  padding: 2px 4px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 11px;
  min-width: 20px;
  text-align: center;
}

@media (min-width: 744px) {
  .countdown-box {
    padding: 2px 6px;
    font-size: 13px;
    min-width: 24px;
  }
}

.countdown-unit {
  font-size: 10px;
  font-weight: 500;
  margin-right: 2px;
  color: var(--color-accent);
}

@media (min-width: 744px) {
  .countdown-unit {
    font-size: 12px;
  }
}

/* ── Drawers (Wishlist & Cart Slide-Out) ─────────────────────────────────── */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
  transition: visibility var(--transition-medium);
}

.drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.drawer__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  backdrop-filter: blur(2px);
  transition: opacity var(--transition-medium);
}

.drawer.is-open .drawer__overlay {
  opacity: 1;
}

.drawer__inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform var(--transition-medium) cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.drawer.is-open .drawer__inner {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-border);
  background-color: #FAFAFA;
}

.drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer__title {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-foreground);
  margin: 0;
}

.drawer__count-badge {
  background-color: var(--color-accent);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 12px;
}

.drawer__close-btn {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #666666;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color var(--transition-fast);
}

.drawer__close-btn:hover {
  color: var(--color-foreground);
}

.drawer__body {
  overflow-x: hidden;
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer__empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  margin: auto;
}

.drawer__empty-state .empty-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.drawer__empty-state h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
}

.drawer__empty-state p {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ── Free Shipping Progress Bar ─────────────────────────────────────────── */
.free-shipping-bar {
  background-color: #e6f0ff;
  border-bottom: 1px solid #F8BBD0;
  padding: 12px 20px;
  text-align: center;
}

.free-shipping-bar__text {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent-hover);
  margin-bottom: 6px;
}

.free-shipping-bar__progress {
  width: 100%;
  height: 6px;
  background-color: #E0E0E0;
  border-radius: 3px;
  overflow: hidden;
}

.free-shipping-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, #111111, var(--color-accent));
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* ── Wishlist Drawer Items ───────────────────────────────────────────────── */
.wishlist-drawer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
}

.wishlist-drawer-item__image-wrap {
  width: 64px;
  height: 64px;
  background-color: #F8F9FA;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wishlist-drawer-item__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.wishlist-drawer-item__info {
  flex-grow: 1;
}

.wishlist-drawer-item__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.wishlist-drawer-item__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.wishlist-drawer-item__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wishlist-drawer-item__add-btn {
  padding: 6px 12px;
  font-size: 11px;
}

.wishlist-drawer-item__remove-btn {
  background: none;
  border: none;
  color: #999999;
  font-size: 11px;
  cursor: pointer;
  padding: 4px;
  text-decoration: underline;
}

.wishlist-drawer-item__remove-btn:hover {
  color: var(--color-accent);
}

/* ── Cart Drawer Items ───────────────────────────────────────────────────── */
.cart-drawer-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
}

.cart-drawer-item__image-wrap {
  width: 70px;
  height: 70px;
  background-color: #F8F9FA;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-drawer-item__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-drawer-item__info {
  flex-grow: 1;
}

.cart-drawer-item__title {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
  display: block;
  line-height: 1.3;
}

.cart-drawer-item__variant {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.cart-drawer-item__price {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-accent);
  margin-top: 4px;
  margin-bottom: 8px;
}

.cart-drawer-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
}

.mini-stepper .qty-btn {
  width: 26px;
  height: 26px;
  font-size: 14px;
  border: none;
  background-color: #F5F5F5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-stepper .qty-btn:hover {
  background-color: #E0E0E0;
}

.mini-stepper .qty-val {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 500;
}

.cart-drawer-item__remove {
  background: none;
  border: none;
  color: #999999;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-drawer-item__remove:hover {
  color: var(--color-accent);
}

/* ── Cart Drawer Footer ──────────────────────────────────────────────────── */
.drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background-color: #FAFAFA;
}

.drawer__subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}

.subtotal-amount {
  color: var(--color-accent);
}

.drawer__tax-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.cart-drawer__checkout-btn {
  font-size: 15px;
  padding: 14px;
  letter-spacing: 0.02em;
}

.cart-drawer__view-cart {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #666666;
  text-decoration: underline;
  margin-top: 12px;
}

/* ── Cart Page Styles ────────────────────────────────────────────────────── */
.cart-page-section {
  padding: 32px 0 60px 0;
}

.cart-page-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
}

.cart-page-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
}

.cart-page-count {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
}

.cart-page-shipping-bar {
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.cart-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 900px) {
  .cart-page-layout {
    grid-template-columns: 1fr 340px;
  }
}

.cart-items-table {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
}

.cart-table-header {
  display: grid;
  grid-template-columns: 3fr 1fr 1.2fr 1fr;
  padding: 14px 20px;
  background-color: #FAFAFA;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.cart-item-row {
  display: grid;
  grid-template-columns: 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  align-items: center;
  gap: 12px;
}

@media (min-width: 744px) {
  .cart-item-row {
    grid-template-columns: 3fr 1fr 1.2fr 1fr;
    gap: 0;
  }

  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 743px) {
  .desktop-only {
    display: none !important;
  }
}

.cart-item-col.col-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-item-img-wrap {
  width: 72px;
  height: 72px;
  background-color: #F8F9FA;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cart-item-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-foreground);
  text-decoration: none;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.cart-item-remove-btn {
  background: none;
  border: none;
  color: #999999;
  font-size: 11px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 0;
}

.cart-item-remove-btn:hover {
  color: var(--color-accent);
}

.cart-item-unit-price,
.cart-item-line-price {
  font-size: 14px;
  font-weight: 500;
}

.cart-summary-card {
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 20px;
}

.cart-summary-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.summary-divider {
  height: 1px;
  background-color: var(--color-border);
  margin: 16px 0;
}

.summary-line.total-line {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.summary-tax-note {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.checkout-cta-btn {
  padding: 14px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.cart-trust-badges {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.cart-page-empty {
  text-align: center;
  padding: 60px 20px;
  background-color: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 12px;
}

.cart-page-empty .empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
}

/* ── Skeleton Loading System ─────────────────────────────────────────────── */
.skeleton-loading {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0;
  /* Default background color for skeleton */
  border-radius: 4px;
  /* Optional default radius */
  pointer-events: none;
}

.skeleton-loading>* {
  visibility: hidden;
  opacity: 0;
}

.skeleton-loading::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.4) 20%,
      rgba(255, 255, 255, 0.7) 60%,
      rgba(255, 255, 255, 0) 100%);
  animation: shimmer 1.5s infinite;
  z-index: 10;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-loading::after {
    animation: none;
    background-image: none;
  }
}

/* Specific component overrides for skeletons to maintain dimensions */
.skeleton-loading.product-card__image-wrapper {
  background-color: #FFFFFF;
  border-radius: 8px;
}

.skeleton-loading.product-card__title {
  min-height: 16px;
  width: 80%;
  margin-bottom: 8px;
}

.skeleton-loading.product-card__rating {
  min-height: 12px;
  width: 50%;
  margin-bottom: 8px;
}

.skeleton-loading.product-card__price-row {
  min-height: 20px;
  width: 40%;
  margin-bottom: 12px;
}

.skeleton-loading.product-card__add-btn {
  color: transparent !important;
  background-color: #e0e0e0 !important;
  border-color: #e0e0e0 !important;
}

/* ── Collection Bottom SEO Block ───────────────────────────── */
.collection-seo-content {
  margin-top: 40px;
  color: var(--color-foreground);
}

.collection-seo-content .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.collection-seo-content h2,
.collection-seo-content h3,
.collection-seo-content h4 {
  color: var(--color-foreground);
  font-weight: 500;
  margin-bottom: 12px;
  margin-top: 24px;
}

.collection-seo-content h2:first-child {
  margin-top: 0;
}

.collection-seo-content p {
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.collection-seo-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.collection-seo-content li {
  margin-bottom: 8px;
}



/* ── SEO Highlight Box (Featured Snippet Style) ───────────────────────────── */
.seo-highlight-box {
  border-left: 4px solid var(--color-accent, var(--color-accent));
  padding: 20px 24px;
  background-color: #FFFFFF;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.seo-highlight-box h3 {
  color: var(--color-accent, var(--color-accent)) !important;
  font-size: 18px !important;
  margin-top: 0 !important;
  margin-bottom: 10px !important;
}

.seo-highlight-box p:last-child {
  margin-bottom: 0;
}

.collection-seo-content h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #111111;

  padding-bottom: 12px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.collection-seo-content h2:first-child {
  margin-top: 0;
}

.collection-seo-content h3 {
  font-size: 18px;
  color: #111111;
  margin-top: 32px;
  margin-bottom: 12px;
}

/* ── Collection Layout (Sidebar + Grid) ───────────────────────────── */
.collection-main-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .collection-main-layout {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* Sidebar Filters */
.collection-sidebar {
  width: 100%;
  background-color: #FAFAFA;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  padding: 24px;
}

@media (min-width: 900px) {
  .collection-sidebar {
    width: 260px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
    /* sticky scroll */
  }
}

.collection-grid-wrap {
  flex-grow: 1;
  width: 100%;
}

.filter-group {
  margin-bottom: 24px;

  padding-bottom: 16px;
}

.filter-group:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.filter-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 15px;
  color: #111111;
}

.filter-group__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #444444;
  cursor: pointer;
}

.filter-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--color-accent, var(--color-accent));
}

.filter-price-range {
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-price-range input {
  width: 100%;
  padding: 8px;
  border: 1px solid #DDDDDD;
  border-radius: 6px;
  font-size: 13px;
}

.filter-apply-btn {
  width: 100%;
  margin-top: 16px;
}

/* ── FAQ Accordion (Details/Summary) ───────────────────────────── */
.faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item[open] {
  border-color: var(--color-accent, var(--color-accent));
  box-shadow: 0 4px 12px rgba(2, 143, 1, 0.08);
}

.faq-item summary {
  padding: 16px 48px 16px 20px;
  font-weight: 500;
  font-size: 15px;
  color: #111111;
  cursor: pointer;
  list-style: none;
  /* Hide default triangle in many browsers */
  position: relative;
  outline: none;
}

/* Custom Icon */
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--color-accent, var(--color-accent));
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

/* Hide webkit details marker */
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item__content {
  padding: 0 20px 20px 20px;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

/* If used inside collection SEO content */
.collection-seo-content .faq-item {
  margin-bottom: 16px;
}

/* ── Collection SEO Content Link Fixes ───────────────────────────── */
.collection-seo-content a {
  color: var(--color-accent, var(--color-accent));
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.collection-seo-content a:hover {
  opacity: 0.7;
  text-decoration: underline;
}


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

/* ==========================================================================
   PRODUCT PAGE V2 (CONFIGURATOR UI)
   ========================================================================== */

.product-page-v2 {
  padding-top: 48px;
  padding-bottom: 60px;
  background-color: #FFFFFF;
}

.product-summary-right,
.product-highlights-card,
.product-info-card {
  padding: 24px;
}

@media (max-width: 768px) {
  .product-page-v2 {
    padding-top: 8px;
  }

  .product-page-v2 .container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .product-summary-right,
  .product-highlights-card,
  .product-info-card {
    padding: 12px;
  }
}

.product-layout-v2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 60px;
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}


.product-summary-right {
  position: static;
}

@media (min-width: 1024px) {
  .product-layout-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    /* DO NOT set align-items here — cells must stretch to full grid height so sticky can work */
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1280px) {
  .product-layout-v2 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

/* ── Left Column: Media ── */
.product-gallery-v2 {
  position: static;
  /* Do not add align-self: start here! We want this cell to stretch the full height of the grid. */
}

@media (min-width: 1024px) {
  .product-gallery-sticky-wrapper {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    height: fit-content;
  }

  .product-gallery-v2.has-thumbs .product-gallery-sticky-wrapper {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: start;
  }
}

@media (max-width: 1023px) {
  .product-gallery-v2.has-thumbs .product-gallery-sticky-wrapper {
    display: flex;
    flex-direction: column;
  }
}

.product-gallery__main-wrap {
  order: 1;
  background-color: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  min-height: 400px;
}

@media (max-width: 768px) {
  .product-gallery__main-wrap {
    min-height: 250px;
  }
}

/* ── Instant Gallery Image Switcher ── */
.product-gallery__main-img {
  grid-area: 1 / 1;
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  background: #fff;
  /* padding: 24px; */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .product-gallery__main-img {
    max-height: 280px;
  }
}

.product-gallery__main-img.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}


.product-gallery__thumbs {
  order: 2;
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
}

@media (min-width: 1024px) {
  .product-gallery__thumbs {
    order: -1;
    flex-direction: column;
    margin-top: 0;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 480px;
    padding-bottom: 0;
    padding-right: 8px;
  }
}

.product-gallery__thumbs::-webkit-scrollbar {
  height: 4px;
}

.product-gallery__thumbs::-webkit-scrollbar-thumb {
  background: #DDDDDD;
  border-radius: 4px;
}

.thumb-btn {
  background: #F8F9FA;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px;
  min-width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-btn img {
  max-height: 100%;
  object-fit: contain;
}

.thumb-btn:hover {
  border-color: #CCCCCC;
}

.thumb-btn.active {
  border-color: var(--color-accent, var(--color-accent));
  background: #FFFFFF;
  box-shadow: 0 4px 12px rgba(2, 143, 1, 0.1);
}

/* ── Reference Inspired Trust List ── */
.gallery-trust-signals {
  margin-top: 48px;
}

.trust-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #111111;
}

.trust-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trust-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.trust-checklist svg {
  color: var(--color-accent, var(--color-accent));
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  height: 20px;
}

.trust-checklist div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-checklist strong {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}

.trust-checklist span {
  font-size: 13px;
  color: #666666;
  line-height: 1.4;
}

/* ── Right Column: Configurator ── */
.config-header {
  margin-bottom: 0;
}

.config-vendor {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent, var(--color-accent));
  text-decoration: none;
  margin-bottom: 8px;
  display: inline-block;
}

.config-title {
  font-size: 22px;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.config-subtitle {
  font-size: 15px;
  color: #666666;
  margin-bottom: 16px;
}

.config-reviews {
  display: flex;
  align-items: center;
  gap: 8px;
}

.config-reviews .star-rating {
  color: #FFB800;
  font-size: 16px;
}

.config-reviews .rating-text {
  font-size: 13px;
  font-weight: 500;
  color: #444444;
}

/* ── Step-Based Options ── */
.config-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.config-step-block {
  background: #FFFFFF;

  padding-bottom: 24px;
}

.config-step-block:last-child {
  border-bottom: none;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #CCCCCC;
  font-size: 13px;
  font-weight: 500;
  color: #555555;
}

.step-title {
  font-size: 16px;
  font-weight: 500;
  color: #111111;
}

.step-options {
  padding-left: 40px;
  /* Aligns with text next to circle */
}

/* ── Summary & Purchase Block ── */
.config-summary-block {
  background: #F8F9FA;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  border: 1px solid #EEEEEE;
}

.summary-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.summary-price-label {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.summary-price-values {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.summary-price-values .product-details__price {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-accent, var(--color-accent));
}

.summary-price-values .product-details__compare-price {
  font-size: 16px;
  color: #999999;
  text-decoration: line-through;
}

.summary-tax-note {
  font-size: 12px;
  color: #666666;
  text-align: right;
  margin-bottom: 24px;
}

.summary-stock {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 24px;
  background: #FFFFFF;
  padding: 12px 16px;
  border-radius: 8px;
}

.pdp-trust-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  background-color: #F8F9FA;
  border: 1px solid #EEEEEE;
  padding: 16px;
  border-radius: 12px;
}

.pdp-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.pdp-feature-icon {
  width: 28px;
  height: 28px;
  background-color: #e6f0ff;
  color: var(--color-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pdp-feature-icon svg {
  width: 14px;
  height: 14px;
}

.pdp-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdp-feature-text strong {
  font-size: 12px;
  color: #111111;
  line-height: 1.2;
}

.pdp-feature-text span {
  font-size: 10px;
  color: #666666;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .pdp-trust-features {
    grid-template-columns: 1fr;
  }
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-qty-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-qty-wrap label {
  font-size: 14px;
  font-weight: 500;
  color: #111111;
}

.summary-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 480px) {
  .summary-buttons {
    grid-template-columns: 1fr 1fr;
  }
}

.summary-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #666666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ── Tabs / Accordions ── */
.config-accordions {
  border-top: 1px solid #EEEEEE;
  padding-top: 32px;
}


/* Ensure buttons in the summary block stack correctly in 3-column layout */
.summary-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.summary-buttons .btn {
  width: 100%;
}

/* ==========================================================================
   PRODUCT DESCRIPTION RICH TEXT (TYPOGRAPHY)
   ========================================================================== */

.product-description-content {
  color: #444444;
  font-size: 15px;
  line-height: 1.7;
}

.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content h5 {
  color: #111111;
  font-weight: 500;
  margin-top: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.product-description-content h2:first-child,
.product-description-content h3:first-child,
.product-description-content h4:first-child {
  margin-top: 0;
}

.product-description-content h2 {
  font-size: 20px;
}

.product-description-content h3 {
  font-size: 18px;
}

.product-description-content h4 {
  font-size: 16px;
}

.product-description-content p {
  margin-bottom: 16px;
}

.product-description-content p:last-child {
  margin-bottom: 0;
}

.product-description-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.product-description-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

.product-description-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--color-accent, var(--color-accent));
  font-size: 18px;
  font-weight: 500;
}

.product-description-content ol {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  counter-reset: list-counter;
}

.product-description-content ol li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
}

.product-description-content ol li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent, var(--color-accent));
  font-weight: 500;
  font-size: 14px;
}

.product-description-content strong,
.product-description-content b {
  color: #111111;
  font-weight: 500;
}

.product-description-content a {
  color: var(--color-accent, var(--color-accent));
  text-decoration: underline;
  text-underline-offset: 2px;
}

.product-description-content a:hover {
  opacity: 0.8;
}

/* ── Product Specs Table ── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  background-color: #FAFAFA;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #EEEEEE;
}

.specs-table tr {}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: #555555;
  width: 50%;
}

.specs-table td:first-child {
  color: #888888;
  font-weight: 500;
}

.specs-table td strong {
  color: #111111;
  font-weight: 500;
}


/* ── Premium Quantity Stepper (PDP) ── */
.quantity-stepper {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  overflow: hidden;
  height: 44px;
}

.quantity-stepper .qty-btn {
  background: #FFFFFF;
  border: none;
  width: 44px;
  height: 100%;
  font-size: 18px;
  font-weight: 500;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  padding: 0;
  outline: none;
}

.quantity-stepper .qty-btn:hover {
  background: #F5F5F5;
}

.quantity-stepper .quantity-input {
  width: 50px;
  height: 100%;
  border: none;
  border-left: 1px solid #EEEEEE;
  border-right: 1px solid #EEEEEE;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-appearance: textfield;
  outline: none;
  vertical-align: middle;
}

.quantity-stepper .quantity-input::-webkit-outer-spin-button,
.quantity-stepper .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Buy Now Button ── */
.btn-buy-now {
  background-color: #111111;
  color: #FFFFFF;
  border: 1px solid #111111;
}

.btn-buy-now:hover {
  background-color: #333333;
  border-color: #333333;
  color: #FFFFFF;
}

/* ── Large Action Buttons ── */
.btn-large {
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  height: 52px;
}


h2,
.h2 {
  font-weight: 500 !important;
}


/* Global Boldness Cap */
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
th,
dt,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: 500 !important;
}

/* ── Product Slider (Horizontal Scroll) ───────────────────────────── */
.product-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding-bottom: 24px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}

.product-slider .product-card {
  flex: 0 0 calc(20% - 12.8px);
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .product-slider .product-card {
    flex: 0 0 calc(25% - 12px);
  }
}

@media (max-width: 900px) {
  .product-slider .product-card {
    flex: 0 0 calc(33.333% - 10.66px);
  }
}

@media (max-width: 600px) {
  .product-slider .product-card {
    flex: 0 0 calc(50% - 8px);
  }
}

/* Custom CSS for Product Card and Add to Bag button */
.product-card,
.card {
  border: 2px solid #a5d6a7 !important;
}

.product-card .product-card__add-btn,
.card .product-card__add-btn {
  background-color: #e8f5e9 !important;
  border-color: #c8e6c9 !important;
  color: #1b5e20 !important;
}

.product-card .product-card__add-btn:hover,
.card .product-card__add-btn:hover {
  background-color: #c8e6c9 !important;
}

/* Responsive Display Utilities for Product V2 */
@media (max-width: 1023px) {
  .desktop-only {
    display: none !important;
  }

  .product-layout-v2 {
    display: flex;
    flex-direction: column;
  }

  .product-gallery-v2 {
    order: 2;
  }

  .product-summary-right {
    order: 3;
  }

  .product-configurator-middle {
    order: 4;
    margin-top: 24px;
  }
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }

  /* Reset orders so grid layout works correctly — gallery col 1, configurator col 2 */
  .product-gallery-v2 {
    order: 0;
  }

  .product-configurator-middle {
    order: 0;
    margin-top: 0;
  }

  .product-summary-right {
    order: 0;
  }
}


@media (max-width: 899px) {
  .collection-sidebar {
    padding: 16px 12px;
  }

  .filter-sidebar-header {
    margin-bottom: 12px !important;
  }

  .filter-group {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .filter-group__header {
    margin-bottom: 8px;
  }

  .filter-group__list {
    gap: 6px;
  }

  .filter-apply-btn {
    margin-top: 12px;
    padding: 10px;
  }
}


/* Mobile Filter Accordion Styles */
.filter-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  /* Hide default triangle */
}

.filter-summary::-webkit-details-marker {
  display: none;
  /* Hide default triangle in Safari */
}

.filter-summary .filter-toggle-icon {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

details[open].filter-details .filter-toggle-icon {
  transform: rotate(180deg);
}

@media (min-width: 900px) {
  .filter-summary {
    pointer-events: none;
    /* Keep open on desktop, no toggle */
  }

  .filter-summary .filter-toggle-icon {
    display: none;
  }
}

@media (max-width: 899px) {
  .filter-details {
    background-color: #FAFAFA;
    border: 1px solid #EEEEEE;
    border-radius: 12px;
  }

  .collection-sidebar {
    padding: 16px;
    /* Remove padding from sidebar so details can handle it if we want, 
       but sidebar has the border/bg. Wait, the sidebar itself is the card. */
  }
}


/* Enhanced Mobile Filter UI */
@media (max-width: 899px) {
  .collection-sidebar {
    padding: 0 !important;
    /* Remove outer padding so button is flush */
    background: transparent !important;
    border: none !important;
    margin-bottom: 24px;
  }

  .filter-details {
    background-color: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
  }

  .mobile-filter-btn {
    padding: 16px 20px !important;
    background-color: #FAFAFA;
    border-bottom: 1px solid transparent;
    transition: background-color 0.2s;
  }

  details[open].filter-details .mobile-filter-btn {
    border-bottom: 1px solid #E5E7EB;
    background-color: #ffffff;
  }

  .filter-form {
    padding: 20px;
  }
}

@media (min-width: 900px) {
  .mobile-filter-btn {
    padding: 0;
  }

  .mobile-filter-btn svg:first-child {
    display: none;
    /* Hide the filter icon on desktop if we just want "Filters" */
  }
}


@media (max-width: 899px) {
  .desktop-reset-only {
    display: none !important;
  }
}


/* Premium Add To Bag Button */
.pdp-add-btn {
  flex: 1;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  padding: 16px 24px;
  height: 56px;
}

.pdp-add-btn:hover:not(:disabled) {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pdp-add-btn:disabled {
  background: #E5E7EB !important;
  color: #9CA3AF !important;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pdp-add-btn.is-loading {
  color: transparent !important;
  position: relative;
}

.pdp-add-btn.is-added {
  background: #10B981 !important;
  color: #fff !important;
}


/* Form as plain block — does not disrupt the grid or sticky inside product-layout-v2 */
.product-form-v2 {
  display: block;
  width: 100%;
}

/* Specs Table Styling */
.specs-table-wrapper table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin-top: 16px !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 12px !important;
  background: #F9FAFB !important;
  overflow: hidden !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.01) !important;
}

.specs-table-wrapper table *,
.specs-table-wrapper th,
.specs-table-wrapper td {
  border: none !important;
}

.specs-table-wrapper tbody {
  background: transparent !important;
}

.specs-table-wrapper tr {
  border-bottom: 1px solid #E5E7EB !important;
  background: transparent !important;
}

.specs-table-wrapper tr:last-child {
  border-bottom: none !important;
}

.specs-table-wrapper td,
.specs-table-wrapper th {
  padding: 16px 20px !important;
  vertical-align: top !important;
  background: transparent !important;
}

.specs-table-wrapper td:first-child {
  width: 40% !important;
  color: #6B7280 !important;
}

.specs-table-wrapper td:last-child {
  width: 60% !important;
  color: #111 !important;
  font-weight: 600 !important;
}

/* ── Global Table Styles for SEO Content, Specs & RTE Pages ───────────────── */
.collection-seo-content table,
.rte table,
table.comparison-table,
.specs-table-wrapper table,
table[border] {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 28px 0 !important;
  font-size: 14px !important;
  background-color: #ffffff !important;
  border: 1px solid #E5E7EB !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.04), 0 1px 2px 0 rgba(0, 0, 0, 0.02) !important;
}

.collection-seo-content,
.rte {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.collection-seo-content th,
.rte th,
table.comparison-table th,
.specs-table-wrapper th,
table[border] th {
  background-color: #F8FAFC !important;
  color: #1F2937 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 14px 20px !important;
  text-align: left !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #E5E7EB !important;
}

.collection-seo-content td,
.rte td,
table.comparison-table td,
.specs-table-wrapper td,
table[border] td {
  padding: 14px 20px !important;
  color: #4B5563 !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  vertical-align: middle !important;
  border-top: none !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: 1px solid #F3F4F6 !important;
  background-color: transparent !important;
}

.collection-seo-content td:first-child,
.rte td:first-child,
table.comparison-table td:first-child,
table[border] td:first-child {
  font-weight: 600 !important;
  color: #111827 !important;
}

.collection-seo-content tbody tr:last-child td,
.rte tbody tr:last-child td,
table.comparison-table tbody tr:last-child td,
.specs-table-wrapper tbody tr:last-child td,
table[border] tbody tr:last-child td {
  border-bottom: none !important;
}

.collection-seo-content tbody tr,
.rte tbody tr,
table.comparison-table tbody tr,
table[border] tbody tr {
  transition: background-color 0.15s ease-in-out;
}

.collection-seo-content tbody tr:nth-child(even),
.rte tbody tr:nth-child(even),
table.comparison-table tbody tr:nth-child(even),
table[border] tbody tr:nth-child(even) {
  background-color: #FAFAFA !important;
}

.collection-seo-content tbody tr:hover,
.rte tbody tr:hover,
table.comparison-table tbody tr:hover,
table[border] tbody tr:hover {
  background-color: #F3F4F6 !important;
}


/* Word wrap fixes for layout integrity */
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span {
  overflow-wrap: break-word;
  word-break: break-word;
}

@media (min-width: 900px) {
  .collection-main-layout {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  .collection-sidebar {
    width: 240px !important;
    flex-shrink: 0 !important;
  }

  .collection-grid-wrap {
    flex: 1 !important;
    min-width: 0 !important;
  }
}

@media (max-width: 899px) {
  .collection-main-layout {
    flex-direction: column !important;
    gap: 0 !important;
  }

  .collection-sidebar {
    display: none !important;
  }

  .collection-grid-wrap {
    width: 100% !important;
  }
}

/* Mobile Overrides for Homepage H2 */
@media (max-width: 575px) {
  .template-index h2 {
    font-size: 14px !important;
  }
}