/* Wallcraft Product Details — dynamic product page */

.product-detail-loading{min-height:78svh;display:grid;place-items:center;align-content:center;gap:16px;background:var(--cream);color:var(--muted)}
.product-detail-spinner{width:46px;height:46px;border-radius:50%;border:2px solid rgba(21,21,19,.12);border-top-color:var(--blue);animation:pd-spin .8s linear infinite}
@keyframes pd-spin{to{transform:rotate(360deg)}}
.product-detail-loading[hidden],.product-detail-error[hidden],[data-product-content][hidden],.related-products-section[hidden],.packshot-label[hidden],.spec-card[hidden]{display:none!important}

.product-detail-error{min-height:75svh;background:var(--cream);display:grid;align-items:center;padding:150px 0 80px}
.product-detail-error .shell{max-width:760px;text-align:center}.product-detail-error h1{font-family:Georgia,serif;font-size:clamp(3rem,7vw,6.5rem);font-weight:400;line-height:.95;margin:14px 0 22px}.product-detail-error p{color:var(--muted);font-size:1.1rem;margin:0 auto 28px;max-width:610px}

.product-detail-hero{
  min-height:88svh;
  padding:118px 0 78px;
  background:linear-gradient(135deg,#f4f1eb 0 58%,#ece7dd 58%);
  overflow:hidden;
  position:relative;
  isolation:isolate;
}

/*
  Optional lifestyle image from product.prod_cover_img.
  It is a real DOM layer rather than a pseudo-element so its image loading
  and visibility are straightforward to debug.
*/
.product-cover-background{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  opacity:0;
  transition:opacity .45s ease;

  /* Keep the image on the light/left side of the diagonal hero. */
  clip-path:polygon(0 0,82% 0,40% 100%,0 100%);
}

/* Soft white veil keeps foreground text legible. */
.product-cover-background::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(244,241,235,.38);
}

.product-cover-background.is-visible{
  opacity:1;
}
.product-detail-hero:after{content:"";position:absolute;z-index:1;right:-13vw;top:13%;width:45vw;aspect-ratio:1;border-radius:50%;border:1px solid rgba(21,21,19,.07);box-shadow:0 0 0 70px rgba(255,255,255,.12),0 0 0 140px rgba(255,255,255,.07);pointer-events:none}
.product-breadcrumb{display:flex;align-items:center;gap:10px;font-size:.74rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted);position:relative;z-index:3;margin-bottom:28px}
.product-breadcrumb a:hover{color:var(--ink)}
.product-detail-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:80px;align-items:center;position:relative;z-index:2}

.product-packshot-stage{min-height:560px;position:relative;display:grid;place-items:center;isolation:isolate}
.product-packshot{width:min(78%,430px);aspect-ratio:1;background:#fff;border-radius:50%;display:grid;place-items:center;position:relative;z-index:3;box-shadow:0 32px 70px rgba(20,20,18,.1)}
.product-packshot:after{content:"";position:absolute;bottom:15%;left:20%;right:20%;height:18px;border-radius:50%;background:rgba(0,0,0,.10);filter:blur(15px)}
.product-packshot img{width:76%;height:76%;object-fit:contain;object-position:center;position:relative;z-index:2;filter:brightness(1.15) drop-shadow(0 22px 18px rgba(0,0,0,.09));transition:transform .65s var(--ease)}
.product-packshot-stage:hover .product-packshot img{transform:translateY(-9px) rotate(-1deg)}
.packshot-orbit{position:absolute;border:1px solid rgba(21,21,19,.13);border-radius:50%;z-index:1}
.orbit-one{inset:4%;animation:pd-orbit 28s linear infinite}.orbit-two{inset:17%;border-style:dashed;animation:pd-orbit 20s linear infinite reverse}
@keyframes pd-orbit{to{transform:rotate(360deg)}}
.packshot-label{position:absolute;z-index:5;background:rgba(255,255,255,.88);border:1px solid var(--line);border-radius:999px;padding:9px 13px;font-size:.68rem;text-transform:uppercase;letter-spacing:.11em;font-weight:850;backdrop-filter:blur(8px);box-shadow:0 10px 28px rgba(0,0,0,.06)}
.label-a{left:2%;top:28%;transform:rotate(-7deg)}.label-b{right:1%;top:19%;transform:rotate(7deg)}.label-c{right:4%;bottom:20%;transform:rotate(-5deg)}

.product-hero-copy{max-width:720px}.product-kicker{display:flex;align-items:center;justify-content:space-between;gap:20px}.product-code{font-size:.72rem;border:1px solid var(--line);border-radius:999px;padding:6px 10px;color:var(--muted);font-weight:800;letter-spacing:.08em}
.product-title{
  font-family:Georgia,serif;
  font-size:clamp(4rem,6.6vw,7.4rem);
  line-height:.88;
  font-weight:400;
  letter-spacing:-.045em;
  margin:18px 0 28px;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  text-wrap:balance;
}
.product-title.is-long{
  font-size:clamp(3.45rem,5.3vw,6rem);
  letter-spacing:-.035em;
}
.product-title.is-very-long{
  font-size:clamp(2.9rem,4.45vw,5rem);
  letter-spacing:-.025em;
}
.product-lede{font-size:clamp(1.08rem,1.6vw,1.35rem);line-height:1.55;color:#4c4a45;max-width:700px;margin:0}
.product-taxonomy-pills{display:flex;flex-wrap:wrap;gap:7px;margin:28px 0}.product-taxonomy-pills span{border:1px solid rgba(21,21,19,.15);border-radius:999px;padding:7px 11px;font-size:.72rem;text-transform:uppercase;letter-spacing:.08em;background:rgba(255,255,255,.42)}
.product-hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:32px}.product-helper{font-size:.82rem;color:var(--muted);margin-top:20px}.product-helper a{text-decoration:underline;text-underline-offset:3px;color:var(--ink)}

.product-story{
  padding:86px 0 92px;
  background:#fff;
}
.product-story-copy{
  max-width:980px;
}
.product-story-copy .eyebrow{
  display:block;
  margin-bottom:18px;
}
.product-long-copy{
  font-family:Georgia,serif;
  font-size:clamp(1.18rem,1.8vw,1.7rem);
  line-height:1.45;
  margin:0;
  color:var(--ink);
  white-space:pre-line;
}
.use-chips{
  display:flex;
  flex-wrap:wrap;
  gap:9px;
  margin-top:30px;
}
.use-chip{
  padding:10px 14px;
  border-radius:999px;
  background:#eeebe4;
  font-size:.77rem;
  font-weight:750;
}

.product-spec-section{padding:105px 0 120px;background:var(--cream);border-block:1px solid var(--line)}
.product-spec-section .section-heading-row{display:grid;grid-template-columns:1fr minmax(300px,470px);align-items:end;gap:60px;margin-bottom:38px}.product-spec-section .h2{margin-bottom:0}.product-spec-section .muted{margin:0 0 8px}
.product-spec-grid{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
.spec-card{min-height:250px;padding:22px;border:1px solid var(--line);border-radius:24px;background:#fff;display:flex;flex-direction:column;position:relative;overflow:hidden;transition:transform .35s var(--ease),box-shadow .35s var(--ease)}
.spec-card:hover{transform:translateY(-5px);box-shadow:0 18px 42px rgba(0,0,0,.07)}
.spec-card:after{content:"";position:absolute;width:125px;height:125px;border-radius:50%;right:-48px;bottom:-48px;background:#f0ede6;transition:transform .5s var(--ease)}.spec-card:hover:after{transform:scale(1.18)}
.spec-index{font-size:.67rem;letter-spacing:.13em;color:var(--muted)}.spec-label{margin-top:auto;font-size:.7rem;text-transform:uppercase;letter-spacing:.11em;color:var(--muted);font-weight:800}.spec-card strong{font-family:Georgia,serif;font-weight:400;font-size:1.65rem;line-height:1.05;margin-top:8px;max-width:90%;position:relative;z-index:2}

.product-fit-section{padding:110px 0;background:#fff}.product-fit-grid{display:grid;grid-template-columns:.72fr 1.28fr;gap:85px}.product-fit-intro .h2{margin:14px 0 22px}.product-fit-intro p{max-width:460px}
.taxonomy-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.taxonomy-group{border:1px solid var(--line);border-radius:23px;padding:22px;min-height:160px;background:#faf8f4}.taxonomy-group-type{font-size:.67rem;text-transform:uppercase;letter-spacing:.13em;font-weight:850;color:var(--muted)}.taxonomy-group-items{display:flex;flex-wrap:wrap;gap:7px;margin-top:26px}.taxonomy-group-items span{background:#fff;border:1px solid var(--line);border-radius:999px;padding:7px 10px;font-size:.78rem}

.system-callout{padding:0 0 115px;background:#fff}.system-card{background:var(--ink);color:#fff;border-radius:34px;padding:55px 58px;display:grid;grid-template-columns:.85fr 1.15fr;gap:80px;align-items:center}.system-card .eyebrow{color:var(--lime)}.system-card h2{font-family:Georgia,serif;font-size:clamp(3rem,5vw,5.7rem);font-weight:400;line-height:.9;margin:12px 0 0}.system-card p{color:rgba(255,255,255,.72);font-size:1.04rem;line-height:1.65;margin:0}.system-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:25px}

.related-products-section{padding:100px 0 125px;background:var(--cream);border-top:1px solid var(--line)}
.related-products-section .section-heading-row{display:flex;justify-content:space-between;align-items:end;gap:30px;margin-bottom:32px}.related-products-section .h2{margin-bottom:0}.text-link{text-decoration:underline;text-underline-offset:4px;font-size:.85rem}
.related-product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.related-card{border:1px solid var(--line);border-radius:25px;overflow:hidden;background:#fff;transition:.38s var(--ease)}.related-card:hover{transform:translateY(-6px);box-shadow:0 18px 46px rgba(0,0,0,.08)}
.related-image{height:230px;display:grid;place-items:center;padding:20px;background:#fff}.related-image img{width:180px;height:180px;object-fit:contain;filter:drop-shadow(0 14px 12px rgba(0,0,0,.08));transition:transform .5s var(--ease)}.related-card:hover img{transform:translateY(-5px)}
.related-body{padding:18px 19px 20px;background:#f8f5ef}.related-meta{display:flex;justify-content:space-between;gap:10px;font-size:.68rem;text-transform:uppercase;letter-spacing:.1em;color:var(--muted)}.related-card h3{font-family:Georgia,serif;font-size:1.65rem;font-weight:400;margin:11px 0 8px}.related-card p{color:var(--muted);font-size:.84rem;margin:0;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}

@media(max-width:1100px){
  .product-detail-grid{grid-template-columns:1fr 1fr;gap:40px}.product-packshot-stage{min-height:470px}.product-title{font-size:clamp(3.8rem,7vw,6rem)}
  .product-spec-grid{grid-template-columns:repeat(3,1fr)}.product-story-grid,.product-fit-grid{gap:55px}
}
@media(max-width:820px){
  .product-detail-hero{padding-top:110px}.product-detail-grid,.product-story-grid,.product-fit-grid,.system-card{grid-template-columns:1fr}
  .product-detail-grid{gap:25px}.product-packshot-stage{min-height:420px;order:2}.product-hero-copy{order:1}.product-title{font-size:clamp(3.8rem,14vw,6rem)}
  .product-story{padding:80px 0}.product-story-heading{position:static}.product-story-grid{gap:30px}
  .product-spec-section .section-heading-row{grid-template-columns:1fr;gap:20px}.product-spec-grid{grid-template-columns:repeat(2,1fr)}
  .product-fit-grid{gap:35px}.system-card{padding:40px 34px;gap:30px}.related-product-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:560px){
  .product-detail-hero{padding:96px 0 55px}.product-breadcrumb{font-size:.65rem;flex-wrap:wrap}.product-packshot-stage{min-height:340px}.product-packshot{width:75%}
  .packshot-label{font-size:.58rem;padding:7px 9px}.label-a{left:0}.label-b{right:0}.label-c{right:0}
  .product-title{font-size:clamp(3.45rem,18vw,5rem)}.product-kicker{align-items:flex-start}
  .product-spec-grid,.taxonomy-groups,.related-product-grid{grid-template-columns:1fr}.spec-card{min-height:190px}
  .system-card{border-radius:26px;padding:34px 26px}.related-products-section .section-heading-row{align-items:start;flex-direction:column}
}
@media(prefers-reduced-motion:reduce){.product-detail-spinner,.orbit-one,.orbit-two{animation:none!important}}


@media(max-width:820px){
  .product-cover-background{
    clip-path:polygon(0 0,100% 0,100% 58%,0 78%);
    background-position:center top;
  }

  .product-cover-background::after{
    background:rgba(244,241,235,.48);
  }
}


/* =========================================================
   Expanded product-detail data
   ========================================================= */

.product-benefits-section{
  padding:105px 0 115px;
  background:#fff;
  border-top:1px solid var(--line);
}
.product-benefits-section[hidden],
.product-options-section[hidden],
.product-downloads-section[hidden],
.feature-panel[hidden],
.uses-panel[hidden],
.standard-colours-panel[hidden],
.pack-sizes-panel[hidden]{
  display:none!important;
}
.product-benefits-section .section-heading-row,
.product-options-section .section-heading-row{
  display:grid;
  grid-template-columns:1fr minmax(300px,470px);
  align-items:end;
  gap:60px;
  margin-bottom:38px;
}
.product-benefits-section .h2,
.product-options-section .h2{
  margin-bottom:0;
}
.product-benefits-section .muted,
.product-options-section .muted{
  margin:0 0 8px;
}
.product-benefits-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}
.feature-panel,
.uses-panel{
  grid-column:1 / -1;
  border-radius:30px;
  padding:28px;
  border:1px solid var(--line);
}
.feature-panel{
  min-height:360px;
}
.uses-panel{
  min-height:250px;
}
.feature-panel{
  position:relative;
  overflow:hidden;
  isolation:isolate;

  /*
    The feature block itself begins black.
    The attached video progressively paints this same area white.
  */
  background:#000;
  color:#191918;
}

/*
  TRUE BACKGROUND VIDEO:
  absolute positioning means the video contributes zero height to the
  Features layout. Matt Finish, Easy to Touch Up, etc. sit directly
  over the moving video.
*/
.feature-panel > .feature-panel-video{
  position:absolute!important;
  z-index:0!important;
  inset:0!important;

  width:100%!important;
  height:100%!important;
  max-width:none!important;
  max-height:none!important;

  margin:0!important;
  padding:0!important;
  border:0!important;

  display:block!important;

  /*
    The source video is an abstract paint animation, so stretching it
    to the exact panel rectangle gives the intended effect: the entire
    Features container is painted from black to white.
  */
  object-fit:fill!important;
  object-position:center!important;

  pointer-events:none!important;
  background:#000;
}

/*
  All feature copy is above the video.
  It is black/charcoal from the start, so it appears naturally as the
  white paint in the video passes behind it.
*/
.feature-panel-content{
  position:relative;
  z-index:2;
  width:100%;
  color:#191918;
}

.feature-panel .eyebrow,
.feature-panel .detail-panel-count,
.feature-panel .feature-row strong,
.feature-panel .feature-number{
  color:#191918;
}

/* Dark dividers become visible as the background is painted white. */
.feature-panel .feature-row{
  border-color:rgba(25,25,24,.20);
}

/* Safe fallback: if video playback is unavailable, show the final light state. */
.feature-panel.video-unavailable{
  background:#f4f1eb;
}
.uses-panel{
  background:#ede9e0;
  color:var(--ink);
}
.detail-panel-heading,
.option-panel-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:24px;
}
.detail-panel-count,
.option-count{
  display:grid;
  place-items:center;
  min-width:48px;
  height:32px;
  padding:0 10px;
  border:1px solid currentColor;
  border-radius:999px;
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
  opacity:.65;
}
.feature-list{
  margin-top:42px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  column-gap:44px;
}
.feature-row{
  display:grid;
  grid-template-columns:54px 1fr;
  align-items:center;
  gap:12px;
  padding:17px 0;
  border-top:1px solid rgba(45,45,42,.18);
}
.feature-row:nth-last-child(-n+2){
  border-bottom:1px solid rgba(45,45,42,.18);
}
.feature-number{
  color:var(--lime);
  font-size:.7rem;
  letter-spacing:.11em;
}
.feature-row strong{
  font-family:Georgia,serif;
  font-size:clamp(1.25rem,2vw,1.8rem);
  line-height:1.1;
  font-weight:400;
}
.general-use-list{
  display:flex;
  flex-wrap:wrap;
  align-content:flex-start;
  gap:9px;
  padding-top:38px;
}
.general-use-item{
  display:inline-flex;
  align-items:center;
  min-height:46px;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid rgba(21,21,19,.13);
  background:#fff;
  font-size:.82rem;
  font-weight:750;
}


/* Colours + pack sizes */
.product-options-section{
  padding:105px 0 120px;
  background:#e9e5dc;
  border-bottom:1px solid var(--line);
}
.product-options-grid{
  display:grid;
  grid-template-columns:1.35fr .65fr;
  gap:14px;
}
.standard-colours-panel,
.pack-sizes-panel{
  border:1px solid rgba(21,21,19,.12);
  border-radius:30px;
  padding:28px;
  background:#f8f5ef;
}
.option-panel-heading p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:.82rem;
}
.standard-colour-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:8px;
  margin-top:30px;
}
.standard-colour-item{
  --standard-colour:#d7d4cc;

  position:relative;
  min-width:0;
  min-height:112px;

  padding:18px 16px;

  border-radius:20px;
  border:2px solid var(--ink);
  background:#fff;

  display:flex;
  align-items:flex-end;
  justify-content:center;

  overflow:hidden;
  isolation:isolate;
}

/* Paint layer fills from left to right on hover. */
.standard-colour-item::before{
  content:"";

  position:absolute;
  inset:0;

  background:var(--standard-colour);

  transform:scaleX(0);
  transform-origin:left center;

  transition:
    transform .75s cubic-bezier(.22,.75,.2,1);

  z-index:0;
}

.standard-colour-item:hover::before{
  transform:scaleX(1);
}

/* The previous circular swatch is no longer needed. */
.standard-colour-swatch{
  display:none;
}

/* Colour name tab cut into the lower edge of the card. */
.standard-colour-copy{
  position:relative;
  z-index:3;

  min-width:170px;

  padding:10px 18px 9px;

  background:#fff;

  border:2px solid var(--ink);
  border-bottom:0;

  border-radius:18px 18px 0 0;

  text-align:center;

  /* Pull the tab into the card's bottom border. */
  margin-bottom:-18px;
}

.standard-colour-copy strong{
  display:block;

  font-size:.88rem;
  line-height:1;

  text-transform:uppercase;
  letter-spacing:.06em;
}

/* Rounded shoulders on either side of the label tab. */
.standard-colour-copy::before,
.standard-colour-copy::after{
  content:"";

  position:absolute;
  bottom:0;

  width:18px;
  height:18px;

  background:#fff;

  pointer-events:none;
}

.standard-colour-copy::before{
  left:-18px;
  border-bottom-right-radius:18px;
  box-shadow:8px 8px 0 0 #fff;
}

.standard-colour-copy::after{
  right:-18px;
  border-bottom-left-radius:18px;
  box-shadow:-8px 8px 0 0 #fff;
}

.pack-size-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  margin-top:30px;
}
.pack-size-item{
  position:relative;
  overflow:hidden;
  min-height:145px;
  padding:18px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(21,21,19,.1);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.pack-size-item:after{
  content:"";
  position:absolute;
  width:105px;
  height:105px;
  border-radius:50%;
  right:-44px;
  bottom:-46px;
  background:#e9e5dc;
}
.pack-size-index{
  position:relative;
  z-index:2;
  color:var(--muted);
  font-size:.65rem;
  letter-spacing:.12em;
}
.pack-size-item strong{
  position:relative;
  z-index:2;
  font-family:Georgia,serif;
  font-size:clamp(2rem,3vw,3.2rem);
  line-height:.9;
  font-weight:400;
}


/* Downloads */
.product-downloads-section{
  padding:110px 0;
  background:#fff;
  border-top:1px solid var(--line);
}
.downloads-layout{
  display:grid;
  grid-template-columns:.7fr 1.3fr;
  gap:80px;
  align-items:start;
}
.downloads-intro{
  position:sticky;
  top:120px;
}
.downloads-intro .h2{
  margin:14px 0 22px;
}
.downloads-intro p{
  max-width:430px;
}
.downloads-list{
  border-top:1px solid var(--line);
}
.download-item{
  display:grid;
  grid-template-columns:52px minmax(0,1fr) auto 42px;
  gap:15px;
  align-items:center;
  min-height:94px;
  padding:15px 4px;
  border-bottom:1px solid var(--line);
  transition:
    padding-left .32s var(--ease),
    background .32s ease;
}
a.download-item:hover{
  padding-left:14px;
  background:#f7f4ee;
}
.download-index{
  font-size:.66rem;
  letter-spacing:.12em;
  color:var(--muted);
}
.download-copy{
  display:grid;
  gap:4px;
}
.download-copy strong{
  font-family:Georgia,serif;
  font-size:1.35rem;
  line-height:1.1;
  font-weight:400;
}
.download-copy small{
  color:var(--muted);
  font-size:.78rem;
}
.download-type{
  padding:6px 9px;
  border:1px solid var(--line);
  border-radius:999px;
  font-size:.62rem;
  font-weight:850;
  letter-spacing:.1em;
}
.download-arrow{
  width:36px;
  height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  transition:.3s var(--ease);
}
a.download-item:hover .download-arrow{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
  transform:rotate(8deg);
}
.download-item.is-unavailable{
  opacity:.5;
}


/* Responsive expanded details */
@media(max-width:1000px){
  .product-benefits-grid,
  .product-options-grid{
    grid-template-columns:1fr;
  }

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

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

  .downloads-layout{
    grid-template-columns:1fr;
    gap:36px;
  }

  .downloads-intro{
    position:static;
  }
}

@media(max-width:820px){
  .product-benefits-section .section-heading-row,
  .product-options-section .section-heading-row{
    grid-template-columns:1fr;
    gap:20px;
  }

  .standard-colour-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .pack-size-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:560px){
  .feature-panel,
  .uses-panel,
  .standard-colours-panel,
  .pack-sizes-panel{
    border-radius:24px;
    padding:22px;
  }

  .feature-row{
    grid-template-columns:42px 1fr;
  }

  .standard-colour-grid{
    grid-template-columns:1fr;
  }

  .download-item{
    grid-template-columns:38px minmax(0,1fr) auto;
  }

  .download-type{
    display:none;
  }

  .download-arrow{
    width:32px;
    height:32px;
  }
}


/* Product-title and feature layout refinements */
@media(max-width:820px){
  .feature-list{
    grid-template-columns:1fr;
    column-gap:0;
  }

  .feature-row:nth-last-child(-n+2){
    border-bottom:0;
  }

  .feature-row:last-child{
    border-bottom:1px solid rgba(45,45,42,.18);
  }
}

@media(max-width:560px){
  .product-title,
  .product-title.is-long,
  .product-title.is-very-long{
    font-size:clamp(3rem,14.5vw,4.45rem);
    overflow-wrap:break-word;
  }
}


@media(prefers-reduced-motion:reduce){
  .feature-panel > .feature-panel-video{
    display:none!important;
  }

  .feature-panel{
    background:#f4f1eb;
  }
}
