/* Scope everything to shop archives only */
body.dreamygrid26-shop {
  /* Bind module styling to DreamyCore26 tokens (single source of truth) */
  --dreamygrid26-bg: var(--dreamy26-bg, #ffffff);
  --dreamygrid26-ink: var(--dreamy26-ink, #050505);
  --dreamygrid26-ink2: var(--dreamy26-ink2, #757575);
  --dreamygrid26-ink3: var(--dreamy26-ink3, #e5e5e5);
  --dreamygrid26-inkA: var(--dreamy26-inkA, #999999);

  --dreamygrid26-shadow: var(--dreamy26-shadow-ground, radial-gradient(closest-side, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0) 100%));
  --dreamygrid26-ease: var(--dreamy26-ease, cubic-bezier(0.23, 1, 0.32, 1));

  --dreamygrid26-ui: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  --dreamygrid26-edit: var(--dreamy26-font-edit, 'Playfair Display', Georgia, 'Times New Roman', serif);

  /* Sticky offset is computed by DreamyCore26 (JS) */
  --dreamygrid26-stickyTop: var(--dreamy26-sticky-offset, 0px);

  /* Image stage ratio to reduce CLS */
  --dreamygrid26-stageRatio: 1 / 1;

  /* Rhythm tokens */
  --dreamygrid26-cardRadius: var(--dreamy26-radius-lg, 22px);
  --dreamygrid26-cardPadX: 10px;
  --dreamygrid26-cardPadY: 10px;
  --dreamygrid26-cardShadowSoft: 0 18px 55px rgba(0,0,0,0.06);
  --dreamygrid26-cardShadowHover: 0 22px 70px rgba(0,0,0,0.10);
}

/* Woo archive header (title + description) — bring it into the same editorial rhythm */
body.dreamygrid26-shop .woocommerce-products-header{
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 8px;
  text-align: center;
}
body.dreamygrid26-shop .woocommerce-products-header__title{
  font-family: var(--dreamygrid26-edit);
  font-size: clamp(1.85rem, 3.6vw, 2.6rem);
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--dreamygrid26-ink);
  letter-spacing: 0.01em;
}
body.dreamygrid26-shop .woocommerce-products-header .term-description,
body.dreamygrid26-shop .woocommerce-products-header .woocommerce-term-description{
  margin: 0 auto;
  max-width: 56ch;
  color: var(--dreamygrid26-ink2);
  font-family: var(--dreamygrid26-ui);
  font-size: 1rem;
  line-height: 1.65;
}
@media (max-width: 640px){
  body.dreamygrid26-shop .woocommerce-products-header{ padding: 18px 12px 6px; }
}

/* Sticky filter nav */
body.dreamygrid26-shop .dreamygrid26-filter-bar {
  position: sticky;
  top: var(--dreamygrid26-stickyTop);
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 14px 0;
}

/* Subtle right-edge fade to suggest horizontal scroll (mobile premium cue) */
body.dreamygrid26-shop .dreamygrid26-filter-bar::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.96));
}

body.dreamygrid26-shop .dreamygrid26-filter-scroller {
  display: flex;
  justify-content: flex-start;
  gap: 16px; /* slightly tighter for better mobile density */
  overflow-x: auto;
  padding: 0 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
}
body.dreamygrid26-shop .dreamygrid26-filter-scroller::-webkit-scrollbar { display: none; }

body.dreamygrid26-shop .dreamygrid26-nav-item {
  font-family: var(--dreamygrid26-ui);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dreamygrid26-ink2);
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 6px; /* larger tap target */
  scroll-snap-align: start;
}

body.dreamygrid26-shop .dreamygrid26-nav-item:hover { color: var(--dreamygrid26-ink); }

body.dreamygrid26-shop .dreamygrid26-nav-item.dreamygrid26-active {
  color: var(--dreamygrid26-ink);
  font-weight: 600;
}
body.dreamygrid26-shop .dreamygrid26-nav-item.dreamygrid26-active::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--dreamygrid26-ink);
  border-radius: 50%;
}

/* Accessible focus states */
body.dreamygrid26-shop .dreamygrid26-nav-item:focus-visible,
body.dreamygrid26-shop .dreamygrid26-card a:focus-visible,
body.dreamygrid26-shop .dreamygrid26-cardLink:focus-visible {
  outline: 2px solid rgba(0,0,0,0.25);
  outline-offset: 3px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  body.dreamygrid26-shop .dreamygrid26-filter-scroller {
    justify-content: center;
    gap: 24px;
  }
  body.dreamygrid26-shop .dreamygrid26-filter-bar::after { display: none; } /* fade not needed on centered desktop */
}

/* ------------------------------------------------------------------
 * GRID LAYOUT (hard override Woo float layout)
 * ------------------------------------------------------------------
 * Woo core layout stylesheet defaults to FLOAT-based 3-col desktop grids.
 * We force a true CSS GRID here so the layout is stable regardless of
 * Woo/theme column classes.
 */
body.dreamygrid26-shop ul.products,
body.dreamygrid26-shop ul.wc-block-grid__products,
body.dreamygrid26-shop .wc-block-grid__products,
body.dreamygrid26-shop.woocommerce ul.products,
body.dreamygrid26-shop.woocommerce-page ul.products,
body.dreamygrid26-shop .woocommerce ul.products,
body.dreamygrid26-shop .woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 48px 12px !important;

  /* Archive rhythm */
  padding: 24px var(--dreamy26-gutter, 16px) 100px !important;
  max-width: var(--dreamy26-container, 1400px) !important;
  margin: 0 auto !important;
  width: 100% !important;

  list-style: none !important;
  box-sizing: border-box !important;
}

/* Kill Woo float clearfix pseudo-elements (prevents weird wrapping in some stacks) */
body.dreamygrid26-shop ul.products::before,
body.dreamygrid26-shop ul.products::after,
body.dreamygrid26-shop .wc-block-grid__products::before,
body.dreamygrid26-shop .wc-block-grid__products::after {
  content: none !important;
  display: none !important;
}

@media (min-width: 1024px) {
  body.dreamygrid26-shop ul.products,
  body.dreamygrid26-shop ul.wc-block-grid__products,
  body.dreamygrid26-shop .wc-block-grid__products,
  body.dreamygrid26-shop.woocommerce ul.products,
  body.dreamygrid26-shop.woocommerce-page ul.products,
  body.dreamygrid26-shop .woocommerce ul.products,
  body.dreamygrid26-shop .woocommerce-page ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 80px 40px !important;
    padding-top: 40px !important;
  }
}

/* Reset any legacy Woo column/floats/margins on items */
body.dreamygrid26-shop ul.products li.product,
body.dreamygrid26-shop ul.products li.wc-block-grid__product,
body.dreamygrid26-shop ul.wc-block-grid__products li.wc-block-grid__product,
body.dreamygrid26-shop .wc-block-grid__products li.wc-block-grid__product,
body.dreamygrid26-shop.woocommerce ul.products li.product,
body.dreamygrid26-shop.woocommerce-page ul.products li.product,
body.dreamygrid26-shop .woocommerce ul.products li.product,
body.dreamygrid26-shop .woocommerce-page ul.products li.product {
  float: none !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  clear: none !important;
  list-style: none !important;
  display: block !important;
}

body.dreamygrid26-shop ul.products li.product.first,
body.dreamygrid26-shop ul.products li.product.last,
body.dreamygrid26-shop.woocommerce ul.products li.product.first,
body.dreamygrid26-shop.woocommerce ul.products li.product.last {
  clear: none !important;
}

/* Product card */
body.dreamygrid26-shop .dreamygrid26-card { text-align: center; }


/* Rhythm + hierarchy: normalize card height and baselines */
body.dreamygrid26-shop .dreamygrid26-item { height: 100%; }

body.dreamygrid26-shop .dreamygrid26-cardLink{
  height: 100%;
  display: flex;
  flex-direction: column;

  /* Reduce border noise: use spacing + soft shadow (DreamyCore26-aligned) */
  border: none;
  border-radius: var(--dreamygrid26-cardRadius);
  padding: var(--dreamygrid26-cardPadY) var(--dreamygrid26-cardPadX) 16px;
  transition: transform .35s var(--dreamygrid26-ease), box-shadow .35s var(--dreamygrid26-ease);
  will-change: transform;
}

@media (hover:hover){
  body.dreamygrid26-shop .dreamygrid26-cardLink:hover{
    transform: translateY(-2px);
    box-shadow: var(--dreamygrid26-cardShadowSoft);
  }
  body.dreamygrid26-shop .dreamygrid26-cardLink:active{ transform: translateY(-1px); }
}

/* Make whole card feel intentionally clickable */
body.dreamygrid26-shop .dreamygrid26-card a,
body.dreamygrid26-shop .dreamygrid26-cardLink{
  text-decoration: none;
  color: inherit;
}

/* No quick add on the shop grid (ATC is PDP-only). */

/* Image Stage: set ratio to reduce layout shifts (CLS) */
body.dreamygrid26-shop .dreamygrid26-stage {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 14px;
  aspect-ratio: var(--dreamygrid26-stageRatio);
}

/* NEW: museum plate behind product image (matches cart drawer stage) */
body.dreamygrid26-shop .dreamygrid26-stage::before{
  content:"";
  position:absolute;
  inset: 10px 10px 24px 10px; /* leave room for the ground shadow */
  border-radius: calc(var(--dreamygrid26-cardRadius) - 10px);
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.012));
  border: 1px solid rgba(0,0,0,0.08);
  z-index: 3;
  pointer-events:none;
}


/* NEW: halo lighting (premium gallery cue) */
body.dreamygrid26-shop .dreamygrid26-halo{
  position: absolute;
  inset: 10% 10% 18%;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0.06), rgba(0,0,0,0));
  filter: blur(10px);
  opacity: 0.9;
  transition: opacity 0.8s var(--dreamygrid26-ease);
  z-index: 2;
  pointer-events: none;
}

body.dreamygrid26-shop .dreamygrid26-image {
  width: 86%;
  max-height: 100%;
  object-fit: contain;
  z-index: 10;
  transition: transform 0.8s var(--dreamygrid26-ease);
  will-change: transform;
}

/* Remove the legacy progress meter UI (filtering still works; this is display-only). */
body.dreamygrid26-shop .dreamygrid26-meter{ display:none !important; }

body.dreamygrid26-shop .dreamygrid26-shadow {
  position: absolute;
  bottom: 0;
  width: 60%;
  height: 16px;
  background: var(--dreamygrid26-shadow);
  opacity: 0.5;
  transition: all 0.8s var(--dreamygrid26-ease);
  z-index: 1;
  filter: blur(5px);
}

@media (hover: hover) {
  body.dreamygrid26-shop .dreamygrid26-card:hover .dreamygrid26-image { transform: translateY(-12px); }
  body.dreamygrid26-shop .dreamygrid26-card:hover .dreamygrid26-shadow { transform: scaleX(0.7) translateY(2px); opacity: 0.25; }
  body.dreamygrid26-shop .dreamygrid26-card:hover .dreamygrid26-halo { opacity: 1; }
}

/* Info */
body.dreamygrid26-shop .dreamygrid26-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 6px;
  flex: 1 1 auto;

  text-align: center;
}

body.dreamygrid26-shop .dreamygrid26-tag {
  font-family: var(--dreamygrid26-ui);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dreamygrid26-inkA);
  font-weight: 600;
  margin-bottom: 2px;
}

body.dreamygrid26-shop .dreamygrid26-title {
  font-family: var(--dreamygrid26-edit);
  font-size: 1.1rem;
  color: var(--dreamygrid26-ink);
  font-weight: 500;
  line-height: 1.2;
  margin: 0;

  /* Rhythm: reserve exactly 2 lines so 1–2 line titles never change card height */
  min-height: 2.4em; /* 2 lines @ 1.2 line-height */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;

  text-wrap: balance; /* nicer titles where supported */
}

@media (min-width: 1024px) {
  body.dreamygrid26-shop .dreamygrid26-title { font-size: 1.2rem; }
}

body.dreamygrid26-shop .dreamygrid26-price {
  font-family: var(--dreamygrid26-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dreamygrid26-ink);

  position: relative;

  /* Baseline consistency across cards */
  margin-top: auto;
  padding-top: 10px;
  min-height: 1.2em;

  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

/* Subscription plugins sometimes inject suffix details on archives; DreamyGrid26 cards must remain clean. */
body.dreamygrid26-shop .dreamygrid26-price .subscription-details,
body.dreamygrid26-shop .dreamygrid26-price .wcsatt-subscription-details,
body.dreamygrid26-shop .dreamygrid26-price .wcsatt-sub-options,
body.dreamygrid26-shop .dreamygrid26-price .wcsatt-sub-options-wrapper {
  display: none !important;
}

/* Guardrail: ensure SR-only blobs never become visible inside the price on archives. */
body.dreamygrid26-shop .dreamygrid26-price .screen-reader-text {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
}

body.dreamygrid26-shop .dreamygrid26-price del {
  opacity: 0.45;
}
body.dreamygrid26-shop .dreamygrid26-price del .amount {
  font-size: 0.84em;
}
body.dreamygrid26-shop .dreamygrid26-price ins {
  text-decoration: none;
}

/* =========================================================
   DreamyGrid26 — Editorial Meter v2 (Progress Bar)
   Replaces the old dot-on-hairline meter
========================================================= */

/* Meter container */
body.dreamygrid26-shop .dreamygrid26-meter{
  width: 100%;
  max-width: 140px;            /* wider reads more premium */
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Micro label above meter (Strength / Coverage) */
body.dreamygrid26-shop .dreamygrid26-meter-kicker{
  display: block;
  font-family: var(--dreamygrid26-ui);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
  opacity: .95;
  margin-bottom: 0;
}

/* Track wrapper */
body.dreamygrid26-shop .dreamygrid26-track{
  width: 100%;
  height: 14px;                /* gives the indicator a stage */
  display: flex;
  align-items: center;
}

/* Track line becomes a real progress track */
body.dreamygrid26-shop .dreamygrid26-line{
  position: relative;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: rgba(0,0,0,0.10);
  overflow: visible;
}

/* Progress fill */
body.dreamygrid26-shop .dreamygrid26-line::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width: var(--dg26-fill, 50%);
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  transition: width .45s var(--dreamygrid26-ease);
}

/* Subtle mid tick */
body.dreamygrid26-shop .dreamygrid26-line::after{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:4px;
  height:4px;
  transform:translate(-50%, -50%);
  border-radius:50%;
  background: rgba(0,0,0,0.12);
}

/* Indicator = “jewel” */
body.dreamygrid26-shop .dreamygrid26-marker{
  position:absolute;
  top:50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--dreamygrid26-ink);
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 3px var(--dreamygrid26-bg),
    0 10px 22px rgba(0,0,0,0.10);
  transition: left .45s var(--dreamygrid26-ease), transform .25s ease;
}

/* Safe endpoints + fill mapping (prevents edge clipping) */
body.dreamygrid26-shop .dreamygrid26-intensity-1{ --dg26-pos: 6%;  --dg26-fill: 6%;  }
body.dreamygrid26-shop .dreamygrid26-intensity-2{ --dg26-pos: 50%; --dg26-fill: 50%; }
body.dreamygrid26-shop .dreamygrid26-intensity-3{ --dg26-pos: 94%; --dg26-fill: 94%; }

body.dreamygrid26-shop .dreamygrid26-intensity-1 .dreamygrid26-marker,
body.dreamygrid26-shop .dreamygrid26-intensity-2 .dreamygrid26-marker,
body.dreamygrid26-shop .dreamygrid26-intensity-3 .dreamygrid26-marker{
  left: var(--dg26-pos);
}

/* Labels */
body.dreamygrid26-shop .dreamygrid26-labels{
  display:flex;
  justify-content:space-between;
  width:100%;
  margin-top: 2px;
}

body.dreamygrid26-shop .dreamygrid26-label{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
}

/* Slight emphasis on the “active side” */
body.dreamygrid26-shop .dreamygrid26-intensity-1 .dreamygrid26-labels .dreamygrid26-label:first-child,
body.dreamygrid26-shop .dreamygrid26-intensity-3 .dreamygrid26-labels .dreamygrid26-label:last-child{
  color: rgba(0,0,0,0.70);
}

/* Hover polish */
@media (hover:hover){
  body.dreamygrid26-shop .dreamygrid26-card:hover .dreamygrid26-marker{
    transform: translate(-50%, -50%) scale(1.03);
  }
  body.dreamygrid26-shop .dreamygrid26-card:hover .dreamygrid26-line::before{
    background: rgba(0,0,0,0.62);
  }
}

/* =========================================================
   DreamyGrid26 — Luxury Filter Drawer (hidden by default)
   Append to bottom of dreamygrid26-shop.css
========================================================= */

body.dreamygrid26-shop .dreamygrid26-filter-bar{
  position: sticky;
  top: var(--dreamygrid26-stickyTop, 0px);
  z-index: 120;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

body.dreamygrid26-shop .dreamygrid26-filter-inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 14px;
}

body.dreamygrid26-shop .dreamygrid26-filters{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 18px 50px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Remove default disclosure marker */
body.dreamygrid26-shop .dreamygrid26-filter-summary::-webkit-details-marker{ display:none; }
body.dreamygrid26-shop .dreamygrid26-filter-summary::marker{ content:""; }

/* Summary capsule */
body.dreamygrid26-shop .dreamygrid26-filter-summary{
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
}

body.dreamygrid26-shop .dreamygrid26-summary-left{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

body.dreamygrid26-shop .dreamygrid26-summary-title{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
}

body.dreamygrid26-shop .dreamygrid26-summary-pills{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
body.dreamygrid26-shop .dreamygrid26-summary-pills::-webkit-scrollbar{ display:none; }

body.dreamygrid26-shop .dreamygrid26-pill{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.70rem;
  letter-spacing: 0.06em;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  white-space: nowrap;
  background: rgba(255,255,255,0.70);
  color: var(--dreamygrid26-ink);
}
body.dreamygrid26-shop .dreamygrid26-pill[data-state="idle"]{
  color: var(--dreamygrid26-ink2);
  border-color: rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.55);
}

body.dreamygrid26-shop .dreamygrid26-summary-right{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

body.dreamygrid26-shop .dreamygrid26-count{
  width: 24px; height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--dreamygrid26-ui);
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  background: var(--dreamygrid26-ink);
}

body.dreamygrid26-shop .dreamygrid26-clear{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.85);
  color: var(--dreamygrid26-ink);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
body.dreamygrid26-shop .dreamygrid26-clear:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.95);
}

/* Chevron */
body.dreamygrid26-shop .dreamygrid26-chevron{
  width: 10px; height: 10px;
  border-right: 1.5px solid rgba(0,0,0,0.55);
  border-bottom: 1.5px solid rgba(0,0,0,0.55);
  transform: rotate(45deg);
  transition: transform .28s var(--dreamygrid26-ease);
  margin-left: 2px;
}

body.dreamygrid26-shop details[open] .dreamygrid26-chevron{
  transform: rotate(225deg);
}

/* Animated panel open/close (grid trick, smooth & luxury) */
body.dreamygrid26-shop .dreamygrid26-panelWrap{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--dreamygrid26-ease);
}
body.dreamygrid26-shop details[open] .dreamygrid26-panelWrap{
  grid-template-rows: 1fr;
}
body.dreamygrid26-shop .dreamygrid26-panel{
  overflow: hidden;
  padding: 0 12px 12px;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Blocks */
body.dreamygrid26-shop .dreamygrid26-filter-block{
  display: grid;
  gap: 8px;
}

body.dreamygrid26-shop .dreamygrid26-filter-label{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
}

/* Category chips */
body.dreamygrid26-shop .dreamygrid26-filter-scroller{
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 2px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
body.dreamygrid26-shop .dreamygrid26-filter-scroller::-webkit-scrollbar{ display:none; }

body.dreamygrid26-shop .dreamygrid26-chip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  white-space: nowrap;

  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;

  padding: 10px 14px;
  border-radius: 999px;

  color: var(--dreamygrid26-ink);
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.10);

  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}
body.dreamygrid26-shop .dreamygrid26-chip:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,0.16);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
}
body.dreamygrid26-shop .dreamygrid26-chip.dreamygrid26-active{
  background: var(--dreamygrid26-ink);
  color: #fff;
  border-color: rgba(0,0,0,0.28);
  box-shadow: 0 16px 44px rgba(0,0,0,0.14);
}

/* Strength segmented control */
body.dreamygrid26-shop .dreamygrid26-seg{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 4px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.10);
  overflow: hidden;
}

body.dreamygrid26-shop .dreamygrid26-segthumb{
  position: absolute;
  top: 4px; bottom: 4px;
  width: calc(25% - 4px);
  left: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  transition: transform .35s var(--dreamygrid26-ease);
  z-index: 1;
}

body.dreamygrid26-shop .dreamygrid26-seg--any .dreamygrid26-segthumb{ transform: translateX(0%); }
body.dreamygrid26-shop .dreamygrid26-seg--1   .dreamygrid26-segthumb{ transform: translateX(100%); }
body.dreamygrid26-shop .dreamygrid26-seg--2   .dreamygrid26-segthumb{ transform: translateX(200%); }
body.dreamygrid26-shop .dreamygrid26-seg--3   .dreamygrid26-segthumb{ transform: translateX(300%); }

body.dreamygrid26-shop .dreamygrid26-segopt{
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 8px;
  font-family: var(--dreamygrid26-ui);
  font-size: 0.70rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
  transition: color .18s ease, transform .18s ease;
}
body.dreamygrid26-shop .dreamygrid26-segopt:hover{
  color: var(--dreamygrid26-ink);
  transform: translateY(-1px);
}
body.dreamygrid26-shop .dreamygrid26-segopt.dreamygrid26-active{
  color: var(--dreamygrid26-ink);
  font-weight: 700;
}

/* Actions */
body.dreamygrid26-shop .dreamygrid26-filter-actions{
  display: flex;
  justify-content: flex-end;
}
body.dreamygrid26-shop .dreamygrid26-reset{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
}
body.dreamygrid26-shop .dreamygrid26-reset:hover{
  color: var(--dreamygrid26-ink);
  border-color: rgba(0,0,0,0.16);
}
/* ======================================================================
 * DreamyGrid26 Meter Hotfix
 * Fixes:
 * 1) Marker was absolutely positioned but the track wasn't positioned -> dot floated near product image.
 * 2) Device (room) products use dreamygrid26-room-* classes; map them to the same positions as intensity.
 * 3) Ensure the track line actually renders (span needs block/flex behavior).
 * ====================================================================== */
body.dreamygrid26-shop .dreamygrid26-track{ position: relative; }
body.dreamygrid26-shop .dreamygrid26-line{ display: block; flex: 1 1 auto; }

/* Room coverage positions (Devices) */
body.dreamygrid26-shop .dreamygrid26-room-1{ --dg26-pos: 6%;  --dg26-fill: 6%;  }
body.dreamygrid26-shop .dreamygrid26-room-2{ --dg26-pos: 50%; --dg26-fill: 50%; }
body.dreamygrid26-shop .dreamygrid26-room-3{ --dg26-pos: 94%; --dg26-fill: 94%; }

body.dreamygrid26-shop .dreamygrid26-room-1 .dreamygrid26-marker,
body.dreamygrid26-shop .dreamygrid26-room-2 .dreamygrid26-marker,
body.dreamygrid26-shop .dreamygrid26-room-3 .dreamygrid26-marker{
  left: var(--dg26-pos);
}
/* ======================================================================
 * DreamyGrid26 — Card actions (Quick View / Quick Add) + Micro-badges
 * ====================================================================== */

/* Hard guard against accidental mobile side-scroll */
body.dreamygrid26-shop{ overflow-x: hidden; }

/* Clickable cover link without nesting anchors (buttons stay interactive) */
body.dreamygrid26-shop .dreamygrid26-cardLink{ position: relative; }
body.dreamygrid26-shop .dreamygrid26-cardCover{
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 22px;
}
body.dreamygrid26-shop .dreamygrid26-cardCover:focus-visible{
  outline: 2px solid rgba(0,0,0,0.25);
  outline-offset: 4px;
}

/* Let the cover capture clicks; keep buttons interactive */
body.dreamygrid26-shop .dreamygrid26-stage,
body.dreamygrid26-shop .dreamygrid26-info{
  pointer-events: none;
  position: relative;
  z-index: 2;
}

/* Action buttons (premium, minimal) */
body.dreamygrid26-shop .dreamygrid26-actions{
  pointer-events: auto;
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}
body.dreamygrid26-shop .dreamygrid26-action{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.70rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.84);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--dreamygrid26-ink);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  line-height: 1;
  white-space: nowrap;
}
body.dreamygrid26-shop .dreamygrid26-action:hover{ border-color: rgba(0,0,0,0.18); }
body.dreamygrid26-shop .dreamygrid26-action:active{ transform: translateY(1px); }
body.dreamygrid26-shop .dreamygrid26-action[disabled],
body.dreamygrid26-shop .dreamygrid26-action.is-loading{
  opacity: 0.65;
  cursor: not-allowed;
}
body.dreamygrid26-shop .dreamygrid26-action.is-added{
  border-color: rgba(0,0,0,0.18);
}

/* Reduce visual noise: show actions on hover for precise pointers */
@media (hover:hover) and (pointer:fine){
  body.dreamygrid26-shop .dreamygrid26-actions{ opacity: 0; transform: translateY(-4px); transition: opacity .22s ease, transform .22s ease; }
  body.dreamygrid26-shop .dreamygrid26-cardLink:hover .dreamygrid26-actions,
  body.dreamygrid26-shop .dreamygrid26-cardLink:focus-within .dreamygrid26-actions{ opacity: 1; transform: translateY(0); }
}

/* Micro-badges */
body.dreamygrid26-shop .dreamygrid26-badges{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
  max-width: 100%;
  min-height: 26px; /* reserves rhythm even when empty */
}

body.dreamygrid26-shop .dreamygrid26-badges.is-empty{ opacity: 0; }
body.dreamygrid26-shop .dreamygrid26-badge{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
  color: var(--dreamygrid26-ink2);
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.dreamygrid26-shop .dreamygrid26-badge--save{
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dreamygrid26-ink);
}

/* ======================================================================
 * DreamyGrid26 — Quick View modal
 * ====================================================================== */

body.dreamygrid26-shop .dreamygrid26-qvOverlay{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
  padding: 18px;
}
body.dreamygrid26-shop .dreamygrid26-qvBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.48);
}
body.dreamygrid26-shop .dreamygrid26-qvPanel{
  position: relative;
  width: min(980px, 96vw);
  max-height: min(86vh, 860px);
  overflow: auto;
  border-radius: 24px;
  background: rgba(255,255,255,0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
  border: 1px solid rgba(0,0,0,0.10);
  padding: 18px;
}

body.dreamygrid26-shop .dreamygrid26-qvInner{
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  padding-top: 12px;
}
@media (max-width: 880px){
  body.dreamygrid26-shop .dreamygrid26-qvInner{ grid-template-columns: 1fr; }
}
body.dreamygrid26-shop .dreamygrid26-qvMedia img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
}
body.dreamygrid26-shop .dreamygrid26-qvBadges{ margin: 2px 0 10px; }
body.dreamygrid26-shop .dreamygrid26-qvTitle{
  font-family: var(--dreamygrid26-title);
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 10px;
}
body.dreamygrid26-shop .dreamygrid26-qvPrice{
  font-family: var(--dreamygrid26-title);
  font-size: 1.15rem;
  margin: 0 0 12px;
}
body.dreamygrid26-shop .dreamygrid26-qvExcerpt{
  font-family: var(--dreamygrid26-ui);
  color: var(--dreamygrid26-ink2);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
body.dreamygrid26-shop .dreamygrid26-qvActions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.dreamygrid26-shop .dreamygrid26-qvCta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.85);
  font-family: var(--dreamygrid26-ui);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--dreamygrid26-ink);
  text-decoration: none;
}
body.dreamygrid26-shop .dreamygrid26-qvCta:hover{
  background: rgba(255,255,255,0.95);
}
body.dreamygrid26-shop .dreamygrid26-qvCta--primary{
  background: var(--dreamygrid26-ink);
  border-color: var(--dreamygrid26-ink);
  color: #fff;
}
body.dreamygrid26-shop .dreamygrid26-qvCta--primary:hover{
  background: #111;
}
body.dreamygrid26-shop .dreamygrid26-qvCta.is-loading{ opacity: 0.6; pointer-events: none; }
body.dreamygrid26-shop .dreamygrid26-qvCta.is-added{ background: #fff; }
body.dreamygrid26-shop .dreamygrid26-qvSkeleton{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
  padding-top: 12px;
}
@media (max-width: 880px){
  body.dreamygrid26-shop .dreamygrid26-qvSkeleton{ grid-template-columns: 1fr; }
}
body.dreamygrid26-shop .dreamygrid26-qvSkMedia{
  height: 320px;
  border-radius: 20px;
  background: rgba(0,0,0,0.06);
}
body.dreamygrid26-shop .dreamygrid26-qvSkLines{
  display: grid;
  gap: 10px;
  padding: 10px 0;
}
body.dreamygrid26-shop .dreamygrid26-qvSkLines span{
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
}
body.dreamygrid26-shop .dreamygrid26-qvSkLines span:nth-child(2){ width: 80%; }
body.dreamygrid26-shop .dreamygrid26-qvSkLines span:nth-child(3){ width: 60%; }
body.dreamygrid26-shop .dreamygrid26-qvError{
  font-family: var(--dreamygrid26-ui);
  padding: 18px;
  color: var(--dreamygrid26-ink2);
}
body.dreamygrid26-shop .dreamygrid26-qvClose{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.78);
  color: var(--dreamygrid26-ink);
  display: grid;
  place-items: center;
}
body.dreamygrid26-shop .dreamygrid26-qvContent{ padding-top: 12px; }
body.dreamygrid26-shop .dreamygrid26-qvGrid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}
@media (max-width: 880px){
  body.dreamygrid26-shop .dreamygrid26-qvGrid{ grid-template-columns: 1fr; }
}
body.dreamygrid26-shop .dreamygrid26-qvMedia{ border-radius: 20px; overflow: hidden; background: #fff; }
body.dreamygrid26-shop .dreamygrid26-qvImage{ width: 100%; height: auto; display: block; }
body.dreamygrid26-shop .dreamygrid26-qvBadges{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom: 12px; }
body.dreamygrid26-shop .dreamygrid26-qvTitle{
  font-family: var(--dreamygrid26-display);
  font-size: 1.35rem;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
body.dreamygrid26-shop .dreamygrid26-qvPrice{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dreamygrid26-ink);
  margin-bottom: 12px;
}
body.dreamygrid26-shop .dreamygrid26-qvExcerpt{
  font-family: var(--dreamygrid26-ui);
  color: var(--dreamygrid26-ink2);
  line-height: 1.6;
  margin-bottom: 16px;
}
body.dreamygrid26-shop .dreamygrid26-qvActions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.dreamygrid26-shop .dreamygrid26-qvBtnPrimary,
body.dreamygrid26-shop .dreamygrid26-qvBtnGhost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
}
body.dreamygrid26-shop .dreamygrid26-qvBtnPrimary{
  background: #0b0b0b;
  color: #fff;
}
body.dreamygrid26-shop .dreamygrid26-qvBtnGhost{
  background: rgba(255,255,255,0.65);
  color: var(--dreamygrid26-ink);
  border: 1px solid rgba(0,0,0,0.12);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  body.dreamygrid26-shop .dreamygrid26-actions,
  body.dreamygrid26-shop .dreamygrid26-cardLink,
  body.dreamygrid26-shop .dreamygrid26-qvOverlay,
  body.dreamygrid26-shop .dreamygrid26-qvPanel,
  body.dreamygrid26-shop .dreamygrid26-fOverlay,
  body.dreamygrid26-shop .dreamygrid26-fPanel{
    transition: none !important;
    animation: none !important;
  }
  body.dreamygrid26-shop .dreamygrid26-action:active{ transform: none; }
}

/* =====================================================================
 * DreamyGrid26 — Premium Sticky Filter Bar + Mobile Drawer (Shop)
 * Classes: dreamygrid26-sfb*, dreamygrid26-f*
 * ===================================================================*/

.dreamygrid26-sfb{
  position: sticky;
  top: var(--dreamygrid26-sticky-top, 0px);
  z-index: 35;
  background: rgba(255,255,255,0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dreamygrid26-sfb-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ------------------------------------------------------------------
 * Results header (count + active chips) — keeps state obvious
 * while preserving the editorial calm.
 * --------------------------------------------------------------- */
.dreamygrid26-rhdr{
  background: transparent;
}
.dreamygrid26-rhdr-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px 6px;
  display: grid;
  gap: 10px;
}
.dreamygrid26-rhdr-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.dreamygrid26-rhdr-count{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
}
.dreamygrid26-rhdr-clear{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.78rem;
  color: var(--dreamygrid26-ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 2px;
}
.dreamygrid26-rhdr-clear:hover{ border-bottom-color: rgba(0,0,0,0.35); }

.dreamygrid26-rhdr-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.dreamygrid26-rhdr .dreamygrid26-chip{
  padding: 9px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
  background: rgba(255,255,255,0.80);
  border-color: rgba(0,0,0,0.09);
  gap: 10px;
}
.dreamygrid26-rhdr .dreamygrid26-chipX{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.06);
  color: var(--dreamygrid26-ink);
  line-height: 1;
}

.dreamygrid26-trust{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--dreamygrid26-ink2);
  font-family: var(--dreamygrid26-ui);
  font-size: 0.80rem;
}

.dreamygrid26-trust li{
  position: relative;
  padding-left: 12px;
}
.dreamygrid26-trust li::before{
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  transform: translateY(-50%);
}

@media (max-width: 640px){
  .dreamygrid26-rhdr-inner{ padding-left: 12px; padding-right: 12px; }
  .dreamygrid26-trust{ gap: 10px 14px; }
}
.dreamygrid26-trust li{
  position: relative;
  padding-left: 14px;
}
.dreamygrid26-trust li::before{
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  left: 0;
  top: 0.55em;
}

@media (max-width: 520px){
  .dreamygrid26-trust{ display:none; }
}

/* ------------------------------------------------------------------
 * Editorial empty state
 * --------------------------------------------------------------- */
body.dreamygrid26-shop .dreamygrid26-empty{
  margin: 22px auto 34px;
  max-width: 920px;
  padding: 0 16px;
}
body.dreamygrid26-shop .dreamygrid26-emptyInner{
  border-radius: var(--dreamygrid26-cardRadius);
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 22px 70px rgba(0,0,0,0.06);
  padding: 22px 18px;
  text-align: center;
}
body.dreamygrid26-shop .dreamygrid26-emptyKicker{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
}
body.dreamygrid26-shop .dreamygrid26-emptyTitle{
  font-family: var(--dreamygrid26-edit);
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  margin: 8px 0 8px;
  color: var(--dreamygrid26-ink);
  font-weight: 500;
}
body.dreamygrid26-shop .dreamygrid26-emptyCopy{
  font-family: var(--dreamygrid26-ui);
  color: var(--dreamygrid26-ink2);
  max-width: 58ch;
  margin: 0 auto 16px;
}
body.dreamygrid26-shop .dreamygrid26-emptyActions{
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}
body.dreamygrid26-shop .dreamygrid26-btnPrimary,
body.dreamygrid26-shop .dreamygrid26-btnGhost{
  font-family: var(--dreamygrid26-ui);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.74rem;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
body.dreamygrid26-shop .dreamygrid26-btnPrimary{
  background: var(--dreamygrid26-ink);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 18px 55px rgba(0,0,0,0.16);
}
body.dreamygrid26-shop .dreamygrid26-btnPrimary:hover{ opacity: 0.92; }
body.dreamygrid26-shop .dreamygrid26-btnGhost{
  background: rgba(255,255,255,0.70);
  color: var(--dreamygrid26-ink);
  border: 1px solid rgba(0,0,0,0.10);
}
body.dreamygrid26-shop .dreamygrid26-emptySuggest{
  margin-top: 16px;
}
body.dreamygrid26-shop .dreamygrid26-emptyLabel{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.70rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
  margin-bottom: 10px;
}
body.dreamygrid26-shop .dreamygrid26-empty .dreamygrid26-chip{
  padding: 10px 14px;
}

/* ------------------------------------------------------------------
 * Empty-state fallback products (New Arrivals)
 * Never allow an archive to render as a dead-end.
 * --------------------------------------------------------------- */
body.dreamygrid26-shop .dreamygrid26-emptyFallback{
  max-width: 1280px;
  margin: 10px auto 40px;
  padding: 0 16px;
}
body.dreamygrid26-shop .dreamygrid26-emptyFallbackHead{
  text-align: center;
  margin: 0 auto 18px;
  max-width: 60ch;
}
body.dreamygrid26-shop .dreamygrid26-emptyFallbackKicker{
  font-family: var(--dreamygrid26-ui);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dreamygrid26-ink2);
}
body.dreamygrid26-shop .dreamygrid26-emptyFallbackTitle{
  font-family: var(--dreamygrid26-edit);
  font-size: clamp(1.35rem, 2.8vw, 2.0rem);
  margin: 8px 0 8px;
  color: var(--dreamygrid26-ink);
  font-weight: 500;
}
body.dreamygrid26-shop .dreamygrid26-emptyFallbackCopy{
  font-family: var(--dreamygrid26-ui);
  color: var(--dreamygrid26-ink2);
  margin: 0;
  line-height: 1.65;
}
@media (max-width: 640px){
  body.dreamygrid26-shop .dreamygrid26-emptyFallback{ padding: 0 12px; margin-bottom: 34px; }
  body.dreamygrid26-shop .dreamygrid26-emptyFallbackHead{ margin-bottom: 14px; }
}


.dreamygrid26-sfbBtn{
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 44px 10px 14px; /* right space for chevron */
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  text-align: left;
  position: relative;
}

.dreamygrid26-sfbBtn::after{
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid rgba(0,0,0,0.45);
  border-bottom: 2px solid rgba(0,0,0,0.45);
  pointer-events: none;
}


.dreamygrid26-sfbBtn:focus-visible{
  outline: 2px solid rgba(0,0,0,0.55);
  outline-offset: 2px;
}

.dreamygrid26-sfbBtnTop{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}


.dreamygrid26-sfbBtnLabel{
  font-family: var(--dreamy-font-title, inherit);
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-primary, #050505);
}

.dreamygrid26-sfbMeta{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  color: var(--ink-secondary, #757575);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.dreamygrid26-sfbCount{
  margin-left: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0,0,0,0.04);
  font-size: 12px;
  color: var(--ink-primary, #050505);
}


.dreamygrid26-sfbSort{
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.dreamygrid26-sfbSelect{
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.92);
  padding: 10px 34px 10px 12px;
  border-radius: 16px;
  font-size: 13px;
  color: var(--ink-primary, #050505);
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  min-width: 150px;
  min-height: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(0,0,0,0.55) 50%),
    linear-gradient(135deg, rgba(0,0,0,0.55) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}


.dreamygrid26-sfbSelect:focus-visible{
  outline: 2px solid rgba(0,0,0,0.55);
  outline-offset: 2px;
}

.dreamygrid26-sfbClear{
  flex: 0 0 auto;
  font-size: 12px;
  color: var(--ink-secondary, #757575);
  text-decoration: none;
  padding: 10px 8px;
}

.dreamygrid26-sfbClear:hover{
  color: var(--ink-primary, #050505);
}

@media (max-width: 640px){
  .dreamygrid26-sfb-inner{ padding: 10px 12px; }
  .dreamygrid26-sfbMeta{ display: none; }
  .dreamygrid26-sfbSelect{ min-width: 122px; }
  .dreamygrid26-sfbClear{ display: none; }
}

/* =====================================================================
 * DreamyGrid26 — Results header (count + active chips + trust bullets)
 * Keeps state obvious without visual clutter.
 * ===================================================================*/

.dreamygrid26-rhdr{
  position: relative;
  z-index: 5;
  background: transparent;
}

.dreamygrid26-rhdr-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 16px 14px;
  display: grid;
  gap: 10px;
}

.dreamygrid26-rhdr-top{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.dreamygrid26-rhdr-count{
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.82rem;
  color: var(--ink-secondary, #757575);
  letter-spacing: 0.02em;
}

.dreamygrid26-rhdr-clear{
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.78rem;
  color: var(--ink-primary, #050505);
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.18);
  padding-bottom: 2px;
}
.dreamygrid26-rhdr-clear:hover{ border-bottom-color: rgba(0,0,0,0.32); }

.dreamygrid26-rhdr-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 100%;
}

/* Chips in header use a calmer, editorial tone (still inherits premium pill treatment). */
body.dreamygrid26-shop .dreamygrid26-rhdr .dreamygrid26-chip{
  text-transform: none;
  letter-spacing: 0.04em;
  font-size: 0.76rem;
  padding: 10px 12px;
  gap: 10px;
  max-width: 100%;
}

body.dreamygrid26-shop .dreamygrid26-chipTxt{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

body.dreamygrid26-shop .dreamygrid26-chipX{
  font-size: 0.95em;
  opacity: 0.6;
}

.dreamygrid26-trust{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--ink-secondary, #757575);
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.78rem;
}

.dreamygrid26-trust li{
  position: relative;
  padding-left: 12px;
}

.dreamygrid26-trust li::before{
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.24);
  position: absolute;
  left: 0;
  top: 0.62em;
}

@media (max-width: 640px){
  .dreamygrid26-rhdr-inner{ padding: 8px 12px 12px; }
  .dreamygrid26-trust{ gap: 10px 14px; }
}

/* =====================================================================
 * DreamyGrid26 — Empty state (no products)
 * ===================================================================*/

.dreamygrid26-empty{
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.dreamygrid26-emptyInner{
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 18px 55px rgba(0,0,0,0.06);
  padding: 22px 18px;
  display: grid;
  gap: 10px;
  text-align: center;
}

.dreamygrid26-emptyKicker{
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--ink-secondary, #757575);
}

.dreamygrid26-emptyTitle{
  font-family: var(--dreamy-font-title, 'Playfair Display', Georgia, 'Times New Roman', serif);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--ink-primary, #050505);
}

.dreamygrid26-emptyCopy{
  margin: 0;
  color: var(--ink-secondary, #757575);
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.95rem;
  line-height: 1.55;
}

.dreamygrid26-emptyActions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.dreamygrid26-btnPrimary,
.dreamygrid26-btnGhost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dreamygrid26-btnPrimary{
  background: var(--ink-primary, #050505);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.10);
}

.dreamygrid26-btnGhost{
  background: rgba(255,255,255,0.75);
  color: var(--ink-primary, #050505);
  border: 1px solid rgba(0,0,0,0.10);
}

.dreamygrid26-emptySuggest{ margin-top: 8px; display: grid; gap: 10px; }
.dreamygrid26-emptyLabel{
  font-family: var(--dreamy26-font-ui, 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-secondary, #757575);
}

.dreamygrid26-emptyChips{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

body.dreamygrid26-shop .dreamygrid26-empty .dreamygrid26-chip{
  text-transform: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

/* Filter overlay + drawer */
.dreamygrid26-fOverlay{
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms var(--anim-physics, ease);
}

.dreamygrid26-fOverlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

.dreamygrid26-fBackdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.34);
}

.dreamygrid26-fPanel{
  position: relative;
  width: min(560px, calc(100vw - 28px));
  max-height: min(82vh, 720px);
  overflow: hidden;
  border-radius: 22px 22px 18px 18px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
  transform: translateY(18px);
  transition: transform 240ms var(--anim-physics, ease);
  display: flex;
  flex-direction: column;
}

.dreamygrid26-fOverlay.is-open .dreamygrid26-fPanel{
  transform: translateY(0);
}

@media (min-width: 900px){
  .dreamygrid26-fOverlay{ align-items: center; }
  .dreamygrid26-fPanel{ border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce){
  .dreamygrid26-fOverlay,
  .dreamygrid26-fPanel{ transition: none; }
}

.dreamygrid26-fHeader{
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.dreamygrid26-fTitle{
  font-family: var(--dreamy-font-title, inherit);
  font-size: 16px;
  color: var(--ink-primary, #050505);
}

.dreamygrid26-fSub{
  font-size: 12px;
  color: var(--ink-secondary, #757575);
  margin-top: 2px;
}

.dreamygrid26-fClose{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}

.dreamygrid26-fClose:focus-visible{
  outline: 2px solid rgba(0,0,0,0.55);
  outline-offset: 2px;
}

.dreamygrid26-fForm{ display: flex; flex-direction: column; min-height: 0; }

.dreamygrid26-fBody{
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.dreamygrid26-fSection{
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.78);
}

.dreamygrid26-fLabel{
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-secondary, #757575);
  margin-bottom: 10px;
}

.dreamygrid26-fChips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dreamygrid26-fChip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.dreamygrid26-fChip input{ position: absolute; opacity: 0; }

.dreamygrid26-fChip span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.90);
  font-size: 13px;
  color: var(--ink-primary, #050505);
}

.dreamygrid26-fChip input:checked + span{
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

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

.dreamygrid26-fSegOpt{ cursor: pointer; }
.dreamygrid26-fSegOpt input{ position: absolute; opacity: 0; }

.dreamygrid26-fSegOpt span{
  display: inline-flex;
  width: 100%;
  justify-content: center;
  padding: 10px 10px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.90);
  font-size: 13px;
  color: var(--ink-primary, #050505);
}

.dreamygrid26-fSegOpt input:checked + span{
  border-color: rgba(0,0,0,0.35);
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

@media (max-width: 380px){
  .dreamygrid26-fSeg{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.dreamygrid26-fSwitch{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.dreamygrid26-fSwitch input{ position: absolute; opacity: 0; }

.dreamygrid26-fSwitchUI{
  flex: 0 0 auto;
  width: 46px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.06);
  position: relative;
  margin-top: 2px;
}

.dreamygrid26-fSwitchUI::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 10px 24px rgba(0,0,0,0.16);
  transition: transform 180ms var(--anim-physics, ease);
}

.dreamygrid26-fSwitch input:checked + .dreamygrid26-fSwitchUI{
  background: rgba(0,0,0,0.14);
}

.dreamygrid26-fSwitch input:checked + .dreamygrid26-fSwitchUI::after{
  transform: translateY(-50%) translateX(18px);
}

@media (prefers-reduced-motion: reduce){
  .dreamygrid26-fSwitchUI::after{ transition: none; }
}

.dreamygrid26-fSwitchText{
  font-size: 13px;
  color: var(--ink-primary, #050505);
  line-height: 1.35;
}

.dreamygrid26-fActions{
  padding: 12px 16px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.96);
}

.dreamygrid26-fClear{
  font-size: 13px;
  color: var(--ink-secondary, #757575);
  text-decoration: none;
  padding: 10px 10px;
  border-radius: 12px;
}

.dreamygrid26-fClear:hover{ background: rgba(0,0,0,0.04); color: var(--ink-primary, #050505); }


.dreamygrid26-fClear:hover{ color: var(--ink-primary, #050505); }

.dreamygrid26-fApply{
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.14);
  background: var(--ink-primary, #050505);
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
}


.dreamygrid26-fApply:hover{ background: #000000; }

.dreamygrid26-fApply:focus-visible{ outline: 2px solid rgba(0,0,0,0.55); outline-offset: 2px; }

/* Prevent accidental horizontal overflow on mobile */
.dreamygrid26-sfb, .dreamygrid26-sfb *{ max-width: 100%; }



/* =========================================================
   DreamyGrid26 — Load more + skeleton loaders (Archives)
   - Replaces pagination (AJAX) with progressive enhancement link
   - Skeletons match card dimensions to avoid layout jumps
========================================================= */

/* Reduce extra bottom padding so the Load more bar sits close to the grid */
body.dreamygrid26-shop ul.products.dreamygrid26-grid{
  padding-bottom: 44px;
}

body.dreamygrid26-shop .dreamygrid26-loadMore{
  width: 100%;
  max-width: var(--dreamycore26-container, 1180px);
  margin: 0 auto 84px;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

body.dreamygrid26-shop .dreamygrid26-loadMoreBtn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--ink-primary, #050505);
  color: #ffffff;
  text-decoration: none;
  font-family: var(--dreamygrid26-ui);
  font-size: 13px;
  letter-spacing: 0.01em;
  border: 1px solid rgba(0,0,0,0.16);
  box-shadow: 0 14px 30px rgba(0,0,0,0.16);
  transform: translateZ(0);
}

body.dreamygrid26-shop .dreamygrid26-loadMoreBtn:hover{
  background: #000000;
}

body.dreamygrid26-shop .dreamygrid26-loadMoreBtn:focus-visible{
  outline: 2px solid rgba(0,0,0,0.55);
  outline-offset: 3px;
}

body.dreamygrid26-shop .dreamygrid26-loadMoreMsg{
  font-family: var(--dreamygrid26-ui);
  font-size: 12px;
  color: var(--ink-secondary, #757575);
  min-height: 1.2em;
}

body.dreamygrid26-shop .dreamygrid26-loadMore.is-loading .dreamygrid26-loadMoreBtn{
  opacity: 0.78;
  pointer-events: none;
}

body.dreamygrid26-shop .dreamygrid26-loadMore.is-done{
  display: none;
}

/* Skeleton cards */
body.dreamygrid26-shop .dreamygrid26-skel{
  pointer-events: none;
}

body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-stage{
  position: relative;
}

body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-halo{
  display: none;
}

body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-image,
body.dreamygrid26-shop .dreamygrid26-skel img,
body.dreamygrid26-shop .dreamygrid26-skel picture{
  opacity: 0;
}

body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-skelMedia{
  position: absolute;
  inset: 10% 10% 18%;
  border-radius: 26px;
  background: rgba(0,0,0,0.06);
  overflow: hidden;
}

body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-skelMedia::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.62) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  animation: dg26-shimmer 1.25s infinite;
}

body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-shadow{
  opacity: 0.32;
}

body.dreamygrid26-shop .dreamygrid26-skelLine{
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.07);
  overflow: hidden;
  position: relative;
}

body.dreamygrid26-shop .dreamygrid26-skelLine::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.60) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  animation: dg26-shimmer 1.25s infinite;
}

body.dreamygrid26-shop .dreamygrid26-skelLine + .dreamygrid26-skelLine{ margin-top: 10px; }

body.dreamygrid26-shop .dreamygrid26-skelLine.dg26-w40{ width: 40%; }
body.dreamygrid26-shop .dreamygrid26-skelLine.dg26-w55{ width: 55%; }
body.dreamygrid26-shop .dreamygrid26-skelLine.dg26-w70{ width: 70%; }

@keyframes dg26-shimmer{
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce){
  body.dreamygrid26-shop .dreamygrid26-skel .dreamygrid26-skelMedia::before,
  body.dreamygrid26-shop .dreamygrid26-skelLine::after{
    animation: none;
  }
}
