.nl-product-page-toolbar{
  margin-top: 12px;
}

.nl-toast-cart{
  position: fixed;
  right: clamp(12px, 1.8vw, 22px);
  bottom: clamp(12px, 1.8vw, 22px);
  z-index: 2300;
  width: min(92vw, 370px);
  min-height: 92px;
  border: 1px solid #cde8d4;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f4fff8);
  box-shadow:
    0 18px 36px rgba(15, 23, 42, .18),
    0 1px 0 rgba(255, 255, 255, .8) inset;
  padding: 11px 11px 13px 9px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(.985);
  pointer-events: none;
}

.nl-toast-cart.is-visible{
  animation: nl-toast-in .24s ease-out forwards;
  pointer-events: auto;
}

.nl-toast-cart.is-hiding{
  animation: nl-toast-out .2s ease-in forwards;
  pointer-events: none;
}

@keyframes nl-toast-in{
  from{
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(.985);
  }
  to{
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes nl-toast-out{
  from{
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to{
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(.985);
  }
}

@keyframes nl-toast-progress{
  from{
    transform: scaleX(1);
  }
  to{
    transform: scaleX(0);
  }
}

.nl-toast-cart__icon{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(22, 163, 74, .14);
  color: #15803d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-top: 1px;
}

.nl-toast-cart__content{
  min-width: 0;
  display: grid;
  gap: 8px;
}

.nl-toast-cart__text{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #14532d;
}

.nl-toast-cart__link{
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid #d2e0f4;
  border-radius: 8px;
  background: rgba(37, 99, 235, .08);
  color: #1d4ed8;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  justify-self: start;
}

.nl-toast-cart__link:hover{
  background: rgba(37, 99, 235, .16);
  color: #1e3a8a;
}

.nl-toast-cart__close{
  width: 28px;
  height: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  cursor: pointer;
  transition:
    color .2s ease,
    border-color .2s ease,
    background-color .2s ease;
}

.nl-toast-cart__close:hover{
  color: #1d4ed8;
  border-color: #cdddf6;
  background: #f8fbff;
}

.nl-toast-cart__progress{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transform-origin: left center;
}

.nl-toast-cart.is-visible .nl-toast-cart__progress{
  animation: nl-toast-progress 4.6s linear forwards;
}

.nl-toast-cart--info{
  border-color: #d4def4;
  background: linear-gradient(145deg, #ffffff, #f5f8ff);
}

.nl-toast-cart--info .nl-toast-cart__icon{
  background: rgba(37, 99, 235, .14);
  color: #1d4ed8;
}

.nl-toast-cart--info .nl-toast-cart__text{
  color: #1e3a8a;
}

.nl-toast-cart--info .nl-toast-cart__progress{
  background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.nl-toast-cart--error{
  border-color: #f3c4c4;
  background: linear-gradient(145deg, #ffffff, #fff5f5);
}

.nl-toast-cart--error .nl-toast-cart__icon{
  background: rgba(239, 68, 68, .14);
  color: #b91c1c;
}

.nl-toast-cart--error .nl-toast-cart__text{
  color: #991b1b;
}

.nl-toast-cart--error .nl-toast-cart__progress{
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.nl-product-lite__title-row{
  position: relative;
  min-height: 40px;
  padding-right: 52px;
  display: block;
}

.nl-product-lite__favorite-form{
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

.nl-product-lite__favorite-btn{
  width: 40px;
  height: 40px;
  border: 1px solid #d7e3f4;
  border-radius: 11px;
  background: #fff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nl-product-lite__favorite-btn.is-active{
  border-color: #2563eb;
  background: rgba(37, 99, 235, .1);
  color: #1d4ed8;
}

.nl-product-lite__title{
  font-size: clamp(22px, 2vw, 34px);
  margin-bottom: 8px;
}

.nl-product-lite__summary{
  font-size: clamp(14px, .95vw, 18px);
  margin-bottom: 12px;
}

.nl-product-lite__identity-item strong{
  font-size: 15px;
}

.nl-product-lite__brand-link{
  color: #1d4ed8;
  text-decoration: none;
}

.nl-product-lite__brand-link:hover{
  color: #1e3a8a;
  text-decoration: underline;
}

.nl-product-lite__gallery{
  position: relative;
}

.nl-product-lite__gallery-frame{
  border-radius: 16px;
  overflow: hidden;
}

.nl-product-lite__gallery-frame,
.nl-product-lite__main-image{
  width: 100%;
}

.nl-product-lite__main-image{
  display: block;
  min-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8fbff;
  border: 1px solid #dce6f7;
  border-radius: 16px;
}

.nl-product-lite__thumbs{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.nl-product-lite__thumb-btn{
  border: 1px solid #d7e3f4;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.nl-product-lite__thumb-btn.is-active{
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, .2);
}

.nl-product-lite__thumb-btn img{
  width: 100%;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
}

.nl-product-lite__tech-kit{
  border: 1px solid #dbe6f4;
  border-radius: 10px;
  background: rgba(248, 250, 252, .92);
  padding: 8px 10px;
}

.nl-product-lite__tech-kit-chips{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.nl-product-lite__tech-kit-chips span{
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #dbe6f4;
  background: #fff;
  color: #334155;
  font-size: 11px;
  font-weight: 600;
}

.nl-product-lite__warehouse-filter{
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 10px;
}

.nl-product-lite__warehouse-filter button{
  min-height: 28px;
  border: 1px solid #dbe6f4;
  border-radius: 999px;
  background: #fff;
  color: #475569;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
}

.nl-product-lite__warehouse-filter button.is-active{
  border-color: #2563eb;
  color: #1d4ed8;
  background: rgba(37, 99, 235, .1);
}

.nl-product-lite__viewer{
  position: fixed;
  inset: 0;
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.5vw, 18px);
  background: rgba(15, 23, 42, .86);
  backdrop-filter: blur(2px);
}

.nl-product-lite__viewer[hidden]{
  display: none !important;
}

.nl-product-lite__viewer-stage{
  position: relative;
  width: auto;
  max-width: none;
  max-height: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.nl-product-lite__viewer-image{
  width: min(94vw, 1540px);
  max-width: min(94vw, 1540px);
  max-height: calc(100vh - 32px);
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, .42);
  background: #fff;
  cursor: grab;
}

.nl-product-lite__viewer-nav{
  position: fixed;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(148, 163, 184, .45);
  border-radius: 999px;
  background: rgba(248, 250, 252, .94);
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  z-index: 6;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(15, 23, 42, .2);
  backdrop-filter: blur(4px);
  transition:
    background-color .2s ease,
    color .2s ease,
    border-color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.nl-product-lite__viewer-nav:hover{
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
  box-shadow: 0 20px 38px rgba(37, 99, 235, .35);
  transform: translateY(-50%) scale(1.04);
}

.nl-product-lite__viewer-prev,
.js-product-image-viewer-prev{
  left: clamp(18px, 3vw, 38px);
}

.nl-product-lite__viewer-next,
.js-product-image-viewer-next{
  right: clamp(18px, 3vw, 38px);
}

.nl-product-lite__viewer-close{
  position: fixed;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(203, 213, 225, .45);
  border-radius: 999px;
  background: rgba(15, 23, 42, .65);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
}

.nl-product-lite__viewer-counter{
  position: fixed;
  right: 20px;
  bottom: 18px;
  min-height: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, .62);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  z-index: 4;
}

.nl-product-lite__stock-banner{
  min-height: 46px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #bfdbfe;
  background: linear-gradient(90deg, rgba(219, 234, 254, .86), rgba(239, 246, 255, .94));
  padding: 8px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
}

.nl-product-lite__stock-banner strong{
  font-size: 14px;
  color: #1d4ed8;
}

.nl-product-lite__stock-banner span{
  font-size: 13px;
  color: #1e3a8a;
}

.nl-product-lite__stock-banner.is-incoming{
  border-color: #fde68a;
  background: linear-gradient(90deg, rgba(254, 249, 195, .9), rgba(255, 251, 235, .92));
}

.nl-product-lite__stock-banner.is-incoming strong,
.nl-product-lite__stock-banner.is-incoming span{
  color: #92400e;
}

.nl-product-lite__stock-banner.is-preorder{
  border-color: #fecaca;
  background: linear-gradient(90deg, rgba(254, 226, 226, .9), rgba(255, 241, 242, .94));
}

.nl-product-lite__stock-banner.is-preorder strong,
.nl-product-lite__stock-banner.is-preorder span{
  color: #991b1b;
}

.nl-product-lite__metrics-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
}

.nl-product-lite__tabs{
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.nl-product-lite__tab-btn{
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid #dbe6f4;
  background: #fff;
  color: #334155;
  font-weight: 600;
  padding: 0 12px;
}

.nl-product-lite__tab-btn.active{
  border-color: #2563eb;
  background: rgba(37, 99, 235, .08);
  color: #1d4ed8;
}

.nl-product-lite__description{
  display: grid;
  gap: 10px;
}

.nl-product-lite__description p{
  margin: 0;
  color: #334155;
  line-height: 1.6;
}

.nl-product-lite__empty-block{
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  padding: 14px;
  color: #64748b;
  background: rgba(248, 250, 252, .9);
}

.nl-product-lite__doc-item,
.nl-product-lite__review-item{
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, .9);
}

.nl-product-lite__doc-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.nl-product-lite__doc-head strong{
  color: #0f172a;
}

.nl-product-lite__doc-head span{
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.nl-product-lite__review-top,
.nl-product-lite__doc-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.nl-product-lite__review-top strong,
.nl-product-lite__doc-head strong{
  color: #0f172a;
}

.nl-product-lite__review-top span,
.nl-product-lite__doc-head span{
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.nl-product-lite__review-meta{
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nl-product-lite__review-meta span{
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #dbe6f4;
  color: #475569;
  font-size: 12px;
  font-weight: 600;
}

.nl-product-lite__review-item p{
  margin: 8px 0 0;
  color: #334155;
  line-height: 1.5;
}

.nl-product-lite__docs-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nl-product-lite__line-total{
  margin-bottom: 0;
}

.nl-product-v2__line-total{
  margin-top: 0;
}

.nl-product-live-total{
  grid-area: total;
  align-self: stretch;
  min-height: 98px;
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: #fff;
  padding: 10px 12px;
  display: grid;
  align-content: center;
  gap: 6px;
}

.nl-product-lite__buy-card-wrap{
  position: sticky;
  top: 88px;
  z-index: 20;
}

.nl-product-lite__buy-card{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-template-areas:
    "benefits controls"
    "total actions";
  gap: 12px 16px;
  align-items: stretch;
}

.nl-product-lite__buy-benefits--card{
  grid-area: benefits;
  border: 1px solid #d7e3f4;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  min-height: 110px;
  align-content: center;
  padding: 10px 12px;
}

.nl-product-lite__purchase-controls{
  grid-area: controls;
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  padding: 10px 12px;
  min-height: 116px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}

.nl-product-lite__variant-picker{
  width: 100%;
}

.nl-product-lite__variant-picker .form-label{
  margin-bottom: 4px;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
}

.nl-product-lite__variant-picker .form-select{
  min-height: 36px;
  border-radius: 10px;
}

.js-qty-warning{
  width: 100%;
  text-align: center;
  margin-top: -2px;
  font-size: 12px;
  font-weight: 600;
}

.nl-product-lite__actions{
  grid-area: actions;
  display: grid;
  gap: 10px;
  align-content: start;
}

.nl-product-lite__actions .btn{
  width: 100%;
  min-height: 44px;
}

.nl-product-lite__benefits-details{
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.nl-product-lite__benefits-details summary{
  list-style: none;
  cursor: pointer;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.nl-product-lite__benefits-details summary::-webkit-details-marker{
  display: none;
}

.nl-product-lite__buy-benefits{
  padding: 0;
  display: grid;
  gap: 5px;
}

.nl-product-lite__buy-benefits.nl-product-lite__buy-benefits--card{
  padding: 10px 12px;
}

.nl-product-lite__buy-benefits--card span{
  font-size: 11px;
  line-height: 1.25;
  color: #4b5f82;
}

.nl-product-lite__buy-benefits--card i{
  font-size: 12px;
  color: #3b6fe3;
}

.nl-product-lite__buy-benefits span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #475569;
  font-size: 12px;
  line-height: 1.35;
}

.nl-product-lite__buy-benefits i{
  color: #2563eb;
}

.nl-product-lite__qty-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 8px;
  width: 100%;
  align-self: start;
}

.nl-product-lite__qty-wrap .form-label{
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}

.nl-product-lite__qty-control{
  grid-template-columns: 36px minmax(96px, 132px) 36px;
  gap: 6px;
  margin-inline: auto;
}

.nl-product-lite__qty-control .btn{
  height: 40px;
  font-size: 20px;
}

.nl-product-lite__qty-control .form-control{
  height: 40px;
  font-size: 18px;
}

.nl-product-lite__quick-buttons{
  gap: 6px;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-self: start;
  margin-top: 2px;
}

.nl-product-lite__quick-buttons .btn{
  min-height: 28px;
  height: 28px;
  padding: 0 9px;
  border-radius: 9px;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nl-product-lite__volume-pricing{
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  padding: 12px;
}

.nl-product-lite__volume-head{
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.nl-product-lite__volume-list{
  display: grid;
  gap: 6px;
}

.nl-product-lite__volume-list article{
  min-height: 32px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  border: 1px solid #dbe6f4;
  border-radius: 10px;
  padding: 4px 8px;
  background: #fff;
}

.nl-product-lite__volume-list b{
  color: #047857;
  font-size: 12px;
}

.nl-product-lite__trust-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.nl-product-lite__trust-grid article{
  border: 1px solid #dbe6f4;
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  padding: 10px;
  display: grid;
  gap: 4px;
}

.nl-product-lite__trust-grid span{
  font-size: 12px;
  color: #64748b;
}

.nl-product-lite__trust-grid strong{
  font-size: 15px;
  color: #0f172a;
}

.nl-product-lite__trust-grid article.is-up{
  border-color: #86efac;
}

.nl-product-lite__trust-grid article.is-down{
  border-color: #fecaca;
}

.nl-product-lite__b2b-why{
  display: grid;
  gap: 8px;
}

.nl-product-lite__b2b-why span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 13px;
}

.nl-product-lite__b2b-why i{
  color: #2563eb;
}

.nl-product-lite__buy-card .form-control,
.nl-product-lite__variant-qty{
  min-height: 42px;
}

@media (max-width: 991.98px){
  .nl-product-lite__thumbs{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nl-product-lite__buy-card{
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "benefits"
      "controls"
      "actions"
      "total";
  }

  .nl-product-lite__metrics-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-product-lite__buy-card-wrap{
    position: static;
  }

  .nl-product-live-total{
    min-height: 0;
  }

  .nl-product-lite__trust-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-product-lite__viewer-nav{
    width: 46px;
    height: 46px;
  }

  .nl-product-lite__viewer-prev,
  .js-product-image-viewer-prev{
    left: 12px;
  }

  .nl-product-lite__viewer-next,
  .js-product-image-viewer-next{
    right: 12px;
  }
}

@media (max-width: 767.98px){
  .nl-toast-cart{
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    min-height: 84px;
    grid-template-columns: 30px minmax(0, 1fr) 26px;
    padding: 10px 10px 12px 8px;
  }

  .nl-toast-cart__icon{
    width: 30px;
    height: 30px;
    border-radius: 9px;
    font-size: 14px;
  }

  .nl-toast-cart__text{
    font-size: 12.5px;
  }

  .nl-toast-cart__link{
    min-height: 28px;
    font-size: 11.5px;
    padding: 0 9px;
  }

  .nl-toast-cart__close{
    width: 26px;
    height: 26px;
  }

  .nl-product-lite__title-row{
    min-height: 36px;
    padding-right: 44px;
  }

  .nl-product-lite__favorite-btn{
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .nl-product-lite__viewer-image{
    width: min(92vw, 920px);
    max-width: min(92vw, 920px);
    max-height: calc(100vh - 24px);
  }

  .nl-product-lite__purchase-controls{
    gap: 10px;
  }

  .nl-product-lite__metrics-grid{
    grid-template-columns: minmax(0, 1fr);
  }

  .nl-product-lite__trust-grid{
    grid-template-columns: minmax(0, 1fr);
  }

  .nl-product-lite__volume-list article{
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .nl-product-lite__quick-buttons .btn{
    flex: 1 1 calc(33.333% - 6px);
    min-width: 0;
    height: 28px;
    padding: 0 8px;
    font-size: 11px;
  }
}
