/*
  RCH redesign technical frontend skeleton
  Methodology: BEM + project prefix xstorm_
  No external CDN. All scripts/styles are local.
*/
:root{
  --xstorm-color-green-900:#183B2B;
  --xstorm-color-green-700:#2F6B4F;
  --xstorm-color-green-500:#5C8F6A;
  --xstorm-color-green-100:#EAF3EA;
  --xstorm-color-cream-50:#FBF8F1;
  --xstorm-color-cream-100:#F4EFE3;
  --xstorm-color-wood-300:#C7A46B;
  --xstorm-color-coffee-700:#5B3A29;
  --xstorm-color-text:#1F2A24;
  --xstorm-color-muted:#6E7D73;
  --xstorm-color-border:#DCE5DC;
  --xstorm-color-white:#FFFFFF;
  --xstorm-shadow-soft:0 18px 55px rgba(24,59,43,.09);
  --xstorm-radius-sm:10px;
  --xstorm-radius-md:18px;
  --xstorm-radius-lg:28px;
  --xstorm-container:1380px;
  --xstorm-gap:24px;
  --xstorm-transition:180ms ease;
  --xstorm-font:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--xstorm-font);color:var(--xstorm-color-text);background:var(--xstorm-color-cream-50);line-height:1.55;font-size:16px}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input,select,textarea{font:inherit}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{outline:3px solid rgba(92,143,106,.35);outline-offset:3px}
.xstorm_skip-link{position:fixed;left:16px;top:16px;z-index:1000;transform:translateY(-160%);background:var(--xstorm-color-green-900);color:#fff;border-radius:10px;padding:10px 14px;font-weight:800;box-shadow:0 12px 30px rgba(24,59,43,.22);transition:transform var(--xstorm-transition)}
.xstorm_skip-link:focus,.xstorm_skip-link:focus-visible{transform:translateY(0)}
.xstorm_page{min-height:100vh;display:flex;flex-direction:column}
.xstorm_container{width:min(100% - 32px,var(--xstorm-container));margin-inline:auto}
.xstorm_header{position:sticky;top:0;z-index:50;background:rgba(251,248,241,.94);backdrop-filter:blur(16px);border-bottom:1px solid rgba(220,229,220,.9)}
.xstorm_header__inner{height:76px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.xstorm_header__brand{display:flex;align-items:center;gap:12px;font-weight:800;color:var(--xstorm-color-green-900)}
.xstorm_header__logo{width:42px;height:42px;border-radius:50%;background:var(--xstorm-color-green-900);color:#fff;display:grid;place-items:center;font-size:13px;letter-spacing:0}
.xstorm_header__nav{display:flex;gap:18px;align-items:center;font-size:14px;color:var(--xstorm-color-text)}
.xstorm_header__nav-link{padding:8px 6px;border-radius:8px;color:var(--xstorm-color-muted)}
.xstorm_header__nav-link:hover,.xstorm_header__nav-link:focus{color:var(--xstorm-color-green-900);background:var(--xstorm-color-green-100)}
.xstorm_header__actions{display:flex;gap:12px;align-items:center}
.xstorm_header__phone{font-weight:700;color:var(--xstorm-color-green-900);white-space:nowrap}
.xstorm_header__burger{display:none;border:1px solid var(--xstorm-color-border);background:#fff;border-radius:12px;width:42px;height:42px;align-items:center;justify-content:center;cursor:pointer}
.xstorm_header__burger[aria-expanded="true"]{background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-900)}
.xstorm_button{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:44px;padding:12px 18px;border-radius:999px;border:1px solid transparent;font-weight:700;cursor:pointer;transition:var(--xstorm-transition);line-height:1.1}
.xstorm_button--primary{background:var(--xstorm-color-green-700);color:#fff;box-shadow:0 12px 24px rgba(47,107,79,.18)}
.xstorm_button--primary:hover{background:var(--xstorm-color-green-900);transform:translateY(-1px)}
.xstorm_button--secondary{background:#fff;color:var(--xstorm-color-green-900);border-color:var(--xstorm-color-border)}
.xstorm_button--ghost{background:transparent;color:var(--xstorm-color-green-900);border-color:var(--xstorm-color-green-100)}
.xstorm_button--small{min-height:36px;padding:9px 14px;font-size:14px}
.xstorm_button[disabled],.xstorm_button.is-disabled,.xstorm_icon-button[disabled],.xstorm_icon-button.is-disabled{opacity:.48;cursor:not-allowed;transform:none;box-shadow:none}
.xstorm_main{flex:1}
.xstorm_hero{padding:72px 0 42px;background:linear-gradient(135deg,#fff 0%,var(--xstorm-color-cream-100) 100%)}
.xstorm_hero__grid{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:48px;align-items:center}
.xstorm_hero__eyebrow{display:inline-flex;padding:7px 12px;border-radius:999px;background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-700);font-size:13px;font-weight:800;margin-bottom:18px}
.xstorm_hero__title{font-size:56px;line-height:1.04;margin:0 0 18px;color:var(--xstorm-color-green-900);letter-spacing:0}
.xstorm_hero__lead{font-size:20px;color:var(--xstorm-color-muted);margin:0 0 28px;max-width:720px}
.xstorm_hero__actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:28px}
.xstorm_hero__media{border-radius:var(--xstorm-radius-lg);overflow:hidden;box-shadow:var(--xstorm-shadow-soft);background:#fff;min-height:320px}
.xstorm_hero__media img{width:100%;height:100%;object-fit:cover}
.xstorm_stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;max-width:620px}
.xstorm_stats__item{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:18px;padding:16px}
.xstorm_stats__value{display:block;font-size:28px;font-weight:900;color:var(--xstorm-color-green-900)}
.xstorm_stats__label{display:block;color:var(--xstorm-color-muted);font-size:13px;margin-top:4px}
.xstorm_section{padding:58px 0;background:var(--xstorm-color-cream-50)}
.xstorm_section--white{background:#fff}
.xstorm_section--tinted{background:var(--xstorm-color-green-100)}
.xstorm_section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:24px;margin-bottom:28px}
.xstorm_section__eyebrow{color:var(--xstorm-color-green-700);font-size:13px;text-transform:uppercase;letter-spacing:0;font-weight:900;margin:0 0 8px}
.xstorm_section__title{font-size:38px;line-height:1.12;margin:0;color:var(--xstorm-color-green-900);letter-spacing:0}
.xstorm_section__text{margin:10px 0 0;color:var(--xstorm-color-muted);max-width:760px}
.xstorm_page-hero__title,.xstorm_section__title,.xstorm_card__title,.xstorm_image-card__title,.xstorm_product-card__title,.xstorm_product-meta__title,.xstorm_article h2,.xstorm_article h3{overflow-wrap:anywhere;word-break:normal}
.xstorm_card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.xstorm_card{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-md);padding:22px;box-shadow:0 8px 25px rgba(24,59,43,.04);transition:var(--xstorm-transition);min-height:100%}
.xstorm_card:hover{transform:translateY(-2px);box-shadow:var(--xstorm-shadow-soft)}
.xstorm_card__media{border-radius:16px;overflow:hidden;background:var(--xstorm-color-cream-100);margin-bottom:18px;aspect-ratio:16/10}
.xstorm_card__icon{width:46px;height:46px;border-radius:14px;background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-700);display:grid;place-items:center;font-weight:900;margin-bottom:16px}
.xstorm_card__title{font-size:20px;line-height:1.25;margin:0 0 10px;color:var(--xstorm-color-green-900)}
.xstorm_card__text{margin:0 0 16px;color:var(--xstorm-color-muted);font-size:15px}
.xstorm_card__link{font-weight:800;color:var(--xstorm-color-green-700)}
.xstorm_category-grid,.xstorm_segment-grid,.xstorm_packaging{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.xstorm_category-card{padding:0;overflow:hidden}
.xstorm_category-card__body{padding:20px}
.xstorm_product-layout{display:grid;grid-template-columns:270px minmax(0,1fr);gap:28px;align-items:start}
.xstorm_filters{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-md);padding:20px;position:sticky;top:96px}
.xstorm_filters__title{margin:0 0 14px;font-size:18px;color:var(--xstorm-color-green-900)}
.xstorm_filters__group{border-top:1px solid var(--xstorm-color-border);padding-top:14px;margin-top:14px}
.xstorm_filters__label{display:flex;gap:9px;align-items:center;color:var(--xstorm-color-muted);font-size:14px;margin:8px 0;border-radius:10px;padding:4px 6px;transition:var(--xstorm-transition)}
.xstorm_filters__label.is-active{background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-900)}
.xstorm_product-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.xstorm_product-card{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-md);overflow:hidden;box-shadow:0 8px 20px rgba(24,59,43,.04);display:flex;flex-direction:column}
.xstorm_product-card__media{aspect-ratio:4/3;background:var(--xstorm-color-cream-100)}
.xstorm_product-card__body{padding:18px;display:flex;flex-direction:column;gap:10px;flex:1}
.xstorm_product-card__meta{display:flex;gap:8px;flex-wrap:wrap;font-size:12px;color:var(--xstorm-color-green-700);font-weight:800}
.xstorm_badge{display:inline-flex;padding:5px 9px;border-radius:999px;background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-700);font-size:12px;font-weight:800}
.xstorm_product-card__title{font-size:18px;line-height:1.25;margin:0;color:var(--xstorm-color-green-900)}
.xstorm_product-card__text{font-size:14px;color:var(--xstorm-color-muted);margin:0;flex:1}
.xstorm_carousel{position:relative;overflow:hidden}
.xstorm_carousel__track{display:flex;gap:18px;overflow:auto;scroll-snap-type:x mandatory;padding:2px 2px 16px;scrollbar-width:thin}
.xstorm_carousel__item{min-width:280px;scroll-snap-align:start}
.xstorm_carousel__controls{display:flex;gap:10px;justify-content:flex-end;margin-top:12px}
.xstorm_icon-button{width:42px;height:42px;border-radius:50%;border:1px solid var(--xstorm-color-border);background:#fff;cursor:pointer;color:var(--xstorm-color-green-900)}
.xstorm_tabs__nav{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:24px}
.xstorm_tabs__button{border:1px solid var(--xstorm-color-border);background:#fff;border-radius:999px;padding:10px 16px;color:var(--xstorm-color-muted);cursor:pointer;font-weight:800}
.xstorm_tabs__button.is-active{background:var(--xstorm-color-green-700);color:#fff;border-color:var(--xstorm-color-green-700)}
.xstorm_tabs__panel{display:none}.xstorm_tabs__panel.is-active{display:block}
.xstorm_form{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-lg);padding:28px;box-shadow:var(--xstorm-shadow-soft)}
.xstorm_form--spaced{margin-top:24px}
.xstorm_form__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
.xstorm_form__field{display:flex;flex-direction:column;gap:8px}
.xstorm_form__label{font-size:13px;font-weight:800;color:var(--xstorm-color-green-900)}
.xstorm_form__input,.xstorm_form__select,.xstorm_form__textarea{width:100%;border:1px solid var(--xstorm-color-border);border-radius:14px;background:var(--xstorm-color-cream-50);padding:13px 14px;color:var(--xstorm-color-text);outline:none}
.xstorm_form__input:focus,.xstorm_form__select:focus,.xstorm_form__textarea:focus{border-color:var(--xstorm-color-green-500);box-shadow:0 0 0 4px rgba(92,143,106,.12)}
.xstorm_form__field--full{grid-column:1/-1}.xstorm_form__note{font-size:12px;color:var(--xstorm-color-muted)}
.xstorm_form__success{display:none;margin-top:16px;padding:14px;border-radius:14px;background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-900);font-weight:800;outline:none}.xstorm_form.is-success .xstorm_form__success{display:block}
.xstorm_accordion{display:grid;gap:12px}.xstorm_accordion__item{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:16px;overflow:hidden}.xstorm_accordion__button{width:100%;text-align:left;background:#fff;border:0;padding:18px 20px;font-weight:900;color:var(--xstorm-color-green-900);cursor:pointer;display:flex;justify-content:space-between;gap:16px}.xstorm_accordion__button span{transition:var(--xstorm-transition)}.xstorm_accordion__content{display:none;padding:0 20px 18px;color:var(--xstorm-color-muted)}.xstorm_accordion__content[hidden]{display:none}.xstorm_accordion__item.is-open .xstorm_accordion__content{display:block}.xstorm_accordion__item.is-open .xstorm_accordion__button span{transform:rotate(45deg)}
.xstorm_cta{border-radius:var(--xstorm-radius-lg);background:linear-gradient(135deg,var(--xstorm-color-green-900),var(--xstorm-color-green-700));color:#fff;padding:34px;display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:24px}.xstorm_cta__title{margin:0 0 8px;font-size:30px;line-height:1.15}.xstorm_cta__text{margin:0;color:rgba(255,255,255,.82)}
.xstorm_timeline{display:grid;gap:16px;counter-reset:step}.xstorm_timeline__item{display:grid;grid-template-columns:54px minmax(0,1fr);gap:16px;align-items:start;background:#fff;border:1px solid var(--xstorm-color-border);border-radius:18px;padding:18px}.xstorm_timeline__num{width:44px;height:44px;border-radius:50%;background:var(--xstorm-color-green-700);color:#fff;display:grid;place-items:center;font-weight:900}.xstorm_timeline__title{margin:0 0 6px;color:var(--xstorm-color-green-900)}.xstorm_timeline__text{margin:0;color:var(--xstorm-color-muted)}
.xstorm_comparison{width:100%;border-collapse:separate;border-spacing:0;overflow:hidden;border:1px solid var(--xstorm-color-border);border-radius:18px;background:#fff}.xstorm_comparison th,.xstorm_comparison td{padding:16px;border-bottom:1px solid var(--xstorm-color-border);text-align:left}.xstorm_comparison th{background:var(--xstorm-color-green-100);color:var(--xstorm-color-green-900)}.xstorm_comparison tr:last-child td{border-bottom:0}
.xstorm_gallery{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.xstorm_gallery__item{border-radius:18px;overflow:hidden;background:#fff;border:1px solid var(--xstorm-color-border);aspect-ratio:1/1}.xstorm_gallery__item img{width:100%;height:100%;object-fit:cover}
.xstorm_documents{display:grid;gap:12px}.xstorm_document{display:flex;justify-content:space-between;align-items:center;gap:16px;background:#fff;border:1px solid var(--xstorm-color-border);border-radius:16px;padding:16px}.xstorm_document__title{margin:0;color:var(--xstorm-color-green-900)}.xstorm_document__text{margin:4px 0 0;color:var(--xstorm-color-muted);font-size:14px}
.xstorm_region-map{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-lg);padding:24px;display:grid;grid-template-columns:1fr 320px;gap:24px}.xstorm_region-map__visual{min-height:360px;border-radius:22px;background:radial-gradient(circle at 30% 20%,#EAF3EA,transparent 36%),radial-gradient(circle at 70% 70%,#F4EFE3,transparent 40%),#fff;border:1px dashed var(--xstorm-color-border);position:relative}.xstorm_region-map__point{position:absolute;width:18px;height:18px;border-radius:50%;background:var(--xstorm-color-green-700);box-shadow:0 0 0 8px rgba(47,107,79,.13);border:2px solid #fff}.xstorm_region-map__point:nth-child(1){left:18%;top:44%}.xstorm_region-map__point:nth-child(2){left:42%;top:38%}.xstorm_region-map__point:nth-child(3){left:66%;top:54%}.xstorm_region-map__point:nth-child(4){left:78%;top:30%}
.xstorm_article-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:36px}.xstorm_toc{position:sticky;top:104px;background:#fff;border:1px solid var(--xstorm-color-border);border-radius:18px;padding:18px}.xstorm_toc__title{margin:0 0 12px;color:var(--xstorm-color-green-900)}.xstorm_toc__link{display:block;padding:8px 0;color:var(--xstorm-color-muted);font-size:14px}.xstorm_article{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-lg);padding:32px}.xstorm_article h2{color:var(--xstorm-color-green-900);font-size:30px;line-height:1.18;margin:32px 0 12px}.xstorm_article p{color:var(--xstorm-color-muted)}.xstorm_article img{border-radius:18px;margin:22px 0}
.xstorm_breadcrumbs{font-size:14px;color:var(--xstorm-color-muted);margin-bottom:20px}.xstorm_breadcrumbs a{color:var(--xstorm-color-green-700);font-weight:700}
.xstorm_product-detail{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start}.xstorm_product-gallery{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-lg);padding:18px}.xstorm_product-gallery__main{border-radius:20px;overflow:hidden;background:var(--xstorm-color-cream-100)}.xstorm_product-gallery__thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;margin-top:12px}.xstorm_product-gallery__thumb{border:1px solid var(--xstorm-color-border);border-radius:12px;overflow:hidden;background:#fff;cursor:pointer;padding:0}.xstorm_product-gallery__thumb.is-active{border-color:var(--xstorm-color-green-700);box-shadow:0 0 0 3px rgba(47,107,79,.14)}.xstorm_product-meta{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-lg);padding:28px}.xstorm_product-meta__title{font-size:38px;line-height:1.1;margin:0 0 14px;color:var(--xstorm-color-green-900);letter-spacing:0}.xstorm_product-meta__list{display:grid;gap:10px;margin:18px 0}.xstorm_product-meta__row{display:flex;justify-content:space-between;gap:20px;border-bottom:1px solid var(--xstorm-color-border);padding-bottom:10px;color:var(--xstorm-color-muted)}
.xstorm_video-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.xstorm_video-card{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:18px;overflow:hidden}.xstorm_video-card__preview{aspect-ratio:16/9;background:var(--xstorm-color-green-100);display:grid;place-items:center;color:var(--xstorm-color-green-900);font-size:44px}.xstorm_video-card__body{padding:18px}
.xstorm_search{background:#fff;border:1px solid var(--xstorm-color-border);border-radius:var(--xstorm-radius-lg);padding:18px;display:flex;gap:12px}.xstorm_search__input{flex:1;border:0;background:var(--xstorm-color-cream-50);border-radius:999px;padding:12px 16px;outline:none}
.xstorm_pagination{display:flex;gap:8px;justify-content:center;margin-top:32px}.xstorm_pagination__link{width:40px;height:40px;display:grid;place-items:center;border-radius:50%;background:#fff;border:1px solid var(--xstorm-color-border);color:var(--xstorm-color-muted);font-weight:800}.xstorm_pagination__link.is-active{background:var(--xstorm-color-green-700);color:#fff;border-color:var(--xstorm-color-green-700)}
.xstorm_footer{background:var(--xstorm-color-green-900);color:#fff;padding:54px 0 28px;margin-top:auto}.xstorm_footer__grid{display:grid;grid-template-columns:1.2fr repeat(3,1fr);gap:30px}.xstorm_footer__title{margin:0 0 14px;color:#fff}.xstorm_footer__text,.xstorm_footer__link{color:rgba(255,255,255,.72);font-size:14px}.xstorm_footer__text{display:block}.xstorm_footer__link{display:block;margin:8px 0}.xstorm_footer__bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:32px;padding-top:22px;color:rgba(255,255,255,.58);font-size:13px}
@media (max-width:1199px){
  .xstorm_header__nav{position:fixed;left:0;right:0;top:76px;background:#fff;border-bottom:1px solid var(--xstorm-color-border);padding:18px 24px;display:none;grid-template-columns:repeat(2,1fr);max-height:calc(100vh - 76px);overflow:auto}
  .xstorm_header.is-open .xstorm_header__nav{display:grid}.xstorm_header__burger{display:flex}.xstorm_header__phone{display:none}
  .xstorm_hero__title{font-size:46px}.xstorm_section__title{font-size:34px}
  .xstorm_hero__grid,.xstorm_product-detail,.xstorm_region-map,.xstorm_article-layout{grid-template-columns:1fr}.xstorm_card-grid,.xstorm_category-grid,.xstorm_segment-grid,.xstorm_packaging,.xstorm_product-grid,.xstorm_video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.xstorm_product-layout{grid-template-columns:1fr}.xstorm_filters{position:relative;top:auto}.xstorm_gallery{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:767px){
  .xstorm_container{width:min(100% - 24px,var(--xstorm-container))}.xstorm_header__inner{height:68px}.xstorm_header__nav{top:68px;grid-template-columns:1fr;max-height:calc(100vh - 68px)}.xstorm_header__actions .xstorm_button{display:none}.xstorm_hero{padding:44px 0 28px}.xstorm_hero__title{font-size:36px}.xstorm_hero__lead{font-size:17px}.xstorm_section{padding:42px 0}.xstorm_section__head{display:block}.xstorm_section__title{font-size:28px}.xstorm_stats,.xstorm_card-grid,.xstorm_category-grid,.xstorm_segment-grid,.xstorm_packaging,.xstorm_product-grid,.xstorm_video-grid,.xstorm_form__grid,.xstorm_footer__grid{grid-template-columns:1fr}.xstorm_gallery{grid-template-columns:repeat(2,1fr)}.xstorm_cta{grid-template-columns:1fr;padding:24px}.xstorm_article{padding:22px}.xstorm_product-gallery__thumbs{grid-template-columns:repeat(3,1fr)}.xstorm_product-meta__title{font-size:30px}.xstorm_search{flex-direction:column}
}
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important;transition:none!important;animation-duration:.01ms!important;animation-iteration-count:1!important}
}

/* Reference-first rebuild layer */
:root{
  --xstorm-ref-bg:#F7F6F2;
  --xstorm-ref-panel:#FFFFFF;
  --xstorm-ref-soft:#F3EFE7;
  --xstorm-ref-line:#E3E0D8;
  --xstorm-ref-text:#182033;
  --xstorm-ref-muted:#596273;
  --xstorm-ref-green:#173C16;
  --xstorm-ref-green-2:#315D2B;
  --xstorm-ref-accent:#D7C19B;
  --xstorm-ref-radius:8px;
  --xstorm-ref-container:1380px;
  --xstorm-ref-serif:Georgia,"Times New Roman",serif;
  --xstorm-ref-sans:Inter,Arial,system-ui,sans-serif;
}
body{font-family:var(--xstorm-ref-sans);background:var(--xstorm-ref-bg);color:var(--xstorm-ref-text);line-height:1.5}
.xstorm_container{width:min(100% - 72px,var(--xstorm-ref-container))}
.xstorm_topbar{background:#F1F0EC;border-bottom:1px solid var(--xstorm-ref-line);font-size:13px;color:var(--xstorm-ref-text)}
.xstorm_topbar__inner{min-height:38px;display:grid;grid-template-columns:1fr auto auto;align-items:center;gap:48px}
.xstorm_topbar__item{display:inline-flex;align-items:center;gap:8px;white-space:nowrap;min-width:0;overflow-wrap:anywhere}
.xstorm_topbar__icon,.xstorm_service-strip__icon,.xstorm_meta-icon{width:22px;height:22px;border:1px solid #BCD0B5;border-radius:6px;display:inline-grid;place-items:center;color:var(--xstorm-ref-green);font-size:13px;background:#fff}
.xstorm_header{top:0;background:rgba(255,255,255,.96);border-bottom:1px solid var(--xstorm-ref-line);box-shadow:none;backdrop-filter:blur(12px)}
.xstorm_header__inner{height:88px;gap:30px}
.xstorm_header__brand{gap:14px;color:var(--xstorm-ref-text);min-width:178px}
.xstorm_header__logo{width:46px;height:46px;border-radius:0;background:transparent;color:var(--xstorm-ref-green);font-family:var(--xstorm-ref-serif);font-size:28px;font-weight:700}
.xstorm_header__brand-text{display:grid;line-height:1.08;font-size:13px;font-weight:600}
.xstorm_header__brand-name{font-size:18px;font-family:var(--xstorm-ref-serif);font-weight:700;color:var(--xstorm-ref-text)}
.xstorm_header__nav{gap:26px;font-size:15px;font-weight:700;color:var(--xstorm-ref-text)}
.xstorm_header__nav-link{padding:12px 0;border-radius:0;color:var(--xstorm-ref-text);display:inline-flex;align-items:center;gap:5px}
.xstorm_header__nav-link:hover,.xstorm_header__nav-link:focus{background:transparent;color:var(--xstorm-ref-green)}
.xstorm_header__nav-link.is-active{color:var(--xstorm-ref-green);font-weight:900}
.xstorm_header__nav-link--dropdown::after{content:none}
.xstorm_header__actions{gap:24px;margin-left:auto}
.xstorm_header__phone{display:grid;color:var(--xstorm-ref-text);font-weight:800;font-size:19px;line-height:1.2}
.xstorm_header__hours{font-size:12px;color:var(--xstorm-ref-muted);font-weight:500}
.xstorm_button{border-radius:var(--xstorm-ref-radius);min-height:48px;padding:14px 24px;font-size:14px;box-shadow:none}
.xstorm_button--primary{background:var(--xstorm-ref-green);box-shadow:none}
.xstorm_button--primary:hover{background:#0F2B0F;transform:none}
.xstorm_button--secondary{background:#fff;border-color:var(--xstorm-ref-green);color:var(--xstorm-ref-green)}
.xstorm_button--ghost{background:#fff;border-color:var(--xstorm-ref-line);color:var(--xstorm-ref-text)}
.xstorm_button--small{min-height:40px;padding:10px 18px;font-size:13px}
.xstorm_main{background:var(--xstorm-ref-bg)}
.xstorm_page-hero,.xstorm_hero{background:#fff;border-bottom:1px solid var(--xstorm-ref-line);padding:48px 0 0}
.xstorm_page-hero__breadcrumbs,.xstorm_breadcrumbs{font-size:13px;color:#7A8190;margin:0 0 24px}
.xstorm_page-hero__breadcrumbs a,.xstorm_breadcrumbs a{color:#4B684A;font-weight:600}
.xstorm_page-hero__grid{display:grid;grid-template-columns:minmax(0,.92fr) minmax(420px,1.08fr);align-items:center;gap:56px}
.xstorm_page-hero__content{padding-bottom:48px}
.xstorm_page-hero__title,.xstorm_hero__title,.xstorm_section__title{font-family:var(--xstorm-ref-serif);color:var(--xstorm-ref-text);font-weight:700;letter-spacing:0}
.xstorm_page-hero__title,.xstorm_hero__title{font-size:58px;line-height:.98;margin:0 0 22px}
.xstorm_page-hero__lead,.xstorm_hero__lead{font-size:20px;line-height:1.45;color:#222B3A;margin:0 0 30px;max-width:570px}
.xstorm_page-hero__actions,.xstorm_hero__actions{display:flex;gap:16px;flex-wrap:wrap;margin:0 0 30px}
.xstorm_hero__eyebrow{background:transparent;color:var(--xstorm-ref-green);padding:0;text-transform:none;font-size:13px;margin-bottom:18px}
.xstorm_page-hero__media,.xstorm_hero__media{min-height:430px;border-radius:0;box-shadow:none;background:linear-gradient(90deg,rgba(255,255,255,.92),rgba(255,255,255,.32)),var(--xstorm-ref-soft);position:relative;overflow:hidden}
.xstorm_visual-placeholder{height:100%;min-height:320px;background:radial-gradient(circle at 72% 28%,rgba(23,60,22,.12),transparent 0 10%,transparent 11%),radial-gradient(circle at 24% 72%,rgba(215,193,155,.38),transparent 0 12%,transparent 13%),linear-gradient(135deg,#F8F5ED,#EDE8DA);display:grid;place-items:center;position:relative;isolation:isolate}
.xstorm_visual-placeholder::before{content:"";position:absolute;inset:12%;border:1px solid rgba(23,60,22,.08);border-radius:var(--xstorm-ref-radius);background:rgba(255,255,255,.42)}
.xstorm_visual-placeholder__label{position:relative;z-index:1;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:18px 28px;text-align:center;color:var(--xstorm-ref-green);font-family:var(--xstorm-ref-serif);font-size:24px;font-weight:700}
.xstorm_visual-placeholder__text{display:block;margin-top:6px;font-family:var(--xstorm-ref-sans);font-size:12px;color:var(--xstorm-ref-muted);font-weight:500}
.xstorm_visual-image{height:100%;min-height:320px;margin:0;position:relative;overflow:hidden;background:var(--xstorm-ref-soft);border-radius:inherit}
.xstorm_visual-image__img{display:block;width:100%;height:100%;min-height:inherit;object-fit:cover}
.xstorm_visual-image__caption{display:none}
.xstorm_visual-image__label{font-family:var(--xstorm-ref-serif);font-size:20px;font-weight:700;line-height:1.05;color:var(--xstorm-ref-green)}
.xstorm_visual-image__text{font-size:11px;line-height:1.25;color:var(--xstorm-ref-muted)}
.xstorm_image-card__media .xstorm_visual-image,.xstorm_product-card__media .xstorm_visual-image{min-height:100%;border-radius:0}
.xstorm_image-card__media .xstorm_visual-image__caption,.xstorm_product-card__media .xstorm_visual-image__caption,.xstorm_product-gallery__thumb .xstorm_visual-image__caption{display:none}
.xstorm_product-gallery__main .xstorm_visual-image{min-height:480px}
.xstorm_product-gallery__thumb .xstorm_visual-image,.xstorm_product-gallery__thumb .xstorm_visual-image__img{height:100%;min-height:72px}
.xstorm_feature-row{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:24px 0;border-top:1px solid var(--xstorm-ref-line);background:#fff}
.xstorm_feature-row__item{display:flex;align-items:center;gap:12px;color:#303947;font-size:14px;font-weight:600}
.xstorm_about-strip{margin-top:-1px;background:#fff}
.xstorm_about-strip__card{border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);display:grid;grid-template-columns:1.25fr repeat(5,1fr);box-shadow:0 10px 28px rgba(24,32,51,.04)}
.xstorm_about-strip__intro,.xstorm_about-strip__stat{padding:24px 26px;border-right:1px solid var(--xstorm-ref-line)}
.xstorm_about-strip__stat:last-child{border-right:0}
.xstorm_about-strip__title{font-family:var(--xstorm-ref-serif);font-size:21px;margin:0 0 10px;color:var(--xstorm-ref-text)}
.xstorm_about-strip__value{font-size:30px;font-weight:500;color:var(--xstorm-ref-text)}
.xstorm_about-strip__label{display:block;font-size:13px;color:var(--xstorm-ref-muted)}
.xstorm_section{background:var(--xstorm-ref-bg);padding:42px 0}
.xstorm_section--white{background:#fff}
.xstorm_section--compact{padding:24px 0}
.xstorm_section__head{margin-bottom:24px;align-items:end}
.xstorm_section__eyebrow{font-size:12px;text-transform:none;color:var(--xstorm-ref-green);font-weight:700;margin-bottom:8px}
.xstorm_section__title{font-size:34px;line-height:1.12;margin:0}
.xstorm_section__text{font-size:16px;color:var(--xstorm-ref-muted);max-width:720px}
.xstorm_card-grid{gap:18px}
.xstorm_card,.xstorm_product-card,.xstorm_form,.xstorm_filters,.xstorm_article,.xstorm_toc,.xstorm_product-meta,.xstorm_product-gallery,.xstorm_document,.xstorm_video-card{border-color:var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);box-shadow:none;background:#fff}
.xstorm_card{padding:22px}
.xstorm_card:hover{transform:none;box-shadow:0 10px 24px rgba(24,32,51,.05)}
.xstorm_card__media{border-radius:var(--xstorm-ref-radius);background:var(--xstorm-ref-soft)}
.xstorm_card__icon{border-radius:50%;background:#fff;border:1px solid var(--xstorm-ref-line);color:var(--xstorm-ref-green)}
.xstorm_card__title,.xstorm_product-card__title,.xstorm_document__title{font-family:var(--xstorm-ref-serif);color:var(--xstorm-ref-text)}
.xstorm_card__text,.xstorm_product-card__text,.xstorm_document__text{color:var(--xstorm-ref-muted)}
.xstorm_card__link{color:var(--xstorm-ref-green);font-weight:700}
.xstorm_image-card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.xstorm_image-card{background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);overflow:hidden}
.xstorm_image-card__media{height:150px;background:var(--xstorm-ref-soft)}
.xstorm_image-card__body{padding:18px}
.xstorm_image-card__title{font-family:var(--xstorm-ref-serif);font-size:20px;margin:0 0 8px;color:var(--xstorm-ref-text)}
.xstorm_split-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.xstorm_split-card{min-height:190px;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);background:#fff;display:grid;grid-template-columns:1fr 1fr;overflow:hidden}
.xstorm_split-card__body{padding:24px}.xstorm_split-card__media{background:var(--xstorm-ref-soft)}
.xstorm_catalog-selector{display:grid;grid-template-columns:repeat(6,1fr);gap:12px}
.xstorm_catalog-selector__item{min-height:64px;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);background:#fff;padding:14px 16px;display:flex;align-items:center;gap:10px;font-weight:700;color:var(--xstorm-ref-text)}
.xstorm_catalog-selector__item.is-active{border-color:var(--xstorm-ref-green);box-shadow:inset 0 0 0 1px var(--xstorm-ref-green)}
.xstorm_product-layout{grid-template-columns:260px minmax(0,1fr);gap:24px}
.xstorm_product-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.xstorm_product-layout .xstorm_product-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:14px}
.xstorm_product-layout .xstorm_product-card__body{padding:13px;gap:6px}
.xstorm_product-layout .xstorm_product-card__title{font-size:16px}
.xstorm_product-layout .xstorm_product-card__text{font-size:12px}
.xstorm_product-layout .xstorm_product-card__price{font-size:14px}
.xstorm_product-card__media{aspect-ratio:1/1;background:#F4F1EA}
.xstorm_product-card__body{padding:16px;gap:8px}
.xstorm_product-card__price{font-weight:800;color:var(--xstorm-ref-text);font-size:16px}
.xstorm_product-card__actions{display:flex;align-items:center;justify-content:space-between;gap:8px}
.xstorm_product-card__tools{display:flex;align-items:center;gap:8px}
.xstorm_product-card__favorite,.xstorm_product-card__cart{width:34px;height:34px;font-size:17px;color:var(--xstorm-ref-green);text-decoration:none}
.xstorm_product-card__favorite.is-active{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff}
.xstorm_product-card__cart{font-weight:800}
.xstorm_product-ribbon{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.xstorm_product-ribbon .xstorm_product-card__media{aspect-ratio:1.45/1}
.xstorm_product-ribbon .xstorm_product-card__body{padding:12px;gap:5px}
.xstorm_product-ribbon .xstorm_product-card__title{font-size:16px}
.xstorm_product-ribbon .xstorm_product-card__text{font-size:12px}
.xstorm_product-ribbon .xstorm_product-card__price{font-size:14px}
.xstorm_product-ribbon .xstorm_product-card__actions{font-size:12px}
.xstorm_product-ribbon .xstorm_button--small{padding:7px 10px;font-size:11px}
.xstorm_catalog-summary{display:grid;grid-template-columns:1.25fr 1.25fr .95fr;gap:18px;align-items:stretch}
.xstorm_catalog-summary__panel{background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:18px;min-width:0}
.xstorm_catalog-summary__panel--wide{grid-column:span 2}
.xstorm_catalog-summary__title{font-family:var(--xstorm-ref-serif);font-size:22px;line-height:1.15;margin:0 0 8px;color:var(--xstorm-ref-text)}
.xstorm_catalog-summary__text{margin:0 0 14px;color:var(--xstorm-ref-muted);font-size:13px}
.xstorm_catalog-summary .xstorm_product-ribbon{grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.xstorm_catalog-summary .xstorm_product-card__media{aspect-ratio:1.8/1}
.xstorm_catalog-summary .xstorm_product-card__body{padding:10px}
.xstorm_catalog-summary .xstorm_product-card__title{font-size:14px}
.xstorm_catalog-summary .xstorm_product-card__text{display:none}
.xstorm_catalog-summary .xstorm_product-card__price{font-size:12px}
.xstorm_catalog-summary .xstorm_form{padding:0;border:0}
.xstorm_catalog-summary .xstorm_form__grid{gap:10px}
.xstorm_catalog-summary .xstorm_form__field:nth-of-type(n+3){display:none}
.xstorm_home-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.xstorm_home-summary__panel{background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);overflow:hidden;min-width:0}
.xstorm_home-summary__panel>div:first-child,.xstorm_home-summary__panel>h2,.xstorm_home-summary__panel>p{padding:18px}
.xstorm_home-summary__title{font-family:var(--xstorm-ref-serif);font-size:23px;line-height:1.12;margin:0 0 8px;color:var(--xstorm-ref-text)}
.xstorm_home-summary__text{margin:0 0 12px;color:var(--xstorm-ref-muted);font-size:14px}
.xstorm_home-summary__media{height:170px;background:var(--xstorm-ref-soft)}
.xstorm_home-summary__media .xstorm_visual-image{min-height:100%;border-radius:0}
.xstorm_home-summary--bottom{grid-template-columns:1.1fr 1.1fr .9fr}
.xstorm_home-summary--bottom .xstorm_home-summary__panel{padding:0}
.xstorm_home-summary--bottom .xstorm_region-map{grid-template-columns:1fr;padding:0;border:0}
.xstorm_home-summary--bottom .xstorm_region-map__visual{min-height:210px}
.xstorm_home-summary--bottom .xstorm_documents{gap:8px}
.xstorm_home-summary--bottom .xstorm_document{padding:12px}
.xstorm_home-summary--bottom .xstorm_form{border:0;padding:18px}
.xstorm_home-summary--bottom .xstorm_form__grid{grid-template-columns:1fr;gap:10px}
.xstorm_home-summary--bottom .xstorm_form__field:nth-of-type(n+3){display:none}
.xstorm_template--home-page .xstorm_section{padding:26px 0}
.xstorm_template--home-page .xstorm_section__head{margin-bottom:14px}
.xstorm_template--home-page .xstorm_section__title{font-size:29px}
.xstorm_template--home-page .xstorm_section__text{font-size:14px;margin-top:5px}
.xstorm_template--home-page .xstorm_page-hero{padding-top:30px}
.xstorm_template--home-page .xstorm_page-hero__content{padding-bottom:28px}
.xstorm_template--home-page .xstorm_page-hero__title{font-size:44px;line-height:1}
.xstorm_template--home-page .xstorm_page-hero__lead{font-size:17px;margin-bottom:18px}
.xstorm_template--home-page .xstorm_page-hero__media{min-height:330px}
.xstorm_template--home-page .xstorm_feature-row{padding:14px 0;gap:14px}
.xstorm_template--home-page .xstorm_feature-row__item{font-size:12px}
.xstorm_template--home-page .xstorm_about-strip__intro,
.xstorm_template--home-page .xstorm_about-strip__stat{padding:14px}
.xstorm_template--home-page .xstorm_about-strip__title{font-size:18px}
.xstorm_template--home-page .xstorm_about-strip__value{font-size:24px}
.xstorm_template--home-page .xstorm_about-strip__label{font-size:11px}
.xstorm_template--home-page .xstorm_image-card__media{height:96px}
.xstorm_template--home-page .xstorm_image-card__body{padding:10px}
.xstorm_template--home-page .xstorm_image-card__title{font-size:16px;margin-bottom:4px}
.xstorm_template--home-page .xstorm_card__text{font-size:12px}
.xstorm_template--home-page .xstorm_carousel__track{gap:12px;padding-bottom:8px}
.xstorm_template--home-page .xstorm_carousel__item{min-width:210px}
.xstorm_template--home-page .xstorm_carousel__controls{margin-top:6px}
.xstorm_template--home-page .xstorm_home-summary{gap:12px}
.xstorm_template--home-page .xstorm_home-summary__panel>div:first-child,
.xstorm_template--home-page .xstorm_home-summary__panel>h2,
.xstorm_template--home-page .xstorm_home-summary__panel>p{padding:12px}
.xstorm_template--home-page .xstorm_home-summary__title{font-size:18px;margin-bottom:5px}
.xstorm_template--home-page .xstorm_home-summary__text{font-size:12px;margin-bottom:8px}
.xstorm_template--home-page .xstorm_home-summary__media{height:105px}
.xstorm_template--home-page .xstorm_home-summary--bottom .xstorm_region-map__visual{min-height:135px}
.xstorm_template--home-page .xstorm_home-summary--bottom .xstorm_documents{gap:6px}
.xstorm_template--home-page .xstorm_home-summary--bottom .xstorm_document{padding:9px}
.xstorm_template--home-page .xstorm_home-summary--bottom .xstorm_form{padding:12px}
.xstorm_template--home-page .xstorm_home-summary--directory,
.xstorm_template--home-page .xstorm_home-summary--operations{grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.xstorm_template--home-page .xstorm_home-summary--directory .xstorm_summary-list,
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_summary-list{gap:5px}
.xstorm_template--home-page .xstorm_home-summary--directory .xstorm_summary-list span,
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_summary-list span{padding:7px 8px;font-size:11px}
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_region-map{display:block;border:0;padding:0;background:transparent}
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_region-map__visual{min-height:118px;border-radius:8px}
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_documents{display:none}
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_form{border:0;padding:0}
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_form .xstorm_sidebar-card__title,
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_form__note{display:none}
.xstorm_template--home-page .xstorm_home-summary--operations .xstorm_form .xstorm_button{min-height:34px;padding:7px 11px;font-size:11px;margin-top:8px}
.xstorm_template--home-page .xstorm_form__grid{gap:8px}
.xstorm_template--home-page .xstorm_form__input,
.xstorm_template--home-page .xstorm_form__select{min-height:38px;padding:8px 10px}
.xstorm_template--home-page .xstorm_form__field:nth-of-type(n+3){display:none}
.xstorm_badge{border-radius:6px;background:#EEF4EA;color:var(--xstorm-ref-green)}
.xstorm_filters{padding:22px;top:112px}
.xstorm_filters__title{font-family:var(--xstorm-ref-serif);font-size:22px;color:var(--xstorm-ref-text)}
.xstorm_filters__select,.xstorm_filters__range{width:100%;border:1px solid var(--xstorm-ref-line);border-radius:6px;background:#fff;padding:11px 12px;margin-top:8px;color:var(--xstorm-ref-text)}
.xstorm_catalog-toolbar{display:flex;justify-content:space-between;align-items:center;gap:16px;margin-bottom:18px;color:var(--xstorm-ref-muted);font-size:14px}
.xstorm_catalog-toolbar label{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
.xstorm_product-layout>*{min-width:0}
.xstorm_product-detail{grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);gap:34px}
.xstorm_product-gallery{display:grid;grid-template-columns:72px 1fr;gap:18px;padding:0;border:0;background:transparent}
.xstorm_product-gallery__thumbs{grid-template-columns:1fr;grid-row:1;margin:0;gap:12px}
.xstorm_product-gallery__main{grid-column:2;border-radius:var(--xstorm-ref-radius);border:1px solid var(--xstorm-ref-line);min-height:480px}
.xstorm_product-gallery__thumb{border-radius:var(--xstorm-ref-radius);height:72px}
.xstorm_product-meta{padding:0;border:0;background:transparent}
.xstorm_product-meta__title{font-family:var(--xstorm-ref-serif);font-size:42px;color:var(--xstorm-ref-text)}
.xstorm_product-meta__lead{font-size:16px;color:var(--xstorm-ref-text);margin:16px 0 22px}
.xstorm_product-meta .xstorm_feature-row{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:12px 0;border-top:1px solid var(--xstorm-ref-line)}
.xstorm_product-meta .xstorm_feature-row__item{font-size:12px;min-width:0}
.xstorm_pack-selector{border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);background:#fff;padding:22px;margin:24px 0}
.xstorm_pack-selector__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:12px}
.xstorm_pack-option{border:1px solid var(--xstorm-ref-line);border-radius:6px;background:#fff;padding:14px;text-align:center;color:var(--xstorm-ref-text);cursor:pointer;font:inherit;line-height:1.35}
.xstorm_pack-option.is-active{border-color:var(--xstorm-ref-green);box-shadow:inset 0 0 0 1px var(--xstorm-ref-green)}
.xstorm_product-price{display:flex;align-items:end;justify-content:space-between;gap:18px;margin:18px 0}
.xstorm_product-price__value{font-size:34px;font-weight:500;color:var(--xstorm-ref-text)}
.xstorm_stock{color:var(--xstorm-ref-green);font-weight:700}
.xstorm_tabs__nav{border-bottom:1px solid var(--xstorm-ref-line);gap:0;margin-bottom:28px}
.xstorm_tabs__button{border:0;border-radius:0;background:transparent;padding:16px 28px;color:var(--xstorm-ref-muted)}
.xstorm_tabs__button.is-active{background:transparent;color:var(--xstorm-ref-text);border-bottom:3px solid var(--xstorm-ref-green)}
.xstorm_info-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.xstorm_info-card{border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);background:#fff;padding:18px}
.xstorm_table-card{border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);background:#fff;padding:24px}.xstorm_table-card__row{display:flex;justify-content:space-between;align-items:flex-start;gap:14px;border-bottom:1px solid var(--xstorm-ref-line);padding:9px 0;color:var(--xstorm-ref-muted)}.xstorm_table-card__row span{min-width:0}.xstorm_table-card__row b{text-align:right;color:var(--xstorm-ref-text)}.xstorm_table-card__row:last-child{border-bottom:0}
.xstorm_article-shell{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:54px;align-items:start}
.xstorm_article{padding:0;border:0;background:transparent}
.xstorm_article h2{font-family:var(--xstorm-ref-serif);color:var(--xstorm-ref-text)}
.xstorm_article p{font-size:18px;color:#202836}
.xstorm_sidebar-card{background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:22px;margin-bottom:22px}
.xstorm_sidebar-card__title{font-family:var(--xstorm-ref-serif);font-size:21px;margin:0 0 16px}
.xstorm_quote{background:#F4F1EA;border-radius:var(--xstorm-ref-radius);padding:24px;margin:28px 0;font-size:18px}
.xstorm_cta{background:#F0ECE4;color:var(--xstorm-ref-text);border-radius:var(--xstorm-ref-radius);border:1px solid var(--xstorm-ref-line)}
.xstorm_cta__title{font-family:var(--xstorm-ref-serif);font-size:30px;color:var(--xstorm-ref-text)}
.xstorm_cta__text{color:var(--xstorm-ref-muted)}
.xstorm_service-strip{background:#fff;border-top:1px solid var(--xstorm-ref-line);border-bottom:1px solid var(--xstorm-ref-line)}
.xstorm_service-strip__grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0}
.xstorm_service-strip__item{display:flex;align-items:center;gap:12px;padding:18px 20px;border-right:1px solid var(--xstorm-ref-line);font-size:13px;font-weight:700;color:var(--xstorm-ref-text)}
.xstorm_service-strip__item:last-child{border-right:0}
.xstorm_footer{background:#fff;color:var(--xstorm-ref-text);border-top:0;padding:34px 0 22px}
.xstorm_footer__grid{grid-template-columns:1.25fr repeat(4,1fr);gap:34px}
.xstorm_footer__title{font-family:var(--xstorm-ref-serif);font-size:18px;color:var(--xstorm-ref-text)}
.xstorm_footer__text,.xstorm_footer__link{color:var(--xstorm-ref-muted)}
.xstorm_footer__bottom{border-top:1px solid var(--xstorm-ref-line);color:#8A8F9A}
.xstorm_report-note{background:#FFFDF7;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:16px;color:var(--xstorm-ref-muted);font-size:14px}
@media (max-width:1199px){
  .xstorm_topbar__inner{grid-template-columns:1fr;gap:8px;padding:10px 0}.xstorm_topbar__item{white-space:normal}
  .xstorm_header__nav{top:88px}.xstorm_header__phone{display:none}
  .xstorm_page-hero__grid,.xstorm_product-detail,.xstorm_article-shell{grid-template-columns:1fr}.xstorm_page-hero__media{min-height:300px}
  .xstorm_about-strip__card,.xstorm_feature-row,.xstorm_service-strip__grid{grid-template-columns:repeat(2,1fr)}
  .xstorm_product-grid{grid-template-columns:repeat(3,1fr)}.xstorm_image-card-grid,.xstorm_split-grid{grid-template-columns:repeat(2,1fr)}
  .xstorm_catalog-materials{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_product-layout .xstorm_product-grid{grid-template-columns:repeat(3,1fr)}
  .xstorm_product-ribbon{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_catalog-summary{grid-template-columns:1fr}
  .xstorm_catalog-summary__panel--wide{grid-column:auto}
  .xstorm_home-summary,.xstorm_home-summary--bottom{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_product-layout{grid-template-columns:1fr}.xstorm_filters{position:relative;top:auto}
  .xstorm_product-gallery{grid-template-columns:1fr}.xstorm_product-gallery__main{grid-column:auto}.xstorm_product-gallery__thumbs{grid-template-columns:repeat(4,1fr);grid-row:auto}
}
@media (max-width:900px){
  .xstorm_catalog-selector{grid-template-columns:repeat(3,1fr)}
  .xstorm_split-grid{grid-template-columns:1fr}
  .xstorm_split-card{grid-template-columns:1fr}
  .xstorm_split-card__media{min-height:160px}
}
@media (max-width:767px){
  .xstorm_container{width:min(100% - 32px,var(--xstorm-ref-container))}
  .xstorm_header__inner{height:72px}.xstorm_header__brand-text{display:none}.xstorm_header__nav{top:72px}
  .xstorm_page-hero__title,.xstorm_hero__title{font-size:39px}.xstorm_page-hero__lead,.xstorm_hero__lead{font-size:17px}
  .xstorm_page-hero__media{min-height:240px}.xstorm_feature-row,.xstorm_about-strip__card,.xstorm_service-strip__grid,.xstorm_catalog-selector,.xstorm_pack-selector__grid,.xstorm_info-grid{grid-template-columns:1fr}
  .xstorm_product-grid,.xstorm_image-card-grid,.xstorm_split-grid{grid-template-columns:1fr}.xstorm_footer__grid{grid-template-columns:1fr}
  .xstorm_catalog-materials{grid-template-columns:1fr}
  .xstorm_product-layout .xstorm_product-grid{grid-template-columns:1fr}
  .xstorm_product-ribbon{grid-template-columns:1fr}
  .xstorm_catalog-summary,.xstorm_catalog-summary .xstorm_product-ribbon{grid-template-columns:1fr}
  .xstorm_home-summary,.xstorm_home-summary--bottom{grid-template-columns:1fr}
  .xstorm_catalog-toolbar{align-items:flex-start;flex-direction:column}
  .xstorm_split-card{grid-template-columns:1fr}.xstorm_split-card__media{min-height:150px}
}
@media (min-width:900px) and (max-width:1199px){
  .xstorm_container{width:min(100% - 64px,var(--xstorm-ref-container))}
  .xstorm_topbar__inner{grid-template-columns:minmax(0,1fr) auto auto;gap:18px;padding:0;min-height:36px}
  .xstorm_topbar__item{white-space:normal;overflow-wrap:anywhere}
  .xstorm_header__inner{height:78px;gap:16px}
  .xstorm_header__brand{min-width:54px;gap:0}
  .xstorm_header__logo{width:auto;min-width:46px;height:38px;font-size:28px;overflow:hidden}
  .xstorm_header__brand-text{display:none}
  .xstorm_header__nav{position:static;display:flex;grid-template-columns:none;max-height:none;overflow:visible;padding:0;border:0;background:transparent;left:auto;right:auto;top:auto;gap:14px;font-size:12px}
  .xstorm_header.is-open .xstorm_header__nav{display:flex}
  .xstorm_header__nav-link{padding:8px 0}
  .xstorm_header__burger{display:none}
  .xstorm_header__phone{display:grid;font-size:15px}
  .xstorm_header__hours{font-size:10px}
  .xstorm_header__actions{gap:12px}
  .xstorm_header__actions .xstorm_button{display:inline-flex;min-height:42px;padding:10px 14px;font-size:12px}
  .xstorm_page-hero,.xstorm_hero{padding-top:34px}
  .xstorm_page-hero__breadcrumbs{margin-bottom:18px}
  .xstorm_page-hero__grid{grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);gap:34px}
  .xstorm_page-hero__content{padding-bottom:34px}
  .xstorm_page-hero__title,.xstorm_hero__title{font-size:48px}
  .xstorm_page-hero__lead,.xstorm_hero__lead{font-size:18px}
  .xstorm_page-hero__media{min-height:350px}
  .xstorm_feature-row{grid-template-columns:repeat(4,1fr);gap:18px}
  .xstorm_feature-row__item{font-size:12px}
  .xstorm_about-strip__card{grid-template-columns:1.15fr repeat(5,1fr)}
  .xstorm_about-strip__intro,.xstorm_about-strip__stat{padding:18px}
  .xstorm_image-card-grid{grid-template-columns:repeat(4,1fr)}
  .xstorm_split-grid{grid-template-columns:repeat(3,1fr)}
  .xstorm_catalog-selector__item{min-width:0;padding:10px 8px;gap:6px;font-size:12px;line-height:1.2;overflow-wrap:anywhere}
  .xstorm_product-layout{grid-template-columns:210px minmax(0,1fr);gap:18px}
  .xstorm_product-layout .xstorm_product-grid{grid-template-columns:repeat(5,minmax(0,1fr));gap:10px}
  .xstorm_product-layout .xstorm_product-card__body{padding:10px}
  .xstorm_product-layout .xstorm_product-card__title{font-size:14px}
  .xstorm_product-layout .xstorm_product-card__price{font-size:13px}
  .xstorm_product-layout .xstorm_product-card__actions{font-size:11px}
  .xstorm_product-card__favorite,.xstorm_product-card__cart{width:28px;height:28px;font-size:14px}
  .xstorm_filters{position:sticky;top:98px;padding:18px}
  .xstorm_product-grid{grid-template-columns:repeat(4,1fr)}
  .xstorm_product-ribbon{grid-template-columns:repeat(4,minmax(0,1fr))}
  .xstorm_catalog-materials{grid-template-columns:repeat(3,minmax(0,1fr))}
  .xstorm_catalog-summary{grid-template-columns:1.25fr 1.25fr .95fr}
  .xstorm_catalog-summary__panel--wide{grid-column:span 2}
  .xstorm_home-summary{grid-template-columns:repeat(4,minmax(0,1fr))}
  .xstorm_home-summary--bottom{grid-template-columns:1.1fr 1.1fr .9fr}
  .xstorm_product-detail{grid-template-columns:minmax(0,1fr) minmax(350px,.9fr);gap:26px}
  .xstorm_product-gallery{grid-template-columns:64px 1fr;gap:14px}
  .xstorm_product-gallery__main{grid-column:2;min-height:420px}
  .xstorm_product-gallery__thumbs{grid-template-columns:1fr;grid-row:1}
  .xstorm_product-meta__title{font-size:36px}
  .xstorm_article-shell{grid-template-columns:minmax(0,1fr) 280px;gap:34px}
  .xstorm_service-strip__grid{grid-template-columns:repeat(5,1fr)}
  .xstorm_footer__grid{grid-template-columns:1.15fr repeat(4,1fr);gap:22px}
}
.xstorm_template--catalog-landing-page .xstorm_section,
.xstorm_template--tea-category-page .xstorm_section,
.xstorm_template--loose-tea-archive-page .xstorm_section,
.xstorm_template--packed-tea-archive-page .xstorm_section,
.xstorm_template--coffee-category-page .xstorm_section,
.xstorm_template--tableware-accessories-page .xstorm_section,
.xstorm_template--sweets-category-page .xstorm_section,
.xstorm_template--packaging-equipment-category-page .xstorm_section,
.xstorm_template--gift-solutions-page .xstorm_section,
.xstorm_template--search-results-page .xstorm_section{padding:30px 0}
.xstorm_template--catalog-landing-page .xstorm_section__head,
.xstorm_template--tea-category-page .xstorm_section__head,
.xstorm_template--loose-tea-archive-page .xstorm_section__head,
.xstorm_template--packed-tea-archive-page .xstorm_section__head,
.xstorm_template--coffee-category-page .xstorm_section__head,
.xstorm_template--tableware-accessories-page .xstorm_section__head,
.xstorm_template--sweets-category-page .xstorm_section__head,
.xstorm_template--packaging-equipment-category-page .xstorm_section__head,
.xstorm_template--gift-solutions-page .xstorm_section__head,
.xstorm_template--search-results-page .xstorm_section__head{margin-bottom:16px}
.xstorm_template--catalog-landing-page .xstorm_section__title,
.xstorm_template--tea-category-page .xstorm_section__title,
.xstorm_template--loose-tea-archive-page .xstorm_section__title,
.xstorm_template--packed-tea-archive-page .xstorm_section__title,
.xstorm_template--coffee-category-page .xstorm_section__title,
.xstorm_template--tableware-accessories-page .xstorm_section__title,
.xstorm_template--sweets-category-page .xstorm_section__title,
.xstorm_template--packaging-equipment-category-page .xstorm_section__title,
.xstorm_template--gift-solutions-page .xstorm_section__title,
.xstorm_template--search-results-page .xstorm_section__title{font-size:29px}
.xstorm_template--catalog-landing-page .xstorm_section__text,
.xstorm_template--tea-category-page .xstorm_section__text,
.xstorm_template--loose-tea-archive-page .xstorm_section__text,
.xstorm_template--packed-tea-archive-page .xstorm_section__text,
.xstorm_template--coffee-category-page .xstorm_section__text,
.xstorm_template--tableware-accessories-page .xstorm_section__text,
.xstorm_template--sweets-category-page .xstorm_section__text,
.xstorm_template--packaging-equipment-category-page .xstorm_section__text,
.xstorm_template--gift-solutions-page .xstorm_section__text,
.xstorm_template--search-results-page .xstorm_section__text{font-size:14px;margin-top:6px}
.xstorm_template--catalog-landing-page .xstorm_page-hero,
.xstorm_template--tea-category-page .xstorm_page-hero,
.xstorm_template--loose-tea-archive-page .xstorm_page-hero,
.xstorm_template--packed-tea-archive-page .xstorm_page-hero,
.xstorm_template--coffee-category-page .xstorm_page-hero,
.xstorm_template--tableware-accessories-page .xstorm_page-hero,
.xstorm_template--sweets-category-page .xstorm_page-hero,
.xstorm_template--packaging-equipment-category-page .xstorm_page-hero,
.xstorm_template--gift-solutions-page .xstorm_page-hero,
.xstorm_template--search-results-page .xstorm_page-hero{padding-top:30px}
.xstorm_template--catalog-landing-page .xstorm_page-hero__media,
.xstorm_template--tea-category-page .xstorm_page-hero__media,
.xstorm_template--loose-tea-archive-page .xstorm_page-hero__media,
.xstorm_template--packed-tea-archive-page .xstorm_page-hero__media,
.xstorm_template--coffee-category-page .xstorm_page-hero__media,
.xstorm_template--tableware-accessories-page .xstorm_page-hero__media,
.xstorm_template--sweets-category-page .xstorm_page-hero__media,
.xstorm_template--packaging-equipment-category-page .xstorm_page-hero__media,
.xstorm_template--gift-solutions-page .xstorm_page-hero__media,
.xstorm_template--search-results-page .xstorm_page-hero__media{min-height:330px}
.xstorm_template--catalog-landing-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--tea-category-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--loose-tea-archive-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--packed-tea-archive-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--coffee-category-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--tableware-accessories-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--sweets-category-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--packaging-equipment-category-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--gift-solutions-page .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_template--search-results-page .xstorm_product-ribbon .xstorm_product-card__media{aspect-ratio:1.75/1}
.xstorm_template--catalog-landing-page .xstorm_form,
.xstorm_template--tea-category-page .xstorm_form,
.xstorm_template--loose-tea-archive-page .xstorm_form,
.xstorm_template--packed-tea-archive-page .xstorm_form,
.xstorm_template--coffee-category-page .xstorm_form,
.xstorm_template--tableware-accessories-page .xstorm_form,
.xstorm_template--sweets-category-page .xstorm_form,
.xstorm_template--packaging-equipment-category-page .xstorm_form,
.xstorm_template--gift-solutions-page .xstorm_form,
.xstorm_template--search-results-page .xstorm_form{padding:20px}
.xstorm_catalog-materials{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.xstorm_catalog-materials__panel{min-width:0;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:13px}
.xstorm_catalog-materials__title{font-family:var(--xstorm-ref-serif);font-size:18px;line-height:1.14;margin:0 0 7px;color:var(--xstorm-ref-text)}
.xstorm_catalog-materials__text{font-size:12px;line-height:1.42;margin:0 0 9px;color:var(--xstorm-ref-muted)}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_page-hero__content{padding-bottom:26px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_page-hero__title{font-size:42px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_page-hero__media{min-height:285px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_image-card-grid{gap:10px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_image-card__media{height:94px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_image-card__body{padding:10px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_image-card__title{font-size:15px;margin-bottom:4px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_card__text{font-size:12px;line-height:1.35}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters{padding:12px;top:94px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__title{font-size:18px;margin-bottom:8px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__group{padding-top:8px;margin-top:8px;font-size:12px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__group:first-of-type{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:2px 4px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__group:first-of-type b{grid-column:1/-1}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__label{font-size:12px;margin:3px 0;padding:2px 4px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__select,
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_filters__range{padding:7px 8px;margin-top:5px;font-size:12px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-card__media{aspect-ratio:1.95/1}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-card__body{padding:7px;gap:3px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-card__title{font-size:12px;line-height:1.18}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-card__text{display:none}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-card__price{font-size:11px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-card__actions{display:none}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_pagination{margin-top:16px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_pagination__link{width:32px;height:32px;font-size:12px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_split-grid{gap:10px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_split-card__body{padding:12px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_split-card__media{min-height:110px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary{gap:12px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary__panel{padding:12px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary__title{font-size:18px;margin-bottom:6px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary__text{font-size:12px;margin-bottom:8px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_summary-list{grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_summary-list span{padding:7px 8px;font-size:11px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_product-card__media{aspect-ratio:3/1}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_product-card__body{padding:7px;gap:3px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_product-card__title{font-size:12px;line-height:1.18}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_product-card__price{font-size:11px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_table-card{padding:10px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_table-card__row{font-size:12px;padding:6px 0;display:flex;gap:8px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form{padding:0;border:0}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form .xstorm_sidebar-card__title,
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form__note{display:none}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form__grid{grid-template-columns:1fr;gap:5px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form__label{font-size:11px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form__input,
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form__select{min-height:32px;padding:6px 9px;border-radius:7px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_catalog-summary .xstorm_form .xstorm_button{min-height:34px;padding:7px 11px;font-size:11px;margin-top:8px}
.xstorm_product-summary,
.xstorm_article-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.xstorm_product-summary__panel,
.xstorm_article-summary__panel{min-width:0;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:12px;overflow:hidden}
.xstorm_product-summary__panel--wide,
.xstorm_article-summary__panel--wide{grid-column:span 2}
.xstorm_product-summary__title,
.xstorm_article-summary__title{font-family:var(--xstorm-ref-serif);font-size:17px;line-height:1.14;margin:0 0 6px;color:var(--xstorm-ref-text)}
.xstorm_product-summary__text,
.xstorm_article-summary__text{font-size:12px;line-height:1.45;margin:0 0 10px;color:var(--xstorm-ref-muted)}
.xstorm_product-summary__media-grid,
.xstorm_article-summary__media-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.xstorm_product-summary__media-grid .xstorm_visual-image,
.xstorm_article-summary__media-grid .xstorm_visual-image{min-height:72px;border-radius:8px}
.xstorm_product-summary__media-grid .xstorm_visual-image__caption,
.xstorm_article-summary__media-grid .xstorm_visual-image__caption{display:none}
.xstorm_summary-list{display:grid;gap:7px}
.xstorm_summary-list span{display:flex;align-items:center;justify-content:space-between;gap:10px;border:1px solid var(--xstorm-ref-line);border-radius:7px;background:#fff;padding:8px 10px;color:var(--xstorm-ref-text);font-size:12px}
.xstorm_summary-list b{font-size:11px;color:var(--xstorm-ref-muted)}
.xstorm_product-summary .xstorm_table-card,
.xstorm_article-summary .xstorm_table-card{padding:10px;border-radius:8px}
.xstorm_product-summary .xstorm_table-card__row,
.xstorm_article-summary .xstorm_table-card__row{font-size:12px;padding:6px 0}
.xstorm_product-summary .xstorm_documents{gap:6px}
.xstorm_product-summary .xstorm_document{padding:8px;border-radius:8px}
.xstorm_product-summary .xstorm_document__title{font-size:13px;margin:0 0 2px}
.xstorm_product-summary .xstorm_document__text{font-size:11px;line-height:1.35;margin:0}
.xstorm_product-summary .xstorm_product-ribbon,
.xstorm_article-summary .xstorm_product-ribbon{grid-template-columns:repeat(4,minmax(0,1fr));gap:10px}
.xstorm_product-summary .xstorm_product-ribbon .xstorm_product-card__media,
.xstorm_article-summary .xstorm_product-ribbon .xstorm_product-card__media{aspect-ratio:2.15/1}
.xstorm_product-summary .xstorm_product-card__body,
.xstorm_article-summary .xstorm_product-card__body{padding:7px;gap:3px}
.xstorm_product-summary .xstorm_product-card__title,
.xstorm_article-summary .xstorm_product-card__title{font-size:12px;line-height:1.18}
.xstorm_product-summary .xstorm_product-card__text,
.xstorm_article-summary .xstorm_product-card__text{display:none}
.xstorm_product-summary .xstorm_product-card__price,
.xstorm_article-summary .xstorm_product-card__price{font-size:12px}
.xstorm_product-summary .xstorm_product-card__actions,
.xstorm_article-summary .xstorm_product-card__actions{display:none}
.xstorm_product-summary .xstorm_icon-button,
.xstorm_article-summary .xstorm_icon-button{width:26px;height:26px;font-size:13px}
.xstorm_product-summary .xstorm_form,
.xstorm_article-summary .xstorm_form{border:0;padding:0}
.xstorm_product-summary .xstorm_form .xstorm_sidebar-card__title,
.xstorm_article-summary .xstorm_form .xstorm_sidebar-card__title,
.xstorm_product-summary .xstorm_form__note,
.xstorm_article-summary .xstorm_form__note{display:none}
.xstorm_product-summary .xstorm_form__grid,
.xstorm_article-summary .xstorm_form__grid{grid-template-columns:1fr;gap:5px}
.xstorm_product-summary .xstorm_form__field:nth-of-type(n+3),
.xstorm_article-summary .xstorm_form__field:nth-of-type(n+3){display:none}
.xstorm_product-summary .xstorm_form__field,
.xstorm_article-summary .xstorm_form__field{gap:3px}
.xstorm_product-summary .xstorm_form__label,
.xstorm_article-summary .xstorm_form__label{font-size:11px}
.xstorm_product-summary .xstorm_form__input,
.xstorm_product-summary .xstorm_form__select,
.xstorm_article-summary .xstorm_form__input,
.xstorm_article-summary .xstorm_form__select{min-height:32px;padding:6px 9px;border-radius:7px}
.xstorm_product-summary .xstorm_form .xstorm_button,
.xstorm_article-summary .xstorm_form .xstorm_button{min-height:34px;padding:7px 11px;font-size:11px;margin-top:8px}
.xstorm_article-summary .xstorm_toc{position:static;padding:0;border:0;border-radius:0}
.xstorm_article-summary .xstorm_toc__link{font-size:12px;padding:5px 0}
.xstorm_article-summary__panel--cta{background:#F0ECE4}
.xstorm_article-summary__panel--cta .xstorm_button{min-height:36px;padding:8px 12px;font-size:12px}
.xstorm_template--product-detail-page .xstorm_section,
.xstorm_template--article-detail-page .xstorm_section,
.xstorm_template--news-detail-page .xstorm_section{padding:24px 0}
.xstorm_template--product-detail-page .xstorm_section__head,
.xstorm_template--article-detail-page .xstorm_section__head,
.xstorm_template--news-detail-page .xstorm_section__head{margin-bottom:12px}
.xstorm_template--product-detail-page .xstorm_section__title,
.xstorm_template--article-detail-page .xstorm_section__title,
.xstorm_template--news-detail-page .xstorm_section__title{font-size:27px}
.xstorm_template--product-detail-page .xstorm_section__text,
.xstorm_template--article-detail-page .xstorm_section__text,
.xstorm_template--news-detail-page .xstorm_section__text{font-size:13px;margin-top:5px}
.xstorm_template--product-detail-page .xstorm_product-detail{gap:22px}
.xstorm_template--product-detail-page .xstorm_product-gallery{grid-template-columns:54px minmax(0,1fr);gap:10px}
.xstorm_template--product-detail-page .xstorm_product-gallery__main{min-height:300px}
.xstorm_template--product-detail-page .xstorm_product-gallery__thumb{height:50px}
.xstorm_template--product-detail-page .xstorm_product-gallery__thumb .xstorm_visual-image,
.xstorm_template--product-detail-page .xstorm_product-gallery__thumb .xstorm_visual-image__img{min-height:50px}
.xstorm_template--product-detail-page .xstorm_product-gallery__main .xstorm_visual-image{min-height:300px}
.xstorm_template--product-detail-page .xstorm_product-meta__title{font-size:30px;margin-bottom:7px}
.xstorm_template--product-detail-page .xstorm_product-meta__list{gap:6px;margin:10px 0}
.xstorm_template--product-detail-page .xstorm_product-meta__row{font-size:12px;padding-bottom:6px}
.xstorm_template--product-detail-page .xstorm_product-meta__lead{font-size:14px;line-height:1.45;margin:10px 0 12px}
.xstorm_template--product-detail-page .xstorm_product-meta .xstorm_feature-row{grid-template-columns:repeat(4,minmax(0,1fr));padding:7px 0;gap:7px}
.xstorm_template--product-detail-page .xstorm_product-meta .xstorm_feature-row__item{font-size:11px}
.xstorm_template--product-detail-page .xstorm_pack-selector{padding:9px;margin:9px 0}
.xstorm_template--product-detail-page .xstorm_pack-selector__grid{gap:8px;margin-top:8px}
.xstorm_template--product-detail-page .xstorm_pack-option{padding:8px;font-size:12px}
.xstorm_template--product-detail-page .xstorm_product-price{margin:9px 0;align-items:center}
.xstorm_template--product-detail-page .xstorm_product-price__value{font-size:23px}
.xstorm_template--product-detail-page .xstorm_page-hero__actions{gap:10px}
.xstorm_template--product-detail-page .xstorm_page-hero__actions .xstorm_button{min-height:40px;padding:9px 13px;font-size:12px}
.xstorm_template--product-detail-page .xstorm_tabs__nav{margin-bottom:12px;overflow:auto}
.xstorm_template--product-detail-page .xstorm_tabs__button{padding:10px 16px;font-size:12px;white-space:nowrap}
.xstorm_template--product-detail-page .xstorm_tabs__panel .xstorm_article-shell{grid-template-columns:minmax(0,1fr) 220px;gap:18px}
.xstorm_template--product-detail-page .xstorm_article h2{font-size:24px;margin:16px 0 8px}
.xstorm_template--product-detail-page .xstorm_article p{font-size:14px;line-height:1.45}
.xstorm_template--product-detail-page .xstorm_info-grid{gap:8px}
.xstorm_template--product-detail-page .xstorm_info-card{padding:10px;font-size:12px}
.xstorm_template--product-detail-page .xstorm_sidebar-card{padding:12px;margin-bottom:0}
.xstorm_template--product-detail-page .xstorm_sidebar-card__title{font-size:16px;margin-bottom:7px}
.xstorm_template--product-detail-page .xstorm_sidebar-card p{font-size:12px;line-height:1.4}
.xstorm_template--product-detail-page .xstorm_sidebar-card .xstorm_visual-image{min-height:120px}
.xstorm_template--article-detail-page .xstorm_article-shell,
.xstorm_template--news-detail-page .xstorm_article-shell{grid-template-columns:minmax(0,1fr) 250px;gap:28px}
.xstorm_template--article-detail-page .xstorm_page-hero__title,
.xstorm_template--news-detail-page .xstorm_page-hero__title{font-size:36px;margin-bottom:8px}
.xstorm_template--article-detail-page .xstorm_article p,
.xstorm_template--news-detail-page .xstorm_article p{font-size:15px;line-height:1.5}
.xstorm_template--article-detail-page .xstorm_page-hero__media,
.xstorm_template--news-detail-page .xstorm_page-hero__media{min-height:250px;margin:12px 0}
.xstorm_template--article-detail-page .xstorm_quote,
.xstorm_template--news-detail-page .xstorm_quote{font-size:15px;line-height:1.45;padding:16px;margin:16px 0}
.xstorm_template--article-detail-page .xstorm_sidebar-card,
.xstorm_template--news-detail-page .xstorm_sidebar-card{padding:14px;margin-bottom:12px}
.xstorm_template--article-detail-page .xstorm_sidebar-card__title,
.xstorm_template--news-detail-page .xstorm_sidebar-card__title{font-size:17px;margin-bottom:7px}
.xstorm_template--article-detail-page .xstorm_sidebar-card .xstorm_card__text,
.xstorm_template--news-detail-page .xstorm_sidebar-card .xstorm_card__text{font-size:12px}
.xstorm_contacts-summary{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
.xstorm_contacts-summary__panel{min-width:0;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:12px;overflow:hidden}
.xstorm_contacts-summary__panel--wide{grid-column:span 2}
.xstorm_contacts-summary__panel--map{grid-column:span 2;grid-row:span 2}
.xstorm_contacts-summary__title{font-family:var(--xstorm-ref-serif);font-size:17px;line-height:1.14;margin:0 0 7px;color:var(--xstorm-ref-text)}
.xstorm_contacts-summary__text{font-size:12px;line-height:1.45;margin:0 0 9px;color:var(--xstorm-ref-muted)}
.xstorm_contacts-summary .xstorm_region-map{display:block;border:0;padding:0;background:transparent}
.xstorm_contacts-summary .xstorm_region-map__visual{min-height:170px;border-radius:8px}
.xstorm_contacts-summary .xstorm_documents{display:none}
.xstorm_contacts-summary__media-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.xstorm_contacts-summary__media-grid .xstorm_visual-image{min-height:78px;border-radius:8px}
.xstorm_contacts-summary__media-grid .xstorm_visual-image__caption{display:none}
.xstorm_contacts-summary .xstorm_form{border:0;padding:0}
.xstorm_contacts-summary .xstorm_form .xstorm_sidebar-card__title,
.xstorm_contacts-summary .xstorm_form__note{display:none}
.xstorm_contacts-summary .xstorm_form__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:6px}
.xstorm_contacts-summary .xstorm_form__field:nth-of-type(n+5){display:none}
.xstorm_contacts-summary .xstorm_form__field{gap:3px}
.xstorm_contacts-summary .xstorm_form__label{font-size:11px}
.xstorm_contacts-summary .xstorm_form__input,
.xstorm_contacts-summary .xstorm_form__select{min-height:32px;padding:6px 9px;border-radius:7px}
.xstorm_contacts-summary .xstorm_form .xstorm_button{min-height:34px;padding:7px 11px;font-size:11px;margin-top:8px}
.xstorm_template--contacts-regions-page .xstorm_section{padding:24px 0}
.xstorm_template--contacts-regions-page .xstorm_section__head{margin-bottom:12px}
.xstorm_template--contacts-regions-page .xstorm_section__title{font-size:27px}
.xstorm_template--contacts-regions-page .xstorm_section__text{font-size:13px;margin-top:5px}
.xstorm_template--contacts-regions-page .xstorm_page-hero{padding-top:30px}
.xstorm_template--contacts-regions-page .xstorm_page-hero__content{padding-bottom:28px}
.xstorm_template--contacts-regions-page .xstorm_page-hero__title{font-size:42px}
.xstorm_template--contacts-regions-page .xstorm_page-hero__lead{font-size:16px}
.xstorm_template--contacts-regions-page .xstorm_page-hero__media{min-height:300px}
.xstorm_template--search-results-page .xstorm_page-hero__title{font-size:42px}
.xstorm_template--search-results-page .xstorm_search{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;gap:14px;padding:18px;border-radius:var(--xstorm-ref-radius);box-shadow:none}
.xstorm_search__field{display:flex;flex-direction:column;gap:6px;min-width:0}
.xstorm_search__label{font-size:12px;font-weight:900;color:var(--xstorm-ref-green);text-transform:uppercase;letter-spacing:0}
.xstorm_search__hint{grid-column:1/-1;margin:0;color:var(--xstorm-ref-muted);font-size:12px}
.xstorm_search-layout{display:grid;grid-template-columns:260px minmax(0,1fr);gap:18px;align-items:start}
.xstorm_search-filters{position:sticky;top:94px}
.xstorm_result-tabs{min-width:0;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:14px}
.xstorm_result-tabs__nav{display:flex;gap:8px;overflow:auto;margin-bottom:14px;padding-bottom:2px}
.xstorm_result-tabs__button{white-space:nowrap;border-radius:999px;border:1px solid var(--xstorm-ref-line);background:#fff;color:var(--xstorm-ref-text);padding:9px 13px;font-weight:900;cursor:pointer}
.xstorm_result-tabs__button span{color:var(--xstorm-ref-muted);font-size:12px;margin-left:4px}
.xstorm_result-tabs__button.is-active{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff}
.xstorm_result-tabs__button.is-active span{color:rgba(255,255,255,.72)}
.xstorm_search-results{display:grid;gap:10px}
.xstorm_search-result{min-width:0;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:14px;display:grid;gap:6px}
.xstorm_search-result__title{font-family:var(--xstorm-ref-serif);font-size:20px;line-height:1.16;margin:0;color:var(--xstorm-ref-text)}
.xstorm_search-result__text{margin:0;color:var(--xstorm-ref-muted);font-size:13px;line-height:1.45}
.xstorm_search-result__meta{font-size:12px;color:var(--xstorm-ref-green);font-weight:800}
.xstorm_result-tabs .xstorm_product-grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.xstorm_result-tabs .xstorm_product-card__media{aspect-ratio:1.9/1}
.xstorm_result-tabs .xstorm_product-card__body{padding:9px;gap:4px}
.xstorm_result-tabs .xstorm_product-card__title{font-size:13px;line-height:1.2}
.xstorm_result-tabs .xstorm_product-card__text{font-size:12px}
.xstorm_result-tabs .xstorm_product-card__actions{display:none}
.xstorm_empty{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center;background:#fff;border:1px solid var(--xstorm-ref-line);border-radius:var(--xstorm-ref-radius);padding:18px;margin-bottom:14px}
.xstorm_empty[hidden],.xstorm_catalog-empty[hidden]{display:none!important}
.xstorm_empty__title{font-family:var(--xstorm-ref-serif);font-size:25px;line-height:1.15;margin:8px 0 6px;color:var(--xstorm-ref-text)}
.xstorm_empty__text{margin:0;color:var(--xstorm-ref-muted);font-size:14px}
.xstorm_empty__actions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
@media (max-width:899px){
  .xstorm_product-summary,
  .xstorm_article-summary,
  .xstorm_contacts-summary{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_search-layout{grid-template-columns:1fr}
  .xstorm_template--search-results-page .xstorm_search-filters{position:relative;top:0}
  .xstorm_result-tabs .xstorm_product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_product-summary .xstorm_product-ribbon,
  .xstorm_article-summary .xstorm_product-ribbon{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_template--product-detail-page .xstorm_tabs__panel .xstorm_article-shell{grid-template-columns:1fr}
  .xstorm_contacts-summary__panel--wide,
  .xstorm_contacts-summary__panel--map{grid-column:auto;grid-row:auto}
}
@media (max-width:767px){
  .xstorm_header__logo{font-size:21px;overflow:hidden}
  .xstorm_product-summary,
  .xstorm_article-summary,
  .xstorm_contacts-summary,
  .xstorm_product-summary__panel--wide,
  .xstorm_article-summary__panel--wide{grid-template-columns:1fr;grid-column:auto}
  .xstorm_contacts-summary__panel--wide,
  .xstorm_contacts-summary__panel--map{grid-column:auto;grid-row:auto}
  .xstorm_product-summary__media-grid,
  .xstorm_article-summary__media-grid,
  .xstorm_contacts-summary__media-grid{grid-template-columns:1fr}
  .xstorm_template--search-results-page .xstorm_search{grid-template-columns:1fr}
  .xstorm_result-tabs .xstorm_product-grid{grid-template-columns:1fr}
  .xstorm_empty{grid-template-columns:1fr}
  .xstorm_empty__actions{justify-content:flex-start}
  .xstorm_product-summary .xstorm_product-ribbon,
  .xstorm_article-summary .xstorm_product-ribbon{grid-template-columns:1fr}
  .xstorm_contacts-summary .xstorm_form__grid{grid-template-columns:1fr}
  .xstorm_template--product-detail-page .xstorm_product-gallery{grid-template-columns:1fr}
  .xstorm_template--product-detail-page .xstorm_product-gallery__main{grid-column:auto;min-height:260px}
  .xstorm_template--product-detail-page .xstorm_product-gallery__main .xstorm_visual-image{min-height:260px}
  .xstorm_template--product-detail-page .xstorm_product-gallery__thumbs{grid-template-columns:repeat(4,1fr)}
  .xstorm_template--product-detail-page .xstorm_product-meta .xstorm_feature-row{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_template--product-detail-page .xstorm_product-meta .xstorm_feature-row__item{overflow-wrap:anywhere}
  .xstorm_template--article-detail-page .xstorm_page-hero__title,
  .xstorm_template--news-detail-page .xstorm_page-hero__title{font-size:34px}
}

/* 50. Frontend typography, phone slot, cookie and legal docs pass */
:root{
  --xstorm-ref-sans:"Inter","Segoe UI Variable","Segoe UI",Roboto,Arial,system-ui,sans-serif;
  --xstorm-ref-display:"Inter","Segoe UI Variable","Segoe UI",Roboto,Arial,system-ui,sans-serif;
  --xstorm-ref-serif:var(--xstorm-ref-display);
}
body{font-size:17px;line-height:1.62}
.xstorm_header__nav{font-size:15px;font-weight:600}
.xstorm_header__nav-link{font-weight:600}
.xstorm_header__nav-link.is-active{font-weight:750}
.xstorm_header__mega-title{font-weight:760}
.xstorm_header__mega-link{font-size:15px;font-weight:560}
.xstorm_header__brand-name{font-weight:820}
.xstorm_header__brand-subtitle{font-weight:650}
.xstorm_header__phone{min-width:202px;border-left:1px solid rgba(24,32,51,.08);padding-left:18px}
.xstorm_header__phone-label{font-size:13px;font-weight:800;color:#1F2938}
.xstorm_header__phone-value{font-size:12px;font-weight:650;color:var(--xstorm-ref-muted)}
.xstorm_button{font-weight:700}
.xstorm_page-hero__lead,.xstorm_hero__lead{font-size:21px;line-height:1.55}
.xstorm_section__text{font-size:17px}
.xstorm_card__text,.xstorm_product-card__text,.xstorm_document__text,.xstorm_sidebar-card .xstorm_card__text{font-size:16px;line-height:1.58}
.xstorm_footer__text,.xstorm_footer__link{font-size:15px;line-height:1.55}
.xstorm_form__label,.xstorm_search__label{font-size:13px}
.xstorm_form__input,.xstorm_form__select,.xstorm_form__textarea{font-size:16px}
.xstorm_legal-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.xstorm_legal-card{background:#fff;border:1px solid rgba(24,32,51,.075);border-radius:16px;padding:28px;box-shadow:var(--xstorm-shadow-card);scroll-margin-top:130px}
.xstorm_legal-card__title{font-size:25px;line-height:1.15;margin:14px 0 12px;color:var(--xstorm-ref-text)}
.xstorm_legal-card__text{margin:0 0 16px;color:var(--xstorm-ref-muted);font-size:16px;line-height:1.6}
.xstorm_legal-list{margin:0;padding-left:20px;color:#3E4859;font-size:15px;line-height:1.7}
.xstorm_cookie{position:fixed;left:24px;right:24px;bottom:24px;z-index:90;width:min(920px,calc(100% - 48px));margin-inline:auto;display:flex;align-items:center;justify-content:space-between;gap:22px;background:rgba(255,255,255,.98);border:1px solid rgba(24,32,51,.1);border-radius:18px;padding:18px 20px;box-shadow:0 24px 70px rgba(24,32,51,.16);backdrop-filter:blur(18px)}
.xstorm_cookie[hidden]{display:none}
.xstorm_cookie__body{display:grid;gap:8px;min-width:0}
.xstorm_cookie__text{margin:0;color:#2A3342;font-size:14px;line-height:1.5}
.xstorm_cookie__links{display:flex;gap:14px;flex-wrap:wrap}
.xstorm_cookie__link{color:var(--xstorm-ref-green);font-weight:700;font-size:13px}
.xstorm_cookie__button{flex:0 0 auto;min-height:42px;padding:11px 18px}
@media (max-width:1199px){
  .xstorm_header__phone{display:none}
}
@media (max-width:767px){
  body{font-size:16px;line-height:1.58}
  .xstorm_page-hero__lead,.xstorm_hero__lead{font-size:18px}
  .xstorm_section__text{font-size:16px}
  .xstorm_legal-grid{grid-template-columns:1fr}
  .xstorm_legal-card{padding:22px;scroll-margin-top:100px}
  .xstorm_cookie{left:14px;right:14px;bottom:14px;width:calc(100% - 28px);display:grid;gap:14px;padding:16px}
  .xstorm_cookie__button{width:100%}
}

/* 48. Header mega-menu and visual polish pass */
:root{
  --xstorm-ref-bg:#F8F7F3;
  --xstorm-ref-panel:#FFFFFF;
  --xstorm-ref-soft:#F6F3EC;
  --xstorm-ref-line:rgba(24,32,51,.085);
  --xstorm-ref-muted:#647085;
  --xstorm-ref-radius:12px;
  --xstorm-ref-display:"Manrope","Segoe UI Variable","Segoe UI",Arial,system-ui,sans-serif;
  --xstorm-ref-sans:"Manrope","Segoe UI Variable","Segoe UI",Arial,system-ui,sans-serif;
  --xstorm-ref-serif:var(--xstorm-ref-display);
  --xstorm-shadow-airy:0 24px 70px rgba(24,32,51,.075);
  --xstorm-shadow-card:0 16px 44px rgba(24,32,51,.055);
}
body{font-family:var(--xstorm-ref-sans);font-weight:400;letter-spacing:0;text-rendering:optimizeLegibility}
.xstorm_header{border-bottom-color:rgba(24,32,51,.07);box-shadow:0 10px 36px rgba(24,32,51,.04)}
.xstorm_header__inner{height:96px;gap:26px;position:relative}
.xstorm_header__brand{min-width:236px;gap:16px;align-items:center}
.xstorm_header__logo{width:58px;height:58px;border:1px solid rgba(23,60,22,.16);border-radius:18px;background:linear-gradient(145deg,#fff,#F3F0E8);box-shadow:inset 0 1px 0 rgba(255,255,255,.9),0 14px 30px rgba(23,60,22,.08);font-family:var(--xstorm-ref-display);font-size:18px;font-weight:900;letter-spacing:.04em;display:grid;place-items:center}
.xstorm_header__logo span{display:block;line-height:1;color:var(--xstorm-ref-green)}
.xstorm_header__brand-text{display:grid;gap:3px;line-height:1.05;font-size:12px;font-weight:700;color:#697487;text-transform:uppercase;letter-spacing:.08em}
.xstorm_header__brand-name{font-family:var(--xstorm-ref-display);font-size:17px;font-weight:900;color:var(--xstorm-ref-text);letter-spacing:.01em;text-transform:none}
.xstorm_header__brand-subtitle{font-size:11px;font-weight:800;color:var(--xstorm-ref-muted);letter-spacing:.16em}
.xstorm_header__nav{flex:1;display:flex;align-items:stretch;justify-content:center;gap:2px;font-size:14px;font-weight:800}
.xstorm_header__nav-item{display:flex;align-items:stretch}
.xstorm_header__nav-link{height:96px;padding:0 12px;border-bottom:2px solid transparent;color:#2B3444;display:flex;align-items:center;white-space:nowrap;transition:color var(--xstorm-transition),border-color var(--xstorm-transition),background var(--xstorm-transition)}
.xstorm_header__nav-link:hover,.xstorm_header__nav-link:focus{color:var(--xstorm-ref-green);background:linear-gradient(180deg,rgba(23,60,22,.045),rgba(23,60,22,0))}
.xstorm_header__nav-link.is-active{color:var(--xstorm-ref-green);font-weight:900;border-bottom-color:var(--xstorm-ref-green)}
.xstorm_header__nav-link--dropdown::after{content:none}
.xstorm_header__mega{position:absolute;left:50%;top:calc(100% - 1px);z-index:60;width:min(var(--xstorm-ref-container),calc(100vw - 72px));transform:translate(-50%,8px);opacity:0;visibility:hidden;pointer-events:none;transition:opacity 160ms ease,transform 160ms ease,visibility 160ms ease;background:rgba(255,255,255,.98);border:1px solid rgba(24,32,51,.075);border-radius:0 0 22px 22px;box-shadow:var(--xstorm-shadow-airy);backdrop-filter:blur(18px)}
.xstorm_header__nav-item:hover .xstorm_header__mega,
.xstorm_header__nav-item:focus-within .xstorm_header__mega,
.xstorm_header__nav-item.is-open .xstorm_header__mega{opacity:1;visibility:visible;pointer-events:auto;transform:translate(-50%,0)}
.xstorm_header__mega-inner{display:grid;grid-template-columns:300px minmax(0,1fr);gap:34px;padding:32px}
.xstorm_header__mega-intro{padding:22px;border-radius:18px;background:linear-gradient(145deg,#F5F2EA,#FFFFFF);border:1px solid rgba(24,32,51,.06)}
.xstorm_header__mega-eyebrow{display:block;margin-bottom:12px;color:var(--xstorm-ref-green);font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}
.xstorm_header__mega-text{margin:0 0 22px;color:#3A4352;font-size:15px;line-height:1.55}
.xstorm_header__mega-cta{display:inline-flex;align-items:center;min-height:38px;padding:9px 14px;border-radius:10px;background:var(--xstorm-ref-green);color:#fff;font-size:13px;font-weight:900}
.xstorm_header__mega-groups{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.xstorm_header__mega-group{min-width:0}
.xstorm_header__mega-title{display:block;margin:0 0 12px;font-size:13px;font-weight:900;color:#202838;text-transform:uppercase;letter-spacing:.08em}
.xstorm_header__mega-link{display:flex;align-items:center;min-height:36px;padding:8px 10px;margin:0 -10px;border-radius:10px;color:#4A5466;font-size:14px;font-weight:650;line-height:1.25;transition:background var(--xstorm-transition),color var(--xstorm-transition),transform var(--xstorm-transition)}
.xstorm_header__mega-link:hover,.xstorm_header__mega-link:focus{background:#F2F6EF;color:var(--xstorm-ref-green);transform:translateX(2px)}
.xstorm_header__actions{gap:18px;align-items:center;margin-left:0}
.xstorm_header__phone{display:grid;gap:3px;min-width:164px;color:var(--xstorm-ref-text);font-size:13px;font-weight:800;line-height:1.15;padding:10px 0}
.xstorm_header__phone-label{color:#1F2938;font-size:14px}
.xstorm_header__phone-value{color:var(--xstorm-ref-muted);font-size:11px;font-weight:700;letter-spacing:.03em}
.xstorm_header__hours{font-size:11px}
.xstorm_button{border-radius:12px;min-height:48px;padding:14px 22px;font-weight:850}
.xstorm_button--primary{background:#173C16;box-shadow:0 14px 34px rgba(23,60,22,.16)}
.xstorm_button--primary:hover{background:#0F2B0F;box-shadow:0 18px 42px rgba(23,60,22,.2)}
.xstorm_page-hero,.xstorm_hero{padding:70px 0 0;border-bottom-color:rgba(24,32,51,.065)}
.xstorm_page-hero__grid{gap:72px}
.xstorm_page-hero__content{padding-bottom:68px}
.xstorm_page-hero__title,.xstorm_hero__title{font-size:62px;line-height:1.02;letter-spacing:0}
.xstorm_page-hero__lead,.xstorm_hero__lead{max-width:650px;color:#2B3444}
.xstorm_section{padding:74px 0}
.xstorm_section__head{margin-bottom:34px}
.xstorm_section__title{font-size:38px;line-height:1.1}
.xstorm_section__text{max-width:790px;line-height:1.65}
.xstorm_card-grid,.xstorm_image-card-grid,.xstorm_split-grid,.xstorm_home-summary,.xstorm_product-ribbon,.xstorm_catalog-summary{gap:24px}
.xstorm_card,.xstorm_product-card,.xstorm_form,.xstorm_filters,.xstorm_article,.xstorm_toc,.xstorm_product-meta,.xstorm_document,.xstorm_video-card,.xstorm_image-card,.xstorm_split-card,.xstorm_catalog-summary__panel,.xstorm_home-summary__panel,.xstorm_info-card,.xstorm_table-card,.xstorm_sidebar-card,.xstorm_result-tabs,.xstorm_search-result,.xstorm_empty{border-color:rgba(24,32,51,.075);box-shadow:var(--xstorm-shadow-card)}
.xstorm_card,.xstorm_sidebar-card,.xstorm_form,.xstorm_filters,.xstorm_table-card,.xstorm_info-card{padding:28px}
.xstorm_card:hover,.xstorm_image-card:hover,.xstorm_product-card:hover{box-shadow:0 22px 58px rgba(24,32,51,.08)}
.xstorm_image-card__body,.xstorm_product-card__body{padding:22px}
.xstorm_feature-row{padding:32px 0;gap:28px;border-top-color:rgba(24,32,51,.065)}
.xstorm_service-strip{border-color:rgba(24,32,51,.065)}
.xstorm_service-strip__item{padding:22px 24px;border-right-color:rgba(24,32,51,.065)}
.xstorm_footer{padding:54px 0 28px}
.xstorm_footer__grid{gap:52px}
.xstorm_template--home-page .xstorm_section,
.xstorm_template--contacts-regions-page .xstorm_section{padding:58px 0}
.xstorm_template--home-page .xstorm_section__head,
.xstorm_template--contacts-regions-page .xstorm_section__head{margin-bottom:24px}
.xstorm_template--home-page .xstorm_page-hero,
.xstorm_template--contacts-regions-page .xstorm_page-hero{padding-top:58px}
.xstorm_template--home-page .xstorm_page-hero__content,
.xstorm_template--contacts-regions-page .xstorm_page-hero__content{padding-bottom:52px}
.xstorm_template--home-page .xstorm_page-hero__title{font-size:54px}
.xstorm_template--home-page .xstorm_page-hero__lead{font-size:19px;margin-bottom:24px}
.xstorm_template--home-page .xstorm_image-card__body{padding:16px}
.xstorm_template--home-page .xstorm_home-summary__panel>div:first-child,
.xstorm_template--home-page .xstorm_home-summary__panel>h2,
.xstorm_template--home-page .xstorm_home-summary__panel>p{padding:20px}
@media (max-width:1199px){
  .xstorm_header__inner{height:78px}
  .xstorm_header__brand{min-width:0}
  .xstorm_header__brand-text{display:grid}
  .xstorm_header__logo{width:48px;height:48px;border-radius:15px;font-size:15px}
  .xstorm_header__nav{position:fixed;left:0;right:0;top:78px;display:none;grid-template-columns:1fr;align-items:start;justify-content:stretch;gap:14px;max-height:calc(100vh - 78px);overflow:auto;padding:18px;background:#fff;border-bottom:1px solid rgba(24,32,51,.08);box-shadow:0 22px 54px rgba(24,32,51,.12)}
  .xstorm_header.is-open .xstorm_header__nav{display:grid}
  .xstorm_header__nav-item{display:block;border:1px solid rgba(24,32,51,.075);border-radius:16px;background:#fff;overflow:hidden}
  .xstorm_header__nav-link{height:auto;min-height:46px;padding:14px 16px;border-bottom:1px solid rgba(24,32,51,.065)}
  .xstorm_header__mega{position:static;width:auto;opacity:1;visibility:visible;pointer-events:auto;transform:none;border:0;border-radius:0;box-shadow:none;background:#FAF9F5}
  .xstorm_header__nav-item:hover .xstorm_header__mega,
  .xstorm_header__nav-item:focus-within .xstorm_header__mega,
  .xstorm_header__nav-item.is-open .xstorm_header__mega{transform:none}
  .xstorm_header__mega-inner{grid-template-columns:1fr;gap:16px;padding:16px}
  .xstorm_header__mega-intro{padding:16px}
  .xstorm_header__mega-groups{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
  .xstorm_header__burger{display:flex}
  .xstorm_header__phone{display:none}
  .xstorm_page-hero,.xstorm_hero{padding-top:48px}
  .xstorm_page-hero__grid{gap:42px}
  .xstorm_page-hero__content{padding-bottom:46px}
  .xstorm_page-hero__title,.xstorm_hero__title{font-size:48px}
  .xstorm_section{padding:58px 0}
}
@media (max-width:767px){
  .xstorm_header__inner{height:72px}
  .xstorm_header__brand-text{display:none}
  .xstorm_header__nav{top:72px;max-height:calc(100vh - 72px);padding:14px}
  .xstorm_header__mega-groups{grid-template-columns:1fr}
  .xstorm_header__mega-intro{display:none}
  .xstorm_header__actions .xstorm_button{display:none}
  .xstorm_page-hero,.xstorm_hero{padding-top:40px}
  .xstorm_page-hero__content{padding-bottom:38px}
  .xstorm_page-hero__title,.xstorm_hero__title{font-size:38px}
  .xstorm_section,
  .xstorm_template--home-page .xstorm_section,
  .xstorm_template--contacts-regions-page .xstorm_section{padding:46px 0}
  .xstorm_card,.xstorm_sidebar-card,.xstorm_form,.xstorm_filters,.xstorm_table-card,.xstorm_info-card{padding:22px}
}

/* 51. Final typography and header readability override */
:root{
  --xstorm-ref-sans:"Segoe UI Variable","Segoe UI",Roboto,Arial,system-ui,sans-serif;
  --xstorm-ref-display:"Segoe UI Variable","Segoe UI",Roboto,Arial,system-ui,sans-serif;
  --xstorm-ref-serif:var(--xstorm-ref-display);
}
body{font-family:var(--xstorm-ref-sans);font-size:17px;line-height:1.62}
.xstorm_header__nav{font-size:15px;font-weight:600}
.xstorm_header__nav-link{font-weight:600}
.xstorm_header__nav-link.is-active{font-weight:750}
.xstorm_header__mega-title{font-weight:760}
.xstorm_header__mega-link{font-size:15px;font-weight:560}
.xstorm_header__brand-name{font-weight:820;letter-spacing:0}
.xstorm_header__brand-subtitle{font-weight:650;letter-spacing:.12em}
.xstorm_header__phone{min-width:202px;border-left:1px solid rgba(24,32,51,.08);padding-left:18px;font-weight:650}
.xstorm_header__phone-label{font-size:13px;font-weight:750;color:#1F2938}
.xstorm_header__phone-value{font-size:12px;font-weight:600;letter-spacing:0;color:var(--xstorm-ref-muted)}
.xstorm_button{font-weight:700}
.xstorm_page-hero__title,.xstorm_hero__title{letter-spacing:0}
.xstorm_page-hero__lead,.xstorm_hero__lead{font-size:21px;line-height:1.55}
.xstorm_section__text{font-size:17px}
.xstorm_card__text,.xstorm_product-card__text,.xstorm_document__text,.xstorm_sidebar-card .xstorm_card__text{font-size:16px;line-height:1.58}
.xstorm_footer__text,.xstorm_footer__link{font-size:15px;line-height:1.55}
.xstorm_form__input,.xstorm_form__select,.xstorm_form__textarea{font-size:16px}
@media (max-width:1199px){
  .xstorm_header__phone{display:none}
}
@media (max-width:767px){
  body{font-size:16px;line-height:1.58}
  .xstorm_page-hero__lead,.xstorm_hero__lead{font-size:18px}
  .xstorm_section__text{font-size:16px}
}

/* 52. Catalog listing, mobile header rail and motion batch */
.xstorm_topbar{background:linear-gradient(90deg,#123915,#245A26);color:#fff;border-bottom:1px solid rgba(255,255,255,.14)}
.xstorm_topbar__inner{display:flex;align-items:center;gap:10px;overflow-x:auto;white-space:nowrap;scrollbar-width:thin;scroll-snap-type:x proximity}
.xstorm_topbar__inner::-webkit-scrollbar{height:6px}
.xstorm_topbar__inner::-webkit-scrollbar-thumb{background:rgba(255,255,255,.32);border-radius:999px}
.xstorm_topbar__item{flex:0 0 auto;scroll-snap-align:start;background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.14);border-radius:999px;min-height:38px;padding:7px 12px;color:#fff;font-size:13px;line-height:1.2;white-space:nowrap;max-width:none}
.xstorm_topbar__item *{white-space:nowrap}
.xstorm_topbar__icon{background:rgba(255,255,255,.94);border-color:rgba(255,255,255,.55)}
.xstorm_catalog-selector{gap:14px}
.xstorm_catalog-selector__item{font-size:16px;line-height:1.2;font-weight:730;padding:17px 18px;border-color:rgba(24,32,51,.08);box-shadow:0 10px 28px rgba(24,32,51,.04);transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease,background 180ms ease}
.xstorm_catalog-selector__item:hover,.xstorm_catalog-selector__item:focus{transform:translateY(-2px);box-shadow:0 18px 42px rgba(24,32,51,.08);background:#F7FAF4}
.xstorm_catalog-toolbar{padding:14px 16px;background:#fff;border:1px solid rgba(24,32,51,.075);border-radius:16px;box-shadow:var(--xstorm-shadow-card)}
.xstorm_catalog-toolbar__summary{display:grid;gap:3px;color:var(--xstorm-ref-text)}
.xstorm_catalog-toolbar__label{color:var(--xstorm-ref-muted);font-size:13px;font-weight:700}
.xstorm_catalog-toolbar__actions{display:flex;align-items:center;justify-content:flex-end;gap:10px;flex-wrap:wrap}
.xstorm_view-toggle{display:flex;align-items:center;gap:6px;padding:4px;background:#F4F6F1;border:1px solid rgba(24,32,51,.075);border-radius:999px}
.xstorm_view-toggle__button,.xstorm_sort-button{width:36px;height:36px;border-radius:999px;font-size:13px;font-weight:800;display:inline-grid;place-items:center;transition:background 160ms ease,color 160ms ease,border-color 160ms ease,transform 160ms ease}
.xstorm_view-toggle__button.is-active{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff}
.xstorm_view-toggle__button:hover,.xstorm_sort-button:hover{transform:translateY(-1px)}
.xstorm_catalog-toolbar__sort{font-size:13px;font-weight:750;color:var(--xstorm-ref-muted)}
.xstorm_product-layout .xstorm_product-grid--3{grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.xstorm_product-layout .xstorm_product-grid--4{grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.xstorm_product-layout .xstorm_product-grid--list{grid-template-columns:1fr;gap:14px}
.xstorm_product-card{transition:transform 180ms ease,box-shadow 180ms ease,border-color 180ms ease}
.xstorm_product-card:hover,.xstorm_product-card:focus-within{transform:translateY(-3px);border-color:rgba(23,60,22,.22)}
.xstorm_product-card__meta{display:flex;gap:6px;flex-wrap:wrap;color:var(--xstorm-ref-green)}
.xstorm_product-card__meta span{padding:5px 8px;border-radius:999px;background:#EFF5EA;font-size:11px;line-height:1;font-weight:800;text-transform:uppercase;letter-spacing:.04em}
.xstorm_product-card__title{font-size:19px;line-height:1.18}
.xstorm_product-card__text{font-size:15px;line-height:1.45}
.xstorm_product-card__specs{display:grid;gap:6px;margin-top:2px;color:#465264;font-size:13px;line-height:1.35}
.xstorm_product-card__specs span{display:block}
.xstorm_product-card__specs b{color:#202838}
.xstorm_product-card__request{min-height:36px;padding:9px 12px;font-size:12px}
.xstorm_product-card__actions{gap:10px;flex-wrap:wrap}
.xstorm_product-grid--list .xstorm_product-card{display:grid;grid-template-columns:minmax(190px,260px) minmax(0,1fr);align-items:stretch}
.xstorm_product-grid--list .xstorm_product-card__media{aspect-ratio:auto;min-height:190px}
.xstorm_product-grid--list .xstorm_product-card__body{display:grid;grid-template-columns:minmax(0,1fr) auto;column-gap:22px;row-gap:10px;padding:24px}
.xstorm_product-grid--list .xstorm_product-card__meta,
.xstorm_product-grid--list .xstorm_product-card__title,
.xstorm_product-grid--list .xstorm_product-card__text,
.xstorm_product-grid--list .xstorm_product-card__specs{grid-column:1}
.xstorm_product-grid--list .xstorm_product-card__price,
.xstorm_product-grid--list .xstorm_product-card__actions{grid-column:2;align-self:start;justify-self:end;min-width:178px;text-align:right}
.xstorm_product-grid--list .xstorm_product-card__actions{display:grid;justify-items:end}
@media (max-width:1199px){
  .xstorm_product-layout .xstorm_product-grid--3,
  .xstorm_product-layout .xstorm_product-grid--4{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_product-grid--list .xstorm_product-card{grid-template-columns:180px minmax(0,1fr)}
  .xstorm_product-grid--list .xstorm_product-card__body{grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card__price,
  .xstorm_product-grid--list .xstorm_product-card__actions{grid-column:1;justify-self:start;text-align:left}
}
@media (max-width:767px){
  .xstorm_topbar__inner{padding-top:8px;padding-bottom:8px}
  .xstorm_topbar__item{font-size:12px;padding:7px 11px}
  .xstorm_catalog-selector{display:flex;overflow-x:auto;gap:10px;padding-bottom:6px;scroll-snap-type:x proximity}
  .xstorm_catalog-selector__item{flex:0 0 auto;min-width:176px;font-size:15px;line-height:1.16;padding:14px 15px;scroll-snap-align:start}
  .xstorm_catalog-toolbar{display:grid;gap:12px}
  .xstorm_catalog-toolbar__actions{justify-content:flex-start}
  .xstorm_product-layout .xstorm_product-grid--3,
  .xstorm_product-layout .xstorm_product-grid--4,
  .xstorm_product-layout .xstorm_product-grid--list{grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card{display:flex}
  .xstorm_product-grid--list .xstorm_product-card__media{min-height:0;aspect-ratio:1.35/1}
  .xstorm_product-card__title{font-size:20px}
  .xstorm_product-card__text{font-size:15px;line-height:1.38}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_catalog-selector__item,
  .xstorm_product-card,
  .xstorm_view-toggle__button,
  .xstorm_sort-button{transition:none}
  .xstorm_catalog-selector__item:hover,
  .xstorm_catalog-selector__item:focus,
  .xstorm_product-card:hover,
  .xstorm_product-card:focus-within,
  .xstorm_view-toggle__button:hover,
  .xstorm_sort-button:hover{transform:none}
}

/* 53. Catalog filter UX and local icon system */
.xstorm_icon{width:1.1em;height:1.1em;display:inline-block;vertical-align:-.16em;fill:none;stroke:currentColor}
.xstorm_visually-hidden{position:absolute!important;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;border:0}
.xstorm_icon-button{display:inline-grid;place-items:center}
.xstorm_icon-button .xstorm_icon{width:18px;height:18px}
.xstorm_filter-drawer-trigger{display:none;align-items:center;gap:8px}
.xstorm_filter-drawer-trigger .xstorm_icon{width:16px;height:16px}
.xstorm_drawer-backdrop{position:fixed;inset:0;z-index:80;background:rgba(24,32,51,.38);backdrop-filter:blur(5px);opacity:0;transition:opacity 180ms ease}
.xstorm_drawer-backdrop.is-open{opacity:1}
.xstorm_has-drawer-open{overflow:hidden}
.xstorm_filters--catalog{display:grid;gap:18px}
.xstorm_filters__head{display:flex;align-items:center;gap:12px}
.xstorm_filters__icon{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:#EFF5EA;color:var(--xstorm-ref-green)}
.xstorm_filters__icon .xstorm_icon{width:19px;height:19px}
.xstorm_filters__close{display:none;width:36px;height:36px;margin-left:auto;border-color:rgba(24,32,51,.08);color:#2E3949}
.xstorm_filter-chips{display:flex;gap:8px;flex-wrap:wrap}
.xstorm_filter-chip{position:relative;display:inline-flex;align-items:center;gap:8px;min-height:36px;padding:8px 11px;border:1px solid rgba(24,32,51,.08);border-radius:999px;background:#F8FAF5;color:#2E3949;font-size:13px;font-weight:750;cursor:pointer;transition:background 160ms ease,border-color 160ms ease,color 160ms ease,transform 160ms ease}
.xstorm_filter-chip input{width:15px;height:15px;margin:0;accent-color:var(--xstorm-ref-green);flex:0 0 auto}
.xstorm_filter-chip.is-active{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff}
.xstorm_filter-chip:hover,.xstorm_filter-chip:focus-within{transform:translateY(-1px);border-color:rgba(23,60,22,.28)}
.xstorm_active-filters{display:flex;gap:8px;flex-wrap:wrap}
.xstorm_active-filters[hidden]{display:none}
.xstorm_active-filters__chip{min-height:32px;border:1px solid rgba(23,60,22,.2);border-radius:999px;background:#fff;color:var(--xstorm-ref-green);padding:7px 10px;font-size:12px;font-weight:800;cursor:pointer}
.xstorm_filter-accordion{border-top:1px solid rgba(24,32,51,.075);padding-top:14px}
.xstorm_filter-accordion summary{list-style:none;display:flex;align-items:center;justify-content:space-between;gap:12px;color:#1F2938;font-size:14px;font-weight:850;cursor:pointer}
.xstorm_filter-accordion summary::-webkit-details-marker{display:none}
.xstorm_filter-accordion summary .xstorm_icon{transition:transform 160ms ease}
.xstorm_filter-accordion[open] summary .xstorm_icon{transform:rotate(180deg)}
.xstorm_filter-accordion__body{display:grid;gap:6px;padding-top:11px}
.xstorm_filters__label input{accent-color:var(--xstorm-ref-green)}
.xstorm_filters__reset{display:inline-flex;align-items:center;justify-content:center;gap:8px;width:100%}
.xstorm_filters__reset .xstorm_icon{width:16px;height:16px}
.xstorm_product-card[hidden]{display:none!important}
.xstorm_catalog-empty{margin-top:14px}
.xstorm_sort-menu{position:relative}
.xstorm_sort-menu summary{list-style:none}
.xstorm_sort-menu summary::-webkit-details-marker{display:none}
.xstorm_sort-menu__panel{position:absolute;right:0;top:calc(100% + 8px);z-index:30;min-width:170px;display:grid;gap:4px;padding:8px;background:#fff;border:1px solid rgba(24,32,51,.08);border-radius:14px;box-shadow:0 18px 48px rgba(24,32,51,.12)}
.xstorm_sort-menu__panel button{min-height:36px;border:0;border-radius:10px;background:transparent;color:#2E3949;text-align:left;padding:8px 10px;font-weight:750;cursor:pointer}
.xstorm_sort-menu__panel button:hover,.xstorm_sort-menu__panel button:focus,.xstorm_sort-menu__panel button.is-active{background:#EFF5EA;color:var(--xstorm-ref-green)}
.xstorm_view-toggle__button .xstorm_icon{width:18px;height:18px}
@media (min-width:768px) and (max-width:1199px){
  .xstorm_filters--catalog{position:relative;top:auto}
}
@media (max-width:767px){
  .xstorm_filter-drawer-trigger{display:inline-flex}
  .xstorm_filters--catalog[data-xstorm-filter-panel]{position:fixed;left:12px;right:12px;bottom:12px;top:auto;z-index:90;max-height:min(82vh,720px);overflow:auto;border-radius:22px;padding:18px;box-shadow:0 28px 80px rgba(24,32,51,.26);transform:translateY(calc(100% + 28px));opacity:0;visibility:hidden;pointer-events:none;transition:transform 220ms ease,opacity 180ms ease,visibility 180ms ease}
  .xstorm_filters--catalog[data-xstorm-filter-panel].is-open{transform:translateY(0);opacity:1;visibility:visible;pointer-events:auto}
  .xstorm_filters__close{display:inline-grid}
  .xstorm_filter-chips,.xstorm_active-filters{overflow-x:auto;flex-wrap:nowrap;padding-bottom:3px}
  .xstorm_filter-chip,.xstorm_active-filters__chip{flex:0 0 auto}
  .xstorm_sort-menu__panel{left:0;right:auto}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_filter-chip,.xstorm_filter-accordion summary .xstorm_icon,.xstorm_filters--catalog[data-xstorm-filter-panel],.xstorm_drawer-backdrop{transition:none}
  .xstorm_filter-chip:hover,.xstorm_filter-chip:focus-within{transform:none}
}
@media (min-width:768px) and (max-width:1199px){
  .xstorm_product-layout .xstorm_filters--catalog{position:relative;top:auto}
}

/* 54. Mobile menu, modal foundation and interaction motion batch */
.xstorm_has-menu-open,.xstorm_has-modal-open{overflow:hidden}
.xstorm_modal{position:fixed;inset:0;z-index:120;display:grid;place-items:center;padding:22px}
.xstorm_modal[hidden]{display:none}
.xstorm_modal__backdrop{position:absolute;inset:0;background:rgba(24,32,51,.46);backdrop-filter:blur(7px);opacity:0;transition:opacity 180ms ease}
.xstorm_modal__panel{position:relative;z-index:1;width:min(560px,100%);background:#fff;border:1px solid rgba(24,32,51,.08);border-radius:22px;padding:30px;box-shadow:0 34px 90px rgba(24,32,51,.28);opacity:0;transform:translateY(16px) scale(.985);transition:opacity 190ms ease,transform 190ms ease;outline:none}
.xstorm_modal.is-open .xstorm_modal__backdrop{opacity:1}
.xstorm_modal.is-open .xstorm_modal__panel{opacity:1;transform:translateY(0) scale(1)}
.xstorm_modal__close{position:absolute;right:16px;top:16px;width:38px;height:38px;border-color:rgba(24,32,51,.08);background:#F7F8F5;color:#293342}
.xstorm_modal__eyebrow{display:inline-flex;margin:0 0 12px;color:var(--xstorm-ref-green);font-size:12px;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.xstorm_modal__title{margin:0 42px 12px 0;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-display);font-size:30px;line-height:1.12;letter-spacing:0}
.xstorm_modal__text{margin:0;color:#4A5568;font-size:16px;line-height:1.58}
.xstorm_modal__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.xstorm_tabs__panel.is-active{animation:xstorm_panel-in 180ms ease both}
.xstorm_accordion__item{transition:border-color 180ms ease,box-shadow 180ms ease,background 180ms ease}
.xstorm_accordion__item.is-open{border-color:rgba(23,60,22,.18);box-shadow:0 14px 38px rgba(24,32,51,.07)}
.xstorm_product-gallery__main{transition:border-color 180ms ease,box-shadow 180ms ease}
.xstorm_product-gallery__thumb{transition:border-color 160ms ease,box-shadow 160ms ease,transform 160ms ease}
.xstorm_product-gallery__thumb:hover,.xstorm_product-gallery__thumb:focus{transform:translateY(-1px)}
.xstorm_product-gallery__thumb.is-active{box-shadow:0 0 0 3px rgba(23,60,22,.14)}
.xstorm_form{transition:border-color 180ms ease,box-shadow 180ms ease,background 180ms ease}
.xstorm_form.is-success{border-color:rgba(23,60,22,.22);box-shadow:0 18px 52px rgba(23,60,22,.1)}
.xstorm_form__success{animation:xstorm_panel-in 180ms ease both}
@keyframes xstorm_panel-in{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)}}
.xstorm_product-grid--list .xstorm_product-card__media,
.xstorm_product-grid--list .xstorm_product-card__body{min-width:0}
.xstorm_product-layout .xstorm_product-grid--list .xstorm_product-card__media{width:100%;max-width:100%;aspect-ratio:auto;overflow:hidden}
.xstorm_product-grid--list .xstorm_product-card__media .xstorm_visual-image{width:100%;height:100%}
@media (max-width:1199px){
  .xstorm_header__nav{gap:8px;padding:12px;background:rgba(255,255,255,.98);box-shadow:0 20px 46px rgba(24,32,51,.12)}
  .xstorm_header__nav-item{border-radius:12px}
  .xstorm_header__nav-link{min-height:42px;padding:11px 13px;font-size:14px;border-bottom:0}
  .xstorm_header__nav-link--dropdown{justify-content:space-between}
  .xstorm_header__nav-link--dropdown::after{content:"";width:8px;height:8px;border-right:2px solid currentColor;border-bottom:2px solid currentColor;transform:rotate(45deg);margin-left:auto;transition:transform 160ms ease}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link--dropdown::after{transform:rotate(225deg)}
  .xstorm_header__mega{display:none}
  .xstorm_header__nav-item.is-open .xstorm_header__mega{display:block}
  .xstorm_header__mega-inner{gap:10px;padding:10px 12px 13px}
  .xstorm_header__mega-intro{display:none}
  .xstorm_header__mega-groups{grid-template-columns:1fr;gap:10px}
  .xstorm_header__mega-title{margin-bottom:4px;font-size:11px;letter-spacing:.06em}
  .xstorm_header__mega-link{min-height:30px;margin:0;padding:6px 8px;font-size:13px;line-height:1.18}
}
@media (max-width:767px){
  .xstorm_modal{align-items:end;padding:12px}
  .xstorm_modal__panel{width:100%;border-radius:22px;padding:24px 18px 18px}
  .xstorm_modal__title{font-size:25px}
  .xstorm_modal__actions{display:grid}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_modal__backdrop,.xstorm_modal__panel,.xstorm_tabs__panel.is-active,.xstorm_accordion__item,.xstorm_product-gallery__main,.xstorm_product-gallery__thumb,.xstorm_form,.xstorm_form__success{animation:none;transition:none}
  .xstorm_product-gallery__thumb:hover,.xstorm_product-gallery__thumb:focus{transform:none}
}

/* 55. AI assistant, dashboard and integration prototypes */
.xstorm_ai-assistant{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);gap:22px;align-items:stretch}
.xstorm_ai-assistant__panel,.xstorm_lead-draft,.xstorm_client-dashboard,.xstorm_integration-panel{background:#fff;border:1px solid rgba(24,32,51,.08);border-radius:22px;box-shadow:0 18px 52px rgba(24,32,51,.07)}
.xstorm_ai-assistant__panel{display:grid;grid-template-rows:auto minmax(260px,1fr) auto;padding:22px;gap:18px}
.xstorm_ai-assistant__header{display:flex;gap:14px;align-items:flex-start}
.xstorm_ai-assistant__avatar,.xstorm_integration-card__icon{width:44px;height:44px;flex:0 0 auto;display:grid;place-items:center;border-radius:14px;background:#EFF5EA;color:var(--xstorm-ref-green)}
.xstorm_ai-assistant__title,.xstorm_lead-draft__title,.xstorm_integration-panel__title{margin:0;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-display);font-size:24px;line-height:1.18;letter-spacing:0}
.xstorm_ai-assistant__text,.xstorm_integration-panel__text{margin:6px 0 0;color:#4A5568;font-size:15px;line-height:1.55}
.xstorm_ai-assistant__messages{display:grid;gap:10px;align-content:start;padding:16px;border-radius:18px;background:#F7F8F5;border:1px solid rgba(24,32,51,.06);overflow:auto}
.xstorm_ai-message{max-width:84%;padding:12px 14px;border-radius:16px;font-size:15px;line-height:1.48}
.xstorm_ai-message--assistant{justify-self:start;background:#fff;border:1px solid rgba(24,32,51,.08);color:#263242}
.xstorm_ai-message--user{justify-self:end;background:var(--xstorm-ref-green);color:#fff}
.xstorm_ai-assistant__chips{display:flex;gap:10px;flex-wrap:wrap}
.xstorm_ai-assistant__chip,.xstorm_dashboard__nav{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(24,32,51,.09);background:#fff;color:#2D3748;border-radius:999px;padding:10px 13px;font-weight:800;cursor:pointer;transition:background 160ms ease,color 160ms ease,border-color 160ms ease,transform 160ms ease}
.xstorm_ai-assistant__chip:hover,.xstorm_dashboard__nav:hover{transform:translateY(-1px)}
.xstorm_ai-assistant__chip.is-active,.xstorm_dashboard__nav.is-active{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff}
.xstorm_lead-draft{padding:22px;display:flex;flex-direction:column;gap:16px}
.xstorm_lead-draft__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin:0}
.xstorm_lead-draft__grid div{padding:13px;border-radius:16px;background:#F7F8F5;border:1px solid rgba(24,32,51,.06)}
.xstorm_lead-draft__grid dt{margin:0 0 5px;color:#677386;font-size:12px;font-weight:800;text-transform:uppercase}
.xstorm_lead-draft__grid dd{margin:0;color:#263242;font-weight:750;line-height:1.35}
.xstorm_status-pill{display:inline-flex;align-items:center;min-height:26px;padding:4px 9px;border-radius:999px;background:#EEF2F7;color:#465264;font-size:12px;font-weight:900}
.xstorm_status-pill.is-loading{background:#FFF3CF;color:#735E16}
.xstorm_status-pill.is-success{background:#E9F6EA;color:#1E5D31}
.xstorm_status-pill.is-disabled{background:#EEF2F7;color:#677386}
.xstorm_lead-draft__payload{display:grid;gap:8px;margin:0;padding:0;list-style:none}
.xstorm_lead-draft__payload li{display:none;padding:12px;border-radius:14px;border:1px solid rgba(23,60,22,.12);background:#F7FAF4}
.xstorm_lead-draft__payload li.is-active{display:grid;gap:4px;animation:xstorm_panel-in 160ms ease both}
.xstorm_lead-draft__payload b{color:var(--xstorm-ref-green)}
.xstorm_lead-draft__payload span{color:#4A5568;font-size:14px}
.xstorm_lead-draft__actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:auto}
.xstorm_client-dashboard{display:grid;grid-template-columns:230px minmax(0,1fr);overflow:hidden}
.xstorm_dashboard__rail{padding:18px;background:#F7F8F5;border-right:1px solid rgba(24,32,51,.08);display:flex;flex-direction:column;gap:10px}
.xstorm_dashboard__nav{width:100%;justify-content:flex-start;border-radius:14px}
.xstorm_dashboard__workspace{padding:20px;min-width:0}
.xstorm_dashboard__summary{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-bottom:16px}
.xstorm_dashboard__metric{padding:16px;border:1px solid rgba(24,32,51,.08);border-radius:16px;background:#fff}
.xstorm_dashboard__metric span,.xstorm_dashboard__metric small{display:block;color:#677386;font-size:13px;font-weight:750}
.xstorm_dashboard__metric strong{display:block;margin:5px 0;color:var(--xstorm-ref-text);font-size:32px;line-height:1}
.xstorm_dashboard__panel{border:1px solid rgba(24,32,51,.08);border-radius:18px;background:#fff;padding:18px}
.xstorm_dashboard__panel[hidden]{display:none}
.xstorm_dashboard__panel.is-active{animation:xstorm_panel-in 170ms ease both}
.xstorm_dashboard__panel-head{display:flex;justify-content:space-between;gap:12px;align-items:center;margin-bottom:14px}
.xstorm_dashboard__panel-head h3{margin:0;font-size:20px;line-height:1.2;color:var(--xstorm-ref-text)}
.xstorm_dashboard__timeline{display:grid;gap:12px;margin:0;padding:0;list-style:none}
.xstorm_dashboard__timeline-item{display:flex;gap:12px;padding:13px;border-radius:16px;background:#F7F8F5;border:1px solid rgba(24,32,51,.06)}
.xstorm_dashboard__timeline-item>span{width:34px;height:34px;display:grid;place-items:center;border-radius:12px;background:#fff;color:var(--xstorm-ref-green)}
.xstorm_dashboard__timeline-item b{display:block;color:#263242}
.xstorm_dashboard__timeline-item p{margin:4px 0 0;color:#5A6576;font-size:14px;line-height:1.45}
.xstorm_integration-panel{padding:22px}
.xstorm_integration-panel__head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:18px}
.xstorm_integration-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.xstorm_integration-card{padding:18px;border:1px solid rgba(24,32,51,.08);border-radius:18px;background:#fff;transition:border-color 160ms ease,box-shadow 160ms ease,transform 160ms ease}
.xstorm_integration-card:hover{transform:translateY(-2px);box-shadow:0 18px 46px rgba(24,32,51,.08)}
.xstorm_integration-card.is-success{border-color:rgba(23,60,22,.2);background:#FAFDF8}
.xstorm_integration-card.is-loading{border-color:rgba(168,126,25,.22);background:#FFFDF5}
.xstorm_integration-card.is-disabled{opacity:.78;background:#F8FAFC}
.xstorm_integration-card__title{margin:14px 0 6px;color:#263242;font-size:19px;line-height:1.22}
.xstorm_integration-card__text{margin:0;color:#677386;font-size:14px;line-height:1.45}
.xstorm_integration-card__meta{display:grid;gap:8px;margin:14px 0 0}
.xstorm_integration-card__meta div{padding:10px;border-radius:12px;background:#F7F8F5}
.xstorm_integration-card__meta dt{font-size:11px;font-weight:900;text-transform:uppercase;color:#6B7280}
.xstorm_integration-card__meta dd{margin:3px 0 0;color:#263242;font-size:13px;line-height:1.35}
.xstorm_payload-preview{margin-top:16px;padding:14px;border:1px solid rgba(24,32,51,.08);border-radius:16px;background:#F7F8F5;display:grid;gap:8px}
.xstorm_payload-preview code{display:block;max-width:100%;overflow-x:auto;white-space:nowrap;color:#263242;font-size:13px}
@media (max-width:1199px){
  .xstorm_ai-assistant,.xstorm_client-dashboard{grid-template-columns:1fr}
  .xstorm_dashboard__rail{border-right:0;border-bottom:1px solid rgba(24,32,51,.08);flex-direction:row;overflow-x:auto}
  .xstorm_dashboard__nav{width:auto;flex:0 0 auto}
  .xstorm_integration-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width:767px){
  .xstorm_ai-assistant__panel,.xstorm_lead-draft,.xstorm_integration-panel{padding:16px}
  .xstorm_ai-assistant__messages{max-height:340px}
  .xstorm_ai-message{max-width:100%;font-size:14px}
  .xstorm_ai-assistant__chips,.xstorm_lead-draft__actions{display:grid}
  .xstorm_lead-draft__grid,.xstorm_dashboard__summary,.xstorm_integration-grid{grid-template-columns:1fr}
  .xstorm_dashboard__workspace{padding:16px}
  .xstorm_integration-panel__head{display:grid}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_ai-assistant__chip,.xstorm_dashboard__nav,.xstorm_dashboard__panel.is-active,.xstorm_lead-draft__payload li.is-active,.xstorm_integration-card{animation:none;transition:none}
  .xstorm_ai-assistant__chip:hover,.xstorm_dashboard__nav:hover,.xstorm_integration-card:hover{transform:none}
}

/* 56. Visual quality sprint for key commercial pages */
:root{
  --xstorm-batch6-line:rgba(24,32,51,.062);
  --xstorm-batch6-shadow:0 18px 56px rgba(24,32,51,.052);
  --xstorm-batch6-shadow-hover:0 24px 68px rgba(24,32,51,.075);
}
.xstorm_template--home-page .xstorm_page-hero,
.xstorm_template--catalog-landing-page .xstorm_page-hero,
.xstorm_template--tea-category-page .xstorm_page-hero,
.xstorm_template--search-results-page .xstorm_page-hero,
.xstorm_template--contacts-regions-page .xstorm_page-hero,
.xstorm_template--ho-re-ca-landing-page .xstorm_page-hero{background:linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 82%,#FAF9F5 100%)}
.xstorm_template--home-page .xstorm_page-hero__grid,
.xstorm_template--catalog-landing-page .xstorm_page-hero__grid,
.xstorm_template--tea-category-page .xstorm_page-hero__grid,
.xstorm_template--search-results-page .xstorm_page-hero__grid,
.xstorm_template--contacts-regions-page .xstorm_page-hero__grid,
.xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__grid{grid-template-columns:minmax(0,.94fr) minmax(520px,1.06fr);gap:84px}
.xstorm_template--home-page .xstorm_page-hero__media,
.xstorm_template--catalog-landing-page .xstorm_page-hero__media,
.xstorm_template--tea-category-page .xstorm_page-hero__media,
.xstorm_template--search-results-page .xstorm_page-hero__media,
.xstorm_template--contacts-regions-page .xstorm_page-hero__media,
.xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__media{min-height:420px;border-radius:12px;box-shadow:0 24px 70px rgba(24,32,51,.055)}
.xstorm_template--home-page .xstorm_page-hero__content,
.xstorm_template--catalog-landing-page .xstorm_page-hero__content,
.xstorm_template--tea-category-page .xstorm_page-hero__content,
.xstorm_template--search-results-page .xstorm_page-hero__content,
.xstorm_template--contacts-regions-page .xstorm_page-hero__content,
.xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__content{padding-bottom:64px}
.xstorm_template--home-page .xstorm_section,
.xstorm_template--catalog-landing-page .xstorm_section,
.xstorm_template--tea-category-page .xstorm_section,
.xstorm_template--product-detail-page .xstorm_section,
.xstorm_template--search-results-page .xstorm_section,
.xstorm_template--contacts-regions-page .xstorm_section,
.xstorm_template--ho-re-ca-landing-page .xstorm_section{padding:66px 0}
.xstorm_template--home-page .xstorm_section__head,
.xstorm_template--catalog-landing-page .xstorm_section__head,
.xstorm_template--tea-category-page .xstorm_section__head,
.xstorm_template--product-detail-page .xstorm_section__head,
.xstorm_template--search-results-page .xstorm_section__head,
.xstorm_template--contacts-regions-page .xstorm_section__head,
.xstorm_template--ho-re-ca-landing-page .xstorm_section__head{margin-bottom:30px}
.xstorm_template--home-page .xstorm_card,
.xstorm_template--home-page .xstorm_image-card,
.xstorm_template--home-page .xstorm_home-summary__panel,
.xstorm_template--catalog-landing-page .xstorm_product-card,
.xstorm_template--tea-category-page .xstorm_product-card,
.xstorm_template--product-detail-page .xstorm_product-meta,
.xstorm_template--product-detail-page .xstorm_product-gallery,
.xstorm_template--search-results-page .xstorm_result-tabs,
.xstorm_template--search-results-page .xstorm_search-result,
.xstorm_template--contacts-regions-page .xstorm_contacts-summary__panel,
.xstorm_template--ho-re-ca-landing-page .xstorm_card{border-color:var(--xstorm-batch6-line);box-shadow:var(--xstorm-batch6-shadow)}
.xstorm_template--home-page .xstorm_image-card:hover,
.xstorm_template--catalog-landing-page .xstorm_product-card:hover,
.xstorm_template--tea-category-page .xstorm_product-card:hover,
.xstorm_template--ho-re-ca-landing-page .xstorm_card:hover{box-shadow:var(--xstorm-batch6-shadow-hover)}
.xstorm_template--home-page .xstorm_home-summary{gap:26px}
.xstorm_template--home-page .xstorm_home-summary__panel>div:first-child,
.xstorm_template--home-page .xstorm_home-summary__panel>h2,
.xstorm_template--home-page .xstorm_home-summary__panel>p{padding:24px}
.xstorm_template--home-page .xstorm_home-summary__title{font-size:22px;line-height:1.16}
.xstorm_template--home-page .xstorm_home-summary__text{font-size:15px;line-height:1.55}
.xstorm_template--home-page .xstorm_image-card__media{height:170px}
.xstorm_catalog-selector{gap:16px}
.xstorm_catalog-selector__item{min-height:72px;padding:18px 20px;font-size:16px;line-height:1.22}
.xstorm_template--tea-category-page .xstorm_catalog-selector{grid-template-columns:repeat(7,minmax(0,1fr))}
.xstorm_catalog-toolbar{margin-bottom:24px;padding:18px 20px;border-color:var(--xstorm-batch6-line);box-shadow:var(--xstorm-batch6-shadow)}
.xstorm_product-layout{grid-template-columns:284px minmax(0,1fr);gap:32px}
.xstorm_filters--catalog{padding:24px;border-color:var(--xstorm-batch6-line);box-shadow:var(--xstorm-batch6-shadow)}
.xstorm_product-layout .xstorm_product-grid--3{gap:24px}
.xstorm_product-layout .xstorm_product-grid--4{gap:20px}
.xstorm_product-layout .xstorm_product-card__body{padding:22px;gap:11px}
.xstorm_product-layout .xstorm_product-card__title{font-size:20px;line-height:1.2}
.xstorm_product-layout .xstorm_product-card__text{font-size:15px;line-height:1.48}
.xstorm_product-card__specs{font-size:13px;line-height:1.44}
.xstorm_product-card__media{background:#F4F1EA}
.xstorm_template--product-detail-page .xstorm_product-detail{grid-template-columns:minmax(0,1.02fr) minmax(470px,.98fr);gap:56px}
.xstorm_template--product-detail-page .xstorm_product-gallery{gap:20px}
.xstorm_template--product-detail-page .xstorm_product-gallery__main{border-radius:12px}
.xstorm_template--product-detail-page .xstorm_product-meta{padding:34px}
.xstorm_template--product-detail-page .xstorm_product-meta__title{font-size:34px;line-height:1.12;margin-bottom:18px}
.xstorm_template--product-detail-page .xstorm_product-meta__row{padding:12px 0}
.xstorm_template--product-detail-page .xstorm_pack-option{min-height:56px}
.xstorm_template--search-results-page .xstorm_search-layout{grid-template-columns:284px minmax(0,1fr);gap:28px}
.xstorm_template--search-results-page .xstorm_search{padding:22px}
.xstorm_template--search-results-page .xstorm_result-tabs{padding:20px}
.xstorm_result-tabs .xstorm_product-card__media{aspect-ratio:1.55/1}
.xstorm_result-tabs .xstorm_product-card__body{padding:16px;gap:8px}
.xstorm_result-tabs .xstorm_product-card__title{font-size:17px;line-height:1.18}
.xstorm_result-tabs .xstorm_product-card__text{font-size:14px;line-height:1.42}
.xstorm_template--contacts-regions-page .xstorm_contacts-summary{gap:24px}
.xstorm_template--contacts-regions-page .xstorm_contacts-summary__panel{padding:22px}
.xstorm_template--contacts-regions-page .xstorm_contacts-summary__title{font-size:20px}
.xstorm_template--contacts-regions-page .xstorm_contacts-summary__text{font-size:14px;line-height:1.55}
.xstorm_template--contacts-regions-page .xstorm_contacts-summary .xstorm_region-map__visual{min-height:230px}
.xstorm_template--ho-re-ca-landing-page .xstorm_card-grid,
.xstorm_template--ho-re-ca-landing-page .xstorm_image-card-grid,
.xstorm_template--ho-re-ca-landing-page .xstorm_split-grid{gap:26px}
@media (min-width:1440px){
  .xstorm_template--home-page .xstorm_page-hero__title{font-size:60px}
  .xstorm_template--catalog-landing-page .xstorm_page-hero__title,
  .xstorm_template--tea-category-page .xstorm_page-hero__title,
  .xstorm_template--search-results-page .xstorm_page-hero__title,
  .xstorm_template--contacts-regions-page .xstorm_page-hero__title{font-size:48px}
  .xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__title{font-size:60px}
  .xstorm_template--home-page .xstorm_section__title,
  .xstorm_template--catalog-landing-page .xstorm_section__title,
  .xstorm_template--tea-category-page .xstorm_section__title,
  .xstorm_template--product-detail-page .xstorm_section__title,
  .xstorm_template--search-results-page .xstorm_section__title,
  .xstorm_template--contacts-regions-page .xstorm_section__title,
  .xstorm_template--ho-re-ca-landing-page .xstorm_section__title{font-size:40px}
}
@media (min-width:1600px){
  .xstorm_template--home-page .xstorm_page-hero__title{font-size:64px}
  .xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__title{font-size:62px}
  .xstorm_template--catalog-landing-page .xstorm_page-hero__title,
  .xstorm_template--tea-category-page .xstorm_page-hero__title,
  .xstorm_template--search-results-page .xstorm_page-hero__title,
  .xstorm_template--contacts-regions-page .xstorm_page-hero__title{font-size:50px}
}
@media (max-width:1399px){
  .xstorm_template--home-page .xstorm_page-hero__grid,
  .xstorm_template--catalog-landing-page .xstorm_page-hero__grid,
  .xstorm_template--tea-category-page .xstorm_page-hero__grid,
  .xstorm_template--search-results-page .xstorm_page-hero__grid,
  .xstorm_template--contacts-regions-page .xstorm_page-hero__grid,
  .xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__grid{gap:56px}
  .xstorm_template--tea-category-page .xstorm_catalog-selector{grid-template-columns:repeat(4,minmax(0,1fr))}
}
@media (max-width:1199px){
  .xstorm_template--home-page .xstorm_page-hero__grid,
  .xstorm_template--catalog-landing-page .xstorm_page-hero__grid,
  .xstorm_template--tea-category-page .xstorm_page-hero__grid,
  .xstorm_template--search-results-page .xstorm_page-hero__grid,
  .xstorm_template--contacts-regions-page .xstorm_page-hero__grid,
  .xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__grid,
  .xstorm_template--product-detail-page .xstorm_product-detail,
  .xstorm_template--search-results-page .xstorm_search-layout,
  .xstorm_product-layout{grid-template-columns:1fr}
  .xstorm_template--tea-category-page .xstorm_catalog-selector{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:767px){
  .xstorm_template--home-page .xstorm_page-hero__media,
  .xstorm_template--catalog-landing-page .xstorm_page-hero__media,
  .xstorm_template--tea-category-page .xstorm_page-hero__media,
  .xstorm_template--search-results-page .xstorm_page-hero__media,
  .xstorm_template--contacts-regions-page .xstorm_page-hero__media,
  .xstorm_template--ho-re-ca-landing-page .xstorm_page-hero__media{min-height:280px;border-radius:10px}
  .xstorm_template--home-page .xstorm_section,
  .xstorm_template--catalog-landing-page .xstorm_section,
  .xstorm_template--tea-category-page .xstorm_section,
  .xstorm_template--product-detail-page .xstorm_section,
  .xstorm_template--search-results-page .xstorm_section,
  .xstorm_template--contacts-regions-page .xstorm_section,
  .xstorm_template--ho-re-ca-landing-page .xstorm_section{padding:48px 0}
  .xstorm_catalog-selector,
  .xstorm_template--tea-category-page .xstorm_catalog-selector{display:flex;grid-template-columns:none}
  .xstorm_catalog-selector__item{min-height:60px;padding:14px 16px;font-size:16px}
  .xstorm_product-layout .xstorm_product-card__body{padding:18px}
  .xstorm_template--product-detail-page .xstorm_product-meta{padding:22px}
  .xstorm_template--product-detail-page .xstorm_product-meta__title{font-size:30px}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_template--home-page .xstorm_image-card:hover,
  .xstorm_template--catalog-landing-page .xstorm_product-card:hover,
  .xstorm_template--tea-category-page .xstorm_product-card:hover,
  .xstorm_template--ho-re-ca-landing-page .xstorm_card:hover{box-shadow:var(--xstorm-batch6-shadow)}
}

/* 57. Catalog fallback, query and loading states */
.xstorm_no-js-fallback{display:block;margin:0 0 18px}
.xstorm_no-js-fallback__panel{display:grid;gap:10px;padding:18px;border:1px solid rgba(24,32,51,.075);border-radius:16px;background:#FFFDF7;box-shadow:0 12px 34px rgba(24,32,51,.045)}
.xstorm_no-js-fallback__title{color:var(--xstorm-ref-text);font-size:16px;line-height:1.25}
.xstorm_no-js-fallback__text{margin:0;color:#5F6A7B;font-size:14px;line-height:1.5}
.xstorm_no-js-fallback__links{display:flex;gap:8px;flex-wrap:wrap}
.xstorm_no-js-fallback__link{display:inline-flex;align-items:center;min-height:34px;padding:7px 11px;border:1px solid rgba(23,60,22,.16);border-radius:999px;background:#fff;color:var(--xstorm-ref-green);font-size:13px;font-weight:850}
.xstorm_catalog-loading,.xstorm_search-loading{margin:0 0 18px;padding:18px;border:1px solid rgba(24,32,51,.075);border-radius:18px;background:#fff;box-shadow:0 14px 40px rgba(24,32,51,.052)}
.xstorm_catalog-loading[hidden],.xstorm_search-loading[hidden]{display:none}
.xstorm_skeleton-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:14px}
.xstorm_skeleton-card,.xstorm_skeleton-row{position:relative;overflow:hidden;display:block;border-radius:14px;background:linear-gradient(90deg,#EEF1EA 0%,#F8FAF5 42%,#EEF1EA 78%);background-size:220% 100%}
.xstorm_skeleton-card{height:148px}
.xstorm_skeleton-list{display:grid;gap:10px;margin-top:14px}
.xstorm_skeleton-row{height:54px}
.xstorm_catalog-listing.is-loading [data-xstorm-catalog-grid],
.xstorm_search-layout.is-loading .xstorm_result-tabs{opacity:.42;pointer-events:none;transition:opacity 160ms ease}
.xstorm_catalog-listing.is-loading .xstorm_catalog-toolbar,
.xstorm_search-layout.is-loading .xstorm_search-filters{border-color:rgba(168,126,25,.18)}
.xstorm_catalog-listing.is-loading .xstorm_skeleton-card,
.xstorm_search-layout.is-loading .xstorm_skeleton-row{animation:xstorm_skeleton-shimmer 950ms linear infinite}
@keyframes xstorm_skeleton-shimmer{from{background-position:120% 0}to{background-position:-120% 0}}
@media (max-width:767px){
  .xstorm_skeleton-grid{grid-template-columns:1fr}
  .xstorm_skeleton-card{height:116px}
  .xstorm_no-js-fallback__links{overflow-x:auto;flex-wrap:nowrap;padding-bottom:2px}
  .xstorm_no-js-fallback__link{flex:0 0 auto}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_catalog-listing.is-loading [data-xstorm-catalog-grid],
  .xstorm_search-layout.is-loading .xstorm_result-tabs{transition:none}
  .xstorm_catalog-listing.is-loading .xstorm_skeleton-card,
  .xstorm_search-layout.is-loading .xstorm_skeleton-row{animation:none}
}

/* 58. Generic page polish and manual visual QA batch */
.xstorm_generic-intro-section{padding-top:28px;padding-bottom:34px;background:#fff}
.xstorm_page-map{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.xstorm_page-map__item{min-width:0;display:grid;grid-template-rows:auto auto auto 1fr auto;gap:9px;padding:20px;border:1px solid rgba(24,32,51,.075);border-radius:16px;background:linear-gradient(180deg,#FFFFFF 0%,#FAFAF7 100%);box-shadow:0 14px 42px rgba(24,32,51,.045)}
.xstorm_page-map__icon{width:38px;height:38px;display:grid;place-items:center;border-radius:12px;background:#F1F4EC;color:var(--xstorm-ref-green)}
.xstorm_page-map__label{font-size:12px;font-weight:900;text-transform:uppercase;color:#7A8190}
.xstorm_page-map__title{margin:0;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-serif);font-size:21px;line-height:1.14}
.xstorm_page-map__text{margin:0;color:#4F5B6C;font-size:15px;line-height:1.52}
.xstorm_page-map__link{align-self:end;color:var(--xstorm-ref-green);font-weight:850;font-size:14px}
.xstorm_template--company-hub-page .xstorm_page-hero,
.xstorm_template--history-mission-page .xstorm_page-hero,
.xstorm_template--production-page .xstorm_page-hero,
.xstorm_template--quality-certificates-page .xstorm_page-hero,
.xstorm_template--awards-archive-page .xstorm_page-hero,
.xstorm_template--team-page .xstorm_page-hero,
.xstorm_template--vacancies-archive-page .xstorm_page-hero,
.xstorm_template--vacancy-detail-page .xstorm_page-hero,
.xstorm_template--partnership-landing-page .xstorm_page-hero,
.xstorm_template--open-tea-shop-page .xstorm_page-hero,
.xstorm_template--franchise-rch-page .xstorm_page-hero,
.xstorm_template--chayburg-franchise-page .xstorm_page-hero,
.xstorm_template--partner-benefits-page .xstorm_page-hero,
.xstorm_template--delivery-to-outlet-page .xstorm_page-hero,
.xstorm_template--new-partner-form-page .xstorm_page-hero,
.xstorm_template--knowledge-base-page .xstorm_page-hero,
.xstorm_template--tea-knowledge-archive-page .xstorm_page-hero,
.xstorm_template--coffee-knowledge-archive-page .xstorm_page-hero,
.xstorm_template--video-media-archive-page .xstorm_page-hero,
.xstorm_template--news-archive-page .xstorm_page-hero{background:linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 78%,#F7F6F0 100%);border-bottom-color:rgba(24,32,51,.055)}
.xstorm_template--company-hub-page .xstorm_page-hero__grid,
.xstorm_template--history-mission-page .xstorm_page-hero__grid,
.xstorm_template--production-page .xstorm_page-hero__grid,
.xstorm_template--quality-certificates-page .xstorm_page-hero__grid,
.xstorm_template--awards-archive-page .xstorm_page-hero__grid,
.xstorm_template--team-page .xstorm_page-hero__grid,
.xstorm_template--vacancies-archive-page .xstorm_page-hero__grid,
.xstorm_template--vacancy-detail-page .xstorm_page-hero__grid,
.xstorm_template--partnership-landing-page .xstorm_page-hero__grid,
.xstorm_template--open-tea-shop-page .xstorm_page-hero__grid,
.xstorm_template--franchise-rch-page .xstorm_page-hero__grid,
.xstorm_template--chayburg-franchise-page .xstorm_page-hero__grid,
.xstorm_template--partner-benefits-page .xstorm_page-hero__grid,
.xstorm_template--delivery-to-outlet-page .xstorm_page-hero__grid,
.xstorm_template--new-partner-form-page .xstorm_page-hero__grid,
.xstorm_template--knowledge-base-page .xstorm_page-hero__grid,
.xstorm_template--tea-knowledge-archive-page .xstorm_page-hero__grid,
.xstorm_template--coffee-knowledge-archive-page .xstorm_page-hero__grid,
.xstorm_template--video-media-archive-page .xstorm_page-hero__grid,
.xstorm_template--news-archive-page .xstorm_page-hero__grid{grid-template-columns:minmax(0,.98fr) minmax(480px,1.02fr);gap:72px}
.xstorm_template--company-hub-page .xstorm_page-hero__media,
.xstorm_template--history-mission-page .xstorm_page-hero__media,
.xstorm_template--production-page .xstorm_page-hero__media,
.xstorm_template--quality-certificates-page .xstorm_page-hero__media,
.xstorm_template--awards-archive-page .xstorm_page-hero__media,
.xstorm_template--team-page .xstorm_page-hero__media,
.xstorm_template--vacancies-archive-page .xstorm_page-hero__media,
.xstorm_template--vacancy-detail-page .xstorm_page-hero__media,
.xstorm_template--partnership-landing-page .xstorm_page-hero__media,
.xstorm_template--open-tea-shop-page .xstorm_page-hero__media,
.xstorm_template--franchise-rch-page .xstorm_page-hero__media,
.xstorm_template--chayburg-franchise-page .xstorm_page-hero__media,
.xstorm_template--partner-benefits-page .xstorm_page-hero__media,
.xstorm_template--delivery-to-outlet-page .xstorm_page-hero__media,
.xstorm_template--new-partner-form-page .xstorm_page-hero__media,
.xstorm_template--knowledge-base-page .xstorm_page-hero__media,
.xstorm_template--tea-knowledge-archive-page .xstorm_page-hero__media,
.xstorm_template--coffee-knowledge-archive-page .xstorm_page-hero__media,
.xstorm_template--video-media-archive-page .xstorm_page-hero__media,
.xstorm_template--news-archive-page .xstorm_page-hero__media{min-height:390px;border-radius:12px;box-shadow:0 22px 64px rgba(24,32,51,.055)}
.xstorm_template--company-hub-page .xstorm_section,
.xstorm_template--history-mission-page .xstorm_section,
.xstorm_template--production-page .xstorm_section,
.xstorm_template--quality-certificates-page .xstorm_section,
.xstorm_template--awards-archive-page .xstorm_section,
.xstorm_template--team-page .xstorm_section,
.xstorm_template--vacancies-archive-page .xstorm_section,
.xstorm_template--vacancy-detail-page .xstorm_section,
.xstorm_template--partnership-landing-page .xstorm_section,
.xstorm_template--open-tea-shop-page .xstorm_section,
.xstorm_template--franchise-rch-page .xstorm_section,
.xstorm_template--chayburg-franchise-page .xstorm_section,
.xstorm_template--partner-benefits-page .xstorm_section,
.xstorm_template--delivery-to-outlet-page .xstorm_section,
.xstorm_template--new-partner-form-page .xstorm_section,
.xstorm_template--knowledge-base-page .xstorm_section,
.xstorm_template--tea-knowledge-archive-page .xstorm_section,
.xstorm_template--coffee-knowledge-archive-page .xstorm_section,
.xstorm_template--video-media-archive-page .xstorm_section,
.xstorm_template--news-archive-page .xstorm_section{padding:62px 0}
.xstorm_template--company-hub-page .xstorm_card-grid,
.xstorm_template--history-mission-page .xstorm_card-grid,
.xstorm_template--production-page .xstorm_card-grid,
.xstorm_template--quality-certificates-page .xstorm_card-grid,
.xstorm_template--awards-archive-page .xstorm_card-grid,
.xstorm_template--team-page .xstorm_card-grid,
.xstorm_template--partnership-landing-page .xstorm_card-grid,
.xstorm_template--open-tea-shop-page .xstorm_card-grid,
.xstorm_template--franchise-rch-page .xstorm_card-grid,
.xstorm_template--knowledge-base-page .xstorm_card-grid,
.xstorm_template--news-archive-page .xstorm_card-grid,
.xstorm_template--company-hub-page .xstorm_image-card-grid,
.xstorm_template--history-mission-page .xstorm_image-card-grid,
.xstorm_template--production-page .xstorm_image-card-grid,
.xstorm_template--quality-certificates-page .xstorm_image-card-grid,
.xstorm_template--awards-archive-page .xstorm_image-card-grid,
.xstorm_template--partnership-landing-page .xstorm_image-card-grid,
.xstorm_template--knowledge-base-page .xstorm_image-card-grid,
.xstorm_template--news-archive-page .xstorm_image-card-grid{gap:24px}
.xstorm_template--company-hub-page .xstorm_card,
.xstorm_template--history-mission-page .xstorm_card,
.xstorm_template--production-page .xstorm_card,
.xstorm_template--quality-certificates-page .xstorm_card,
.xstorm_template--awards-archive-page .xstorm_card,
.xstorm_template--team-page .xstorm_card,
.xstorm_template--partnership-landing-page .xstorm_card,
.xstorm_template--open-tea-shop-page .xstorm_card,
.xstorm_template--franchise-rch-page .xstorm_card,
.xstorm_template--knowledge-base-page .xstorm_card,
.xstorm_template--news-archive-page .xstorm_card,
.xstorm_template--company-hub-page .xstorm_image-card,
.xstorm_template--history-mission-page .xstorm_image-card,
.xstorm_template--production-page .xstorm_image-card,
.xstorm_template--quality-certificates-page .xstorm_image-card,
.xstorm_template--awards-archive-page .xstorm_image-card,
.xstorm_template--partnership-landing-page .xstorm_image-card,
.xstorm_template--knowledge-base-page .xstorm_image-card,
.xstorm_template--news-archive-page .xstorm_image-card{border-color:rgba(24,32,51,.07);box-shadow:0 16px 48px rgba(24,32,51,.048)}
.xstorm_template--quality-certificates-page .xstorm_document,
.xstorm_template--production-page .xstorm_document,
.xstorm_template--company-hub-page .xstorm_document,
.xstorm_template--partnership-landing-page .xstorm_document{padding:20px;border-radius:16px;box-shadow:0 12px 36px rgba(24,32,51,.04)}
.xstorm_template--article-detail-page .xstorm_section,
.xstorm_template--news-detail-page .xstorm_section{padding:60px 0}
.xstorm_template--article-detail-page .xstorm_article-shell,
.xstorm_template--news-detail-page .xstorm_article-shell{grid-template-columns:minmax(0,1fr) 320px;gap:52px}
.xstorm_template--article-detail-page .xstorm_article,
.xstorm_template--news-detail-page .xstorm_article{padding:38px;border:1px solid rgba(24,32,51,.07);border-radius:18px;background:#fff;box-shadow:0 18px 56px rgba(24,32,51,.05)}
.xstorm_template--article-detail-page .xstorm_page-hero__title,
.xstorm_template--news-detail-page .xstorm_page-hero__title{font-size:46px;line-height:1.05;margin-bottom:14px}
.xstorm_template--article-detail-page .xstorm_article p,
.xstorm_template--news-detail-page .xstorm_article p{font-size:18px;line-height:1.68;color:#273142}
.xstorm_template--article-detail-page .xstorm_article .xstorm_page-hero__media,
.xstorm_template--news-detail-page .xstorm_article .xstorm_page-hero__media{min-height:340px;border-radius:14px;margin:26px 0}
.xstorm_template--article-detail-page .xstorm_quote,
.xstorm_template--news-detail-page .xstorm_quote{font-size:20px;line-height:1.55;padding:24px;margin:26px 0;border-left:4px solid rgba(23,60,22,.32);background:#F7F8F3}
.xstorm_template--article-detail-page .xstorm_sidebar-card,
.xstorm_template--news-detail-page .xstorm_sidebar-card{padding:22px;margin-bottom:18px;border-color:rgba(24,32,51,.07);box-shadow:0 14px 40px rgba(24,32,51,.045)}
.xstorm_template--article-detail-page .xstorm_sidebar-card__title,
.xstorm_template--news-detail-page .xstorm_sidebar-card__title{font-size:20px;line-height:1.18;margin-bottom:9px}
@media (min-width:1440px){
  .xstorm_template--company-hub-page .xstorm_page-hero__title,
  .xstorm_template--history-mission-page .xstorm_page-hero__title,
  .xstorm_template--production-page .xstorm_page-hero__title,
  .xstorm_template--quality-certificates-page .xstorm_page-hero__title,
  .xstorm_template--partnership-landing-page .xstorm_page-hero__title,
  .xstorm_template--knowledge-base-page .xstorm_page-hero__title,
  .xstorm_template--news-archive-page .xstorm_page-hero__title{font-size:54px}
}
@media (max-width:1199px){
  .xstorm_page-map{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_template--company-hub-page .xstorm_page-hero__grid,
  .xstorm_template--history-mission-page .xstorm_page-hero__grid,
  .xstorm_template--production-page .xstorm_page-hero__grid,
  .xstorm_template--quality-certificates-page .xstorm_page-hero__grid,
  .xstorm_template--awards-archive-page .xstorm_page-hero__grid,
  .xstorm_template--team-page .xstorm_page-hero__grid,
  .xstorm_template--vacancies-archive-page .xstorm_page-hero__grid,
  .xstorm_template--vacancy-detail-page .xstorm_page-hero__grid,
  .xstorm_template--partnership-landing-page .xstorm_page-hero__grid,
  .xstorm_template--open-tea-shop-page .xstorm_page-hero__grid,
  .xstorm_template--franchise-rch-page .xstorm_page-hero__grid,
  .xstorm_template--chayburg-franchise-page .xstorm_page-hero__grid,
  .xstorm_template--partner-benefits-page .xstorm_page-hero__grid,
  .xstorm_template--delivery-to-outlet-page .xstorm_page-hero__grid,
  .xstorm_template--new-partner-form-page .xstorm_page-hero__grid,
  .xstorm_template--knowledge-base-page .xstorm_page-hero__grid,
  .xstorm_template--tea-knowledge-archive-page .xstorm_page-hero__grid,
  .xstorm_template--coffee-knowledge-archive-page .xstorm_page-hero__grid,
  .xstorm_template--video-media-archive-page .xstorm_page-hero__grid,
  .xstorm_template--news-archive-page .xstorm_page-hero__grid,
  .xstorm_template--article-detail-page .xstorm_article-shell,
  .xstorm_template--news-detail-page .xstorm_article-shell{grid-template-columns:1fr;gap:34px}
}
@media (max-width:767px){
  .xstorm_page-map{grid-template-columns:1fr}
  .xstorm_page-map__item{padding:17px}
  .xstorm_template--company-hub-page .xstorm_page-hero__media,
  .xstorm_template--history-mission-page .xstorm_page-hero__media,
  .xstorm_template--production-page .xstorm_page-hero__media,
  .xstorm_template--quality-certificates-page .xstorm_page-hero__media,
  .xstorm_template--awards-archive-page .xstorm_page-hero__media,
  .xstorm_template--team-page .xstorm_page-hero__media,
  .xstorm_template--vacancies-archive-page .xstorm_page-hero__media,
  .xstorm_template--vacancy-detail-page .xstorm_page-hero__media,
  .xstorm_template--partnership-landing-page .xstorm_page-hero__media,
  .xstorm_template--open-tea-shop-page .xstorm_page-hero__media,
  .xstorm_template--franchise-rch-page .xstorm_page-hero__media,
  .xstorm_template--chayburg-franchise-page .xstorm_page-hero__media,
  .xstorm_template--partner-benefits-page .xstorm_page-hero__media,
  .xstorm_template--delivery-to-outlet-page .xstorm_page-hero__media,
  .xstorm_template--new-partner-form-page .xstorm_page-hero__media,
  .xstorm_template--knowledge-base-page .xstorm_page-hero__media,
  .xstorm_template--tea-knowledge-archive-page .xstorm_page-hero__media,
  .xstorm_template--coffee-knowledge-archive-page .xstorm_page-hero__media,
  .xstorm_template--video-media-archive-page .xstorm_page-hero__media,
  .xstorm_template--news-archive-page .xstorm_page-hero__media{min-height:270px;border-radius:10px}
  .xstorm_template--company-hub-page .xstorm_section,
  .xstorm_template--history-mission-page .xstorm_section,
  .xstorm_template--production-page .xstorm_section,
  .xstorm_template--quality-certificates-page .xstorm_section,
  .xstorm_template--partnership-landing-page .xstorm_section,
  .xstorm_template--knowledge-base-page .xstorm_section,
  .xstorm_template--news-archive-page .xstorm_section,
  .xstorm_template--article-detail-page .xstorm_section,
  .xstorm_template--news-detail-page .xstorm_section{padding:46px 0}
  .xstorm_template--article-detail-page .xstorm_article,
  .xstorm_template--news-detail-page .xstorm_article{padding:22px;border-radius:14px}
  .xstorm_template--article-detail-page .xstorm_page-hero__title,
  .xstorm_template--news-detail-page .xstorm_page-hero__title{font-size:34px}
  .xstorm_template--article-detail-page .xstorm_article p,
  .xstorm_template--news-detail-page .xstorm_article p{font-size:16px;line-height:1.62}
  .xstorm_template--article-detail-page .xstorm_article .xstorm_page-hero__media,
  .xstorm_template--news-detail-page .xstorm_article .xstorm_page-hero__media{min-height:230px}
}

/* 59. Commercial landing polish batch */
.xstorm_template--business-directions-page .xstorm_page-hero,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_page-hero,
.xstorm_template--chain-retail-page .xstorm_page-hero,
.xstorm_template--wholesale-tea-page .xstorm_page-hero,
.xstorm_template--wholesale-coffee-page .xstorm_page-hero,
.xstorm_template--tea-card-for-restaurants-page .xstorm_page-hero,
.xstorm_template--private-label-tea-page .xstorm_page-hero,
.xstorm_template--private-label-coffee-page .xstorm_page-hero,
.xstorm_template--private-label-packaging-page .xstorm_page-hero,
.xstorm_template--private-label-cases-page .xstorm_page-hero{background:linear-gradient(180deg,#FFFFFF 0%,#FFFFFF 76%,#F8F5EE 100%);border-bottom-color:rgba(24,32,51,.055)}
.xstorm_template--business-directions-page .xstorm_page-hero__grid,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_page-hero__grid,
.xstorm_template--chain-retail-page .xstorm_page-hero__grid,
.xstorm_template--wholesale-tea-page .xstorm_page-hero__grid,
.xstorm_template--wholesale-coffee-page .xstorm_page-hero__grid,
.xstorm_template--tea-card-for-restaurants-page .xstorm_page-hero__grid,
.xstorm_template--private-label-tea-page .xstorm_page-hero__grid,
.xstorm_template--private-label-coffee-page .xstorm_page-hero__grid,
.xstorm_template--private-label-packaging-page .xstorm_page-hero__grid,
.xstorm_template--private-label-cases-page .xstorm_page-hero__grid{grid-template-columns:minmax(0,.92fr) minmax(520px,1.08fr);gap:78px}
.xstorm_template--business-directions-page .xstorm_page-hero__media,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_page-hero__media,
.xstorm_template--chain-retail-page .xstorm_page-hero__media,
.xstorm_template--wholesale-tea-page .xstorm_page-hero__media,
.xstorm_template--wholesale-coffee-page .xstorm_page-hero__media,
.xstorm_template--tea-card-for-restaurants-page .xstorm_page-hero__media,
.xstorm_template--private-label-tea-page .xstorm_page-hero__media,
.xstorm_template--private-label-coffee-page .xstorm_page-hero__media,
.xstorm_template--private-label-packaging-page .xstorm_page-hero__media,
.xstorm_template--private-label-cases-page .xstorm_page-hero__media{min-height:405px;border-radius:12px;box-shadow:0 24px 68px rgba(24,32,51,.055)}
.xstorm_template--business-directions-page .xstorm_generic-intro-section,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_generic-intro-section,
.xstorm_template--chain-retail-page .xstorm_generic-intro-section,
.xstorm_template--wholesale-tea-page .xstorm_generic-intro-section,
.xstorm_template--wholesale-coffee-page .xstorm_generic-intro-section,
.xstorm_template--tea-card-for-restaurants-page .xstorm_generic-intro-section,
.xstorm_template--private-label-tea-page .xstorm_generic-intro-section,
.xstorm_template--private-label-coffee-page .xstorm_generic-intro-section,
.xstorm_template--private-label-packaging-page .xstorm_generic-intro-section,
.xstorm_template--private-label-cases-page .xstorm_generic-intro-section{padding-top:32px;padding-bottom:42px;background:#fff}
.xstorm_template--business-directions-page .xstorm_section,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_section,
.xstorm_template--chain-retail-page .xstorm_section,
.xstorm_template--wholesale-tea-page .xstorm_section,
.xstorm_template--wholesale-coffee-page .xstorm_section,
.xstorm_template--tea-card-for-restaurants-page .xstorm_section,
.xstorm_template--private-label-tea-page .xstorm_section,
.xstorm_template--private-label-coffee-page .xstorm_section,
.xstorm_template--private-label-packaging-page .xstorm_section,
.xstorm_template--private-label-cases-page .xstorm_section{padding:64px 0}
.xstorm_template--business-directions-page .xstorm_section__head,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_section__head,
.xstorm_template--chain-retail-page .xstorm_section__head,
.xstorm_template--wholesale-tea-page .xstorm_section__head,
.xstorm_template--wholesale-coffee-page .xstorm_section__head,
.xstorm_template--tea-card-for-restaurants-page .xstorm_section__head,
.xstorm_template--private-label-tea-page .xstorm_section__head,
.xstorm_template--private-label-coffee-page .xstorm_section__head,
.xstorm_template--private-label-packaging-page .xstorm_section__head,
.xstorm_template--private-label-cases-page .xstorm_section__head{margin-bottom:30px}
.xstorm_template--business-directions-page .xstorm_card-grid,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_card-grid,
.xstorm_template--chain-retail-page .xstorm_card-grid,
.xstorm_template--wholesale-tea-page .xstorm_card-grid,
.xstorm_template--wholesale-coffee-page .xstorm_card-grid,
.xstorm_template--tea-card-for-restaurants-page .xstorm_card-grid,
.xstorm_template--private-label-tea-page .xstorm_card-grid,
.xstorm_template--private-label-coffee-page .xstorm_card-grid,
.xstorm_template--private-label-packaging-page .xstorm_card-grid,
.xstorm_template--private-label-cases-page .xstorm_card-grid,
.xstorm_template--business-directions-page .xstorm_image-card-grid,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_image-card-grid,
.xstorm_template--chain-retail-page .xstorm_image-card-grid,
.xstorm_template--wholesale-tea-page .xstorm_image-card-grid,
.xstorm_template--wholesale-coffee-page .xstorm_image-card-grid,
.xstorm_template--tea-card-for-restaurants-page .xstorm_image-card-grid,
.xstorm_template--private-label-tea-page .xstorm_image-card-grid,
.xstorm_template--private-label-coffee-page .xstorm_image-card-grid,
.xstorm_template--private-label-packaging-page .xstorm_image-card-grid,
.xstorm_template--private-label-cases-page .xstorm_image-card-grid{gap:26px}
.xstorm_template--business-directions-page .xstorm_card,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_card,
.xstorm_template--chain-retail-page .xstorm_card,
.xstorm_template--wholesale-tea-page .xstorm_card,
.xstorm_template--wholesale-coffee-page .xstorm_card,
.xstorm_template--tea-card-for-restaurants-page .xstorm_card,
.xstorm_template--private-label-tea-page .xstorm_card,
.xstorm_template--private-label-coffee-page .xstorm_card,
.xstorm_template--private-label-packaging-page .xstorm_card,
.xstorm_template--private-label-cases-page .xstorm_card,
.xstorm_template--business-directions-page .xstorm_image-card,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_image-card,
.xstorm_template--chain-retail-page .xstorm_image-card,
.xstorm_template--wholesale-tea-page .xstorm_image-card,
.xstorm_template--wholesale-coffee-page .xstorm_image-card,
.xstorm_template--tea-card-for-restaurants-page .xstorm_image-card,
.xstorm_template--private-label-tea-page .xstorm_image-card,
.xstorm_template--private-label-coffee-page .xstorm_image-card,
.xstorm_template--private-label-packaging-page .xstorm_image-card,
.xstorm_template--private-label-cases-page .xstorm_image-card{border-color:rgba(24,32,51,.068);box-shadow:0 18px 54px rgba(24,32,51,.05)}
.xstorm_template--business-directions-page .xstorm_image-card__media,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_image-card__media,
.xstorm_template--chain-retail-page .xstorm_image-card__media,
.xstorm_template--wholesale-tea-page .xstorm_image-card__media,
.xstorm_template--wholesale-coffee-page .xstorm_image-card__media,
.xstorm_template--tea-card-for-restaurants-page .xstorm_image-card__media,
.xstorm_template--private-label-tea-page .xstorm_image-card__media,
.xstorm_template--private-label-coffee-page .xstorm_image-card__media,
.xstorm_template--private-label-packaging-page .xstorm_image-card__media,
.xstorm_template--private-label-cases-page .xstorm_image-card__media{height:186px;background:#F2EFE7}
.xstorm_template--business-directions-page .xstorm_form,
.xstorm_template--retail-tea-coffee-shops-page .xstorm_form,
.xstorm_template--chain-retail-page .xstorm_form,
.xstorm_template--wholesale-tea-page .xstorm_form,
.xstorm_template--wholesale-coffee-page .xstorm_form,
.xstorm_template--tea-card-for-restaurants-page .xstorm_form,
.xstorm_template--private-label-tea-page .xstorm_form,
.xstorm_template--private-label-coffee-page .xstorm_form,
.xstorm_template--private-label-packaging-page .xstorm_form,
.xstorm_template--private-label-cases-page .xstorm_form{box-shadow:0 18px 56px rgba(24,32,51,.052);border-color:rgba(24,32,51,.07)}
@media (min-width:1440px){
  .xstorm_template--business-directions-page .xstorm_page-hero__title,
  .xstorm_template--chain-retail-page .xstorm_page-hero__title,
  .xstorm_template--wholesale-tea-page .xstorm_page-hero__title,
  .xstorm_template--tea-card-for-restaurants-page .xstorm_page-hero__title,
  .xstorm_template--private-label-tea-page .xstorm_page-hero__title,
  .xstorm_template--private-label-packaging-page .xstorm_page-hero__title,
  .xstorm_template--private-label-cases-page .xstorm_page-hero__title{font-size:54px}
}
@media (max-width:1199px){
  .xstorm_template--business-directions-page .xstorm_page-hero__grid,
  .xstorm_template--retail-tea-coffee-shops-page .xstorm_page-hero__grid,
  .xstorm_template--chain-retail-page .xstorm_page-hero__grid,
  .xstorm_template--wholesale-tea-page .xstorm_page-hero__grid,
  .xstorm_template--wholesale-coffee-page .xstorm_page-hero__grid,
  .xstorm_template--tea-card-for-restaurants-page .xstorm_page-hero__grid,
  .xstorm_template--private-label-tea-page .xstorm_page-hero__grid,
  .xstorm_template--private-label-coffee-page .xstorm_page-hero__grid,
  .xstorm_template--private-label-packaging-page .xstorm_page-hero__grid,
  .xstorm_template--private-label-cases-page .xstorm_page-hero__grid{grid-template-columns:1fr;gap:36px}
}
@media (max-width:767px){
  .xstorm_template--business-directions-page .xstorm_page-hero__media,
  .xstorm_template--retail-tea-coffee-shops-page .xstorm_page-hero__media,
  .xstorm_template--chain-retail-page .xstorm_page-hero__media,
  .xstorm_template--wholesale-tea-page .xstorm_page-hero__media,
  .xstorm_template--wholesale-coffee-page .xstorm_page-hero__media,
  .xstorm_template--tea-card-for-restaurants-page .xstorm_page-hero__media,
  .xstorm_template--private-label-tea-page .xstorm_page-hero__media,
  .xstorm_template--private-label-coffee-page .xstorm_page-hero__media,
  .xstorm_template--private-label-packaging-page .xstorm_page-hero__media,
  .xstorm_template--private-label-cases-page .xstorm_page-hero__media{min-height:270px;border-radius:10px}
  .xstorm_template--business-directions-page .xstorm_section,
  .xstorm_template--retail-tea-coffee-shops-page .xstorm_section,
  .xstorm_template--chain-retail-page .xstorm_section,
  .xstorm_template--wholesale-tea-page .xstorm_section,
  .xstorm_template--wholesale-coffee-page .xstorm_section,
  .xstorm_template--tea-card-for-restaurants-page .xstorm_section,
  .xstorm_template--private-label-tea-page .xstorm_section,
  .xstorm_template--private-label-coffee-page .xstorm_section,
  .xstorm_template--private-label-packaging-page .xstorm_section,
  .xstorm_template--private-label-cases-page .xstorm_section{padding:46px 0}
  .xstorm_template--business-directions-page .xstorm_image-card__media,
  .xstorm_template--chain-retail-page .xstorm_image-card__media,
  .xstorm_template--wholesale-tea-page .xstorm_image-card__media,
  .xstorm_template--tea-card-for-restaurants-page .xstorm_image-card__media,
  .xstorm_template--private-label-tea-page .xstorm_image-card__media,
  .xstorm_template--private-label-packaging-page .xstorm_image-card__media,
  .xstorm_template--private-label-cases-page .xstorm_image-card__media{height:150px}
}

/* 60. Catalog and product detail polish batch */
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page) .xstorm_page-hero{background:linear-gradient(180deg,#FBFCF8 0%,#FFFFFF 76%)}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page) .xstorm_page-hero__media{box-shadow:0 24px 72px rgba(24,32,51,.07);background:#F4F1EA}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page) .xstorm_section{padding:72px 0}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page) .xstorm_catalog-selector__item{background:#fff;border-color:rgba(24,32,51,.07);box-shadow:0 12px 32px rgba(24,32,51,.045)}
.xstorm_product-layout{align-items:start}
.xstorm_product-layout .xstorm_product-card{border-radius:14px;overflow:hidden;background:#fff;border-color:rgba(24,32,51,.065);box-shadow:0 16px 48px rgba(24,32,51,.05)}
.xstorm_product-layout .xstorm_product-card:hover,
.xstorm_product-layout .xstorm_product-card:focus-within{box-shadow:0 24px 68px rgba(24,32,51,.085)}
.xstorm_product-layout .xstorm_product-card__media{aspect-ratio:1.48/1;border-bottom:1px solid rgba(24,32,51,.055)}
.xstorm_product-layout .xstorm_product-card__media .xstorm_visual-image{height:100%;border-radius:0;border:0;background:#F4F1EA}
.xstorm_product-layout .xstorm_product-card__media .xstorm_visual-image__img{width:100%;height:100%;object-fit:cover}
.xstorm_product-layout .xstorm_product-card__body{min-height:254px;display:grid;grid-template-rows:auto auto auto auto auto auto;align-content:start}
.xstorm_product-card__price{font-size:17px;font-weight:900;color:var(--xstorm-ref-text)}
.xstorm_product-card__tools{display:inline-flex;gap:8px;align-items:center}
.xstorm_product-grid--list .xstorm_product-card{grid-template-columns:minmax(220px,300px) minmax(0,1fr)}
.xstorm_product-grid--list .xstorm_product-card__media{min-height:224px}
.xstorm_product-grid--list .xstorm_product-card__body{min-height:auto;grid-template-columns:minmax(0,1fr) minmax(178px,auto);align-content:center}
.xstorm_product-grid--list .xstorm_product-card__text{max-width:720px}
.xstorm_product-grid--list .xstorm_product-card__specs{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px 14px}
.xstorm_catalog-materials__panel,
.xstorm_catalog-summary__panel{border-color:rgba(24,32,51,.065);box-shadow:0 12px 34px rgba(24,32,51,.045)}
.xstorm_template--product-detail-page .xstorm_product-detail{align-items:start}
.xstorm_template--product-detail-page .xstorm_product-gallery{position:sticky;top:112px;padding:14px;border-radius:18px;background:#fff;border:1px solid rgba(24,32,51,.065);box-shadow:0 20px 62px rgba(24,32,51,.062)}
.xstorm_template--product-detail-page .xstorm_product-gallery__thumbs{gap:10px}
.xstorm_template--product-detail-page .xstorm_product-gallery__thumb{border-radius:12px;border-color:rgba(24,32,51,.08);overflow:hidden;background:#fff}
.xstorm_template--product-detail-page .xstorm_product-gallery__thumb.is-active{border-color:rgba(23,60,22,.5);box-shadow:0 0 0 3px rgba(23,60,22,.16)}
.xstorm_template--product-detail-page .xstorm_product-gallery__thumb .xstorm_visual-image{min-height:84px;border:0;border-radius:0}
.xstorm_template--product-detail-page .xstorm_product-gallery__main{min-height:500px;overflow:hidden;background:#F4F1EA}
.xstorm_template--product-detail-page .xstorm_product-gallery__main .xstorm_visual-image{height:100%;min-height:500px;border:0;border-radius:0}
.xstorm_template--product-detail-page .xstorm_product-gallery__main .xstorm_visual-image__img{width:100%;height:100%;object-fit:cover}
.xstorm_template--product-detail-page .xstorm_product-meta{border-radius:18px;box-shadow:0 20px 62px rgba(24,32,51,.062)}
.xstorm_template--product-detail-page .xstorm_product-meta__lead{font-size:18px;line-height:1.58;color:#405069}
.xstorm_template--product-detail-page .xstorm_product-price{border-radius:14px;background:#F7FAF4;border-color:rgba(23,60,22,.12)}
.xstorm_product-summary{gap:24px}
.xstorm_product-summary__panel{border-color:rgba(24,32,51,.065);box-shadow:0 14px 42px rgba(24,32,51,.045);border-radius:14px}
.xstorm_product-summary__title{font-size:21px;line-height:1.18}
.xstorm_product-summary__media-grid .xstorm_visual-image{min-height:150px}
.xstorm_product-summary .xstorm_product-ribbon{gap:16px}
.xstorm_product-summary .xstorm_product-card{box-shadow:none;border-color:rgba(24,32,51,.065)}
.xstorm_product-summary .xstorm_product-card__body{padding:16px;gap:8px}
.xstorm_product-summary .xstorm_product-card__title{font-size:17px}
@media (min-width:1440px){
  .xstorm_product-layout .xstorm_product-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}
  .xstorm_product-layout .xstorm_product-grid--4{grid-template-columns:repeat(4,minmax(0,1fr))}
  .xstorm_template--product-detail-page .xstorm_product-detail{gap:64px}
}
@media (max-width:1199px){
  .xstorm_template--product-detail-page .xstorm_product-gallery{position:relative;top:auto}
  .xstorm_product-layout .xstorm_product-card__body{min-height:auto}
}
@media (max-width:899px){
  .xstorm_product-grid--list .xstorm_product-card{grid-template-columns:190px minmax(0,1fr)}
  .xstorm_product-grid--list .xstorm_product-card__specs{grid-template-columns:1fr}
}
@media (max-width:767px){
  :is(.xstorm_template--catalog-landing-page,
  .xstorm_template--tea-category-page,
  .xstorm_template--loose-tea-archive-page,
  .xstorm_template--packed-tea-archive-page,
  .xstorm_template--coffee-category-page,
  .xstorm_template--tableware-accessories-page,
  .xstorm_template--sweets-category-page,
  .xstorm_template--packaging-equipment-category-page,
  .xstorm_template--gift-solutions-page) .xstorm_section{padding:50px 0}
  .xstorm_product-layout .xstorm_product-card__media{aspect-ratio:1.45/1}
  .xstorm_product-grid--list .xstorm_product-card{grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card__media{min-height:0}
  .xstorm_template--product-detail-page .xstorm_product-gallery{padding:10px;border-radius:14px}
  .xstorm_template--product-detail-page .xstorm_product-gallery__main,
  .xstorm_template--product-detail-page .xstorm_product-gallery__main .xstorm_visual-image{min-height:300px}
  .xstorm_template--product-detail-page .xstorm_product-gallery__thumb .xstorm_visual-image{min-height:68px}
  .xstorm_template--product-detail-page .xstorm_product-meta__lead{font-size:16px}
}

/* 61. Home, search and contacts conversion states batch */
.xstorm_conversion-hub{display:grid;grid-template-columns:minmax(280px,.9fr) minmax(0,1.4fr);gap:24px;align-items:stretch}
.xstorm_conversion-hub__main{min-width:0;padding:28px;border:1px solid rgba(24,32,51,.065);border-radius:18px;background:linear-gradient(180deg,#FFFFFF 0%,#F8FAF4 100%);box-shadow:0 18px 54px rgba(24,32,51,.052)}
.xstorm_conversion-hub__title{margin:12px 0 10px;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-display);font-size:32px;line-height:1.12}
.xstorm_conversion-hub__text{margin:0;color:#4A5568;font-size:16px;line-height:1.58}
.xstorm_conversion-hub__steps{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;margin-top:24px}
.xstorm_conversion-hub__step{min-width:0;display:flex;align-items:center;gap:9px;padding:12px;border-radius:12px;background:#fff;border:1px solid rgba(24,32,51,.06);color:#405069;font-size:14px;line-height:1.3}
.xstorm_conversion-hub__step b{width:26px;height:26px;display:grid;place-items:center;border-radius:999px;background:#E9F2E4;color:var(--xstorm-ref-green)}
.xstorm_conversion-hub__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.xstorm_conversion-card{min-width:0;display:grid;grid-template-rows:auto auto 1fr auto;gap:10px;padding:22px;border:1px solid rgba(24,32,51,.065);border-radius:16px;background:#fff;box-shadow:0 16px 46px rgba(24,32,51,.048);transition:transform 170ms ease,box-shadow 170ms ease,border-color 170ms ease}
.xstorm_conversion-card:hover,.xstorm_conversion-card:focus-within{transform:translateY(-2px);border-color:rgba(23,60,22,.2);box-shadow:0 22px 64px rgba(24,32,51,.078)}
.xstorm_conversion-card__icon{width:42px;height:42px;display:grid;place-items:center;border-radius:13px;background:#EFF5EA;color:var(--xstorm-ref-green)}
.xstorm_conversion-card__title{margin:0;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-display);font-size:21px;line-height:1.16}
.xstorm_conversion-card__text{margin:0;color:#556174;font-size:15px;line-height:1.48}
.xstorm_template--home-page .xstorm_conversion-hub+.xstorm_card-grid{margin-top:0}
.xstorm_search-suggestions{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;grid-column:1/-1}
.xstorm_search-suggestions__chip{display:inline-flex;align-items:center;gap:8px;min-height:38px;padding:9px 13px;border:1px solid rgba(24,32,51,.08);border-radius:999px;background:#fff;color:var(--xstorm-ref-text);font-weight:800;cursor:pointer;transition:background 160ms ease,border-color 160ms ease,transform 160ms ease}
.xstorm_search-suggestions__chip span{color:var(--xstorm-ref-green);font-size:12px;text-transform:uppercase}
.xstorm_search-suggestions__chip:hover,.xstorm_search-suggestions__chip:focus,.xstorm_search-suggestions__chip.is-active{background:#F2F7EE;border-color:rgba(23,60,22,.22);transform:translateY(-1px)}
.xstorm_search-shortcuts{grid-column:1/-1;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin-top:12px}
.xstorm_search-shortcuts__link{min-width:0;padding:12px;border:1px solid rgba(24,32,51,.065);border-radius:12px;background:#fff;color:var(--xstorm-ref-text);font-weight:850;line-height:1.25}
.xstorm_search-shortcuts__link span{display:block;margin-bottom:4px;color:#6B7280;font-size:11px;text-transform:uppercase}
.xstorm_search-state{display:grid;grid-template-columns:220px minmax(0,1fr);gap:16px;margin-bottom:18px}
.xstorm_search-state__nav{display:grid;gap:8px;align-content:start}
.xstorm_search-state__button{min-height:42px;text-align:left;padding:10px 13px;border:1px solid rgba(24,32,51,.08);border-radius:12px;background:#fff;color:var(--xstorm-ref-text);font-weight:900;cursor:pointer}
.xstorm_search-state__button.is-active{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff}
.xstorm_search-state__panels{min-width:0}
.xstorm_search-state__panel{min-width:0;padding:22px;border:1px solid rgba(24,32,51,.065);border-radius:16px;background:#fff;box-shadow:0 14px 42px rgba(24,32,51,.05)}
.xstorm_search-state__panel[hidden]{display:none!important}
.xstorm_search-state__title{margin:12px 0 8px;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-display);font-size:24px;line-height:1.15}
.xstorm_search-state__text{margin:0;color:#4A5568;font-size:15px;line-height:1.52}
.xstorm_department-routes{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.xstorm_department-card{min-width:0;display:grid;grid-template-rows:auto auto 1fr auto auto;gap:11px;padding:22px;border:1px solid rgba(24,32,51,.065);border-radius:16px;background:#fff;box-shadow:0 16px 48px rgba(24,32,51,.05)}
.xstorm_department-card__title{margin:0;color:var(--xstorm-ref-text);font-family:var(--xstorm-ref-display);font-size:21px;line-height:1.16}
.xstorm_department-card__text{margin:0;color:#536174;font-size:15px;line-height:1.5}
.xstorm_department-card__meta{display:grid;gap:8px;margin:2px 0 0}
.xstorm_department-card__meta div{padding:10px;border-radius:10px;background:#F7F8F5;border:1px solid rgba(24,32,51,.045)}
.xstorm_department-card__meta dt{font-size:11px;font-weight:900;text-transform:uppercase;color:#6B7280}
.xstorm_department-card__meta dd{margin:3px 0 0;color:#263242;font-size:13px;line-height:1.35}
.xstorm_department-card__actions{display:flex;flex-wrap:wrap;align-items:center;gap:10px}
.xstorm_template--contacts-regions-page .xstorm_contacts-summary__panel{box-shadow:0 14px 42px rgba(24,32,51,.045)}
@media (min-width:1440px){
  .xstorm_template--home-page .xstorm_conversion-hub__title{font-size:36px}
  .xstorm_template--contacts-regions-page .xstorm_department-routes{gap:18px}
}
@media (max-width:1199px){
  .xstorm_conversion-hub{grid-template-columns:1fr}
  .xstorm_department-routes{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_search-shortcuts{grid-template-columns:repeat(3,minmax(0,1fr))}
}
@media (max-width:767px){
  .xstorm_conversion-hub__main{padding:20px}
  .xstorm_conversion-hub__grid,
  .xstorm_conversion-hub__steps,
  .xstorm_department-routes,
  .xstorm_search-state{grid-template-columns:1fr}
  .xstorm_conversion-card,
  .xstorm_department-card,
  .xstorm_search-state__panel{padding:18px}
  .xstorm_search-shortcuts{grid-template-columns:1fr}
  .xstorm_search-suggestions{flex-wrap:nowrap;overflow-x:auto;padding-bottom:6px}
  .xstorm_search-suggestions__chip{flex:0 0 auto}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_conversion-card,
  .xstorm_search-suggestions__chip{transition:none}
  .xstorm_conversion-card:hover,
  .xstorm_conversion-card:focus-within,
  .xstorm_search-suggestions__chip:hover,
  .xstorm_search-suggestions__chip:focus,
  .xstorm_search-suggestions__chip.is-active{transform:none}
}

/* 62. Service forms, validation and legal path batch */
.xstorm_form__hint{display:block;color:#667085;font-size:12px;line-height:1.45}
.xstorm_form__error{display:block;color:#9A3412;font-size:12px;line-height:1.42;font-weight:750}
.xstorm_form__error[hidden],
.xstorm_form__error-summary[hidden],
.xstorm_form__loading[hidden]{display:none!important}
.xstorm_form__input[aria-invalid="true"],
.xstorm_form__select[aria-invalid="true"],
.xstorm_form__textarea[aria-invalid="true"]{border-color:#D97706;background:#FFF8ED;box-shadow:0 0 0 4px rgba(217,119,6,.12)}
.xstorm_form__error-summary{margin-top:16px;padding:12px 14px;border-radius:13px;border:1px solid rgba(217,119,6,.24);background:#FFF8ED;color:#7C2D12;font-size:14px;line-height:1.45;font-weight:850}
.xstorm_form__loading{margin-top:14px;padding:12px 14px;border-radius:13px;border:1px solid rgba(24,32,51,.08);background:#F7F8F5;color:#405069;font-size:14px;line-height:1.45;font-weight:800}
.xstorm_form__note{line-height:1.5}
.xstorm_form__note a{color:var(--xstorm-ref-green);font-weight:850;text-decoration-thickness:1px;text-underline-offset:3px}
.xstorm_form.is-loading{border-color:rgba(23,60,22,.18);background:linear-gradient(180deg,#FFFFFF 0%,#FAFCF7 100%)}
.xstorm_form .xstorm_button.is-disabled{cursor:progress;opacity:.82}
.xstorm_home-summary .xstorm_form__hint,
.xstorm_catalog-summary .xstorm_form__hint,
.xstorm_product-summary .xstorm_form__hint,
.xstorm_article-summary .xstorm_form__hint,
.xstorm_contacts-summary .xstorm_form__hint{display:none}
.xstorm_home-summary .xstorm_form__error-summary,
.xstorm_catalog-summary .xstorm_form__error-summary,
.xstorm_product-summary .xstorm_form__error-summary,
.xstorm_article-summary .xstorm_form__error-summary,
.xstorm_contacts-summary .xstorm_form__error-summary{font-size:12px;padding:9px 10px;margin-top:10px}
.xstorm_home-summary .xstorm_form__loading,
.xstorm_catalog-summary .xstorm_form__loading,
.xstorm_product-summary .xstorm_form__loading,
.xstorm_article-summary .xstorm_form__loading,
.xstorm_contacts-summary .xstorm_form__loading{font-size:12px;padding:9px 10px;margin-top:10px}
@media (max-width:767px){
  .xstorm_form__hint,
  .xstorm_form__error{font-size:11px}
  .xstorm_form__error-summary,
  .xstorm_form__loading{font-size:13px}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_form__error-summary,
  .xstorm_form__loading{animation:none;transition:none}
}

/* 63. Full-site visual tightening and resilient wrapping */
.xstorm_hero__content,
.xstorm_page-hero__content,
.xstorm_section__head,
.xstorm_card,
.xstorm_product-card,
.xstorm_image-card,
.xstorm_sidebar-card,
.xstorm_table-card,
.xstorm_document,
.xstorm_search-result,
.xstorm_department-card,
.xstorm_conversion-card{min-width:0}
.xstorm_section__title,
.xstorm_page-hero__title,
.xstorm_hero__title,
.xstorm_card__title,
.xstorm_product-card__title,
.xstorm_image-card__title,
.xstorm_document__title,
.xstorm_search-result__title{text-wrap:balance}
.xstorm_section__text,
.xstorm_page-hero__lead,
.xstorm_hero__lead,
.xstorm_card__text,
.xstorm_product-card__text,
.xstorm_image-card .xstorm_card__text,
.xstorm_document__text,
.xstorm_search-result__text,
.xstorm_form__note{text-wrap:pretty}
.xstorm_card__link,
.xstorm_footer__link,
.xstorm_toc__link,
.xstorm_button{overflow-wrap:anywhere}
.xstorm_button{white-space:normal}
.xstorm_article,
.xstorm_sidebar-card,
.xstorm_form,
.xstorm_result-tabs,
.xstorm_contacts-summary__panel,
.xstorm_catalog-summary__panel,
.xstorm_home-summary__panel{overflow:hidden}
@media (min-width:1200px){
  .xstorm_section__head{align-items:flex-start}
  .xstorm_section__head>div{max-width:900px}
}
@media (max-width:767px){
  .xstorm_section__head{gap:12px}
  .xstorm_card__link,
  .xstorm_footer__link{line-height:1.35}
}

/* 64. Product state layer and content-ready UI tokens */
.xstorm_lead-review{display:grid;gap:12px;padding:14px;border:1px solid rgba(24,32,51,.075);border-radius:18px;background:linear-gradient(180deg,#FFFFFF 0%,#F8FAF5 100%)}
.xstorm_lead-review__head{display:flex;align-items:center;justify-content:space-between;gap:12px}
.xstorm_lead-review__head h4{margin:0;color:var(--xstorm-ref-text);font-size:17px;line-height:1.22}
.xstorm_lead-review__list{display:grid;gap:8px;margin:0;padding:0;list-style:none}
.xstorm_lead-review__list li{display:grid;grid-template-columns:minmax(0,.7fr) minmax(0,1fr);gap:10px;padding:10px 12px;border:1px solid rgba(24,32,51,.06);border-radius:13px;background:#fff;color:#5A6576}
.xstorm_lead-review__list li.is-active{border-color:rgba(23,60,22,.18);background:#F3FAEF;color:#263242}
.xstorm_lead-review__list b{color:var(--xstorm-ref-text);font-size:13px}
.xstorm_lead-review__list span{font-size:13px;line-height:1.35}
.xstorm_lead-review__payload{display:grid;grid-template-columns:max-content minmax(0,1fr);gap:8px 12px;padding:12px;border-radius:14px;background:#F7F8F5;border:1px solid rgba(24,32,51,.055)}
.xstorm_lead-review__payload code{color:var(--xstorm-ref-green);font-size:12px;font-weight:850;white-space:normal}
.xstorm_lead-review__payload span{min-width:0;color:#465264;font-size:13px;overflow-wrap:anywhere}
.xstorm_lead-review__notice{margin:0;padding:11px 12px;border-radius:13px;background:#E9F6EA;color:#1E5D31;font-size:13px;line-height:1.45;font-weight:800}
.xstorm_lead-review__notice[hidden]{display:none!important}
.xstorm_dashboard.is-loading .xstorm_dashboard__summary,
.xstorm_client-dashboard.is-loading .xstorm_dashboard__summary,
.xstorm_client-dashboard.is-loading .xstorm_dashboard__panel{opacity:.48;pointer-events:none;transition:opacity 160ms ease}
.xstorm_dashboard__loading{margin:0 0 14px;padding:12px 14px;border:1px solid rgba(168,126,25,.18);border-radius:14px;background:#FFFDF5;color:#735E16;font-size:14px;font-weight:850;line-height:1.4}
.xstorm_dashboard__loading[hidden]{display:none!important}
.xstorm_dashboard-empty{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:16px;align-items:center;padding:18px;border:1px solid rgba(24,32,51,.075);border-radius:18px;background:#F7F8F5}
.xstorm_dashboard-empty__icon{width:44px;height:44px;display:grid;place-items:center;border-radius:15px;background:#fff;color:var(--xstorm-ref-green);box-shadow:0 10px 28px rgba(24,32,51,.055)}
.xstorm_dashboard-empty h3{margin:0;color:var(--xstorm-ref-text);font-size:20px;line-height:1.2}
.xstorm_dashboard-empty p{margin:5px 0 0;color:#5A6576;font-size:14px;line-height:1.45}
.xstorm_button.is-disabled,
.xstorm_button:disabled{cursor:not-allowed;opacity:.76}
.xstorm_modal--document .xstorm_modal__panel{width:min(720px,100%)}
.xstorm_modal--form .xstorm_modal__panel{width:min(640px,100%)}
.xstorm_modal__state-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}
@media (max-width:767px){
  .xstorm_lead-review__head,
  .xstorm_dashboard-empty{grid-template-columns:1fr}
  .xstorm_lead-review__list li,
  .xstorm_lead-review__payload{grid-template-columns:1fr}
  .xstorm_dashboard-empty{align-items:start}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_client-dashboard.is-loading .xstorm_dashboard__summary,
  .xstorm_client-dashboard.is-loading .xstorm_dashboard__panel{transition:none}
}

/* 65. Toast notifications, richer form errors and document preview */
.xstorm_toast-region{position:fixed;right:18px;bottom:18px;z-index:150;display:grid;gap:10px;width:min(380px,calc(100vw - 24px));pointer-events:none}
.xstorm_toast{display:flex;align-items:flex-start;gap:10px;padding:13px 14px;border:1px solid rgba(24,32,51,.09);border-radius:16px;background:#fff;color:#263242;box-shadow:0 22px 70px rgba(24,32,51,.18);opacity:0;transform:translateY(10px);transition:opacity 170ms ease,transform 170ms ease;pointer-events:auto}
.xstorm_toast.is-open{opacity:1;transform:translateY(0)}
.xstorm_toast__dot{width:10px;height:10px;flex:0 0 auto;margin-top:5px;border-radius:999px;background:#677386}
.xstorm_toast--success .xstorm_toast__dot{background:var(--xstorm-ref-green)}
.xstorm_toast--error .xstorm_toast__dot{background:#B45309}
.xstorm_toast--loading .xstorm_toast__dot{background:#A87E19}
.xstorm_toast__text{font-size:14px;line-height:1.42;font-weight:800}
.xstorm_form__retry{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:10px;align-items:center;margin-top:12px;padding:12px;border:1px solid rgba(217,119,6,.18);border-radius:14px;background:#FFF8ED;color:#7C2D12}
.xstorm_form__retry[hidden]{display:none!important}
.xstorm_form__retry>span:not(.xstorm_status-pill){font-size:13px;line-height:1.4;font-weight:800}
.xstorm_form__retry .xstorm_button{min-height:34px;padding:7px 11px;font-size:12px}
.xstorm_form__mask-status{display:block;margin-top:4px;color:#2F6B3A;font-size:12px;line-height:1.35;font-weight:800}
.xstorm_form__mask-status[hidden]{display:none!important}
.xstorm_form:has(.xstorm_form__input[aria-invalid="true"]),
.xstorm_form:has(.xstorm_form__select[aria-invalid="true"]),
.xstorm_form:has(.xstorm_form__textarea[aria-invalid="true"]){border-color:rgba(217,119,6,.28);box-shadow:0 18px 52px rgba(217,119,6,.08)}
.xstorm_document-preview{display:grid;grid-template-columns:auto minmax(0,1fr) auto;gap:14px;align-items:center;margin-top:18px;padding:14px;border:1px solid rgba(24,32,51,.075);border-radius:16px;background:#F7F8F5}
.xstorm_document-preview__icon{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;background:#fff;color:var(--xstorm-ref-green);box-shadow:0 10px 28px rgba(24,32,51,.055)}
.xstorm_document-preview__title{margin:0;color:var(--xstorm-ref-text);font-size:17px;line-height:1.2}
.xstorm_document-preview__text{margin:5px 0 0;color:#5A6576;font-size:13px;line-height:1.45}
.xstorm_button:focus-visible,
.xstorm_icon-button:focus-visible,
.xstorm_header__nav-link:focus-visible,
.xstorm_product-card__favorite:focus-visible,
.xstorm_dashboard__nav:focus-visible,
.xstorm_ai-assistant__chip:focus-visible{outline:3px solid rgba(23,60,22,.28);outline-offset:3px;box-shadow:0 0 0 6px rgba(23,60,22,.08)}
[data-xstorm-tooltip]{position:relative}
[data-xstorm-tooltip]::before,
[data-xstorm-tooltip]::after{position:absolute;left:50%;bottom:calc(100% + 9px);z-index:160;opacity:0;visibility:hidden;pointer-events:none;transform:translate(-50%,6px);transition:opacity 160ms ease,transform 160ms ease,visibility 160ms ease}
[data-xstorm-tooltip]::before{content:"";bottom:calc(100% + 4px);width:10px;height:10px;background:#263242;transform:translate(-50%,6px) rotate(45deg);border-radius:2px}
[data-xstorm-tooltip]::after{content:attr(data-xstorm-tooltip);width:max-content;max-width:230px;padding:8px 10px;border-radius:10px;background:#263242;color:#fff;box-shadow:0 16px 42px rgba(24,32,51,.18);font-size:12px;font-weight:800;line-height:1.3;text-align:center;white-space:normal}
[data-xstorm-tooltip]:hover::before,
[data-xstorm-tooltip]:hover::after,
[data-xstorm-tooltip]:focus-visible::before,
[data-xstorm-tooltip]:focus-visible::after{opacity:1;visibility:visible}
[data-xstorm-tooltip]:hover::after,
[data-xstorm-tooltip]:focus-visible::after{transform:translate(-50%,0)}
[data-xstorm-tooltip]:hover::before,
[data-xstorm-tooltip]:focus-visible::before{transform:translate(-50%,0) rotate(45deg)}
.xstorm_tooltip-demo{display:flex;align-items:center;gap:12px;flex-wrap:wrap;padding:18px;border:1px solid rgba(24,32,51,.075);border-radius:18px;background:#F7F8F5}
.xstorm_tooltip-demo .xstorm_icon-button{width:42px;height:42px;border:1px solid rgba(24,32,51,.08);border-radius:13px;background:#fff;color:var(--xstorm-ref-green);box-shadow:0 10px 28px rgba(24,32,51,.055)}
@media (max-width:767px){
  .xstorm_toast-region{right:12px;bottom:12px;width:calc(100vw - 24px)}
  .xstorm_form__retry,
  .xstorm_document-preview{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_toast,
  [data-xstorm-tooltip]::before,
  [data-xstorm-tooltip]::after{transition:none}
}

/* 71. Validation masks and dense catalog CTA pass */
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__actions{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:8px;margin-top:6px}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_stock{display:none}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__request{min-height:34px;padding:8px 10px;font-size:11px;line-height:1.15;white-space:normal}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__tools{display:flex;gap:6px;justify-content:flex-end}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__tools .xstorm_icon-button{width:32px;height:32px;border-radius:10px}
@media (max-width:767px){
  :is(.xstorm_template--catalog-landing-page,
  .xstorm_template--tea-category-page,
  .xstorm_template--loose-tea-archive-page,
  .xstorm_template--packed-tea-archive-page,
  .xstorm_template--coffee-category-page,
  .xstorm_template--tableware-accessories-page,
  .xstorm_template--sweets-category-page,
  .xstorm_template--packaging-equipment-category-page,
  .xstorm_template--gift-solutions-page,
  .xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__actions{grid-template-columns:1fr;align-items:stretch}
  :is(.xstorm_template--catalog-landing-page,
  .xstorm_template--tea-category-page,
  .xstorm_template--loose-tea-archive-page,
  .xstorm_template--packed-tea-archive-page,
  .xstorm_template--coffee-category-page,
  .xstorm_template--tableware-accessories-page,
  .xstorm_template--sweets-category-page,
  .xstorm_template--packaging-equipment-category-page,
  .xstorm_template--gift-solutions-page,
  .xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__tools{justify-content:flex-start}
}

/* 72. Catalog visual polish, filters and mobile header pass */
.xstorm_topbar{background:linear-gradient(90deg,#163917 0%,#2F5B2E 58%,#8C6B21 100%)}
.xstorm_topbar__inner{gap:12px}
.xstorm_topbar__item{min-height:40px;padding:8px 14px;border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.12);box-shadow:inset 0 1px 0 rgba(255,255,255,.12)}
.xstorm_catalog-toolbar{align-items:center;gap:18px;margin-bottom:26px;padding:18px 20px;border-color:rgba(24,32,51,.065);border-radius:18px;background:linear-gradient(180deg,#FFFFFF 0%,#FAFCF7 100%);box-shadow:0 16px 46px rgba(24,32,51,.052)}
.xstorm_catalog-toolbar__summary{gap:5px;min-width:190px}
.xstorm_catalog-toolbar__label{font-size:12px;font-weight:850;letter-spacing:.06em;text-transform:uppercase}
.xstorm_catalog-toolbar__summary b{font-size:18px;line-height:1.2}
.xstorm_catalog-toolbar__actions{gap:12px;row-gap:10px}
.xstorm_view-toggle{gap:7px;min-height:46px;padding:5px;background:#F2F6EE;border-color:rgba(23,60,22,.1)}
.xstorm_view-toggle__button,.xstorm_sort-button{width:40px;height:40px;border-radius:13px;border-color:transparent;background:#fff;color:#2E3949;box-shadow:0 7px 18px rgba(24,32,51,.045)}
.xstorm_view-toggle__button.is-active,.xstorm_sort-menu[open] .xstorm_sort-button{background:var(--xstorm-ref-green);border-color:var(--xstorm-ref-green);color:#fff;box-shadow:0 10px 24px rgba(23,60,22,.18)}
.xstorm_sort-menu__panel{top:calc(100% + 10px);min-width:218px;padding:10px;border-radius:16px;box-shadow:0 24px 68px rgba(24,32,51,.16)}
.xstorm_sort-menu__panel button{min-height:42px;padding:10px 12px;font-size:14px;line-height:1.25}
.xstorm_catalog-toolbar__sort{min-height:34px;display:inline-flex;align-items:center;padding:7px 11px;border:1px solid rgba(23,60,22,.1);border-radius:999px;background:#F2F7EE;color:#31513A;font-size:13px}
.xstorm_filters--catalog{gap:20px;padding:22px;border-color:rgba(24,32,51,.065);background:linear-gradient(180deg,#FFFFFF 0%,#FAFCF7 100%);box-shadow:0 16px 46px rgba(24,32,51,.045)}
.xstorm_filters__head{padding-bottom:2px}
.xstorm_filters__title{font-size:20px;line-height:1.18}
.xstorm_filter-chips,.xstorm_active-filters{gap:10px}
.xstorm_filter-chip{min-height:40px;padding:9px 13px;border-color:rgba(24,32,51,.075);background:#fff;font-size:14px;box-shadow:0 8px 20px rgba(24,32,51,.032)}
.xstorm_filter-chip input{width:16px;height:16px}
.xstorm_filter-chip.is-active{box-shadow:0 12px 26px rgba(23,60,22,.16)}
.xstorm_active-filters__chip{min-height:36px;padding:8px 12px;background:#F2F7EE;font-size:13px}
.xstorm_filter-accordion{padding-top:16px}
.xstorm_filter-accordion summary{min-height:42px;padding:2px 0;font-size:15px}
.xstorm_filter-accordion__body{gap:8px;padding-top:12px}
.xstorm_filters__label{display:flex;align-items:center;gap:9px;min-height:38px;padding:9px 10px;border-radius:11px;color:#364255;font-size:15px;line-height:1.35;cursor:pointer;transition:background 160ms ease,color 160ms ease,box-shadow 160ms ease}
.xstorm_filters__label:hover,.xstorm_filters__label:focus-within,.xstorm_filters__label.is-active{background:#F2F7EE;color:var(--xstorm-ref-text);box-shadow:inset 0 0 0 1px rgba(23,60,22,.1)}
.xstorm_filters__label input{width:16px;height:16px;flex:0 0 auto}
.xstorm_product-layout .xstorm_product-grid--3{gap:22px}
.xstorm_product-layout .xstorm_product-grid--4{gap:18px}
.xstorm_product-layout .xstorm_product-card{border-radius:16px;border-color:rgba(24,32,51,.058);box-shadow:0 18px 48px rgba(24,32,51,.052)}
.xstorm_product-layout .xstorm_product-card:hover,
.xstorm_product-layout .xstorm_product-card:focus-within{box-shadow:0 28px 76px rgba(24,32,51,.09)}
.xstorm_product-layout .xstorm_product-card__body{gap:12px;padding:22px;min-height:266px}
.xstorm_product-layout .xstorm_product-card__title{font-size:20px;line-height:1.18}
.xstorm_product-card__meta span{padding:6px 9px;background:#F0F6EC;font-size:11px}
.xstorm_product-card__specs{gap:7px;color:#4C596B;font-size:13px;line-height:1.4}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__request{min-height:38px;padding:9px 11px;border-radius:12px;font-size:12px;line-height:1.18}
:is(.xstorm_template--catalog-landing-page,
.xstorm_template--tea-category-page,
.xstorm_template--loose-tea-archive-page,
.xstorm_template--packed-tea-archive-page,
.xstorm_template--coffee-category-page,
.xstorm_template--tableware-accessories-page,
.xstorm_template--sweets-category-page,
.xstorm_template--packaging-equipment-category-page,
.xstorm_template--gift-solutions-page,
.xstorm_template--search-results-page) .xstorm_product-layout .xstorm_product-grid:not(.xstorm_product-grid--list) .xstorm_product-card__actions{gap:10px;margin-top:8px}
.xstorm_product-grid--list .xstorm_product-card{grid-template-columns:minmax(240px,318px) minmax(0,1fr);border-radius:18px}
.xstorm_product-grid--list .xstorm_product-card__media{min-height:238px}
.xstorm_product-grid--list .xstorm_product-card__body{column-gap:26px;padding:26px;min-height:auto}
.xstorm_product-grid--list .xstorm_product-card__price{justify-self:stretch;padding:12px 14px;border:1px solid rgba(23,60,22,.1);border-radius:14px;background:#F7FAF4;text-align:left}
.xstorm_product-grid--list .xstorm_product-card__actions{justify-items:stretch;align-self:stretch;min-width:202px}
.xstorm_product-grid--list .xstorm_product-card__request{width:100%;min-height:42px}
@media (max-width:1199px){
  .xstorm_product-layout .xstorm_product-card__body{min-height:auto}
  .xstorm_product-grid--list .xstorm_product-card{grid-template-columns:190px minmax(0,1fr)}
  .xstorm_product-grid--list .xstorm_product-card__body{padding:22px;grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card__actions{min-width:0}
  .xstorm_header__nav{gap:10px;padding:14px;border:1px solid rgba(24,32,51,.075);border-radius:18px;background:rgba(255,255,255,.99);box-shadow:0 26px 70px rgba(24,32,51,.16)}
  .xstorm_header__nav-link{min-height:46px;padding:12px 48px 12px 14px;border-radius:12px;font-size:15px;font-weight:650}
  .xstorm_header__nav-link--dropdown{position:relative}
  .xstorm_header__nav-link--dropdown::before,
  .xstorm_header__nav-link--dropdown::after{content:"";position:absolute;right:18px;top:50%;width:12px;height:2px;margin-left:0;border:0;border-radius:999px;background:currentColor;transform:translateY(-50%);transition:opacity 160ms ease,transform 160ms ease}
  .xstorm_header__nav-link--dropdown::after{right:23px;width:2px;height:12px}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link--dropdown::before{transform:translateY(-50%) rotate(180deg)}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link--dropdown::after{opacity:0;transform:translateY(-50%) scaleY(.25)}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link--dropdown{background:#F2F7EE;color:var(--xstorm-ref-green)}
  .xstorm_header__mega{border:1px solid rgba(24,32,51,.06);border-radius:14px;background:#F8FAF5}
  .xstorm_header__mega-inner{padding:13px}
  .xstorm_header__mega-link{min-height:36px;padding:8px 10px;border-radius:10px;font-size:14px;line-height:1.25}
}
@media (max-width:767px){
  .xstorm_topbar__inner{gap:8px;padding-top:9px;padding-bottom:9px;scrollbar-width:none}
  .xstorm_topbar__inner::-webkit-scrollbar{display:none}
  .xstorm_topbar__item{min-height:36px;padding:7px 12px;font-size:12px}
  .xstorm_catalog-toolbar{gap:14px;padding:16px;border-radius:16px}
  .xstorm_catalog-toolbar__actions{display:grid;grid-template-columns:1fr auto;align-items:center;width:100%;gap:10px}
  .xstorm_filter-drawer-trigger{min-height:42px}
  .xstorm_view-toggle{grid-column:1/-1;width:100%;justify-content:space-between;overflow-x:auto}
  .xstorm_view-toggle__button,.xstorm_sort-button{width:42px;height:42px}
  .xstorm_catalog-toolbar__sort{justify-content:center;min-height:36px}
  .xstorm_sort-menu__panel{left:auto;right:0;min-width:min(236px,calc(100vw - 40px))}
  .xstorm_filters--catalog[data-xstorm-filter-panel]{padding:20px;border-radius:22px}
  .xstorm_filter-chip,.xstorm_active-filters__chip{white-space:nowrap}
  .xstorm_product-layout .xstorm_product-grid--3,
  .xstorm_product-layout .xstorm_product-grid--4,
  .xstorm_product-layout .xstorm_product-grid--list{gap:16px}
  .xstorm_product-layout .xstorm_product-card__body{padding:20px;gap:11px}
  .xstorm_product-layout .xstorm_product-card__title{font-size:20px;line-height:1.2}
  .xstorm_product-grid--list .xstorm_product-card{grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card__body{padding:20px}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_filters__label,
  .xstorm_header__nav-link--dropdown::before,
  .xstorm_header__nav-link--dropdown::after{transition:none}
}

@media (max-width:1199px){
  .xstorm_header__nav-link[data-xstorm-mega-trigger]{position:relative}
  .xstorm_header__nav-link[data-xstorm-mega-trigger]::before,
  .xstorm_header__nav-link[data-xstorm-mega-trigger]::after{content:"";position:absolute;right:18px;top:50%;width:12px;height:2px;margin-left:0;border:0;border-radius:999px;background:currentColor;transform:translateY(-50%);transition:opacity 160ms ease,transform 160ms ease}
  .xstorm_header__nav-link[data-xstorm-mega-trigger]::after{right:23px;width:2px;height:12px}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link[data-xstorm-mega-trigger]::before{transform:translateY(-50%) rotate(180deg)}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link[data-xstorm-mega-trigger]::after{opacity:0;transform:translateY(-50%) scaleY(.25)}
  .xstorm_header__nav-item.is-open .xstorm_header__nav-link[data-xstorm-mega-trigger]{background:#F2F7EE;color:var(--xstorm-ref-green)}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_header__nav-link[data-xstorm-mega-trigger]::before,
  .xstorm_header__nav-link[data-xstorm-mega-trigger]::after{transition:none}
}

/* 73. Product detail polish and visual QA pass */
.xstorm_product-detail[data-xstorm-product-detail]{gap:42px}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery{display:grid;grid-template-columns:86px minmax(0,1fr);gap:14px;align-items:start;padding:16px;border-radius:20px;border-color:rgba(24,32,51,.06);background:linear-gradient(180deg,#FFFFFF 0%,#FAFCF7 100%);box-shadow:0 20px 62px rgba(24,32,51,.065)}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumbs{grid-column:1;grid-row:1 / span 2;display:grid;grid-template-columns:1fr;gap:10px;margin:0}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main{grid-column:2;min-height:530px;border-radius:16px;box-shadow:inset 0 0 0 1px rgba(24,32,51,.045)}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main .xstorm_visual-image{min-height:530px}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb{min-height:82px;height:auto;border-radius:14px;transition:transform 160ms ease,border-color 160ms ease,box-shadow 160ms ease}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb:hover,
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb:focus{transform:translateY(-1px)}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__note{grid-column:2;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border:1px solid rgba(24,32,51,.06);border-radius:14px;background:#fff;color:#536174;font-size:13px;line-height:1.4}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__note b{color:var(--xstorm-ref-text)}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta{display:grid;gap:18px;padding:28px;border-radius:20px;border:1px solid rgba(24,32,51,.06);background:#fff;box-shadow:0 20px 62px rgba(24,32,51,.065)}
.xstorm_product-meta__badges{display:flex;align-items:center;gap:9px;flex-wrap:wrap}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta__title{margin:0;font-size:38px;line-height:1.1}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta__list{margin:0;gap:8px}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta__row{padding:10px 0;font-size:14px}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta__lead{margin:0;color:#405069;font-size:18px;line-height:1.56}
.xstorm_product-trust{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.xstorm_product-trust span{min-width:0;padding:13px;border:1px solid rgba(23,60,22,.1);border-radius:14px;background:#F7FAF4;color:#536174}
.xstorm_product-trust b{display:block;margin-bottom:5px;color:var(--xstorm-ref-text);font-size:14px;line-height:1.2}
.xstorm_product-trust small{display:block;font-size:12px;line-height:1.35}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_feature-row{grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;padding:0;border:0}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_feature-row__item{min-height:46px;padding:11px;border:1px solid rgba(24,32,51,.055);border-radius:13px;background:#fff;color:#364255;font-size:13px;line-height:1.25}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_meta-icon{width:24px;height:24px;display:grid;place-items:center;border-radius:9px;background:#EFF5EA;color:var(--xstorm-ref-green)}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_meta-icon .xstorm_icon{width:15px;height:15px}
.xstorm_pack-selector__head{display:flex;align-items:flex-end;justify-content:space-between;gap:12px}
.xstorm_pack-selector__head span{color:#667085;font-size:13px;line-height:1.35}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_pack-selector{margin:0;padding:18px;border-color:rgba(23,60,22,.1);border-radius:16px;background:#FAFCF7}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_pack-selector__grid{gap:10px;margin-top:13px}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_pack-option{display:grid;gap:4px;min-height:66px;padding:12px 10px;border-radius:13px;font-size:14px;line-height:1.2}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_pack-option b{font-size:16px}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_pack-option small{font-size:12px}
.xstorm_product-action-panel{display:grid;gap:14px;padding:18px;border:1px solid rgba(23,60,22,.12);border-radius:18px;background:linear-gradient(180deg,#F7FAF4 0%,#FFFFFF 100%)}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-price{margin:0;padding:0;border:0;background:transparent}
.xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-price__value{font-size:36px;line-height:1.05}
.xstorm_product-action-panel__buttons{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.xstorm_product-action-panel__buttons .xstorm_button{min-height:46px}
.xstorm_product-action-panel .xstorm_form__note{margin:0;font-size:13px;line-height:1.45}
.xstorm_product-documents{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px}
.xstorm_product-documents__item{min-width:0;display:grid;grid-template-columns:auto minmax(0,1fr);gap:3px 9px;align-items:center;padding:12px;border:1px solid rgba(24,32,51,.065);border-radius:14px;background:#fff;color:var(--xstorm-ref-text);text-decoration:none;transition:background 160ms ease,border-color 160ms ease,transform 160ms ease}
.xstorm_product-documents__item:hover,
.xstorm_product-documents__item:focus{background:#F7FAF4;border-color:rgba(23,60,22,.18);transform:translateY(-1px)}
.xstorm_product-documents__item span{grid-row:1 / span 2;width:30px;height:30px;display:grid;place-items:center;border-radius:10px;background:#EFF5EA;color:var(--xstorm-ref-green)}
.xstorm_product-documents__item .xstorm_icon{width:17px;height:17px}
.xstorm_product-documents__item b{font-size:13px;line-height:1.2}
.xstorm_product-documents__item small{color:#667085;font-size:11px;line-height:1.3}
.xstorm_product-faq{display:grid;gap:8px}
.xstorm_product-faq__item{border:1px solid rgba(24,32,51,.065);border-radius:14px;background:#fff;overflow:hidden}
.xstorm_product-faq__item summary{min-height:42px;display:flex;align-items:center;padding:10px 13px;color:var(--xstorm-ref-text);font-size:14px;font-weight:850;cursor:pointer}
.xstorm_product-faq__item summary::-webkit-details-marker{display:none}
.xstorm_product-faq__item p{margin:0;padding:0 13px 13px;color:#536174;font-size:13px;line-height:1.45}
.xstorm_template--product-detail-page .xstorm_product-summary__panel{padding:18px;border-radius:16px}
.xstorm_template--product-detail-page .xstorm_product-summary__title{font-size:22px}
.xstorm_template--product-detail-page .xstorm_product-summary__text{font-size:14px;line-height:1.5}
@media (max-width:1199px){
  .xstorm_product-detail[data-xstorm-product-detail]{gap:24px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery{position:relative;top:auto}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main,
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main .xstorm_visual-image{min-height:440px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta{padding:24px}
}
@media (max-width:767px){
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery{grid-template-columns:1fr;padding:12px;border-radius:16px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main{grid-column:1;order:1}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumbs{grid-column:1;grid-row:auto;order:2;grid-template-columns:repeat(4,minmax(74px,1fr));overflow-x:auto;padding-bottom:2px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__note{grid-column:1;order:3;display:grid}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main,
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__main .xstorm_visual-image{min-height:310px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb{min-height:72px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta{padding:20px;gap:15px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-meta__title{font-size:31px}
  .xstorm_product-trust,
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_feature-row,
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_pack-selector__grid,
  .xstorm_product-action-panel__buttons,
  .xstorm_product-documents{grid-template-columns:1fr}
  .xstorm_pack-selector__head{display:grid;gap:4px}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-price{display:grid;gap:8px;align-items:start}
  .xstorm_product-documents__item{min-height:62px}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb,
  .xstorm_product-documents__item{transition:none}
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb:hover,
  .xstorm_product-detail[data-xstorm-product-detail] .xstorm_product-gallery__thumb:focus,
  .xstorm_product-documents__item:hover,
  .xstorm_product-documents__item:focus{transform:none}
}

/* 74. Catalog archive card refinement pass */
.xstorm_product-card[data-xstorm-archive-card]{display:grid;grid-template-rows:auto minmax(0,1fr);overflow:hidden;transition:box-shadow 180ms ease,transform 180ms ease,border-color 180ms ease}
.xstorm_product-card[data-xstorm-archive-card]:hover,
.xstorm_product-card[data-xstorm-archive-card]:focus-within{transform:translateY(-2px)}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{aspect-ratio:1.58/1;background:#F3EFE5}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_visual-image{height:100%;min-height:0}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_visual-image__img{height:100%;object-fit:cover}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{display:grid;grid-template-rows:minmax(0,1fr) auto;gap:14px}
.xstorm_product-card__content{min-width:0;display:grid;gap:9px;align-content:start}
.xstorm_product-card__commerce{min-width:0;display:grid;gap:10px;align-content:end}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__meta{gap:6px;align-items:center}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__title{margin:0}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__text{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__specs{display:grid;grid-template-columns:1fr;gap:5px}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__specs span{min-width:0}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__price{display:grid;gap:3px;align-items:start;padding:10px 12px;border:1px solid rgba(23,60,22,.1);border-radius:13px;background:#F7FAF4;color:var(--xstorm-ref-text);font-size:13px;line-height:1.25}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__price span{color:#667085;font-size:11px;font-weight:800;text-transform:uppercase}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__price b{font-size:15px;line-height:1.15}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__actions{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:9px;align-items:center}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_stock{grid-column:1/-1;color:#173C16;font-size:13px;line-height:1.25}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__request{min-width:132px}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__tools{justify-content:flex-end}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__tools .xstorm_icon-button{width:36px;height:36px;border-radius:12px}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{padding:18px;gap:12px;min-height:238px}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{aspect-ratio:1.5/1}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__title{font-size:17px;line-height:1.18}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__meta span{padding:5px 7px;font-size:10px}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__specs{font-size:12px;line-height:1.35}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__price{padding:8px 10px}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__actions{gap:7px}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__request{min-height:40px}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card]{grid-template-columns:minmax(176px,236px) minmax(0,1fr);grid-template-rows:1fr;align-items:stretch}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{align-self:center;height:196px;min-height:0;aspect-ratio:auto;border-right:1px solid rgba(24,32,51,.055);border-bottom:0}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_visual-image__img{transform:scale(1.1);transform-origin:center}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{grid-template-columns:minmax(0,1fr) minmax(184px,220px);grid-template-rows:1fr;gap:22px;align-items:stretch;padding:22px;min-height:0}
.xstorm_product-grid--list .xstorm_product-card__content{gap:10px}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__title{font-size:22px;line-height:1.16}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__text{-webkit-line-clamp:2;max-width:680px}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__specs{grid-template-columns:repeat(3,minmax(0,1fr));gap:8px}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__commerce{align-content:stretch;padding:0}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__price{align-self:start;padding:12px 14px}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__actions{grid-template-columns:1fr;align-content:end;justify-items:stretch}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__tools{justify-content:flex-start}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__request{width:100%;min-height:44px}
@media (max-width:1199px){
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card]{grid-template-columns:176px minmax(0,1fr)}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{height:206px;min-height:0}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{grid-template-columns:1fr;gap:14px;padding:20px}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__specs{grid-template-columns:repeat(2,minmax(0,1fr))}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__commerce{grid-template-columns:minmax(0,1fr) minmax(170px,auto);align-items:end}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__actions{align-content:start}
}
@media (max-width:767px){
  .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{aspect-ratio:1.72/1}
  .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{padding:18px;gap:12px}
  .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__title{font-size:19px}
  .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__actions{grid-template-columns:1fr auto}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card]{grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{height:auto;min-height:0;aspect-ratio:1.72/1;border-right:0;border-bottom:1px solid rgba(24,32,51,.055)}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{padding:18px}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__commerce{grid-template-columns:1fr}
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__specs{grid-template-columns:1fr}
}
@media (prefers-reduced-motion:reduce){
  .xstorm_product-card[data-xstorm-archive-card]{transition:none}
  .xstorm_product-card[data-xstorm-archive-card]:hover,
  .xstorm_product-card[data-xstorm-archive-card]:focus-within{transform:none}
}

/* 75. Palette service strips and group rhythm QA pass */
:root{
  --xstorm-accent-gold:#B98A36;
  --xstorm-accent-gold-soft:#F7EEDC;
  --xstorm-accent-blue:#315D72;
  --xstorm-accent-blue-soft:#EAF3F6;
  --xstorm-accent-mint:#DCEFE3;
  --xstorm-accent-mint-strong:#4C8065;
  --xstorm-accent-line:rgba(24,32,51,.052);
}
.xstorm_service-strip[data-xstorm-service-strip]{
  border-top:1px solid rgba(24,32,51,.045);
  border-bottom:1px solid rgba(24,32,51,.04);
  background:linear-gradient(90deg,#F8FBF6 0%,#F6F9FA 48%,#FCF6EA 100%);
}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__grid{
  gap:0;
}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item{
  min-height:74px;
  padding:18px 22px;
  border-right:1px solid rgba(24,32,51,.045);
  color:#354254;
  line-height:1.38;
}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item:last-child{border-right:0}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__icon{
  width:30px;
  height:30px;
  flex:0 0 30px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#FFFFFF;
  box-shadow:inset 0 0 0 1px rgba(24,32,51,.052);
  color:var(--xstorm-ref-green);
}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item:nth-child(2) .xstorm_service-strip__icon{color:var(--xstorm-accent-blue);background:var(--xstorm-accent-blue-soft)}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item:nth-child(3) .xstorm_service-strip__icon{color:#8B651D;background:var(--xstorm-accent-gold-soft)}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item:nth-child(4) .xstorm_service-strip__icon{color:var(--xstorm-accent-mint-strong);background:var(--xstorm-accent-mint)}
.xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item:nth-child(5) .xstorm_service-strip__icon{color:#536174;background:#F2F4F5}
.xstorm_generic-intro-section{
  padding-top:38px;
  padding-bottom:48px;
  background:linear-gradient(180deg,#FFFFFF 0%,#FAFBF7 100%);
}
.xstorm_page-map{
  gap:18px;
}
.xstorm_page-map__item{
  position:relative;
  gap:12px;
  padding:24px;
  border-color:rgba(24,32,51,.058);
  background:linear-gradient(180deg,#FFFFFF 0%,#FBFCF8 100%);
  box-shadow:0 18px 54px rgba(24,32,51,.052);
  overflow:hidden;
}
.xstorm_page-map__item::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:var(--xstorm-ref-green);
}
.xstorm_page-map__item:nth-child(2)::before{background:var(--xstorm-accent-gold)}
.xstorm_page-map__item:nth-child(3)::before{background:var(--xstorm-accent-blue)}
.xstorm_page-map__item:nth-child(4)::before{background:var(--xstorm-accent-mint-strong)}
.xstorm_page-map__item:nth-child(2) .xstorm_page-map__icon{color:#8B651D;background:var(--xstorm-accent-gold-soft)}
.xstorm_page-map__item:nth-child(3) .xstorm_page-map__icon{color:var(--xstorm-accent-blue);background:var(--xstorm-accent-blue-soft)}
.xstorm_page-map__item:nth-child(4) .xstorm_page-map__icon{color:var(--xstorm-accent-mint-strong);background:var(--xstorm-accent-mint)}
.xstorm_page-map__title{
  font-size:22px;
}
.xstorm_page-map__text{
  color:#4B586A;
  line-height:1.56;
}
.xstorm_document{
  border-color:rgba(24,32,51,.055);
  box-shadow:0 12px 34px rgba(24,32,51,.036);
}
.xstorm_document::before{
  content:"";
  width:4px;
  align-self:stretch;
  min-height:38px;
  border-radius:999px;
  background:var(--xstorm-accent-blue);
}
:is(.xstorm_template--company-hub-page,
.xstorm_template--history-mission-page,
.xstorm_template--production-page,
.xstorm_template--quality-certificates-page,
.xstorm_template--awards-archive-page,
.xstorm_template--team-page,
.xstorm_template--vacancies-archive-page,
.xstorm_template--vacancy-detail-page,
.xstorm_template--knowledge-base-page,
.xstorm_template--tea-knowledge-archive-page,
.xstorm_template--coffee-knowledge-archive-page,
.xstorm_template--video-media-archive-page,
.xstorm_template--news-archive-page) .xstorm_page-hero{
  background:linear-gradient(180deg,#FFFFFF 0%,#FBFCF9 72%,#EEF6F1 100%);
}
:is(.xstorm_template--company-hub-page,
.xstorm_template--history-mission-page,
.xstorm_template--production-page,
.xstorm_template--quality-certificates-page,
.xstorm_template--awards-archive-page,
.xstorm_template--team-page,
.xstorm_template--vacancies-archive-page,
.xstorm_template--vacancy-detail-page,
.xstorm_template--knowledge-base-page,
.xstorm_template--tea-knowledge-archive-page,
.xstorm_template--coffee-knowledge-archive-page,
.xstorm_template--video-media-archive-page,
.xstorm_template--news-archive-page) .xstorm_section{
  padding:70px 0;
}
:is(.xstorm_template--company-hub-page,
.xstorm_template--history-mission-page,
.xstorm_template--production-page,
.xstorm_template--quality-certificates-page,
.xstorm_template--awards-archive-page,
.xstorm_template--team-page,
.xstorm_template--knowledge-base-page,
.xstorm_template--news-archive-page) :is(.xstorm_card,.xstorm_image-card,.xstorm_sidebar-card){
  border-color:rgba(24,32,51,.055);
  box-shadow:0 18px 54px rgba(24,32,51,.045);
}
:is(.xstorm_template--company-hub-page,
.xstorm_template--history-mission-page,
.xstorm_template--production-page,
.xstorm_template--quality-certificates-page,
.xstorm_template--awards-archive-page,
.xstorm_template--team-page,
.xstorm_template--knowledge-base-page,
.xstorm_template--news-archive-page) .xstorm_card:nth-child(3n+2){
  background:linear-gradient(180deg,#FFFFFF 0%,#FCF8EF 100%);
}
:is(.xstorm_template--company-hub-page,
.xstorm_template--history-mission-page,
.xstorm_template--production-page,
.xstorm_template--quality-certificates-page,
.xstorm_template--awards-archive-page,
.xstorm_template--team-page,
.xstorm_template--knowledge-base-page,
.xstorm_template--news-archive-page) .xstorm_card:nth-child(3n+3){
  background:linear-gradient(180deg,#FFFFFF 0%,#F2F8FA 100%);
}
:is(.xstorm_template--article-detail-page,
.xstorm_template--news-detail-page) .xstorm_section{
  padding:72px 0;
}
:is(.xstorm_template--article-detail-page,
.xstorm_template--news-detail-page) .xstorm_article{
  padding:44px;
  border-color:rgba(24,32,51,.055);
  box-shadow:0 22px 68px rgba(24,32,51,.055);
}
:is(.xstorm_template--article-detail-page,
.xstorm_template--news-detail-page) .xstorm_article p{
  max-width:78ch;
}
:is(.xstorm_template--article-detail-page,
.xstorm_template--news-detail-page) .xstorm_quote{
  border-left-color:var(--xstorm-accent-gold);
  background:linear-gradient(90deg,var(--xstorm-accent-gold-soft) 0%,#FFFFFF 100%);
  color:#2C3544;
}
:is(.xstorm_template--article-detail-page,
.xstorm_template--news-detail-page) .xstorm_sidebar-card{
  border-color:rgba(24,32,51,.055);
  border-top:3px solid var(--xstorm-accent-blue);
  box-shadow:0 16px 48px rgba(24,32,51,.045);
}
:is(.xstorm_template--article-detail-page,
.xstorm_template--news-detail-page) .xstorm_sidebar-card:nth-child(2n){
  border-top-color:var(--xstorm-accent-gold);
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) .xstorm_page-hero{
  background:linear-gradient(180deg,#FFFFFF 0%,#F9FBF7 66%,#F8F1E4 100%);
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) .xstorm_generic-intro-section{
  padding-top:40px;
  padding-bottom:52px;
  background:linear-gradient(180deg,#FFFFFF 0%,#F7FAF8 100%);
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) .xstorm_section{
  padding:74px 0;
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) :is(.xstorm_card,.xstorm_image-card){
  border-color:rgba(24,32,51,.055);
  box-shadow:0 18px 54px rgba(24,32,51,.045);
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) .xstorm_image-card__media{
  background:linear-gradient(135deg,#F2F8FA 0%,#F8F1E4 100%);
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) .xstorm_card:nth-child(3n+2){
  border-top:3px solid var(--xstorm-accent-gold);
}
:is(.xstorm_template--business-directions-page,
.xstorm_template--retail-tea-coffee-shops-page,
.xstorm_template--chain-retail-page,
.xstorm_template--wholesale-tea-page,
.xstorm_template--wholesale-coffee-page,
.xstorm_template--tea-card-for-restaurants-page,
.xstorm_template--private-label-tea-page,
.xstorm_template--private-label-coffee-page,
.xstorm_template--private-label-packaging-page,
.xstorm_template--private-label-cases-page) .xstorm_card:nth-child(3n+3){
  border-top:3px solid var(--xstorm-accent-blue);
}
.xstorm_template--private-label-landing-page .xstorm_page-hero{
  background:linear-gradient(180deg,#FFFFFF 0%,#F9FBF7 66%,#F8F1E4 100%);
}
.xstorm_template--private-label-landing-page .xstorm_generic-intro-section{
  padding-top:40px;
  padding-bottom:52px;
  background:linear-gradient(180deg,#FFFFFF 0%,#F7FAF8 100%);
}
.xstorm_template--private-label-landing-page .xstorm_section{
  padding:74px 0;
}
.xstorm_template--private-label-landing-page :is(.xstorm_card,.xstorm_image-card){
  border-color:rgba(24,32,51,.055);
  box-shadow:0 18px 54px rgba(24,32,51,.045);
}
.xstorm_template--private-label-landing-page .xstorm_image-card__media{
  background:linear-gradient(135deg,#F2F8FA 0%,#F8F1E4 100%);
}
.xstorm_template--private-label-landing-page .xstorm_card:nth-child(3n+2){
  border-top:3px solid var(--xstorm-accent-gold);
}
.xstorm_template--private-label-landing-page .xstorm_card:nth-child(3n+3){
  border-top:3px solid var(--xstorm-accent-blue);
}
@media (max-width:1199px){
  .xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item:nth-child(2n){
    border-right:0;
  }
  :is(.xstorm_template--company-hub-page,
  .xstorm_template--history-mission-page,
  .xstorm_template--production-page,
  .xstorm_template--quality-certificates-page,
  .xstorm_template--awards-archive-page,
  .xstorm_template--team-page,
  .xstorm_template--knowledge-base-page,
  .xstorm_template--news-archive-page,
  .xstorm_template--business-directions-page,
  .xstorm_template--retail-tea-coffee-shops-page,
  .xstorm_template--chain-retail-page,
  .xstorm_template--wholesale-tea-page,
  .xstorm_template--wholesale-coffee-page,
  .xstorm_template--tea-card-for-restaurants-page,
  .xstorm_template--private-label-tea-page,
  .xstorm_template--private-label-coffee-page,
  .xstorm_template--private-label-packaging-page,
  .xstorm_template--private-label-cases-page) .xstorm_section{
    padding:58px 0;
  }
}
@media (max-width:767px){
  .xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__grid{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding-top:12px;
    padding-bottom:12px;
    scrollbar-width:none;
  }
  .xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__grid::-webkit-scrollbar{display:none}
  .xstorm_service-strip[data-xstorm-service-strip] .xstorm_service-strip__item{
    flex:0 0 min(82vw,320px);
    min-height:68px;
    padding:14px;
    border:1px solid rgba(24,32,51,.045);
    border-radius:14px;
    background:rgba(255,255,255,.72);
  }
  .xstorm_generic-intro-section{
    padding-top:26px;
    padding-bottom:38px;
  }
  .xstorm_page-map__item{
    padding:20px;
  }
  :is(.xstorm_template--article-detail-page,
  .xstorm_template--news-detail-page) .xstorm_article{
    padding:24px;
  }
  :is(.xstorm_template--article-detail-page,
  .xstorm_template--news-detail-page) .xstorm_section{
    padding:50px 0;
  }
}

/* 76. Lead UX and conversion form pass */
.xstorm_form__intro{
  margin:8px 0 18px;
  color:#4E5C6F;
  font-size:15px;
  line-height:1.56;
}
.xstorm_form-draft{
  display:grid;
  gap:14px;
  margin:0 0 20px;
  padding:16px;
  border:1px solid rgba(24,32,51,.055);
  border-radius:16px;
  background:linear-gradient(180deg,#F8FAF5 0%,#FFFFFF 100%);
}
.xstorm_form-draft__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.xstorm_form-draft__grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0;
}
.xstorm_form-draft__grid div{
  min-width:0;
  padding:11px 12px;
  border:1px solid rgba(24,32,51,.045);
  border-radius:12px;
  background:#fff;
}
.xstorm_form-draft__grid dt{
  margin:0 0 4px;
  color:#697589;
  font-size:11px;
  font-weight:900;
  line-height:1.2;
  text-transform:uppercase;
}
.xstorm_form-draft__grid dd{
  margin:0;
  color:#243043;
  font-size:14px;
  font-weight:760;
  line-height:1.3;
  overflow-wrap:anywhere;
}
.xstorm_form-draft__steps{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.xstorm_form-draft__steps span{
  min-height:30px;
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border:1px solid rgba(23,60,22,.1);
  border-radius:999px;
  background:#fff;
  color:#405069;
  font-size:12px;
  font-weight:800;
  line-height:1.2;
}
.xstorm_status-pill{
  color:#374151;
}
.xstorm_status-pill.is-loading{
  background:#FFF3CF;
  color:#493400;
}
.xstorm_status-pill.is-disabled{
  background:#EEF2F7;
  color:#3F4A5A;
}
.xstorm_form__success[data-xstorm-form-confirmation]{
  display:none;
  gap:4px;
  font-weight:700;
}
.xstorm_form.is-success .xstorm_form__success[data-xstorm-form-confirmation]{
  display:grid;
}
.xstorm_form__success[data-xstorm-form-confirmation] b{
  color:var(--xstorm-ref-green);
}
.xstorm_form__success[data-xstorm-form-confirmation] span{
  color:#405069;
  font-size:14px;
  font-weight:650;
  line-height:1.48;
}
.xstorm_form__handoff{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
@media (max-width:767px){
  .xstorm_form-draft{
    padding:14px;
  }
  .xstorm_form-draft__head{
    align-items:flex-start;
    flex-direction:column;
  }
  .xstorm_form-draft__grid{
    grid-template-columns:1fr;
  }
  .xstorm_form__handoff{
    display:grid;
  }
}
@media (prefers-reduced-motion:reduce){
  .xstorm_form-draft,
  .xstorm_form-draft__steps span{
    transition:none;
  }
}

/* 77. Visual refinement and workspace rhythm batch24 */
:is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero{
  background:
    linear-gradient(180deg,#FFFFFF 0%,#FBFCF8 72%,#F6F7F1 100%);
}
:is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero__grid{
  grid-template-columns:minmax(0,.86fr) minmax(500px,1.14fr);
  gap:70px;
}
:is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero__title{
  max-width:640px;
}
:is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero__media{
  min-height:390px;
  border:1px solid rgba(24,32,51,.055);
  border-radius:22px;
  box-shadow:0 30px 90px rgba(24,32,51,.08);
  background:
    radial-gradient(circle at 72% 34%,rgba(31,91,45,.12),transparent 34%),
    linear-gradient(180deg,#F8F6EF 0%,#E8E2D5 100%);
}
:is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_section--white{
  background:linear-gradient(180deg,#FFFFFF 0%,#F7F8F2 100%);
}
.xstorm_template--ai-assistant-page .xstorm_ai-assistant{
  gap:24px;
  align-items:start;
  padding:16px;
  border:1px solid rgba(24,32,51,.065);
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(239,245,234,.96) 0%,rgba(255,255,255,.94) 46%,rgba(245,241,230,.88) 100%);
  box-shadow:0 30px 96px rgba(24,32,51,.09);
}
.xstorm_template--ai-assistant-page .xstorm_ai-assistant__panel,
.xstorm_template--ai-assistant-page .xstorm_lead-draft{
  border-color:rgba(24,32,51,.07);
  box-shadow:0 14px 42px rgba(24,32,51,.055);
}
.xstorm_template--ai-assistant-page .xstorm_ai-assistant__panel{
  grid-template-rows:auto auto auto;
  min-height:0;
}
.xstorm_template--ai-assistant-page .xstorm_ai-assistant__messages{
  min-height:270px;
  background:
    linear-gradient(180deg,rgba(255,255,255,.74),rgba(247,248,245,.92)),
    repeating-linear-gradient(0deg,rgba(23,60,22,.032) 0 1px,transparent 1px 28px);
}
.xstorm_template--ai-assistant-page .xstorm_lead-draft__grid div,
.xstorm_template--client-dashboard-page .xstorm_dashboard__metric,
.xstorm_template--client-dashboard-page .xstorm_dashboard__panel{
  background:linear-gradient(180deg,#FFFFFF 0%,#FBFCF8 100%);
}
.xstorm_template--client-dashboard-page .xstorm_client-dashboard{
  grid-template-columns:250px minmax(0,1fr);
  border-color:rgba(24,32,51,.065);
  border-radius:28px;
  background:linear-gradient(135deg,#F4F7EF 0%,#FFFFFF 52%,#F6F1E5 100%);
  box-shadow:0 30px 96px rgba(24,32,51,.09);
}
.xstorm_template--client-dashboard-page .xstorm_dashboard__rail{
  padding:22px;
  background:linear-gradient(180deg,#F0F5EA 0%,#FFFFFF 100%);
}
.xstorm_template--client-dashboard-page .xstorm_dashboard__workspace{
  padding:24px;
}
.xstorm_template--client-dashboard-page .xstorm_dashboard__summary{
  gap:14px;
  margin-bottom:18px;
}
.xstorm_template--client-dashboard-page .xstorm_dashboard__metric{
  border-color:rgba(24,32,51,.065);
  box-shadow:0 12px 34px rgba(24,32,51,.045);
}
.xstorm_template--client-dashboard-page .xstorm_dashboard__timeline-item{
  background:#fff;
  border-color:rgba(24,32,51,.06);
  box-shadow:0 10px 28px rgba(24,32,51,.035);
}
.xstorm_product-layout{
  gap:36px;
}
.xstorm_product-layout .xstorm_filters--catalog{
  border-radius:22px;
  border-color:rgba(24,32,51,.055);
  background:
    linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(248,250,245,.98) 100%);
  box-shadow:0 20px 56px rgba(24,32,51,.06);
}
.xstorm_catalog-toolbar{
  border-radius:22px;
  border-color:rgba(24,32,51,.055);
  background:rgba(255,255,255,.88);
  box-shadow:0 22px 62px rgba(24,32,51,.07);
}
.xstorm_catalog-toolbar__summary b{
  letter-spacing:0;
}
.xstorm_product-layout .xstorm_product-grid--3{
  gap:24px;
}
.xstorm_product-layout .xstorm_product-grid--4{
  gap:20px;
}
.xstorm_product-card[data-xstorm-archive-card]{
  border-color:rgba(24,32,51,.055);
  background:linear-gradient(180deg,#FFFFFF 0%,#FEFFFC 100%);
}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__media{
  background:
    radial-gradient(circle at 64% 36%,rgba(23,60,22,.08),transparent 33%),
    #F3EFE5;
}
.xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__price{
  border-color:rgba(23,60,22,.095);
  background:linear-gradient(180deg,#F8FCF5 0%,#FFFFFF 100%);
}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__actions{
  grid-template-columns:1fr;
  align-items:stretch;
}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__request{
  width:100%;
  min-width:0;
  white-space:normal;
  line-height:1.18;
}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__tools{
  justify-content:flex-start;
}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card]{
  box-shadow:0 20px 58px rgba(24,32,51,.055);
}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__request{
  min-height:48px;
}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card] .xstorm_product-card__body{
  align-items:center;
}
@media (min-width:1024px){
  .xstorm_product-layout .xstorm_filters--catalog{
    top:126px;
  }
  .xstorm_catalog-toolbar{
    position:sticky;
    top:102px;
    z-index:12;
    backdrop-filter:blur(12px);
  }
}
@media (max-width:1023px){
  :is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero__grid{
    grid-template-columns:1fr;
    gap:38px;
  }
  :is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero__media{
    min-height:300px;
  }
  .xstorm_template--ai-assistant-page .xstorm_ai-assistant,
  .xstorm_template--client-dashboard-page .xstorm_client-dashboard{
    border-radius:24px;
  }
  .xstorm_template--client-dashboard-page .xstorm_client-dashboard{
    grid-template-columns:1fr;
  }
}
@media (max-width:767px){
  :is(.xstorm_template--ai-assistant-page,.xstorm_template--client-dashboard-page) .xstorm_page-hero__media{
    min-height:230px;
    border-radius:18px;
  }
  .xstorm_template--ai-assistant-page .xstorm_ai-assistant,
  .xstorm_template--client-dashboard-page .xstorm_client-dashboard{
    padding:10px;
    border-radius:22px;
  }
  .xstorm_template--ai-assistant-page .xstorm_ai-assistant__messages{
    min-height:220px;
  }
  .xstorm_template--client-dashboard-page .xstorm_dashboard__workspace{
    padding:16px;
  }
  .xstorm_catalog-toolbar{
    border-radius:18px;
  }
  .xstorm_product-layout{
    gap:22px;
  }
}
@media (prefers-reduced-motion:reduce){
  .xstorm_template--client-dashboard-page .xstorm_dashboard__timeline-item,
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-archive-card]{
    transition:none;
  }
}

/* 78. Component preview and page-map cleanup batch25 */
.xstorm_template--component-preview-page{
  background:linear-gradient(180deg,#FFFFFF 0%,#F6F8F1 100%);
}
.xstorm_component-preview{
  min-height:100vh;
  padding-top:44px;
  padding-bottom:58px;
}
.xstorm_component-preview__container{
  display:grid;
  gap:24px;
}
.xstorm_component-preview__head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
}
.xstorm_component-preview__title{
  margin:10px 0 8px;
  color:var(--xstorm-ref-text);
  font-family:var(--xstorm-ref-display);
  font-size:40px;
  line-height:1.06;
}
.xstorm_component-preview__text{
  max-width:720px;
  margin:0;
  color:#536174;
  font-size:18px;
  line-height:1.52;
}
.xstorm_component-preview__meta{
  display:grid;
  justify-items:end;
  gap:10px;
  color:#536174;
}
.xstorm_component-preview__meta code{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  border:1px solid rgba(24,32,51,.075);
  border-radius:999px;
  padding:6px 12px;
  background:#FFFFFF;
  color:var(--xstorm-ref-green);
  font-weight:800;
}
.xstorm_component-preview__surface{
  min-width:0;
  padding:18px;
  border:1px solid rgba(24,32,51,.07);
  border-radius:24px;
  background:linear-gradient(180deg,rgba(255,255,255,.96) 0%,rgba(250,252,247,.98) 100%);
  box-shadow:0 24px 78px rgba(24,32,51,.075);
  overflow:visible;
}
.xstorm_component-preview__content{
  min-width:0;
}
.xstorm_component-preview__content>.xstorm_header{
  position:relative;
  top:auto;
  z-index:1;
  border-radius:18px;
  overflow:visible;
}
.xstorm_component-preview__content>.xstorm_footer,
.xstorm_component-preview__content>.xstorm_hero,
.xstorm_component-preview__content>.xstorm_section,
.xstorm_component-preview__content>.xstorm_cta{
  border-radius:18px;
  overflow:hidden;
}
.xstorm_component-preview__content>.xstorm_modal[hidden]{
  display:block;
  position:relative;
  inset:auto;
  opacity:1;
  pointer-events:auto;
}
.xstorm_component-preview__content>.xstorm_modal[hidden] .xstorm_modal__backdrop{
  display:none;
}
.xstorm_component-preview__content>.xstorm_modal[hidden] .xstorm_modal__dialog{
  transform:none;
}
.xstorm_template--component-preview-page .xstorm_component-preview__content>.xstorm_filters--catalog[data-xstorm-filter-panel]{
  position:relative;
  left:auto;
  right:auto;
  bottom:auto;
  top:auto;
  z-index:auto;
  max-height:none;
  overflow:visible;
  transform:none;
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}
.xstorm_template--component-preview-page .xstorm_component-preview__content>.xstorm_filters--catalog .xstorm_filters__close{
  display:none;
}
.xstorm_page-map__label{
  width:max-content;
  display:inline-flex;
  align-items:center;
  min-height:28px;
  border-radius:999px;
  padding:5px 10px;
  background:rgba(23,60,22,.06);
  color:#586474;
  font-size:13px;
  font-weight:780;
  text-transform:none;
}
.xstorm_page-map__title{
  font-family:var(--xstorm-ref-display);
  font-size:23px;
  line-height:1.12;
}
.xstorm_page-map__link{
  display:inline-flex;
  align-items:center;
  width:max-content;
  min-height:34px;
  border-radius:999px;
  padding:6px 0;
  text-decoration:none;
}
.xstorm_page-map__link:hover,
.xstorm_page-map__link:focus-visible{
  color:#0D4A25;
  text-decoration:underline;
  text-underline-offset:4px;
}
@media (max-width:767px){
  .xstorm_component-preview{
    padding-top:26px;
    padding-bottom:36px;
  }
  .xstorm_component-preview__head{
    display:grid;
    gap:16px;
  }
  .xstorm_component-preview__title{
    font-size:31px;
  }
  .xstorm_component-preview__text{
    font-size:16px;
  }
  .xstorm_component-preview__meta{
    justify-items:start;
  }
  .xstorm_component-preview__surface{
    padding:12px;
    border-radius:20px;
  }
  .xstorm_page-map__title{
    font-size:21px;
  }
}

/* 79. Catalog data handoff batch26 */
.xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__price{
  gap:3px;
}
.xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__price small{
  display:block;
  color:#687487;
  font-size:11px;
  line-height:1.2;
  font-weight:750;
}
.xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__specs{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:5px 9px;
  font-size:12px;
  line-height:1.28;
}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__specs{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__text{
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__price{
  display:block;
  min-height:34px;
  padding:8px 10px;
  line-height:1.16;
}
.xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__price small{
  display:inline-block;
  margin-left:4px;
}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__body{
  padding:14px;
  gap:9px;
  min-height:220px;
}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__specs{
  gap:4px 7px;
  font-size:11px;
  line-height:1.22;
}
.xstorm_product-grid--4 .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__price{
  padding:7px 9px;
}
.xstorm_product-grid--list .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__body{
  gap:16px;
  padding:16px;
}
@media (max-width:1023px){
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__specs{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__body{
    padding:14px;
    gap:10px;
  }
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__media{
    min-height:170px;
  }
}
@media (max-width:767px){
  .xstorm_product-grid--list .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__specs{
    grid-template-columns:1fr;
  }
  .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__specs{
    grid-template-columns:1fr;
  }
  .xstorm_product-card[data-xstorm-catalog-handoff] .xstorm_product-card__body{
    padding:14px;
    gap:8px;
  }
}

/* 80. Brand media placeholders batch27 */
.xstorm_header__logo--image{
  width:96px;
  height:66px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
  overflow:visible;
}
.xstorm_header__logo--image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
}
.xstorm_header__brand{
  min-width:298px;
}
.xstorm_header__brand-name{
  max-width:190px;
  line-height:1.08;
}
.xstorm_header__brand-subtitle{
  color:#697487;
}
.xstorm_footer .xstorm_header__brand{
  min-width:0;
  align-items:center;
}
.xstorm_footer .xstorm_header__logo--image{
  width:112px;
  height:78px;
}
.xstorm_footer .xstorm_header__brand-name{
  max-width:210px;
}
@media (max-width:1199px){
  .xstorm_header__brand{
    min-width:230px;
  }
  .xstorm_header__logo--image{
    width:78px;
    height:54px;
  }
  .xstorm_header__brand-name{
    max-width:166px;
    font-size:15px;
  }
}
@media (max-width:767px){
  .xstorm_header__brand{
    min-width:0;
  }
  .xstorm_header__logo--image{
    width:72px;
    height:50px;
  }
  .xstorm_footer .xstorm_header__brand-text{
    display:grid;
  }
}

/* 81. Media art-direction batch28 */
.xstorm_visual-image__img[src*="tea-fenix-banner"],
.xstorm_visual-image__img[src*="tea-wild-forest-banner"],
.xstorm_visual-image__img[src*="tea-taiga-banner"],
.xstorm_visual-image__img[src*="tea-sea-buckthorn-banner"]{
  object-position:center 48%;
}
.xstorm_visual-image__img[src*="news-"]{
  object-position:center 36%;
}
.xstorm_visual-image__img[src*="packaging-tea-bag"],
.xstorm_visual-image__img[src*="gift-bag-"]{
  object-position:center 44%;
}
.xstorm_visual-image__img[src*="catalog-2026-cover"]{
  object-position:center 28%;
}
.xstorm_page-hero__media .xstorm_visual-image__img[src*="news-"],
.xstorm_page-hero__media .xstorm_visual-image__img[src*="packaging-tea-bag"],
.xstorm_page-hero__media .xstorm_visual-image__img[src*="catalog-2026-cover"]{
  object-position:center 32%;
}
.xstorm_product-card__media .xstorm_visual-image__img[src*="packaging-tea-bag"],
.xstorm_product-card__media .xstorm_visual-image__img[src*="gift-bag-"],
.xstorm_image-card__media .xstorm_visual-image__img[src*="news-"],
.xstorm_image-card__media .xstorm_visual-image__img[src*="catalog-2026-cover"]{
  transform:scale(1.02);
}
@media (max-width:767px){
  .xstorm_visual-image__img[src*="news-"],
  .xstorm_visual-image__img[src*="packaging-tea-bag"],
  .xstorm_visual-image__img[src*="gift-bag-"],
  .xstorm_visual-image__img[src*="catalog-2026-cover"]{
    object-position:center 40%;
  }
}
