.site-header .header-right{gap:10px!important;flex-wrap:nowrap!important;min-width:0}
.header-right .phone-pill{order:1!important}
.header-right .header-search{order:2!important}
.header-right .header-social{order:3!important}
.header-right .currency-switch{order:4!important}
.header-right .header-icon-link--login{order:5!important}
.header-right .header-icon-link--compare{order:6!important}
.header-right .header-icon-link--wishlist{order:7!important}
.header-right .header-icon-link--cart{order:8!important}
.header-right .header-order{display:none!important}


:root{
  --cta-green:#00C764;
  --cta-green-dark:#00A251;
  --cta-green-hover:#08cf6a;
  --cta-green-surface:#effcf5;
  --cta-radius:8px;
  --cta-height:52px;
  --cta-font-size:18px;
  --cta-font-weight:800;
  --cta-inset-shadow:0 -3px 0 var(--cta-green-dark) inset;
  --cta-ease:.2s ease;
}

.btn--primary,
.btn--ghost,
.btn-primary,
.btn-ghost,
.btn-dark,
button.btn,
a.btn,
input[type="submit"].btn{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.55rem;
  min-width:3cm;
  min-height:var(--cta-height);
  padding:0 18px;
  border-radius:var(--cta-radius);
  border:1px solid transparent;
  font-size:var(--cta-font-size);
  font-weight:var(--cta-font-weight);
  line-height:1;
  text-decoration:none;
  cursor:pointer;
  transition:background-color var(--cta-ease),border-color var(--cta-ease),color var(--cta-ease),transform var(--cta-ease),box-shadow var(--cta-ease),filter var(--cta-ease),opacity var(--cta-ease);
}

.btn-block{
  width:100%;
  min-width:0;
}

.btn--sm{
  min-height:44px;
  min-width:auto;
  padding:0 14px;
  font-size:15px;
  border-radius:8px;
}

.btn--primary,
.btn-primary,
.btn-dark,
.product-buy-btn,
.search-form .btn[type="submit"],
.site-form__actions .btn--primary{
  background:var(--cta-green) !important;
  border-color:var(--cta-green) !important;
  color:#fff !important;
  box-shadow:var(--cta-inset-shadow);
}

.btn--primary:hover,
.btn-primary:hover,
.btn-dark:hover,
.product-buy-btn:hover,
.search-form .btn[type="submit"]:hover,
.site-form__actions .btn--primary:hover{
  background:var(--cta-green-hover) !important;
  border-color:var(--cta-green-hover) !important;
  color:#fff !important;
  transform:translateY(-1px);
  box-shadow:0 -3px 0 var(--cta-green-dark) inset, 0 10px 20px rgba(0,167,84,.18);
}

.btn--primary:active,
.btn-primary:active,
.btn-dark:active,
.product-buy-btn:active,
.search-form .btn[type="submit"]:active,
.site-form__actions .btn--primary:active{
  transform:translateY(1px);
  box-shadow:0 -1px 0 var(--cta-green-dark) inset;
}

.btn--ghost,
.btn-ghost{
  background:#fff !important;
  color:var(--cta-green-dark) !important;
  border-color:rgba(0,167,84,.22) !important;
  box-shadow:0 8px 18px rgba(15,23,42,.05);
}

.btn--ghost:hover,
.btn-ghost:hover{
  background:var(--cta-green-surface) !important;
  color:var(--cta-green-dark) !important;
  border-color:rgba(0,167,84,.34) !important;
  transform:translateY(-1px);
}

.btn[disabled],
button.btn:disabled,
input[type="submit"].btn:disabled{
  cursor:wait;
  opacity:.92;
}

.btn.is-loading,
button.btn.is-loading,
input[type="submit"].btn.is-loading,
.product-buy-btn.is-loading{
  pointer-events:none;
  color:transparent !important;
}

.btn.is-loading > *,
.product-buy-btn.is-loading > *{
  opacity:0 !important;
}

.btn.is-loading::after,
.product-buy-btn.is-loading::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:36px;
  height:10px;
  border-radius:999px;
  transform:translate(-50%,-50%);
  background:repeating-linear-gradient(90deg, rgba(255,255,255,.98) 0 4px, rgba(255,255,255,.18) 4px 8px);
  background-size:36px 10px;
  animation:ctaLoader .75s linear infinite;
}

@keyframes ctaLoader{
  from{background-position:0 0}
  to{background-position:36px 0}
}


.btn--ghost.is-loading::after,
.btn-ghost.is-loading::after{
  background:repeating-linear-gradient(90deg, var(--cta-green) 0 4px, rgba(0,167,84,.16) 4px 8px);
}

.header-icon-link--login.is-signed{background:#eef6ff;border-color:rgba(0,102,204,.24);color:#0066cc}
.header-icon-link--cart{position:relative}
.header-icon-link__count[hidden],.header-cart-badge[hidden]{display:none!important}
.header-cart-badge{display:inline-flex;align-items:center;justify-content:center}

.auth-modal__dialog{width:min(460px,calc(100vw - 28px));padding:28px 28px 24px;border-radius:28px;box-shadow:0 28px 70px rgba(15,23,42,.18)}
.auth-modal__lead{margin:10px 0 0;line-height:1.6}
.auth-form{display:grid;gap:14px;margin-top:18px}
.auth-form__input{width:100%;border:1px solid rgba(15,23,42,.12);border-radius:16px;background:#fff;padding:14px 16px;font:inherit}
.auth-form__input:focus{outline:none;border-color:rgba(0,102,204,.44);box-shadow:0 0 0 4px rgba(0,102,204,.08)}
.auth-form__input--code{font-size:1.2rem;letter-spacing:.28em;text-align:center;font-weight:800}
.auth-form__actions{display:flex;justify-content:flex-start}
.auth-form__message{margin:0}
.auth-form__helper{margin:2px 0 0;color:#64748b;font-size:.92rem;line-height:1.6}

.cart-popover__dialog{width:min(640px,calc(100vw - 28px));padding:26px;border-radius:28px;box-shadow:0 30px 72px rgba(15,23,42,.18)}
.cart-popover__item{display:grid;grid-template-columns:108px minmax(0,1fr);gap:18px;align-items:start;margin-top:8px;padding:18px;border-radius:22px;background:#f8fafc;border:1px solid rgba(15,23,42,.08)}
.cart-popover__item-media{display:block;width:108px;height:108px;border-radius:18px;overflow:hidden;background:#fff;border:1px solid rgba(15,23,42,.08)}
.cart-popover__item-media img{width:100%;height:100%;object-fit:contain}
.cart-popover__item-body{display:grid;gap:10px;min-width:0;align-content:start}
.cart-popover__item-title{display:block;font-weight:800;line-height:1.4;text-decoration:none;color:#0f172a}
.cart-popover__item-meta{display:grid;gap:4px;justify-items:start}
.cart-popover__item-price{color:#111827;font-size:1.1rem;font-weight:900;white-space:nowrap}
.cart-popover__item-note{color:#64748b;font-size:.92rem}
.cart-popover__qty{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center;padding:16px 18px;border-radius:20px;background:#fff;border:1px solid rgba(15,23,42,.08);margin-top:18px}
.cart-popover__qty-label{font-weight:800;color:#0f172a}
.qty-stepper{display:inline-flex;align-items:center;gap:8px}
.qty-stepper__btn{width:40px;height:40px;border-radius:999px;border:1px solid rgba(15,23,42,.12);background:#fff;font-size:24px;line-height:1;cursor:pointer;transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease,color .18s ease}
.qty-stepper__btn:hover{transform:translateY(-1px);box-shadow:0 8px 16px rgba(15,23,42,.08)}
.qty-stepper__btn--minus{color:#8a94a6;background:#f4f6f8;border-color:rgba(148,163,184,.28)}
.qty-stepper__btn--plus{color:#516b85;background:#eef5fb;border-color:rgba(81,107,133,.2)}
.qty-stepper__input{width:72px;min-width:4.5ch;padding:0 10px;height:40px;border:1px solid rgba(15,23,42,.12);border-radius:14px;text-align:center;font-weight:800;font-variant-numeric:tabular-nums;background:#f8fafc}
.cart-popover__footer{display:grid;gap:16px;margin-top:18px;padding:18px;border-radius:22px;background:#fff;border:1px solid rgba(15,23,42,.08)}
.cart-popover__total{display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:1rem}
.cart-popover__total span{color:#64748b}
.cart-popover__total strong{font-size:1.55rem;line-height:1.05;color:#0f172a}
.cart-popover__actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
.cart-popover__actions .btn{min-width:max(3cm,156px);width:100%;justify-content:center}

.product-price-card--inline{display:flex;align-items:center;justify-content:center;min-width:0}
.product-commerce-line{display:grid;justify-items:center;align-content:start;gap:18px;margin-top:18px;width:100%}
.product-commerce-line__actions{display:flex;align-items:center;justify-content:center;gap:10px;flex-wrap:wrap;width:100%;margin-inline:auto}
.product-buy-form--inline{display:flex;justify-content:center;align-items:center;width:auto;margin:0 auto}
.product-buy-btn{display:inline-flex!important;align-items:center;justify-content:center;gap:8px;min-width:3cm;width:auto;height:52px;padding:0 20px!important;border-radius:8px;font-weight:800}
.product-buy-btn:hover{transform:translateY(-1px)}
.product-buy-btn__icon{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;color:#fff}
.product-buy-btn__icon svg{display:block;width:18px;height:18px;stroke:currentColor}
.product-utility-actions--inline{display:flex!important;justify-content:center;align-items:center;gap:10px!important;margin:0 auto!important;width:auto}
.product-utility-actions--inline .product-utility-btn{width:50px;height:50px;border-radius:18px;border:1px solid rgba(15,23,42,.12);background:#fff;box-shadow:0 10px 22px rgba(15,23,42,.06)}
.product-sidebar__actions--commerce{display:grid;gap:12px;justify-items:center;width:100%}
.product-summary-card,.product-sidebar__inner--minimal{display:grid;justify-items:center}
.product-summary-card__note{margin-top:12px;text-align:center;max-width:280px}
.btn--metric{min-width:3cm;width:auto;justify-content:center}
.product-card--linkable{cursor:pointer}
.product-card--linkable:focus-visible{outline:2px solid #111827;outline-offset:3px}
.product-cart-message{min-height:0;text-align:center;width:100%}
.product-cart-message:empty{display:none}
.footer-cities--concise .footer-cities__list{max-width:980px;margin:8px auto 0;color:#5b6574;line-height:1.65}

.home-coverage{padding-top:4px}
.home-coverage .panel{max-width:980px;margin:0 auto;padding:24px 28px;border-radius:24px}
.home-coverage h2{margin:0 0 8px}
.home-coverage p{margin:0;color:#4b5563;line-height:1.7}

@media (max-width:1180px){.phone-pill__text{display:none}.site-header .header-right{gap:8px!important}}
@media (max-width:980px){.site-header .header-right{gap:7px!important}.header-right .currency-switch{display:inline-flex;padding-inline:8px}.currency-switch__btn{font-size:.82rem}.cart-popover__actions{grid-template-columns:1fr}}
@media (max-width:720px){.cart-popover__dialog,.auth-modal__dialog{padding:22px}.cart-popover__item{grid-template-columns:84px minmax(0,1fr);padding:14px}.cart-popover__item-media{width:84px;height:84px}.cart-popover__qty{grid-template-columns:1fr;align-items:flex-start}.product-buy-form--inline{width:auto}.home-coverage .panel{padding:20px 18px}}
@media (max-width:640px){.cart-popover__actions .btn,.btn--metric{width:100%;min-width:0}.product-buy-btn{min-width:3cm}.product-utility-actions--inline .product-utility-btn{width:46px;height:46px}}


/* === v24 market refactor: Rozetka/MOYO structure + iLounge CTA === */
:root{
  --market-line:#e5e7eb;
  --market-line-strong:#d7dce2;
  --market-bg:#f5f7fa;
  --market-card:#ffffff;
  --market-shadow:0 14px 38px rgba(15,23,42,.07);
  --market-shadow-soft:0 8px 24px rgba(15,23,42,.05);
  --market-radius:24px;
  --market-radius-sm:18px;
}

body{background:#fff}
body[data-page="product"] .section.product-page,
body[data-page="checkout"] .section.checkout-page,
body[data-page="cart"] .section.cart-page{padding-top:22px}

.product-page--market .product-breadcrumbs-wrap{margin-bottom:18px}
.product-market-hero{display:grid;grid-template-columns:minmax(0,1.55fr) minmax(360px,.95fr);gap:28px;align-items:start}
.product-market-hero__buy{position:relative}
.product-buy-card{position:sticky;top:96px;padding:28px;border:1px solid var(--market-line);border-radius:var(--market-radius);background:var(--market-card);box-shadow:var(--market-shadow-soft);display:grid;gap:20px}
.product-buy-card__head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px}
.product-buy-card__availability-label{margin:0 0 8px;font-size:13px;font-weight:700;letter-spacing:.02em;text-transform:uppercase;color:#64748b}
.product-buy-card__code{font-size:13px;color:#94a3b8;white-space:nowrap;padding-top:2px}
.product-buy-card__title-wrap{display:grid;gap:10px}
.product-buy-card__title{margin:0;font-size:30px;line-height:1.18;font-weight:900;color:#0f172a}
.product-buy-card__lead{margin:0;color:#475569;line-height:1.65}
.product-buy-card__price-wrap{padding:20px 22px;border-radius:22px;background:#f8fafc;border:1px solid rgba(15,23,42,.06);display:grid;gap:8px}
.product-buy-card__price{font-size:38px;line-height:1.05;font-weight:900;color:#0f172a}
.product-buy-card__price-note{margin:0;color:#64748b;line-height:1.55}
.product-buy-card__actions-row{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:nowrap}
.product-buy-card__actions-row .product-buy-form{margin:0}
.product-buy-card__actions-row .product-buy-btn{min-width:max(3cm,196px)!important;padding:0 24px!important}
.product-buy-card__actions-row .product-utility-actions--inline{margin:0!important;display:flex!important;align-items:center;justify-content:flex-start;gap:12px!important;flex-wrap:nowrap}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn{width:52px;height:52px;border-radius:16px;border:1px solid var(--market-line-strong);box-shadow:none;background:#fff}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn:hover{background:#f8fafc;border-color:#cbd5e1}
.product-buy-card__service{display:grid;gap:14px;padding:18px 20px;border-radius:22px;background:#fff;border:1px solid var(--market-line)}
.product-buy-card__service-item{display:grid;gap:4px}
.product-buy-card__service-item strong{font-size:15px;color:#111827}
.product-buy-card__service-item span{font-size:14px;line-height:1.55;color:#64748b}
.product-buy-card__meta-actions{display:grid}
.product-buy-card .btn-datasheet{min-width:0}
.product-market-gallery{border:1px solid var(--market-line);border-radius:28px;background:#fff;box-shadow:var(--market-shadow-soft);padding:24px;display:flex;align-items:center;justify-content:center;min-height:560px}
.product-market-gallery__stage{display:flex;align-items:center;justify-content:center;width:100%;min-height:510px}
.product-market-gallery__image{display:block;max-width:min(720px,100%);max-height:520px;width:auto;height:auto;object-fit:contain}
.product-market-content{display:grid;gap:20px;margin-top:24px;max-width:860px}
.product-detail-card{padding:24px 28px;border:1px solid var(--market-line);border-radius:var(--market-radius);background:#fff;box-shadow:var(--market-shadow-soft)}
.product-detail-card h2{margin-top:0}
.product-specs-card .compare-table{border-collapse:collapse;width:100%}
.product-specs-card .compare-table th,.product-specs-card .compare-table td{padding:14px 16px;border-bottom:1px solid #edf1f5;vertical-align:top}
.product-specs-card .compare-table th{width:38%;background:#fafbfc;color:#475569;font-weight:700}
.product-related-wide{margin-top:28px}
.product-cart-message{min-height:20px;margin-top:-6px}
.product-summary-card__note{display:none}
.product-page--market .product-title-wide{display:none}

.btn--primary,
.btn-primary,
.btn-dark,
.product-buy-btn,
.search-form .btn[type="submit"],
.site-form__actions .btn--primary,
.checkout-summary-card__cta{
  background-color:#00C764!important;
  border-color:#00C764!important;
  box-shadow:0 -3px 0 #00A251 inset!important;
}
.btn--primary:hover,
.btn-primary:hover,
.btn-dark:hover,
.product-buy-btn:hover,
.search-form .btn[type="submit"]:hover,
.site-form__actions .btn--primary:hover,
.checkout-summary-card__cta:hover{
  background-color:#00C764!important;
  border-color:#00C764!important;
  box-shadow:0 -55px 0 #00A251 inset!important;
  transform:translateY(-1px);
}
.btn--primary:active,
.btn-primary:active,
.btn-dark:active,
.product-buy-btn:active,
.search-form .btn[type="submit"]:active,
.site-form__actions .btn--primary:active,
.checkout-summary-card__cta:active{
  transform:translateY(1px);
  box-shadow:0 -24px 0 #00A251 inset!important;
}

.cart-popover__dialog{width:min(760px,calc(100vw - 32px));padding:0;border-radius:26px;overflow:hidden}
.cart-popover__dialog h2{margin:0;padding:24px 28px;border-bottom:1px solid var(--market-line);font-size:34px;line-height:1.08}
.cart-popover__item{display:grid;grid-template-columns:132px minmax(0,1fr);gap:18px;align-items:center;margin:0;padding:24px 28px;background:#fff;border:0;border-radius:0}
.cart-popover__item-media{width:132px;height:132px;border-radius:18px;background:#f8fafc;border:1px solid var(--market-line);display:flex;align-items:center;justify-content:center;overflow:hidden}
.cart-popover__item-media img{width:100%;height:100%;object-fit:contain;padding:10px}
.cart-popover__item-body{gap:12px}
.cart-popover__item-title{font-size:22px;line-height:1.3}
.cart-popover__item-price{font-size:28px;font-weight:900;color:#111827}
.cart-popover__qty{margin:0 28px 0;padding:18px 0;border-top:1px solid var(--market-line);border-bottom:1px solid var(--market-line);border-radius:0;background:transparent;grid-template-columns:minmax(0,1fr) auto}
.cart-popover__qty-label{font-size:14px;color:#64748b;font-weight:700;text-transform:uppercase;letter-spacing:.02em}
.cart-popover__footer{margin:0;padding:24px 28px;background:#fff;border:0;border-radius:0;display:grid;gap:18px}
.cart-popover__total{align-items:end}
.cart-popover__total span{font-size:15px;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.02em}
.cart-popover__total strong{font-size:42px;line-height:1;color:#111827}
.cart-popover__actions{grid-template-columns:minmax(0,1fr) minmax(260px,320px);align-items:center}
.cart-popover__actions .btn{min-width:0}

.home-coverage .container{max-width:980px}
.home-coverage__content{display:grid;gap:8px;max-width:none;margin:0;padding:6px 0 0}
.home-coverage__content h2{margin:0;font-size:26px;line-height:1.18;color:#111827}
.home-coverage__content p{margin:0;max-width:none;color:#5b6574;line-height:1.65}

@media (max-width:1100px){
  .product-market-hero{grid-template-columns:1fr}
  .product-buy-card{position:relative;top:auto}
  .product-market-content{max-width:none}
}
@media (max-width:720px){
  .product-market-gallery{padding:18px;min-height:340px}
  .product-market-gallery__stage{min-height:300px}
  .product-buy-card{padding:20px;border-radius:22px}
  .product-buy-card__title{font-size:24px}
  .product-buy-card__price{font-size:30px}
  .product-buy-card__actions-row{flex-wrap:wrap}
  .product-buy-card__actions-row .product-buy-form{width:100%}
  .product-buy-card__actions-row .product-buy-btn{width:100%}
  .product-detail-card{padding:20px 18px;border-radius:22px}
  .cart-popover__dialog h2{padding:20px 20px 16px;font-size:28px}
  .cart-popover__item{grid-template-columns:1fr;padding:18px 20px}
  .cart-popover__item-media{width:104px;height:104px}
  .cart-popover__qty{margin:0 20px}
  .cart-popover__footer{padding:20px}
  .cart-popover__actions{grid-template-columns:1fr}
}

/* === v25 phase 2: Rozetka/MOYO structure + iLounge CTA polish === */
:root{
  --cta-green:#00C764;
  --cta-green-dark:#00A251;
}
.btn,
.btn--primary,
.btn-primary,
.btn-dark,
.product-buy-btn,
.checkout-summary-card__cta,
.cart-summary__actions .btn--primary,
.cart-popover__actions .btn--primary,
.auth-form__actions .btn--primary,
.search-form .btn[type="submit"]{
  background-image:none!important;
  background-color:var(--cta-green)!important;
  border-color:var(--cta-green)!important;
  color:#fff!important;
  box-shadow:0 -3px 0 var(--cta-green-dark) inset!important;
}
.btn--primary:hover,
.btn-primary:hover,
.btn-dark:hover,
.product-buy-btn:hover,
.checkout-summary-card__cta:hover,
.cart-summary__actions .btn--primary:hover,
.cart-popover__actions .btn--primary:hover,
.auth-form__actions .btn--primary:hover,
.search-form .btn[type="submit"]:hover{
  background-color:var(--cta-green)!important;
  border-color:var(--cta-green)!important;
  color:#fff!important;
  box-shadow:0 -52px 0 var(--cta-green-dark) inset!important;
  transform:translateY(-1px);
}
.btn--primary:active,
.btn-primary:active,
.btn-dark:active,
.product-buy-btn:active,
.checkout-summary-card__cta:active,
.cart-summary__actions .btn--primary:active,
.cart-popover__actions .btn--primary:active,
.auth-form__actions .btn--primary:active,
.search-form .btn[type="submit"]:active{
  transform:translateY(1px);
  box-shadow:0 -24px 0 var(--cta-green-dark) inset!important;
}
.btn--ghost,
.btn-ghost{
  background:#fff!important;
  color:#111827!important;
  border-color:#d7dce2!important;
  box-shadow:none!important;
}
.btn--ghost:hover,
.btn-ghost:hover{
  background:#f8fafc!important;
  color:#111827!important;
  border-color:#cbd5e1!important;
}
.product-card__price,
.product-price,
.tile-price,
.pcard-price,
[data-price-switch],
.product-buy-card__price,
.cart-line__line-total,
.cart-popover__item-price,
.checkout-summary__line-total{color:#111827!important}
.product-market-hero{grid-template-columns:minmax(0,1.28fr) minmax(380px,.88fr);gap:32px;align-items:start}
.product-title-wide--market{width:min(100%,1240px);margin:0 auto 18px;padding:0 14px}
.product-title-wide--market .product-title-wide__heading{margin:0;font-size:38px;line-height:1.1;font-weight:900;color:#0f172a;letter-spacing:-.03em}
.product-title-wide--market .product-title-wide__lead{max-width:760px;margin:10px 0 0;color:#64748b;line-height:1.7}
.product-market-gallery{min-height:480px;padding:18px 22px;border-radius:26px;background:#fff;box-shadow:0 10px 28px rgba(15,23,42,.05)}
.product-market-gallery__stage{min-height:440px}
.product-market-gallery__image{max-height:440px;max-width:min(660px,100%)}
.product-buy-card{gap:18px;padding:24px 24px 22px;border-radius:26px;box-shadow:0 10px 28px rgba(15,23,42,.05)}
.product-buy-card__head{align-items:center}
.product-buy-card__availability-label{margin:0 0 6px}
.product-buy-card__price-wrap{padding:18px 20px;border-radius:20px;background:#fff;border:1px solid #e5e7eb}
.product-buy-card__price{font-size:36px}
.product-buy-card__price-note{font-size:14px;line-height:1.55}
.product-buy-card__actions-row{display:flex;align-items:center;justify-content:flex-start;gap:10px;flex-wrap:nowrap}
.product-buy-card__actions-row .product-buy-form{display:flex;align-items:center;justify-content:flex-start;margin:0}
.product-buy-card__actions-row .product-buy-btn{min-width:max(3cm,188px)!important;height:52px;padding:0 24px!important}
.product-buy-card__actions-row .product-utility-actions--inline{display:flex!important;align-items:center;justify-content:flex-start;gap:10px!important;margin:0!important;flex-wrap:nowrap}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn{width:52px;height:52px;border-radius:14px;border:1px solid #d7dce2;background:#fff;box-shadow:none}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn:hover{background:#f8fafc;border-color:#cbd5e1}
.product-buy-card__service{padding:16px 18px;border-radius:20px;background:#f8fafc;border:1px solid #e5e7eb}
.product-market-content{max-width:920px;margin-top:24px}
.product-detail-card{border-radius:26px;box-shadow:0 10px 28px rgba(15,23,42,.05)}
.product-cart-message{min-height:18px;margin-top:-2px;text-align:left}
.cart-popover__dialog{width:min(720px,calc(100vw - 32px));padding:0;border-radius:24px;overflow:hidden}
.cart-popover__dialog h2{margin:0;padding:22px 24px 16px;border-bottom:1px solid #eef2f6;font-size:30px;line-height:1.12}
.cart-popover__item{grid-template-columns:108px minmax(0,1fr);gap:18px;align-items:center;padding:20px 24px;margin:0;border:0;border-radius:0;background:#fff}
.cart-popover__item-media{width:108px;height:108px;border-radius:18px;background:#f8fafc;border:1px solid #e5e7eb}
.cart-popover__item-media img{padding:10px}
.cart-popover__item-title{font-size:20px;line-height:1.35}
.cart-popover__qty{grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center;padding:16px 24px;margin:0;border-top:1px solid #eef2f6;background:#fff;border-radius:0;border-bottom:1px solid #eef2f6}
.cart-popover__qty-label{font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.02em;color:#64748b}
.cart-popover__footer{padding:20px 24px 24px;margin:0;display:grid;gap:16px;border:0;border-radius:0;background:#fff}
.cart-popover__total strong{font-size:34px;color:#111827}
.cart-popover__actions{grid-template-columns:minmax(0,1fr) minmax(240px,300px);gap:12px}
.home-coverage .container{max-width:980px}
.home-coverage__content{padding:0}
.home-coverage__content h2{font-size:24px;color:#111827}
.home-coverage__content p{max-width:820px;color:#64748b}
@media (max-width:1100px){
  .product-market-hero{grid-template-columns:1fr}
  .product-buy-card{position:relative;top:auto}
}
@media (max-width:720px){
  .product-title-wide--market .product-title-wide__heading{font-size:30px}
  .product-market-gallery{min-height:340px;padding:16px}
  .product-market-gallery__stage{min-height:300px}
  .product-market-gallery__image{max-height:300px}
  .product-buy-card__actions-row{flex-wrap:wrap}
  .product-buy-card__actions-row .product-buy-form{width:100%}
  .product-buy-card__actions-row .product-buy-btn{width:100%}
  .cart-popover__dialog h2{padding:18px 20px 14px;font-size:26px}
  .cart-popover__item{grid-template-columns:1fr;padding:18px 20px}
  .cart-popover__item-media{width:96px;height:96px}
  .cart-popover__qty,.cart-popover__footer{padding-inline:20px}
  .cart-popover__actions{grid-template-columns:1fr}
}

.product-page--market .product-title-wide{display:block!important}

/* === v26 phase 3: market system consolidation === */
.btn--primary,
.btn-primary,
.btn-dark,
.product-buy-btn,
.checkout-summary-card__cta,
.cart-summary__actions .btn--primary,
.cart-popover__actions .btn--primary,
.auth-form__actions .btn--primary,
.search-form .btn[type="submit"]{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate;
  background-color:#00C764!important;
  border-color:#00C764!important;
  color:#fff!important;
  box-shadow:0 -3px 0 #00A251 inset!important;
}
.btn--primary::before,
.btn-primary::before,
.btn-dark::before,
.product-buy-btn::before,
.checkout-summary-card__cta::before,
.cart-summary__actions .btn--primary::before,
.cart-popover__actions .btn--primary::before,
.auth-form__actions .btn--primary::before,
.search-form .btn[type="submit"]::before{
  content:'';
  position:absolute;
  inset:0;
  background:#00A251;
  transform:translateY(calc(100% - 3px));
  transition:transform .2s ease;
  z-index:0;
}
.btn--primary > *,
.btn-primary > *,
.btn-dark > *,
.product-buy-btn > *,
.checkout-summary-card__cta > *,
.cart-summary__actions .btn--primary > *,
.cart-popover__actions .btn--primary > *,
.auth-form__actions .btn--primary > *,
.search-form .btn[type="submit"] > *{position:relative;z-index:1}
.btn--primary:hover::before,
.btn-primary:hover::before,
.btn-dark:hover::before,
.product-buy-btn:hover::before,
.checkout-summary-card__cta:hover::before,
.cart-summary__actions .btn--primary:hover::before,
.cart-popover__actions .btn--primary:hover::before,
.auth-form__actions .btn--primary:hover::before,
.search-form .btn[type="submit"]:hover::before{transform:translateY(0)}
.btn--primary:hover,
.btn-primary:hover,
.btn-dark:hover,
.product-buy-btn:hover,
.checkout-summary-card__cta:hover,
.cart-summary__actions .btn--primary:hover,
.cart-popover__actions .btn--primary:hover,
.auth-form__actions .btn--primary:hover,
.search-form .btn[type="submit"]:hover{background-color:#00C764!important;border-color:#00C764!important;color:#fff!important;box-shadow:0 -3px 0 #00A251 inset!important,0 12px 24px rgba(0,167,84,.18)!important;transform:translateY(-1px)}
.btn--primary:active,
.btn-primary:active,
.btn-dark:active,
.product-buy-btn:active,
.checkout-summary-card__cta:active,
.cart-summary__actions .btn--primary:active,
.cart-popover__actions .btn--primary:active,
.auth-form__actions .btn--primary:active,
.search-form .btn[type="submit"]:active{transform:translateY(1px)!important;box-shadow:0 -1px 0 #00A251 inset!important}

.product-market-hero{
  grid-template-columns:minmax(0,1fr) minmax(400px,432px);
  gap:36px;
  align-items:start;
}
.product-market-gallery{
  min-height:680px;
  padding:22px 28px;
  border-radius:28px;
}
.product-market-gallery__stage{min-height:636px}
.product-market-gallery__image{max-height:620px;max-width:min(760px,100%)}
.product-buy-card{
  top:86px;
  gap:20px;
  padding:26px;
  border-radius:28px;
}
.product-buy-card__title-wrap{display:grid;gap:10px;padding-bottom:4px;border-bottom:1px solid #eef2f6}
.product-buy-card__title{font-size:34px;line-height:1.08;letter-spacing:-.03em}
.product-buy-card__lead{max-width:none;margin:0;color:#5b6574;line-height:1.6}
.product-buy-card__head{grid-template-columns:minmax(0,1fr) auto;display:grid;align-items:start}
.product-buy-card__price{font-size:42px;color:#111827!important}
.product-buy-card__actions-row{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
  flex-wrap:nowrap;
}
.product-buy-card__actions-row .product-buy-form{display:flex;align-items:center;justify-content:flex-start;flex:0 0 auto}
.product-buy-card__actions-row .product-buy-btn{min-width:max(3cm,210px)!important;padding:0 26px!important;justify-content:center}
.product-buy-card__actions-row .product-utility-actions--inline{flex:0 0 auto;gap:12px!important;justify-content:flex-start!important}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn{
  width:52px;
  height:52px;
  border-radius:14px;
  border:1px solid #d7dce2;
  background:#fff;
  box-shadow:none;
}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn:hover{background:#f8fafc;border-color:#cbd5e1}
.product-buy-card__service{background:#f8fafc;border:1px solid #e5e7eb;border-radius:20px}
.product-market-content{max-width:none;grid-template-columns:minmax(0,1fr);margin-top:28px}
.product-detail-card{box-shadow:none}
.product-cart-message{text-align:left}

.cart-popover__dialog{width:min(760px,calc(100vw - 32px));padding:0;border-radius:24px;overflow:hidden;background:#fff}
.cart-popover__item{grid-template-columns:96px minmax(0,1fr);gap:18px;padding:22px 24px}
.cart-popover__item-media{width:96px;height:96px;border-radius:16px;background:#f8fafc;border:1px solid #e5e7eb}
.cart-popover__item-title{font-size:18px;line-height:1.4}
.cart-popover__item-price{font-size:22px;color:#111827!important}
.cart-popover__qty{grid-template-columns:minmax(0,1fr) auto;gap:16px;padding:16px 24px;border-top:1px solid #eef2f6;border-bottom:1px solid #eef2f6;background:#fff}
.cart-popover__footer{padding:20px 24px 24px;gap:14px;background:#fff}
.cart-popover__total strong{font-size:32px;color:#111827}
.cart-popover__actions{grid-template-columns:minmax(0,1fr) minmax(240px,300px)}

@media (max-width:1180px){
  .product-market-hero{grid-template-columns:1fr}
  .product-buy-card{position:relative;top:auto}
  .product-market-gallery{min-height:440px}
  .product-market-gallery__stage{min-height:380px}
  .product-market-gallery__image{max-height:360px}
}
@media (max-width:720px){
  .product-buy-card__title{font-size:28px}
  .product-market-gallery{min-height:340px;padding:18px}
  .product-market-gallery__stage{min-height:300px}
  .product-market-gallery__image{max-height:300px}
  .product-buy-card__actions-row{flex-wrap:wrap}
  .product-buy-card__actions-row .product-buy-form{width:100%}
  .product-buy-card__actions-row .product-buy-btn{width:100%}
}


/* === Phase 4 authoritative market layer === */
:root{
  --solar-cta:#00C764;
  --solar-cta-dark:#00A251;
  --market-shell:#ffffff;
  --market-soft:#f8fafc;
  --market-line:#e5e7eb;
  --market-line-strong:#d7dce2;
  --market-shadow:0 10px 28px rgba(15,23,42,.05);
}

.btn--primary,
.btn-primary,
.btn-dark,
.product-buy-btn,
.checkout-summary-card__cta,
.search-form .btn[type="submit"],
.site-form__actions .btn--primary{
  position:relative;
  overflow:hidden;
  isolation:isolate;
  background:var(--solar-cta)!important;
  border-color:var(--solar-cta)!important;
  color:#fff!important;
  box-shadow:0 -3px 0 var(--solar-cta-dark) inset!important;
}
.btn--primary::before,
.btn-primary::before,
.btn-dark::before,
.product-buy-btn::before,
.checkout-summary-card__cta::before,
.search-form .btn[type="submit"]::before,
.site-form__actions .btn--primary::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--solar-cta-dark);
  transform:translateY(calc(100% - 3px));
  transition:transform .2s ease;
  z-index:0;
}
.btn--primary > *,
.btn-primary > *,
.btn-dark > *,
.product-buy-btn > *,
.checkout-summary-card__cta > *,
.search-form .btn[type="submit"] > *,
.site-form__actions .btn--primary > *{position:relative;z-index:1}
.btn--primary:hover,
.btn-primary:hover,
.btn-dark:hover,
.product-buy-btn:hover,
.checkout-summary-card__cta:hover,
.search-form .btn[type="submit"]:hover,
.site-form__actions .btn--primary:hover{
  background:var(--solar-cta)!important;
  border-color:var(--solar-cta)!important;
  color:#fff!important;
  transform:translateY(-1px);
  box-shadow:0 -3px 0 var(--solar-cta-dark) inset,0 12px 24px rgba(0,167,84,.16)!important;
}
.btn--primary:hover::before,
.btn-primary:hover::before,
.btn-dark:hover::before,
.product-buy-btn:hover::before,
.checkout-summary-card__cta:hover::before,
.search-form .btn[type="submit"]:hover::before,
.site-form__actions .btn--primary:hover::before{transform:translateY(0)}
.btn--primary:active,
.btn-primary:active,
.btn-dark:active,
.product-buy-btn:active,
.checkout-summary-card__cta:active,
.search-form .btn[type="submit"]:active,
.site-form__actions .btn--primary:active{
  transform:translateY(1px);
  box-shadow:0 -1px 0 var(--solar-cta-dark) inset!important;
}
.btn--primary:active::before,
.btn-primary:active::before,
.btn-dark:active::before,
.product-buy-btn:active::before,
.checkout-summary-card__cta:active::before,
.search-form .btn[type="submit"]:active::before,
.site-form__actions .btn--primary:active::before{transform:translateY(0)}

.site-header .header-right{gap:12px!important}
.header-icon-link,
.currency-switch,
.phone-pill{box-shadow:none!important}
.header-icon-link{width:46px;height:46px;border-radius:14px;border:1px solid var(--market-line);background:#fff}
.header-icon-link:hover{background:#f8fafc;border-color:#cbd5e1}
.currency-switch{height:46px;padding:0 12px;border-radius:14px;border:1px solid var(--market-line);background:#fff}
.phone-pill{height:46px;padding:0 14px;border-radius:14px;border:1px solid var(--market-line);background:#fff;color:#0f172a}
.phone-pill:hover{background:#f8fafc;border-color:#cbd5e1}

.product-grid{grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:22px}
.product-card{padding:18px;border-radius:22px;border:1px solid var(--market-line);box-shadow:none;overflow:hidden}
.product-card:hover{transform:translateY(-3px);box-shadow:0 14px 32px rgba(15,23,42,.08);border-color:#dbe2ea}
.product-card__image-box{height:240px;margin-bottom:16px}
.product-card__title{font-size:17px;min-height:68px}
.product-card__excerpt{font-size:13px;min-height:56px;-webkit-line-clamp:2}
.product-card__price,
.product-card__price-main,
.product-card__price--request{font-size:26px;font-weight:800;color:#111827!important}
.product-card__price[data-price-switch]{font-size:26px;font-weight:800;color:#111827!important}

.product-card__frame{display:grid;gap:0;min-height:100%}
.product-card__bottom{margin-top:auto;display:grid;gap:10px}

.product-market-hero{grid-template-columns:minmax(0,1.22fr) minmax(370px,.78fr)!important;gap:28px!important;align-items:start}
.product-market-hero__media{min-width:0}
.product-market-gallery__stage{min-height:560px;padding:30px;border-radius:28px;background:#fff;border:1px solid var(--market-line);box-shadow:var(--market-shadow)}
.product-market-gallery__image{width:100%;height:100%;max-height:500px;object-fit:contain}
.product-buy-card{position:sticky;top:96px;display:grid;gap:18px;padding:24px;border-radius:28px;background:#fff;border:1px solid var(--market-line);box-shadow:var(--market-shadow)}
.product-buy-card__title-wrap{display:grid;gap:10px;padding-bottom:0;border-bottom:0}
.product-buy-card__title{font-size:34px;line-height:1.08;letter-spacing:-.03em;margin:0}
.product-buy-card__lead{margin:0;color:#5b6574;line-height:1.6}
.product-buy-card__head{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:start;padding-bottom:4px;border-bottom:1px solid #eef2f6}
.product-buy-card__price-wrap{display:grid;gap:6px;padding:18px 20px;border-radius:20px;background:#fff;border:1px solid var(--market-line)}
.product-buy-card__price{font-size:42px;line-height:1;color:#111827!important;font-weight:900}
.product-buy-card__price-note{font-size:14px;line-height:1.55;color:#64748b;margin:0}
.product-buy-card__actions-row{display:flex;align-items:center;justify-content:flex-start;gap:12px;flex-wrap:nowrap;width:100%}
.product-buy-card__actions-row .product-buy-form{display:flex;flex:0 0 auto;margin:0}
.product-buy-card__actions-row .product-buy-btn{min-width:max(3cm,220px)!important;height:52px;padding:0 28px!important}
.product-buy-card__actions-row .product-utility-actions--inline{display:flex!important;align-items:center;justify-content:flex-start;gap:12px!important;flex:0 0 auto;margin:0!important}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn{width:52px;height:52px;border-radius:16px;border:1px solid var(--market-line-strong);background:#fff;color:#111827;box-shadow:none}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn:hover{background:#f8fafc;border-color:#cbd5e1}
.product-cart-message{margin:0;min-height:0;text-align:left}
.product-buy-card__service{display:grid;gap:12px;padding:18px 20px;border-radius:22px;background:#f8fafc;border:1px solid var(--market-line)}
.product-buy-card__service-item strong{font-size:15px;color:#111827}
.product-buy-card__service-item span{font-size:14px;line-height:1.55;color:#64748b}
.product-market-content{display:grid;gap:20px;margin-top:26px}
.product-detail-card{border-radius:24px;border:1px solid var(--market-line);background:#fff;box-shadow:var(--market-shadow)}

.cart-popover__dialog{width:min(620px,calc(100vw - 24px));padding:24px;border-radius:28px;background:#fff;box-shadow:0 30px 72px rgba(15,23,42,.18)}
.cart-popover__item{display:grid;grid-template-columns:104px minmax(0,1fr);gap:18px;align-items:center;padding:16px 0;margin-top:12px;border:0;border-bottom:1px solid #eef2f6;border-radius:0;background:transparent}
.cart-popover__item-media{width:104px;height:104px;border-radius:18px;background:#f8fafc;border:1px solid var(--market-line)}
.cart-popover__qty{margin-top:18px;padding:16px 0;border:0;border-bottom:1px solid #eef2f6;border-radius:0;background:transparent}
.cart-popover__footer{margin-top:18px;padding:0;border:0;border-radius:0;background:transparent}
.cart-popover__actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}

.home-coverage{padding-top:8px}
.home-coverage .container{max-width:980px}
.home-coverage__content{display:grid;gap:8px;padding:0;margin:0;max-width:none}
.home-coverage__content h2{margin:0;font-size:24px;line-height:1.18;color:#111827}
.home-coverage__content p{margin:0;max-width:820px;color:#5b6574;line-height:1.68}

@media (max-width: 1100px){
  .product-market-hero{grid-template-columns:1fr!important}
  .product-buy-card{position:relative;top:auto}
}
@media (max-width: 720px){
  .product-buy-card__title{font-size:28px}
  .product-buy-card__actions-row{flex-wrap:wrap}
  .product-buy-card__actions-row .product-buy-form{width:100%}
  .product-buy-card__actions-row .product-buy-btn{width:100%}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}
  .product-card{padding:14px;border-radius:18px}
  .product-card__image-box{height:180px}
}
@media (max-width: 560px){
  .product-grid{grid-template-columns:1fr}
  .cart-popover__item{grid-template-columns:88px minmax(0,1fr)}
  .cart-popover__actions{grid-template-columns:1fr}
}

/* === v28 final market pass: authoritative UI layer === */
:root{
  --cta-green:#00C764;
  --cta-green-dark:#00A251;
  --cta-green-shadow:rgba(0,167,84,.18);
  --market-text:#111827;
  --market-muted:#64748b;
  --market-line:#e5e7eb;
  --market-line-strong:#d7dce2;
  --market-soft:#f8fafc;
}

/* buttons */
.btn,
.btn--primary,
.btn--ghost,
.btn-primary,
.btn-ghost,
button.btn,
a.btn,
input[type="submit"].btn{
  min-height:52px !important;
  border-radius:8px !important;
  font-size:18px !important;
  font-weight:700 !important;
  line-height:1 !important;
  transition:background-color .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease !important;
}
.btn--primary,
.btn-primary,
.search-form .btn[type="submit"],
.site-form__actions .btn--primary,
.auth-form__actions .btn--primary,
.cart-summary__actions .btn--primary,
.cart-popover__actions .btn--primary,
.checkout-summary-card__cta,
.product-buy-btn{
  position:relative !important;
  isolation:isolate;
  overflow:hidden !important;
  background:var(--cta-green) !important;
  color:#fff !important;
  border-color:var(--cta-green) !important;
  box-shadow:0 -3px 0 var(--cta-green-dark) inset !important;
}
.btn--primary::before,
.btn-primary::before,
.search-form .btn[type="submit"]::before,
.site-form__actions .btn--primary::before,
.auth-form__actions .btn--primary::before,
.cart-summary__actions .btn--primary::before,
.cart-popover__actions .btn--primary::before,
.checkout-summary-card__cta::before,
.product-buy-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:var(--cta-green-dark);
  transform:translateY(100%);
  transition:transform .2s ease;
  z-index:0;
}
.btn--primary > *,
.btn-primary > *,
.search-form .btn[type="submit"] > *,
.site-form__actions .btn--primary > *,
.auth-form__actions .btn--primary > *,
.cart-summary__actions .btn--primary > *,
.cart-popover__actions .btn--primary > *,
.checkout-summary-card__cta > *,
.product-buy-btn > *{position:relative;z-index:1}
.btn--primary:hover,
.btn-primary:hover,
.search-form .btn[type="submit"]:hover,
.site-form__actions .btn--primary:hover,
.auth-form__actions .btn--primary:hover,
.cart-summary__actions .btn--primary:hover,
.cart-popover__actions .btn--primary:hover,
.checkout-summary-card__cta:hover,
.product-buy-btn:hover{
  color:#fff !important;
  border-color:var(--cta-green) !important;
  box-shadow:0 -3px 0 var(--cta-green-dark) inset,0 12px 24px var(--cta-green-shadow) !important;
  transform:translateY(-1px);
}
.btn--primary:hover::before,
.btn-primary:hover::before,
.search-form .btn[type="submit"]:hover::before,
.site-form__actions .btn--primary:hover::before,
.auth-form__actions .btn--primary:hover::before,
.cart-summary__actions .btn--primary:hover::before,
.cart-popover__actions .btn--primary:hover::before,
.checkout-summary-card__cta:hover::before,
.product-buy-btn:hover::before{transform:translateY(0)}
.btn--primary:active,
.btn-primary:active,
.search-form .btn[type="submit"]:active,
.site-form__actions .btn--primary:active,
.auth-form__actions .btn--primary:active,
.cart-summary__actions .btn--primary:active,
.cart-popover__actions .btn--primary:active,
.checkout-summary-card__cta:active,
.product-buy-btn:active{transform:translateY(1px) !important;box-shadow:0 -1px 0 var(--cta-green-dark) inset !important}
.btn--ghost,
.btn-ghost{
  background:#fff !important;
  color:#111827 !important;
  border:1px solid var(--market-line-strong) !important;
  box-shadow:none !important;
}
.btn--ghost:hover,
.btn-ghost:hover{background:#f8fafc !important;border-color:#cbd5e1 !important;color:#111827 !important}
.btn--metric{min-width:3cm !important}
.btn-block{width:100% !important}

/* header rhythm */
.site-header .header-right{gap:10px !important}
.header-icon-link,
.currency-switch,
.phone-pill{height:44px !important}
.header-icon-link{border-radius:14px !important}

/* product page */
.product-page--market .section{padding-top:24px}
.product-market-hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(340px,.78fr);
  gap:32px;
  align-items:start;
}
.product-market-gallery__stage{
  min-height:560px;
  border:1px solid var(--market-line);
  border-radius:28px;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(15,23,42,.04);
}
.product-market-gallery__image{max-height:520px !important;object-fit:contain}
.product-market-hero__buy{position:sticky;top:96px}
.product-buy-card{
  padding:28px;
  border:1px solid var(--market-line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 12px 30px rgba(15,23,42,.05);
}
.product-buy-card__title{font-size:34px;line-height:1.12;color:var(--market-text);margin:0}
.product-buy-card__lead{margin:10px 0 0;color:var(--market-muted);line-height:1.62}
.product-buy-card__head{padding-top:18px;border-top:1px solid #eef2f6;margin-top:18px}
.product-buy-card__availability-label,.product-buy-card__code{color:var(--market-muted)}
.product-buy-card__price-wrap{padding:22px 0 18px;border-top:1px solid #eef2f6;border-bottom:1px solid #eef2f6;margin-top:22px}
.product-buy-card__price{font-size:40px !important;font-weight:900 !important;color:var(--market-text) !important;line-height:1.04}
.product-buy-card__price-note{margin:8px 0 0;color:var(--market-muted);font-size:14px;line-height:1.55}
.product-buy-card__actions-row{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
  gap:12px !important;
  flex-wrap:nowrap !important;
  width:100%;
  margin-top:18px;
}
.product-buy-card__actions-row .product-buy-form{display:flex !important;flex:0 0 auto;margin:0}
.product-buy-card__actions-row .product-buy-btn{display:inline-flex !important;align-items:center !important;justify-content:center !important;min-width:max(3cm,220px)!important;padding:0 28px !important;height:52px !important}
.product-buy-card__actions-row .product-utility-actions--inline{display:flex !important;align-items:center !important;gap:12px !important;flex:0 0 auto;margin:0 !important}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:52px;
  height:52px;
  border-radius:14px;
  border:1px solid var(--market-line-strong);
  background:#fff;
  color:#111827;
  box-shadow:none;
}
.product-buy-card__actions-row .product-utility-actions--inline .product-utility-btn:hover{background:#f8fafc;border-color:#cbd5e1}
.product-buy-card__service{display:grid;gap:12px;margin-top:18px;padding-top:18px;border-top:1px solid #eef2f6}
.product-buy-card__service-item{display:grid;gap:4px}
.product-buy-card__service-item strong{color:var(--market-text)}
.product-buy-card__service-item span{color:var(--market-muted);line-height:1.58}
.product-market-content{margin-top:28px;display:grid;gap:20px}
.product-detail-card{border:1px solid var(--market-line);border-radius:24px;background:#fff;box-shadow:0 10px 28px rgba(15,23,42,.04)}
.product-overview-card__body{padding:24px 26px}
.product-overview-card__body h2,.product-specs-card .section-head h2,.faq-section--product .section-head h2{margin:0 0 14px;font-size:28px;line-height:1.1;color:var(--market-text)}
.product-specs-card .table-wrap,.faq-section--product .faq-list{padding:0 24px 24px}
.product-specs-card .section-head,.faq-section--product .section-head{padding:24px 24px 0}
.compare-table--specs th,.compare-table--specs td{padding:14px 16px}
.product-related-wide{margin-top:32px}

/* category cards */
.product-grid{gap:24px !important}
.product-card{border:1px solid var(--market-line) !important;border-radius:24px !important;padding:18px !important;box-shadow:0 8px 22px rgba(15,23,42,.04) !important}
.product-card:hover{transform:translateY(-3px);box-shadow:0 14px 28px rgba(15,23,42,.08) !important}
.product-card__image-box{height:248px !important;margin-bottom:16px !important}
.product-card__title{font-size:16px !important;font-weight:700 !important;color:#111827 !important;min-height:66px !important}
.product-card__excerpt{font-size:13px !important;color:#64748b !important;min-height:58px !important}
.product-card__price,
.product-card__price--request{font-size:26px !important;font-weight:900 !important;color:#111827 !important}

/* home coverage */
.home-coverage{padding-top:0 !important}
.home-coverage .container{max-width:980px}
.home-coverage__content{display:grid;gap:8px;padding:0 !important;border:0 !important;background:transparent !important;box-shadow:none !important}
.home-coverage__content h2{margin:0;font-size:24px;line-height:1.15;color:#111827}
.home-coverage__content p{margin:0;color:#64748b;line-height:1.65;max-width:none}
.home-coverage .panel,.footer-cities,.footer-cities .panel{border:0 !important;background:transparent !important;box-shadow:none !important;padding:0 !important}

/* auth and cart modal */
.auth-modal__dialog,
.cart-popover__dialog{
  width:min(720px,calc(100vw - 24px));
  padding:24px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 30px 72px rgba(15,23,42,.18);
}
.auth-modal__dialog h2,
.cart-popover__dialog h2{margin:0 0 4px;font-size:30px;line-height:1.1;color:#111827}
.auth-modal__lead{margin:0 0 18px;color:#64748b;line-height:1.58}
.cart-popover__item{display:grid;grid-template-columns:104px minmax(0,1fr);gap:18px;align-items:center;padding:16px 0;margin-top:8px;border:0;border-bottom:1px solid #eef2f6;border-radius:0;background:transparent !important}
.cart-popover__item-media{width:104px;height:104px;border-radius:18px;background:#f8fafc;border:1px solid #e5e7eb}
.cart-popover__item-media img{width:100%;height:100%;object-fit:contain;padding:8px}
.cart-popover__item-title{font-size:18px;line-height:1.42;color:#111827;font-weight:800;text-decoration:none}
.cart-popover__item-price{font-size:22px;font-weight:900;color:#111827 !important}
.cart-popover__qty{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:16px;align-items:center;margin-top:16px;padding:16px 0;border:0;border-bottom:1px solid #eef2f6;border-radius:0;background:transparent !important}
.cart-popover__qty-label{font-size:13px;font-weight:700;color:#64748b;text-transform:uppercase;letter-spacing:.02em}
.cart-popover__footer{display:grid;gap:14px;margin-top:18px;padding:0;border:0;border-radius:0;background:transparent !important}
.cart-popover__total{display:flex;align-items:center;justify-content:space-between}
.cart-popover__total span{color:#64748b}
.cart-popover__total strong{font-size:32px;font-weight:900;color:#111827}
.cart-popover__actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}

/* account auth helper */
.auth-form__helper{margin:14px 0 0;color:#64748b;line-height:1.55}

@media (max-width:1100px){
  .product-market-hero{grid-template-columns:1fr}
  .product-market-hero__buy{position:relative;top:auto}
}
@media (max-width:720px){
  .product-market-gallery__stage{min-height:420px;border-radius:22px}
  .product-buy-card{padding:22px}
  .product-buy-card__title{font-size:28px}
  .product-buy-card__price{font-size:34px !important}
  .product-buy-card__actions-row{flex-wrap:wrap !important}
  .product-buy-card__actions-row .product-buy-form{width:100%}
  .product-buy-card__actions-row .product-buy-btn{width:100%}
  .cart-popover__dialog,.auth-modal__dialog{padding:20px}
  .cart-popover__item{grid-template-columns:88px minmax(0,1fr)}
  .cart-popover__item-media{width:88px;height:88px}
  .cart-popover__actions{grid-template-columns:1fr}
}


/* === v29 authoritative layout + button system cleanup === */
:root{
  --cta-green:#00C764;
  --cta-green-dark:#00A251;
  --cta-green-soft:#34d98a;
  --ui-shell:#ffffff;
  --ui-line:#e5e7eb;
  --ui-line-soft:#eef2f6;
  --ui-muted:#64748b;
  --ui-text:#111827;
}

.site-footer .container,
.footer-cities .container,
.home-coverage .container,
.product-page-market__container,
.checkout-shell{max-width:var(--container)!important;margin-left:auto!important;margin-right:auto!important;}

.home-coverage{padding-top:20px;padding-bottom:6px}
.home-coverage .container{max-width:var(--container)!important}
.home-coverage__content{max-width:100%!important;padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important}
.home-coverage__content h2{margin:0 0 8px;color:var(--ui-text)}
.home-coverage__content p{margin:0;color:var(--ui-muted);max-width:none!important}

.btn--primary, .btn--ghost, input[type="submit"].btn{
  position:relative;overflow:hidden;isolation:isolate;min-width:3cm;min-height:52px;padding:0 22px!important;border-radius:8px!important;font-size:18px!important;font-weight:800!important;line-height:52px!important;transition:background-color .2s ease, box-shadow .2s ease, transform .2s ease, color .2s ease, border-color .2s ease!important;
}
.btn--primary{background:var(--cta-green)!important;color:#fff!important;border:0!important;box-shadow:inset 0 -3px 0 var(--cta-green-dark)!important}
.btn--primary::before{content:"";position:absolute;left:0;right:0;bottom:0;top:0;background:var(--cta-green-dark);transform:translateY(calc(100% - 3px));transition:transform .2s ease;z-index:0}
.btn--primary > *{position:relative;z-index:1}
.btn--primary:hover{color:#fff!important;box-shadow:inset 0 -3px 0 var(--cta-green-dark)!important;transform:translateY(-1px)!important}
.btn--primary:hover::before{transform:translateY(0)}
.btn--primary:active{transform:translateY(1px)!important;box-shadow:inset 0 -1px 0 var(--cta-green-dark)!important}
.btn--primary:active::before{transform:translateY(0)}
.btn--ghost{background:#eafaf2!important;color:var(--cta-green-dark)!important;border:1px solid rgba(0,162,81,.18)!important;box-shadow:inset 0 -3px 0 rgba(0,162,81,.10)!important}
.btn--ghost:hover{background:#d9f6e8!important;color:var(--cta-green-dark)!important;border-color:rgba(0,162,81,.28)!important;transform:translateY(-1px)!important}
.btn--ghost:active{transform:translateY(1px)!important}

.qty-stepper__btn, .cart-item-actions__toggle, .checkout-summary__menu-toggle, .header-icon-link, .product-utility-btn{
  transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease!important;
}
.qty-stepper__btn{border-radius:14px!important}
.qty-stepper__btn--minus{background:#f3f4f6!important;color:#7b8797!important;border-color:#d7dce2!important}
.qty-stepper__btn--minus:hover{background:#e5e7eb!important;color:#5b6574!important}
.qty-stepper__btn--plus{background:#e9f2f9!important;color:#5b7288!important;border-color:#d8e4ee!important}
.qty-stepper__btn--plus:hover{background:#d9e8f3!important;color:#46596d!important}
.cart-item-actions__toggle, .checkout-summary__menu-toggle, .product-utility-btn{background:#f8fafc!important;border-color:#d7dce2!important;color:#5b6574!important;box-shadow:none!important}
.cart-item-actions__toggle:hover, .checkout-summary__menu-toggle:hover, .product-utility-btn:hover{background:#eef2f6!important;border-color:#cbd5e1!important;color:#111827!important;transform:translateY(-1px)!important}

.product-page--market .product-market-hero{grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr)!important;gap:28px!important;align-items:start!important}
.product-page--market .product-market-gallery,
.product-page--market .product-market-gallery__stage{border:0!important;box-shadow:none!important;background:#fff!important;padding:0!important;border-radius:0!important}
.product-page--market .product-market-gallery{min-height:auto!important}
.product-page--market .product-market-gallery__stage{min-height:520px!important;display:flex;align-items:center;justify-content:center}
.product-page--market .product-market-gallery__image{max-height:520px!important;max-width:100%!important}
.product-page--market .product-buy-card{padding:28px!important;border:1px solid var(--ui-line)!important;border-radius:24px!important;box-shadow:0 10px 30px rgba(15,23,42,.05)!important;background:#fff!important;gap:18px!important}
.product-page--market .product-buy-card__head{padding-top:0!important;border-top:0!important;margin-top:0!important}
.product-page--market .product-buy-card__price-wrap{padding:0!important;margin-top:0!important;border-top:0!important;border-bottom:0!important;background:transparent!important;border:0!important}
.product-page--market .product-buy-card__price{color:#111827!important;font-size:40px!important}
.product-page--market .product-buy-card__actions-row{justify-content:flex-start!important;gap:12px!important;align-items:center!important}
.product-page--market .product-buy-card__actions-row .product-buy-form{margin:0!important;display:flex!important;align-items:center!important}
.product-page--market .product-buy-card__actions-row .product-buy-btn{min-width:max(3cm,220px)!important;justify-content:center!important}
.product-page--market .product-buy-card__actions-row .product-utility-actions--inline{display:flex!important;align-items:center!important;gap:12px!important;margin:0!important}
.product-page--market .product-buy-card__service{padding:0!important;margin-top:2px!important;border:0!important;background:transparent!important;border-radius:0!important}
.product-page--market .product-buy-card__meta-actions{margin-top:4px}
.product-page--market .product-detail-card{border:1px solid var(--ui-line)!important;border-radius:24px!important;box-shadow:0 10px 30px rgba(15,23,42,.04)!important}

@media (max-width: 1024px){
  .product-page--market .product-market-hero{grid-template-columns:1fr!important}
  .product-page--market .product-buy-card__actions-row{flex-wrap:wrap!important}
  .product-page--market .product-buy-card__actions-row .product-buy-form{width:100%!important}
  .product-page--market .product-buy-card__actions-row .product-buy-btn{width:100%!important}
}


/* === v30 authoritative button/product/container cleanup === */
.site-footer .container,
.footer-cities .container,
.home-coverage .container,
.product-page-market__container,
.checkout-shell{max-width:var(--container)!important;margin-left:auto!important;margin-right:auto!important}

.home-coverage{padding-top:20px!important;padding-bottom:6px!important}
.home-coverage .container{max-width:var(--container)!important}
.home-coverage__content{display:grid!important;gap:8px!important;max-width:none!important;margin:0!important;padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important}
.home-coverage__content h2{margin:0 0 8px!important;color:#111827!important}
.home-coverage__content p{margin:0!important;color:#64748b!important;max-width:none!important;line-height:1.65!important}

.btn--primary,
.btn-primary,
.product-buy-btn,
.search-form .btn[type="submit"],
.site-form__actions .btn--primary,
.checkout-summary-card__cta,
button.btn,
a.btn,
input[type="submit"].btn{
  position:relative!important;
  overflow:hidden!important;
  isolation:isolate!important;
  min-width:3cm!important;
  min-height:52px!important;
  padding:0 22px!important;
  border-radius:8px!important;
  border:0!important;
  font-size:18px!important;
  font-weight:800!important;
  line-height:1!important;
  color:#fff!important;
  background-color:#00C764!important;
  background-image:linear-gradient(to top,#00A251 0 100%),linear-gradient(#00C764,#00C764)!important;
  background-repeat:no-repeat!important;
  background-size:100% 3px,100% 100%!important;
  background-position:0 100%,0 0!important;
  box-shadow:none!important;
  transition:background-size .2s ease,transform .2s ease,color .2s ease,filter .2s ease,opacity .2s ease!important;
}
.btn--primary:hover,
.btn-primary:hover,
.product-buy-btn:hover,
.search-form .btn[type="submit"]:hover,
.site-form__actions .btn--primary:hover,
.checkout-summary-card__cta:hover,
button.btn:hover,
a.btn:hover,
input[type="submit"].btn:hover{
  color:#fff!important;
  background-size:100% 100%,100% 100%!important;
  background-position:0 100%,0 0!important;
  transform:translateY(-1px)!important;
}
.btn--primary:active,
.btn-primary:active,
.product-buy-btn:active,
.search-form .btn[type="submit"]:active,
.site-form__actions .btn--primary:active,
.checkout-summary-card__cta:active,
button.btn:active,
a.btn:active,
input[type="submit"].btn:active{
  transform:translateY(1px)!important;
  background-size:100% 100%,100% 100%!important;
}
.btn--ghost,
.btn-ghost{
  min-width:3cm!important;
  min-height:52px!important;
  padding:0 22px!important;
  border-radius:8px!important;
  font-size:18px!important;
  font-weight:800!important;
  line-height:1!important;
  color:#0B7F47!important;
  border:1px solid rgba(0,162,81,.18)!important;
  background:#EAF9F0!important;
  box-shadow:none!important;
  transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease!important;
}
.btn--ghost:hover,
.btn-ghost:hover{
  background:#D6F2E1!important;
  border-color:rgba(0,162,81,.28)!important;
  color:#0B7F47!important;
  transform:translateY(-1px)!important;
}
.btn--ghost:active,
.btn-ghost:active{transform:translateY(1px)!important}

.btn.is-loading,
button.btn.is-loading,
input[type="submit"].btn.is-loading,
.product-buy-btn.is-loading{pointer-events:none!important;color:#fff!important}
.btn.is-loading > *,
.product-buy-btn.is-loading > *{opacity:0!important}
.btn.is-loading::after,
.product-buy-btn.is-loading::after{
  content:''!important;
  position:absolute!important;
  left:50%!important;
  top:50%!important;
  width:48px!important;
  height:10px!important;
  transform:translate(-50%,-50%)!important;
  border-radius:999px!important;
  background:repeating-linear-gradient(90deg,rgba(255,255,255,.98) 0 6px,rgba(255,255,255,.14) 6px 10px)!important;
  animation:solarstore-btn-loader .85s linear infinite!important;
}
@keyframes solarstore-btn-loader{
  from{background-position:0 0}
  to{background-position:48px 0}
}

.qty-stepper__btn,
.cart-item-actions__toggle,
.checkout-summary__menu-toggle,
.header-icon-link,
.product-utility-btn,
.currency-switch,
.currency-switch__btn{
  transition:background-color .2s ease,border-color .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease!important;
}
.qty-stepper__btn,
.cart-item-actions__toggle,
.checkout-summary__menu-toggle,
.header-icon-link,
.product-utility-btn{
  box-shadow:none!important;
}
.qty-stepper__btn--minus{background:#f3f4f6!important;color:#7b8797!important;border-color:#d7dce2!important}
.qty-stepper__btn--minus:hover{background:#e5e7eb!important;color:#5b6574!important;transform:translateY(-1px)!important}
.qty-stepper__btn--plus{background:#e9f2f9!important;color:#5b7288!important;border-color:#d8e4ee!important}
.qty-stepper__btn--plus:hover{background:#d9e8f3!important;color:#46596d!important;transform:translateY(-1px)!important}
.cart-item-actions__toggle,.checkout-summary__menu-toggle,.product-utility-btn,.header-icon-link{background:#f8fafc!important;border-color:#d7dce2!important;color:#5b6574!important}
.cart-item-actions__toggle:hover,.checkout-summary__menu-toggle:hover,.product-utility-btn:hover,.header-icon-link:hover{background:#eef2f6!important;border-color:#cbd5e1!important;color:#111827!important;transform:translateY(-1px)!important}
.currency-switch{background:#f8fafc!important;border-color:#d7dce2!important;box-shadow:none!important}
.currency-switch__btn{background:transparent!important;color:#6b7280!important}
.currency-switch__btn:hover,.currency-switch__btn.is-active{color:#111827!important}

.product-page--market .product-market-hero{grid-template-columns:minmax(0,1.18fr) minmax(360px,.82fr)!important;gap:28px!important;align-items:start!important}
.product-page--market .product-market-gallery,
.product-page--market .product-market-gallery__stage,
.product-page--market .product-buy-card,
.product-page--market .product-buy-card__price-wrap,
.product-page--market .product-buy-card__service,
.product-page--market .product-detail-card{
  border:0!important;
  box-shadow:none!important;
  background:transparent!important;
}
.product-page--market .product-market-gallery{padding:0!important;border-radius:0!important;min-height:auto!important}
.product-page--market .product-market-gallery__stage{padding:0!important;border-radius:0!important;min-height:520px!important;display:flex;align-items:center;justify-content:center}
.product-page--market .product-market-gallery__image{max-height:520px!important;max-width:100%!important}
.product-page--market .product-buy-card{padding:0!important;border-radius:0!important;gap:18px!important;position:sticky;top:96px}
.product-page--market .product-buy-card__price-wrap,
.product-page--market .product-buy-card__service{padding:0!important;margin:0!important;border-radius:0!important}
.product-page--market .product-buy-card__price{color:#111827!important;font-size:40px!important}
.product-page--market .product-buy-card__actions-row{justify-content:flex-start!important;gap:12px!important;align-items:center!important}
.product-page--market .product-buy-card__actions-row .product-buy-form{margin:0!important;display:flex!important;align-items:center!important}
.product-page--market .product-buy-card__actions-row .product-buy-btn{min-width:max(3cm,220px)!important;justify-content:center!important}
.product-page--market .product-buy-card__actions-row .product-utility-actions--inline{display:flex!important;align-items:center!important;gap:12px!important;margin:0!important}
.product-page--market .product-market-content{display:grid!important;gap:18px!important;margin-top:24px!important;max-width:none!important;width:100%!important}
.product-page--market .product-detail-card{padding:0!important;border-radius:0!important}
.product-page--market .product-detail-card h2{margin:0 0 12px!important}
.product-page--market .compare-table th{background:transparent!important}

@media (max-width: 980px){
  .product-page--market .product-market-hero{grid-template-columns:1fr!important}
  .product-page--market .product-buy-card{position:static!important;top:auto!important}
}


/* 2026-06-02: Product image display-size lock.
   Do not resize source files; normalize rendered dimensions in product cards and product page gallery. */
.product-card__image-box,
.product-grid--solar-modules .product-card__image-box,
.product-grid--catalog .product-card__image-box,
.product-grid--related-wide .product-card__image-box,
.product-grid--solution .product-card__image-box{
  height:262px!important;
  min-height:262px!important;
  padding:10px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

.product-card__image,
.product-card__image-box > img,
.product-card__image-box picture > img,
.product-grid--solar-modules .product-card__image{
  width:274px!important;
  height:274px!important;
  max-width:274px!important;
  max-height:274px!important;
  object-fit:contain!important;
  object-position:center center!important;
  aspect-ratio:1/1!important;
  display:block!important;
  margin:0 auto!important;
}

.product-grid.is-list .product-card__image-box{
  height:226px!important;
  min-height:226px!important;
}

.product-grid.is-list .product-card__image,
.product-grid.is-list .product-card__image-box > img,
.product-grid.is-list .product-card__image-box picture > img{
  width:226px!important;
  height:226px!important;
  max-width:226px!important;
  max-height:226px!important;
}

.product-page--market .product-market-gallery__stage{
  min-height:430px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

.product-page--market .product-market-gallery__image{
  width:370px!important;
  height:370px!important;
  max-width:370px!important;
  max-height:370px!important;
  object-fit:contain!important;
  object-position:center center!important;
  aspect-ratio:1/1!important;
  display:block!important;
  margin:0 auto!important;
}

@media (max-width: 760px){
  .product-card__image-box,
  .product-grid--solar-modules .product-card__image-box,
  .product-grid--catalog .product-card__image-box,
  .product-grid--related-wide .product-card__image-box,
  .product-grid--solution .product-card__image-box{
    height:232px!important;
    min-height:232px!important;
  }

  .product-card__image,
  .product-card__image-box > img,
  .product-card__image-box picture > img,
  .product-grid--solar-modules .product-card__image{
    width:244px!important;
    height:244px!important;
    max-width:244px!important;
    max-height:244px!important;
  }

  .product-page--market .product-market-gallery__stage{
    min-height:340px!important;
  }

  .product-page--market .product-market-gallery__image{
    width:300px!important;
    height:300px!important;
    max-width:300px!important;
    max-height:300px!important;
  }
}
