/* Scope everything to shop archives only */
body.dreamygrid26-shop {
  --dreamygrid26-bg: #ffffff;
  --dreamygrid26-ink: #050505;
  --dreamygrid26-ink2: #757575;
  --dreamygrid26-ink3: #e0e0e0;
  --dreamygrid26-inkA: #999999;

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

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

  /* Sticky offset (set this if your header is sticky, e.g. 70px) */
  --dreamygrid26-stickyTop: 0px;

  /* Image stage ratio to reduce CLS (tune to your renders) */
  --dreamygrid26-stageRatio: 3 / 4;
}

/* 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 16px 100px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  width: 100% !important;

  list-style: none !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; }

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

/* 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 {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
  aspect-ratio: var(--dreamygrid26-stageRatio);
}

/* 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: 85%;
  max-height: 90%;
  object-fit: contain;
  z-index: 10;
  transition: transform 0.8s var(--dreamygrid26-ease);
  will-change: transform;
}

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:4px; }

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;
  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);
  margin-top: 8px;
}

/* =========================================================
   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;
}

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);
}