/* InshaWeb Factory Core — product system 2.0 */
:root{
  --iwfc-card-bg:var(--iwf-product-card-bg,#fff);
  --iwfc-card-border:var(--iwf-product-card-border,#e3e9e6);
  --iwfc-card-title:var(--iwf-product-card-title,#17201d);
  --iwfc-card-meta:var(--iwf-product-card-meta,var(--iwfc-primary,#155d4a));
  --iwfc-card-radius:var(--iwf-product-card-radius,18px);
  --iwfc-card-gap:var(--iwf-product-card-gap,22px);
  --iwfc-card-padding:var(--iwf-product-card-padding,18px);
}

/* ---------- Product cards ---------- */
.iwfc-products{
  display:grid;
  grid-template-columns:repeat(var(--iwfc-columns,var(--iwfc-archive-cols,4)),minmax(0,1fr));
  gap:var(--iwfc-grid-gap,var(--iwfc-card-gap));
  container-type:inline-size;
}
.iwfc-product-card{
  position:relative;min-width:0;overflow:hidden;border:1px solid var(--iwfc-card-border);
  border-radius:var(--iwfc-card-radius);background:var(--iwfc-card-bg);color:var(--iwfc-text,#17201d);
  box-shadow:var(--iwfc-card-shadow,0 1px 0 rgba(13,46,39,.02));
  transition:transform .28s cubic-bezier(.2,.8,.2,1),box-shadow .28s ease,border-color .28s ease,background .28s ease;
  isolation:isolate;container-type:inline-size;
}
.iwfc-product-card__media{position:relative;display:block;overflow:hidden;background:linear-gradient(145deg,#f8faf9,#eef3f1);aspect-ratio:var(--iwfc-card-ratio,4/3)}
.iwfc-product-card__media img{display:block;width:100%;height:100%;object-fit:var(--iwfc-card-fit,contain);transition:transform .55s cubic-bezier(.2,.8,.2,1),filter .35s ease}
.iwfc-product-card__placeholder{display:grid;place-items:center;width:100%;height:100%;background:radial-gradient(circle at 70% 20%,color-mix(in srgb,var(--iwfc-primary) 16%,transparent),transparent 38%),linear-gradient(135deg,#f8faf9,#edf2f0);color:color-mix(in srgb,var(--iwfc-primary) 72%,#fff);font-size:clamp(2.6rem,16cqi,5.5rem);font-weight:900}
.iwfc-product-card__placeholder span{display:grid;place-items:center;width:1.2em;aspect-ratio:1;border-radius:32%;background:color-mix(in srgb,var(--iwfc-primary) 9%,white);box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--iwfc-primary) 10%,transparent)}
.iwfc-product-card__media-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(4,18,14,.82),transparent 68%);pointer-events:none}
.iwfc-product-card__body{position:relative;padding:var(--iwfc-card-padding)}
.iwfc-product-card__meta{display:inline-flex;align-items:center;gap:5px;margin-bottom:8px;color:var(--iwfc-card-meta);font-size:.78rem;font-weight:850;text-decoration:none}
.iwfc-product-card__title{margin:0;color:var(--iwfc-card-title);font-size:var(--iwfc-card-title-size,1.08rem);line-height:1.42;font-weight:850}
.iwfc-product-card__title a{color:inherit;text-decoration:none}
.iwfc-product-card__excerpt{margin:9px 0 0;color:var(--iwfc-muted,#68736f);font-size:var(--iwfc-card-text-size,.91rem);line-height:1.75}
.iwfc-product-card__facts{display:flex;gap:8px;flex-wrap:wrap;margin-top:11px;color:var(--iwfc-muted,#68736f);font-size:.76rem}.iwfc-product-card__facts span{padding:3px 8px;border-radius:999px;background:var(--iwfc-soft,#f5f7f6)}
.iwfc-product-card__link{display:inline-flex;align-items:center;gap:8px;margin-top:14px;color:var(--iwfc-primary,#155d4a);font-size:.88rem;font-weight:900;text-decoration:none}.iwfc-product-card__link span:last-child{transition:transform .2s ease}.iwfc-product-card__link:hover span:last-child{transform:translateX(-4px)}

/* Card presets */
.iwfc-product-card--minimal{border-color:transparent;box-shadow:none;background:transparent}.iwfc-product-card--minimal .iwfc-product-card__body{padding-inline:2px}.iwfc-product-card--minimal .iwfc-product-card__media{border-radius:var(--iwfc-card-radius)}
.iwfc-product-card--bordered{box-shadow:none;border-width:1.5px}
.iwfc-product-card--catalog .iwfc-product-card__body{border-top:1px solid var(--iwfc-card-border)}.iwfc-product-card--catalog .iwfc-product-card__title{font-family:inherit}.iwfc-product-card--catalog .iwfc-product-card__link{width:100%;justify-content:space-between;padding-top:11px;border-top:1px dashed var(--iwfc-card-border)}
.iwfc-product-card--overlay .iwfc-product-card__body{position:absolute;z-index:2;inset-inline:0;bottom:0;color:#fff}.iwfc-product-card--overlay .iwfc-product-card__title,.iwfc-product-card--overlay .iwfc-product-card__title a,.iwfc-product-card--overlay .iwfc-product-card__excerpt,.iwfc-product-card--overlay .iwfc-product-card__link{color:#fff}.iwfc-product-card--overlay .iwfc-product-card__meta{color:#fff;background:rgba(255,255,255,.16);padding:4px 8px;border-radius:999px;backdrop-filter:blur(8px)}.iwfc-product-card--overlay .iwfc-product-card__media{aspect-ratio:4/5}
.iwfc-product-card--glass{background:color-mix(in srgb,var(--iwfc-card-bg) 80%,transparent);backdrop-filter:blur(14px);box-shadow:0 18px 55px rgba(15,43,36,.08)}
.iwfc-product-card--horizontal{display:grid;grid-template-columns:minmax(135px,.8fr) minmax(0,1.2fr)}.iwfc-product-card--horizontal .iwfc-product-card__media{height:100%;aspect-ratio:auto;min-height:180px}

.iwf-product-card-hover-lift .iwfc-product-card:hover,.iwfc-product-card[data-hover="lift"]:hover{transform:translateY(-7px);box-shadow:0 22px 54px rgba(16,48,39,.12)}
.iwf-product-card-hover-zoom .iwfc-product-card:hover img,.iwfc-product-card[data-hover="zoom"]:hover img{transform:scale(1.055)}
.iwf-product-card-hover-glow .iwfc-product-card:hover{border-color:color-mix(in srgb,var(--iwfc-primary) 35%,var(--iwfc-card-border));box-shadow:0 18px 50px color-mix(in srgb,var(--iwfc-primary) 12%,transparent)}
.iwf-product-card-hover-tilt .iwfc-product-card:hover{transform:perspective(900px) rotateX(1.5deg) rotateY(-1.5deg) translateY(-4px);box-shadow:0 24px 54px rgba(16,48,39,.12)}

/* Container-based card reflow. This fixes narrow Elementor/container contexts independent of viewport width. */
@container iwfc-archive (inline-size < 900px){.iwfc-archive-products{grid-template-columns:repeat(var(--iwfc-archive-cols-t,3),minmax(0,1fr))}}
@container iwfc-archive (inline-size < 620px){.iwfc-archive-products{grid-template-columns:repeat(var(--iwfc-archive-cols-m,2),minmax(0,1fr));gap:14px}.iwfc-archive-products .iwfc-product-card__body{padding:min(var(--iwfc-card-padding),14px)}}
@container iwfc-archive (inline-size < 360px){.iwfc-archive-products{grid-template-columns:1fr}.iwfc-archive-products .iwfc-product-card--horizontal{grid-template-columns:1fr}.iwfc-archive-products .iwfc-product-card--horizontal .iwfc-product-card__media{min-height:0;aspect-ratio:var(--iwfc-card-ratio,4/3)}}

/* ---------- Archive ---------- */
.iwfc-products-archive{padding-block:clamp(22px,4vw,68px);overflow:clip}.iwfc-archive-shell{container:iwfc-archive / inline-size}
.iwfc-archive-header{position:relative;display:grid;grid-template-columns:minmax(0,1fr) auto;gap:36px;align-items:end;margin-bottom:clamp(24px,4vw,44px);padding:clamp(24px,4vw,48px);border:1px solid var(--iwfc-border,#dfe6e3);border-radius:clamp(18px,2.3vw,30px);background:linear-gradient(135deg,#fff,#f7faf8);overflow:hidden;isolation:isolate}
.iwfc-archive-header:before{content:"";position:absolute;z-index:-1;width:320px;aspect-ratio:1;border-radius:50%;inset-inline-end:-90px;top:-170px;background:radial-gradient(circle,color-mix(in srgb,var(--iwfc-primary) 18%,transparent),transparent 68%)}
.iwfc-archive-header__copy{max-width:780px}.iwfc-archive-header h1{margin:.08em 0 .22em;font-size:clamp(2.2rem,7cqi,4.6rem);line-height:1.02;letter-spacing:-.035em}.iwfc-archive-description{max-width:720px;margin:0;color:var(--iwfc-muted,#68736f);font-size:clamp(.96rem,2cqi,1.08rem);line-height:1.9}.iwfc-archive-header__metric{display:grid;place-items:center;min-width:128px;min-height:128px;padding:14px;border-radius:50%;background:var(--iwfc-secondary,#0d2e27);color:#fff;box-shadow:0 20px 45px rgba(13,46,39,.15);text-align:center}.iwfc-archive-header__metric strong{font-size:2.2rem;line-height:1}.iwfc-archive-header__metric span{font-size:.75rem;opacity:.75}
.iwfc-archive-header--minimal .iwfc-archive-header{padding:0 0 22px;border:0;border-bottom:1px solid var(--iwfc-border);border-radius:0;background:transparent}.iwfc-archive-header--minimal .iwfc-archive-header:before,.iwfc-archive-header--minimal .iwfc-archive-header__metric{display:none}
.iwfc-archive-header--dark .iwfc-archive-header{background:linear-gradient(135deg,var(--iwfc-secondary,#0d2e27),color-mix(in srgb,var(--iwfc-primary) 66%,#061713));color:#fff;border-color:transparent}.iwfc-archive-header--dark .iwfc-archive-description{color:rgba(255,255,255,.72)}.iwfc-archive-header--dark .iwfc-eyebrow{color:color-mix(in srgb,var(--iwfc-accent,#d6a633) 88%,white)}.iwfc-archive-header--dark .iwfc-archive-header__metric{background:rgba(255,255,255,.12);backdrop-filter:blur(14px)}
.iwfc-archive-header--split .iwfc-archive-header{grid-template-columns:minmax(0,1.4fr) minmax(200px,.6fr)}.iwfc-archive-header--split .iwfc-archive-header__metric{border-radius:24px;min-width:0;width:100%;height:100%;min-height:110px}

.iwfc-catalog-controls{position:relative;margin-bottom:clamp(24px,3vw,34px);container:iwfc-filters / inline-size}.iwfc-catalog-toolbar{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-bottom:10px}.iwfc-results-count{color:var(--iwfc-muted,#68736f);font-size:.88rem}.iwfc-results-count strong{color:var(--iwfc-text,#17201d);font-size:1rem}.iwfc-view-toggle{display:flex;gap:4px;padding:4px;border:1px solid var(--iwfc-border,#dfe6e3);border-radius:12px;background:#fff}.iwfc-view-toggle button{display:grid;place-items:center;width:34px;height:34px;border:0;border-radius:8px;background:transparent;color:var(--iwfc-muted,#68736f);cursor:pointer}.iwfc-view-toggle button.is-active{background:var(--iwfc-primary,#155d4a);color:#fff}
.iwfc-archive-filters{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,155px),1fr));gap:10px;align-items:end;padding:14px;border:1px solid var(--iwfc-border,#dfe6e3);border-radius:18px;background:rgba(255,255,255,.96);box-shadow:0 14px 40px rgba(17,48,40,.06)}.iwfc-filter-style--bar .iwfc-archive-filters{padding:0 0 16px;border:0;border-bottom:1px solid var(--iwfc-border);border-radius:0;box-shadow:none}.iwfc-filter-style--minimal .iwfc-archive-filters{padding:0;border:0;box-shadow:none}.iwfc-filter-style--panel .iwfc-archive-filters{padding:22px;background:var(--iwfc-soft,#f5f7f6);box-shadow:none}
.has-sticky-filters .iwfc-catalog-controls{position:sticky;z-index:90;top:92px}.admin-bar .has-sticky-filters .iwfc-catalog-controls{top:124px}
.iwfc-filter-field{display:grid;min-width:0;gap:5px}.iwfc-filter-field>span{font-size:.72rem;font-weight:850;color:var(--iwfc-muted,#68736f)}.iwfc-filter-field input,.iwfc-filter-field select{display:block;width:100%;min-width:0;height:44px;border:1px solid var(--iwfc-border,#dfe6e3);border-radius:11px;background:#fff;color:var(--iwfc-text,#17201d);padding:0 11px;outline:none;transition:border-color .18s ease,box-shadow .18s ease}.iwfc-filter-field input:focus,.iwfc-filter-field select:focus{border-color:var(--iwfc-primary);box-shadow:0 0 0 3px color-mix(in srgb,var(--iwfc-primary) 12%,transparent)}.iwfc-filter-field--search{grid-column:span 2}.iwfc-filter-input-wrap{position:relative}.iwfc-filter-input-wrap>span{position:absolute;inset-inline-start:12px;top:50%;transform:translateY(-50%);opacity:.5}.iwfc-filter-input-wrap input{padding-inline-start:36px}.iwfc-filter-actions{display:flex;align-items:center;gap:9px;min-width:0}.iwfc-filter-actions .iwfc-button{min-height:44px;white-space:nowrap}.iwfc-filter-reset{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding-inline:9px;color:var(--iwfc-muted,#68736f);font-size:.82rem;font-weight:800;text-decoration:none;white-space:nowrap}
.iwfc-archive-products{--iwfc-columns:var(--iwfc-archive-cols,4)}.iwfc-archive-products.is-list-view{grid-template-columns:1fr!important}.iwfc-archive-products.is-list-view .iwfc-product-card{display:grid;grid-template-columns:minmax(180px,30%) minmax(0,1fr)}.iwfc-archive-products.is-list-view .iwfc-product-card__media{height:100%;aspect-ratio:auto;min-height:190px}.iwfc-archive-products.is-list-view .iwfc-product-card__body{display:flex;flex-direction:column;justify-content:center}.iwfc-products-archive--catalog .iwfc-product-card{--iwfc-card-radius:12px}.iwfc-products-archive--editorial .iwfc-archive-products{grid-template-columns:repeat(2,minmax(0,1fr))}.iwfc-products-archive--editorial .iwfc-product-card:nth-child(5n+1){grid-column:span 2}.iwfc-products-archive--editorial .iwfc-product-card:nth-child(5n+1) .iwfc-product-card__media{aspect-ratio:16/7}
.iwfc-pagination{margin-top:38px}.iwfc-pagination ul{display:flex;justify-content:center;gap:6px;list-style:none;padding:0;margin:0}.iwfc-pagination a,.iwfc-pagination span{display:grid;place-items:center;min-width:42px;height:42px;padding:0 9px;border:1px solid var(--iwfc-border,#dfe6e3);border-radius:11px;background:#fff;color:var(--iwfc-text,#17201d);text-decoration:none}.iwfc-pagination .current{background:var(--iwfc-primary);color:#fff;border-color:var(--iwfc-primary)}
.iwfc-empty{display:grid;place-items:center;gap:8px;padding:clamp(38px,8vw,90px) 20px;text-align:center;border:1px dashed var(--iwfc-border,#dfe6e3);border-radius:24px;background:linear-gradient(145deg,#fff,#fafcfb)}.iwfc-empty h2,.iwfc-empty p{margin:0}.iwfc-empty p{color:var(--iwfc-muted)}.iwfc-empty__icon{display:grid;place-items:center;width:64px;height:64px;border-radius:20px;background:color-mix(in srgb,var(--iwfc-primary) 8%,white);color:var(--iwfc-primary);font-size:2rem}

@container iwfc-filters (inline-size < 760px){.iwfc-filter-field--search{grid-column:1/-1}.iwfc-archive-filters{grid-template-columns:repeat(2,minmax(0,1fr))}.iwfc-filter-actions{grid-column:1/-1}.has-sticky-filters .iwfc-catalog-controls{position:relative;top:auto}}
@container iwfc-filters (inline-size < 440px){.iwfc-archive-filters{grid-template-columns:1fr}.iwfc-filter-field--search,.iwfc-filter-actions{grid-column:auto}.iwfc-filter-actions{display:grid;grid-template-columns:1fr auto}.iwfc-filter-actions .iwfc-button{width:100%}}
@container iwfc-archive (inline-size < 680px){.iwfc-archive-header{grid-template-columns:1fr;padding:22px}.iwfc-archive-header__metric{display:none}.iwfc-archive-header h1{font-size:clamp(2.15rem,11cqi,3.2rem)}.iwfc-products-archive--editorial .iwfc-archive-products{grid-template-columns:1fr}.iwfc-products-archive--editorial .iwfc-product-card:nth-child(5n+1){grid-column:auto}.iwfc-products-archive--editorial .iwfc-product-card:nth-child(5n+1) .iwfc-product-card__media{aspect-ratio:var(--iwfc-card-ratio,4/3)}.iwfc-archive-products.is-list-view .iwfc-product-card{grid-template-columns:135px minmax(0,1fr)}.iwfc-archive-products.is-list-view .iwfc-product-card__media{min-height:160px}}
@container iwfc-archive (inline-size < 430px){.iwfc-archive-products.is-list-view .iwfc-product-card{grid-template-columns:1fr}.iwfc-archive-products.is-list-view .iwfc-product-card__media{aspect-ratio:4/3;min-height:0}}

/* ---------- Single product ---------- */
.iwfc-product-page{padding-block:clamp(18px,3vw,46px);overflow:clip}.iwfc-product-shell{container:iwfc-product / inline-size}.iwfc-breadcrumbs{display:flex;align-items:center;flex-wrap:wrap;gap:7px;margin-bottom:18px;color:var(--iwfc-muted,#68736f);font-size:.8rem}.iwfc-breadcrumbs a{color:inherit;text-decoration:none}.iwfc-breadcrumbs span[aria-hidden]{opacity:.45}
.iwfc-product-hero{position:relative;display:grid;grid-template-columns:minmax(0,1.02fr) minmax(340px,.98fr);gap:clamp(28px,5vw,78px);align-items:start;padding:clamp(18px,3vw,42px);border:1px solid color-mix(in srgb,var(--iwfc-border) 80%,transparent);border-radius:clamp(20px,2.8vw,34px);background:var(--iwf-product-hero-bg,#f6f8f7);isolation:isolate;overflow:hidden}.iwfc-product-hero:before{content:"";position:absolute;z-index:-1;inset-inline-end:-12%;top:-42%;width:48%;aspect-ratio:1;border-radius:50%;background:radial-gradient(circle,color-mix(in srgb,var(--iwfc-primary) 13%,transparent),transparent 70%)}
.iwfc-product-gallery{min-width:0}.iwfc-product-gallery__stage{position:relative}.iwfc-main-image{display:block;width:100%;padding:0;border:0;border-radius:clamp(16px,2vw,28px);overflow:hidden;background:rgba(255,255,255,.78);cursor:zoom-in;aspect-ratio:var(--iwfc-product-image-ratio,1/1);box-shadow:0 18px 50px rgba(17,48,40,.055)}.iwfc-main-image img{display:block;width:100%;height:100%;object-fit:var(--iwfc-product-image-fit,contain);transition:transform .6s cubic-bezier(.2,.8,.2,1)}.iwfc-main-image:hover img{transform:scale(1.025)}
.iwfc-product-image-placeholder{display:grid;place-items:center;align-content:center;gap:12px;aspect-ratio:var(--iwfc-product-image-ratio,1/1);border-radius:clamp(16px,2vw,28px);background:radial-gradient(circle at 70% 15%,color-mix(in srgb,var(--iwfc-primary) 16%,transparent),transparent 35%),linear-gradient(145deg,#fff,#eef3f1);color:var(--iwfc-primary)}.iwfc-product-image-placeholder__mark{display:grid;place-items:center;width:clamp(90px,25%,150px);aspect-ratio:1;border-radius:32%;background:color-mix(in srgb,var(--iwfc-primary) 8%,white);font-size:clamp(3rem,11cqi,6.5rem);font-weight:900;box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--iwfc-primary) 9%,transparent)}.iwfc-product-image-placeholder small{color:var(--iwfc-muted);font-size:.78rem}
.iwfc-product-brand-badge{position:absolute;top:14px;inset-inline-start:14px;z-index:3;padding:6px 11px;border-radius:999px;background:rgba(255,255,255,.84);backdrop-filter:blur(12px);color:var(--iwfc-primary);font-size:.75rem;font-weight:900;box-shadow:0 6px 18px rgba(0,0,0,.05)}
.iwfc-product-thumbs{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:9px;margin-top:11px}.iwfc-product-thumb{padding:0;border:1px solid var(--iwfc-border);border-radius:12px;background:#fff;overflow:hidden;aspect-ratio:1;cursor:pointer;opacity:.72;transition:.2s}.iwfc-product-thumb img{display:block;width:100%;height:100%;object-fit:cover}.iwfc-product-thumb:hover,.iwfc-product-thumb.is-active{opacity:1;border-color:var(--iwfc-primary);box-shadow:0 0 0 2px color-mix(in srgb,var(--iwfc-primary) 11%,transparent)}
.iwfc-gallery-style--vertical .iwfc-product-gallery{display:grid;grid-template-columns:74px minmax(0,1fr);gap:11px}.iwfc-gallery-style--vertical .iwfc-product-gallery__stage{grid-column:2}.iwfc-gallery-style--vertical .iwfc-product-thumbs{grid-column:1;grid-row:1;display:flex;flex-direction:column;margin:0;max-height:560px;overflow:auto;scrollbar-width:thin}.iwfc-gallery-style--split .iwfc-product-gallery{display:grid;grid-template-columns:1fr 1fr;gap:10px}.iwfc-gallery-style--split .iwfc-product-gallery__stage{grid-column:1/-1}.iwfc-gallery-style--split .iwfc-product-thumbs{grid-column:1/-1;grid-template-columns:repeat(4,1fr)}.iwfc-gallery-style--floating .iwfc-main-image{transform:rotate(-1deg);box-shadow:0 34px 80px rgba(17,48,40,.13)}
.iwfc-product-summary{min-width:0;padding-block:clamp(8px,1.5vw,22px)}.has-sticky-summary .iwfc-product-summary{position:sticky;top:110px}.iwfc-product-summary__topline{display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}.iwfc-product-kicker{display:flex;gap:6px;flex-wrap:wrap}.iwfc-product-kicker a,.iwfc-industry-chip{display:inline-flex;align-items:center;min-height:28px;padding:4px 9px;border-radius:999px;background:color-mix(in srgb,var(--iwfc-primary) 8%,white);color:var(--iwfc-primary);font-size:.72rem;font-weight:900;text-decoration:none}.iwfc-industry-chip{background:color-mix(in srgb,var(--iwfc-accent,#d6a633) 13%,white);color:color-mix(in srgb,var(--iwfc-accent,#d6a633) 65%,#4b3b09)}
.iwfc-product-summary h1{margin:.22em 0 .22em;font-size:clamp(2.15rem,5.2cqi,4.4rem);line-height:1.02;letter-spacing:-.035em}.iwfc-product-lead{max-width:650px;margin:0;color:var(--iwfc-muted);font-size:clamp(1rem,1.8cqi,1.15rem);line-height:1.9}.iwfc-product-facts{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;margin:24px 0}.iwfc-product-facts div{padding:12px 14px;border:1px solid var(--iwfc-border);border-radius:13px;background:rgba(255,255,255,.65)}.iwfc-product-facts dt{margin-bottom:2px;color:var(--iwfc-muted);font-size:.72rem}.iwfc-product-facts dd{margin:0;font-weight:900}.iwfc-product-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:22px}.iwfc-product-actions .iwfc-button{min-height:50px;padding-inline:20px}.iwfc-button--primary{background:var(--iwfc-primary)!important;color:#fff!important}.iwfc-product-share{display:flex;align-items:center;gap:6px;flex-wrap:wrap;margin-top:18px;color:var(--iwfc-muted);font-size:.75rem}.iwfc-product-share>a,.iwfc-product-share>button{border:1px solid var(--iwfc-border);border-radius:999px;background:#fff;color:var(--iwfc-text);padding:5px 9px;text-decoration:none;font:inherit;font-weight:800;cursor:pointer}.iwfc-copy-feedback{color:var(--iwfc-primary);font-weight:800}.iwfc-product-trust{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px;padding-top:18px;border-top:1px dashed var(--iwfc-border);color:var(--iwfc-muted);font-size:.75rem}.iwfc-product-trust i{display:inline-grid;place-items:center;width:18px;height:18px;margin-inline-end:3px;border-radius:50%;background:color-mix(in srgb,var(--iwfc-primary) 12%,white);color:var(--iwfc-primary);font-style:normal;font-weight:900}

/* Single layout presets */
.iwfc-product-layout--minimal .iwfc-product-hero{padding:0;border:0;background:transparent;overflow:visible}.iwfc-product-layout--minimal .iwfc-product-hero:before{display:none}.iwfc-product-layout--minimal .iwfc-main-image{box-shadow:none;border:1px solid var(--iwfc-border)}
.iwfc-product-layout--technical .iwfc-product-hero{grid-template-columns:minmax(320px,.82fr) minmax(0,1.18fr);border-radius:14px;background:#fff}.iwfc-product-layout--technical .iwfc-product-summary h1{font-size:clamp(2rem,4cqi,3.4rem)}.iwfc-product-layout--technical .iwfc-product-facts div{border-radius:7px;background:#f8faf9}
.iwfc-product-layout--catalog .iwfc-product-hero{border-radius:12px;background:#fff;box-shadow:0 20px 55px rgba(17,48,40,.055)}
.iwfc-product-layout--editorial .iwfc-product-hero{grid-template-columns:1fr;max-width:none}.iwfc-product-layout--editorial .iwfc-product-gallery{max-width:920px;margin-inline:auto;width:100%}.iwfc-product-layout--editorial .iwfc-main-image{aspect-ratio:16/8}.iwfc-product-layout--editorial .iwfc-product-summary{max-width:920px;margin-inline:auto;text-align:center}.iwfc-product-layout--editorial .iwfc-product-summary__topline,.iwfc-product-layout--editorial .iwfc-product-kicker,.iwfc-product-layout--editorial .iwfc-product-actions,.iwfc-product-layout--editorial .iwfc-product-share,.iwfc-product-layout--editorial .iwfc-product-trust{justify-content:center}.iwfc-product-layout--editorial .iwfc-product-lead{margin-inline:auto}.iwfc-product-layout--immersive .iwfc-product-hero{background:linear-gradient(135deg,var(--iwfc-secondary,#0d2e27),#071713);color:#fff;border-color:transparent}.iwfc-product-layout--immersive .iwfc-product-lead,.iwfc-product-layout--immersive .iwfc-product-trust{color:rgba(255,255,255,.72)}.iwfc-product-layout--immersive .iwfc-product-facts div{border-color:rgba(255,255,255,.12);background:rgba(255,255,255,.06)}.iwfc-product-layout--immersive .iwfc-product-facts dt{color:rgba(255,255,255,.58)}.iwfc-product-layout--immersive .iwfc-product-share>a,.iwfc-product-layout--immersive .iwfc-product-share>button{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.15);color:#fff}

.iwfc-product-tabs{position:sticky;z-index:65;top:82px;display:flex;gap:5px;margin-top:var(--iwf-product-section-space,64px);padding:6px;border:1px solid var(--iwfc-border);border-radius:16px;background:rgba(255,255,255,.88);backdrop-filter:blur(16px);box-shadow:0 12px 35px rgba(17,48,40,.06);overflow:auto}.admin-bar .iwfc-product-tabs{top:114px}.iwfc-product-tabs button{flex:1;min-width:max-content;min-height:42px;padding:7px 15px;border:0;border-radius:11px;background:transparent;color:var(--iwfc-muted);font-weight:850;cursor:pointer}.iwfc-product-tabs button.is-active{background:var(--iwfc-primary);color:#fff}.iwfc-product-details{container-type:inline-size}.iwfc-product-section,.iwfc-related-products{margin-top:var(--iwf-product-section-space,64px);scroll-margin-top:130px}.iwfc-content-style--cards .iwfc-product-section{padding:clamp(20px,3.5vw,38px);border:1px solid var(--iwfc-border);border-radius:var(--iwf-product-section-radius,22px);background:var(--iwf-product-section-bg,#fff);box-shadow:0 14px 38px rgba(17,48,40,.035)}.iwfc-content-style--tabs .iwfc-product-section{margin-top:16px;padding:clamp(20px,3.5vw,38px);border:1px solid var(--iwfc-border);border-radius:var(--iwf-product-section-radius,22px);background:var(--iwf-product-section-bg,#fff)}.iwfc-content-style--tabs .iwfc-product-section[hidden]{display:none}.iwfc-section-heading{display:flex;align-items:center;gap:10px;margin-bottom:20px}.iwfc-section-heading>span{display:block;width:34px;height:4px;border-radius:99px;background:var(--iwfc-accent,#d6a633)}.iwfc-section-heading h2{margin:0;font-size:clamp(1.4rem,3cqi,2rem)}.iwfc-product-section__content{line-height:1.95}.iwfc-product-section__content>:first-child{margin-top:0}.iwfc-product-section__content>:last-child{margin-bottom:0}
.iwfc-product-accordion{margin-top:12px;border:1px solid var(--iwfc-border);border-radius:16px;background:#fff;overflow:hidden}.iwfc-product-accordion:first-child{margin-top:var(--iwf-product-section-space,64px)}.iwfc-product-accordion summary{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:18px 20px;font-weight:900;cursor:pointer;list-style:none}.iwfc-product-accordion summary::-webkit-details-marker{display:none}.iwfc-product-accordion[open] summary{border-bottom:1px solid var(--iwfc-border)}.iwfc-product-accordion__content{padding:20px;line-height:1.9}
.iwfc-spec-table{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}.iwfc-spec-row{display:grid;grid-template-columns:minmax(110px,.8fr) minmax(0,1.2fr);gap:12px;align-items:center;padding:13px 14px;border:1px solid var(--iwfc-border);border-radius:12px;background:#fbfcfc}.iwfc-spec-row>div:first-child{color:var(--iwfc-muted);font-size:.8rem}.iwfc-spec-row strong{font-weight:900}.iwfc-product-section iframe{width:100%;max-width:100%;aspect-ratio:16/9;height:auto;border:0;border-radius:16px}

.iwfc-rfq-section{display:grid;grid-template-columns:minmax(240px,.65fr) minmax(0,1.35fr);gap:clamp(24px,5vw,72px);padding:clamp(24px,4vw,48px)!important;background:linear-gradient(135deg,color-mix(in srgb,var(--iwfc-primary) 7%,white),#fff)!important;overflow:hidden}.iwfc-rfq-section--card{grid-template-columns:1fr;max-width:900px;margin-inline:auto}.iwfc-rfq-section--full{grid-template-columns:minmax(0,.75fr) minmax(0,1.25fr);border-radius:0!important;margin-inline:calc(50% - 50vw);padding-inline:max(var(--iwf-gutter,24px),calc((100vw - var(--iwf-container,1240px))/2))!important}.iwfc-rfq-intro h2{margin:.2em 0;font-size:clamp(1.7rem,3.5cqi,2.5rem);line-height:1.16}.iwfc-rfq-intro p{color:var(--iwfc-muted);line-height:1.8}.iwfc-rfq-benefits{display:flex;flex-wrap:wrap;gap:7px;margin-top:18px}.iwfc-rfq-benefits span{padding:5px 9px;border-radius:999px;background:#fff;color:var(--iwfc-primary);font-size:.75rem;font-weight:850}.iwfc-rfq{display:grid;gap:13px}.iwfc-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}.iwfc-rfq label{display:grid;gap:5px;color:var(--iwfc-text);font-size:.79rem;font-weight:800}.iwfc-rfq input,.iwfc-rfq textarea{width:100%;border:1px solid var(--iwfc-border);border-radius:11px;background:#fff;padding:10px 12px;outline:none;transition:border-color .18s ease,box-shadow .18s ease}.iwfc-rfq input{height:46px}.iwfc-rfq input:focus,.iwfc-rfq textarea:focus{border-color:var(--iwfc-primary);box-shadow:0 0 0 3px color-mix(in srgb,var(--iwfc-primary) 10%,transparent)}.iwfc-consent{display:flex!important;grid-template-columns:auto 1fr;align-items:start}.iwfc-consent input{width:18px;height:18px;margin-top:3px}.iwfc-hp{position:absolute!important;inset-inline-start:-10000px!important}.iwfc-form-status{min-height:1.5em;color:var(--iwfc-primary);font-size:.83rem;font-weight:800}
.iwfc-related-grid{--iwfc-columns:4}.iwfc-mobile-product-cta{display:none}

/* Lightbox */
.iwfc-lightbox{position:fixed;inset:0;z-index:100000;width:100%;height:100%;max-width:none;max-height:none;margin:0;padding:24px;border:0;background:rgba(2,12,9,.9);place-items:center}.iwfc-lightbox[open],.iwfc-lightbox.is-open{display:grid}.iwfc-lightbox::backdrop{background:rgba(2,12,9,.9);backdrop-filter:blur(8px)}.iwfc-lightbox img{display:block;max-width:min(1200px,94vw);max-height:90vh;object-fit:contain}.iwfc-lightbox__close{position:absolute;top:18px;inset-inline-end:18px;width:46px;height:46px;border:0;border-radius:50%;background:#fff;color:#111;font-size:26px;cursor:pointer}.iwfc-lightbox-open{overflow:hidden}

@container iwfc-product (inline-size < 900px){.iwfc-product-hero{grid-template-columns:1fr 1fr;gap:24px;padding:20px}.has-sticky-summary .iwfc-product-summary{position:static}.iwfc-product-summary h1{font-size:clamp(2rem,5cqi,3.1rem)}.iwfc-spec-table{grid-template-columns:1fr}.iwfc-rfq-section{grid-template-columns:1fr}.iwfc-product-layout--editorial .iwfc-main-image{aspect-ratio:16/9}}
@container iwfc-product (inline-size < 700px){.iwfc-product-hero{grid-template-columns:1fr}.iwfc-gallery-style--vertical .iwfc-product-gallery{grid-template-columns:1fr}.iwfc-gallery-style--vertical .iwfc-product-gallery__stage{grid-column:auto}.iwfc-gallery-style--vertical .iwfc-product-thumbs{grid-column:auto;grid-row:auto;flex-direction:row;max-height:none;overflow:auto;scroll-snap-type:x mandatory}.iwfc-gallery-style--vertical .iwfc-product-thumb{flex:0 0 70px;scroll-snap-align:start}.iwfc-product-layout--technical .iwfc-product-hero{grid-template-columns:1fr}.iwfc-product-facts{grid-template-columns:repeat(2,minmax(0,1fr))}.iwfc-product-tabs{top:8px}.admin-bar .iwfc-product-tabs{top:54px}.iwfc-form-grid{grid-template-columns:1fr}.iwfc-rfq-section--full{margin-inline:0;padding-inline:22px!important}.iwfc-related-grid{--iwfc-columns:2}}
@container iwfc-product (inline-size < 430px){.iwfc-product-hero{padding:14px;border-radius:20px}.iwfc-product-facts{grid-template-columns:1fr 1fr}.iwfc-product-actions{display:grid}.iwfc-product-actions .iwfc-button{width:100%}.iwfc-product-trust{display:grid;gap:7px}.iwfc-product-thumbs{display:flex;overflow:auto;scroll-snap-type:x mandatory}.iwfc-product-thumb{flex:0 0 64px;scroll-snap-align:start}.iwfc-spec-row{grid-template-columns:1fr;gap:2px}.iwfc-related-grid{--iwfc-columns:1}.iwfc-product-tabs{margin-inline:-4px}.iwfc-product-tabs button{padding-inline:11px}}

@media(max-width:760px){.iwfc-product-page{padding-bottom:88px}.iwfc-mobile-product-cta{position:fixed;z-index:9700;inset-inline:10px;bottom:calc(10px + env(safe-area-inset-bottom));display:flex;align-items:center;justify-content:space-between;gap:12px;padding:8px 8px 8px 14px;border:1px solid color-mix(in srgb,var(--iwfc-border) 80%,transparent);border-radius:18px;background:rgba(255,255,255,.9);backdrop-filter:blur(18px);box-shadow:0 18px 50px rgba(10,35,28,.2)}.iwfc-mobile-product-cta>div{min-width:0;display:grid}.iwfc-mobile-product-cta small{color:var(--iwfc-muted);font-size:.65rem}.iwfc-mobile-product-cta strong{max-width:48vw;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:.78rem}.iwfc-mobile-product-cta a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:8px 16px;border-radius:13px;background:var(--iwfc-primary);color:#fff;text-decoration:none;font-weight:900}.iwf-mobile-bottom-enabled .iwfc-mobile-product-cta{bottom:calc(var(--iwf-mobile-bottom-height,64px) + 10px + env(safe-area-inset-bottom))}}

/* ---------- Elementor AJAX filter widget ---------- */
.iwfc-product-filter{display:grid;gap:18px;container:iwfc-widget-filter / inline-size}.iwfc-filter-panel{display:grid;grid-template-columns:repeat(auto-fit,minmax(min(100%,150px),1fr));gap:10px;align-items:end;padding:16px;border:1px solid var(--iwfc-border);border-radius:var(--iwfc-filter-radius,16px);background:var(--iwfc-filter-bg,#fff)}.iwfc-filter-panel label{display:grid;gap:5px;min-width:0}.iwfc-filter-panel label>span{font-size:.76rem;font-weight:850;color:var(--iwfc-muted)}.iwfc-filter-panel input,.iwfc-filter-panel select{width:100%;min-width:0;height:44px;border:1px solid var(--iwfc-border);border-radius:10px;background:#fff;padding:0 10px}.iwfc-filter-search{grid-column:span 2}.iwfc-filter-clear{height:44px;border:0;background:transparent;color:var(--iwfc-primary);font-weight:850;cursor:pointer}.iwfc-filter-feedback{min-height:1.4em;color:var(--iwfc-muted);font-size:.84rem}.iwfc-product-filter.is-loading [data-iwfc-filter-results]{opacity:.45;pointer-events:none;transition:opacity .2s ease}@container iwfc-widget-filter (inline-size < 560px){.iwfc-filter-panel{grid-template-columns:1fr 1fr}.iwfc-filter-search{grid-column:1/-1}}@container iwfc-widget-filter (inline-size < 390px){.iwfc-filter-panel{grid-template-columns:1fr}.iwfc-filter-search{grid-column:auto}}

@media(prefers-reduced-motion:reduce){.iwfc-product-card,.iwfc-product-card__media img,.iwfc-main-image img,.iwfc-product-card__link span:last-child{transition:none!important}.iwfc-product-card:hover{transform:none!important}}

/* Elementor product-grid per-widget hover modes */
.iwfc-widget-products.hover--none .iwfc-product-card:hover{transform:none;box-shadow:var(--iwfc-card-shadow,0 10px 34px rgba(19,48,39,.07))}.iwfc-widget-products.hover--zoom .iwfc-product-card:hover .iwfc-product-card__media img{transform:scale(1.07)}.iwfc-widget-products.hover--glow .iwfc-product-card:hover{box-shadow:0 22px 56px color-mix(in srgb,var(--iwfc-primary) 18%,transparent);border-color:color-mix(in srgb,var(--iwfc-primary) 28%,var(--iwfc-border))}.iwfc-widget-products.hover--tilt .iwfc-product-card{transform-style:preserve-3d}.iwfc-widget-products.hover--tilt .iwfc-product-card:hover{transform:perspective(900px) rotateX(1.2deg) rotateY(-1.6deg) translateY(-4px)}[dir="rtl"] .iwfc-widget-products.hover--tilt .iwfc-product-card:hover{transform:perspective(900px) rotateX(1.2deg) rotateY(1.6deg) translateY(-4px)}

/* ---------- Factory 2.0 single-product design tokens & variants ---------- */
.iwfc-product-page{
  --iwfc-product-accent:var(--iwf-product-accent,var(--iwfc-primary,#155d4a));
  --iwfc-product-title:var(--iwf-product-title-color,var(--iwfc-text,#17201d));
  --iwfc-product-title-size:var(--iwf-product-title-size,54px);
  --iwfc-product-gallery-bg:var(--iwf-product-gallery-bg,#fff);
  --iwfc-product-gallery-radius:var(--iwf-product-gallery-radius,24px);
  --iwfc-product-gallery-padding:var(--iwf-product-gallery-padding,18px);
}
.iwfc-product-gallery__stage{background:var(--iwfc-product-gallery-bg);border-radius:var(--iwfc-product-gallery-radius);padding:var(--iwfc-product-gallery-padding);transition:background-color .25s ease,box-shadow .25s ease}
.iwfc-main-image{border-radius:max(10px,calc(var(--iwfc-product-gallery-radius) - 8px));background:transparent;box-shadow:none}
.iwfc-product-summary h1{color:var(--iwfc-product-title);font-size:clamp(2rem,5.2cqi,var(--iwfc-product-title-size))}
.iwfc-product-kicker a,.iwfc-industry-chip,.iwfc-copy-feedback{color:var(--iwfc-product-accent)}
.iwfc-product-actions .iwfc-button--primary,.iwfc-mobile-product-cta a{background:var(--iwfc-product-accent)!important}
.iwfc-section-heading>span{background:var(--iwfc-product-accent)}

/* Product tabs: pills / underline / segmented / minimal */
.iwfc-tabs-style--pills .iwfc-product-tabs{border-radius:18px}.iwfc-tabs-style--pills .iwfc-product-tabs button.is-active{background:var(--iwfc-product-accent)}
.iwfc-tabs-style--underline .iwfc-product-tabs{gap:18px;padding:0;border:0;border-bottom:1px solid var(--iwfc-border);border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none}.iwfc-tabs-style--underline .iwfc-product-tabs button{position:relative;flex:0 0 auto;border-radius:0;padding:13px 2px}.iwfc-tabs-style--underline .iwfc-product-tabs button::after{content:"";position:absolute;inset-inline:0;bottom:-1px;height:3px;border-radius:99px;background:var(--iwfc-product-accent);transform:scaleX(0);transition:transform .2s ease}.iwfc-tabs-style--underline .iwfc-product-tabs button.is-active{background:transparent;color:var(--iwfc-product-accent)}.iwfc-tabs-style--underline .iwfc-product-tabs button.is-active::after{transform:scaleX(1)}
.iwfc-tabs-style--segmented .iwfc-product-tabs{padding:4px;border:0;background:color-mix(in srgb,var(--iwfc-border) 55%,#fff);box-shadow:none}.iwfc-tabs-style--segmented .iwfc-product-tabs button{border:1px solid transparent}.iwfc-tabs-style--segmented .iwfc-product-tabs button.is-active{border-color:var(--iwfc-border);background:#fff;color:var(--iwfc-product-accent);box-shadow:0 5px 18px rgba(19,48,39,.07)}
.iwfc-tabs-style--minimal .iwfc-product-tabs{gap:5px;padding:0;border:0;border-radius:0;background:transparent;box-shadow:none;backdrop-filter:none}.iwfc-tabs-style--minimal .iwfc-product-tabs button{flex:0 0 auto;min-height:36px;padding:5px 10px}.iwfc-tabs-style--minimal .iwfc-product-tabs button.is-active{background:color-mix(in srgb,var(--iwfc-product-accent) 10%,transparent);color:var(--iwfc-product-accent)}

/* Specification layouts */
.iwfc-spec-style--modern .iwfc-spec-row{background:linear-gradient(135deg,#fff,#fbfcfc);box-shadow:0 7px 18px rgba(17,48,40,.025)}
.iwfc-spec-style--striped .iwfc-spec-table{gap:0;border:1px solid var(--iwfc-border);border-radius:14px;overflow:hidden}.iwfc-spec-style--striped .iwfc-spec-row{border:0;border-bottom:1px solid var(--iwfc-border);border-radius:0;background:#fff}.iwfc-spec-style--striped .iwfc-spec-row:nth-child(even){background:color-mix(in srgb,var(--iwfc-product-accent) 3%,#fff)}.iwfc-spec-style--striped .iwfc-spec-row:last-child{border-bottom:0}
.iwfc-spec-style--cards .iwfc-spec-row{grid-template-columns:1fr;gap:4px;min-height:108px;align-content:center;border-radius:16px;background:#fff;box-shadow:0 10px 26px rgba(17,48,40,.045)}.iwfc-spec-style--cards .iwfc-spec-row>div:first-child{font-size:.72rem;text-transform:none}.iwfc-spec-style--cards .iwfc-spec-row strong{font-size:1.05rem}
.iwfc-spec-style--minimal .iwfc-spec-table{gap:0}.iwfc-spec-style--minimal .iwfc-spec-row{border:0;border-bottom:1px solid var(--iwfc-border);border-radius:0;background:transparent;padding-inline:0}.iwfc-spec-style--minimal .iwfc-spec-row:last-child{border-bottom:0}

/* Related carousel option — native scroll-snap, no framework */
.iwfc-related-grid--carousel{display:flex!important;grid-template-columns:none!important;overflow-x:auto;overscroll-behavior-inline:contain;scroll-snap-type:inline mandatory;scrollbar-width:thin;padding-bottom:12px}.iwfc-related-grid--carousel>.iwfc-product-card{flex:0 0 min(330px,82vw);scroll-snap-align:start}

/* Gallery edge-to-edge on compact phones when explicitly enabled */
@container iwfc-product (inline-size < 620px){
  .has-mobile-edge-gallery .iwfc-product-hero{padding-inline:0;overflow:visible}
  .has-mobile-edge-gallery .iwfc-product-gallery__stage{border-radius:0;padding-inline:0;margin-inline:calc(var(--iwf-gutter,20px) * -1)}
  .has-mobile-edge-gallery .iwfc-main-image{border-radius:0}
  .has-mobile-edge-gallery .iwfc-product-thumbs,.has-mobile-edge-gallery .iwfc-product-summary{padding-inline:var(--iwf-gutter,20px)}
}

/* ---------- Mobile catalog filter sheet ---------- */
.iwfc-mobile-filter-toggle,.iwfc-mobile-filter-head{display:none}
@media(max-width:760px){
  .iwfc-toolbar-actions{display:flex;align-items:center;gap:7px}
  .iwfc-mobile-filter-toggle{display:inline-flex;align-items:center;justify-content:center;gap:7px;min-height:42px;padding:7px 12px;border:1px solid var(--iwfc-border);border-radius:12px;background:#fff;color:var(--iwfc-text);font:inherit;font-size:.78rem;font-weight:900;cursor:pointer}
  .iwfc-archive-filters{position:fixed!important;z-index:100050;inset-inline:8px;bottom:8px;top:auto!important;display:grid!important;max-height:min(82dvh,720px);overflow:auto;overscroll-behavior:contain;grid-template-columns:1fr 1fr!important;padding:14px 14px calc(14px + env(safe-area-inset-bottom))!important;border-radius:24px!important;box-shadow:0 30px 90px rgba(0,20,15,.28)!important;transform:translateY(calc(100% + 24px));opacity:0;visibility:hidden;pointer-events:none;transition:transform .32s cubic-bezier(.2,.8,.2,1),opacity .22s ease,visibility .22s step-end;background:rgba(255,255,255,.98)!important;backdrop-filter:blur(22px)}
  .iwfc-archive-filters.is-open{transform:translateY(0);opacity:1;visibility:visible;pointer-events:auto;transition:transform .32s cubic-bezier(.2,.8,.2,1),opacity .22s ease,visibility 0s}
  .iwfc-mobile-filter-head{display:flex;grid-column:1/-1;align-items:center;justify-content:space-between;gap:14px;padding:4px 2px 10px;border-bottom:1px solid var(--iwfc-border)}
  .iwfc-mobile-filter-head>div{display:grid}.iwfc-mobile-filter-head small{color:var(--iwfc-muted);font-size:.66rem}.iwfc-mobile-filter-head strong{font-size:1.02rem}
  .iwfc-mobile-filter-head button{display:grid;place-items:center;width:38px;height:38px;border:0;border-radius:12px;background:var(--iwfc-soft,#f4f7f5);color:var(--iwfc-text);font-size:24px;cursor:pointer}
  body.iwfc-filter-sheet-open::before{content:"";position:fixed;z-index:100040;inset:0;background:rgba(3,18,14,.42);backdrop-filter:blur(3px)}
  body.iwfc-filter-sheet-open{overflow:hidden}
  .iwfc-filter-field--search{grid-column:1/-1!important}
  .iwfc-filter-actions{grid-column:1/-1!important}
}
@media(max-width:430px){
  .iwfc-archive-filters{grid-template-columns:1fr!important;inset-inline:6px;bottom:6px;border-radius:22px!important}
  .iwfc-filter-field--search,.iwfc-filter-actions,.iwfc-mobile-filter-head{grid-column:auto!important}
  .iwfc-filter-actions{display:grid!important;grid-template-columns:1fr auto}
}

/* Additional premium single-product personalities */
.iwfc-product-layout--bento .iwfc-product-hero{grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);gap:16px;padding:16px;background:var(--iwf-product-hero-bg,#f4f7f5);border-radius:30px}.iwfc-product-layout--bento .iwfc-product-gallery__stage,.iwfc-product-layout--bento .iwfc-product-summary{border:1px solid color-mix(in srgb,var(--iwfc-border) 86%,transparent);border-radius:22px;background:#fff}.iwfc-product-layout--bento .iwfc-product-summary{padding:clamp(22px,3vw,38px)}.iwfc-product-layout--bento .iwfc-product-facts{grid-template-columns:repeat(2,minmax(0,1fr))}.iwfc-product-layout--bento .iwfc-product-facts div{background:var(--iwfc-soft,#f6f8f7);border:0}
.iwfc-product-layout--sales .iwfc-product-hero{grid-template-columns:minmax(0,.9fr) minmax(380px,1.1fr);background:#fff}.iwfc-product-layout--sales .iwfc-product-summary{padding:clamp(22px,4vw,52px);border-radius:22px;background:linear-gradient(150deg,color-mix(in srgb,var(--iwfc-product-accent) 5%,#fff),#fff);box-shadow:0 22px 70px rgba(17,48,40,.07)}.iwfc-product-layout--sales .iwfc-product-actions{display:grid;grid-template-columns:1fr 1fr}.iwfc-product-layout--sales .iwfc-product-actions .iwfc-button{width:100%}.iwfc-product-layout--sales .iwfc-product-trust{display:grid;grid-template-columns:repeat(3,1fr);gap:6px}.iwfc-product-layout--sales .iwfc-product-trust span{text-align:center;padding:8px;border-radius:10px;background:#fff}
.iwfc-gallery-style--mosaic .iwfc-product-thumbs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}.iwfc-gallery-style--mosaic .iwfc-product-thumb{width:100%;aspect-ratio:1;border-radius:14px}.iwfc-gallery-style--mosaic .iwfc-product-gallery__stage{margin-bottom:10px}
@container iwfc-product (inline-size < 760px){.iwfc-product-layout--bento .iwfc-product-hero,.iwfc-product-layout--sales .iwfc-product-hero{grid-template-columns:1fr}.iwfc-product-layout--sales .iwfc-product-actions{grid-template-columns:1fr}.iwfc-product-layout--sales .iwfc-product-trust{grid-template-columns:1fr}.iwfc-gallery-style--mosaic .iwfc-product-thumbs{grid-template-columns:repeat(4,minmax(64px,1fr));overflow-x:auto}}
