body.next-shop {
  --next-ink: #0d2e2a;
  --next-mint: #0bc99a;
  --next-aqua: #bff7e8;
  --next-paper: #f2f6f4;
  --next-card: #eef3f1;
  --next-line: #d6e2de;
  --next-muted: #6d7e79;
  --next-shell: 1400px;
  margin: 0;
  background: var(--next-paper) !important;
  color: var(--next-ink) !important;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif !important;
}

body.next-shop * { box-sizing: border-box; }
body.next-shop button,
body.next-shop a { -webkit-tap-highlight-color: transparent; }
body.next-shop .header {
  background: rgba(13, 46, 42, .98) !important;
  backdrop-filter: blur(18px);
  box-shadow: 0 1px rgba(255, 255, 255, .08) !important;
}
body.next-shop .desktop-banner-container,
body.next-shop .mobile-banner-container,
body.next-shop .text-social { display: none !important; }
body.next-shop .main {
  width: min(var(--next-shell), calc(100% - 48px));
  max-width: none !important;
  margin: auto;
  padding: 10px 0 76px !important;
}
body.next-shop .next-shop-old-title { display: none !important; }

/* Catalog introduction */
.next-shop-hero {
  width: min(var(--next-shell), calc(100% - 48px));
  margin: 34px auto 18px;
  padding: 54px 58px;
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 64px;
  align-items: center;
  border-radius: 36px;
  background: var(--next-ink);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.next-shop-hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--next-mint);
  right: -190px;
  top: -210px;
  opacity: .65;
}
.next-shop-kicker {
  display: inline-block;
  color: var(--next-mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.next-shop-hero h1 {
  font-size: clamp(48px, 5.2vw, 82px);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 18px 0 24px;
  max-width: 820px;
}
.next-shop-hero h1 em { color: var(--next-mint); font-style: normal; }
.next-shop-hero p {
  max-width: 650px;
  color: #c9d8d4;
  font-size: 19px;
  line-height: 1.55;
  margin: 0;
}
.next-shop-actions { display: flex; gap: 12px; margin-top: 30px; }
.next-shop-actions a,
.next-app-ribbon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  background: var(--next-mint);
  color: #082b24 !important;
  text-decoration: none;
  font-weight: 600;
}
.next-shop-actions a.ghost {
  background: transparent;
  border: 1px solid #66807b;
  color: #fff !important;
}
.next-shop-hero__aside {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 30px;
}
.next-shop-hero__aside strong {
  display: block;
  font-size: 58px;
  line-height: 1;
  color: var(--next-mint);
}
.next-shop-hero__aside > span { display: block; font-weight: 600; margin: 8px 0 24px; }
.next-shop-hero__aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; color: #d9e6e2; }
.next-shop-hero__aside li::before { content: "✓"; color: var(--next-mint); font-weight: 700; margin-right: 10px; }
.next-shop-discovery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 6px 20px;
}
.next-shop-discovery span {
  display: block;
  color: var(--next-muted);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.next-shop-discovery strong { display: block; font-size: 24px; margin-top: 5px; }
.next-shop-chips { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.next-shop-chips button {
  border: 1px solid var(--next-line);
  background: #fff;
  color: var(--next-ink);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 500;
  cursor: pointer;
}
.next-shop-chips button:hover { background: var(--next-aqua); border-color: var(--next-aqua); }
.next-shop-list-head { display: flex; align-items: end; justify-content: space-between; margin: 4px 0 20px; }
.next-shop-list-head h2 { font-size: 34px; letter-spacing: -.025em; margin: 0; }
.next-shop-list-head span { color: var(--next-muted); }

/* One card system for catalog, search page and product recommendations */
body.next-shop #product-list,
body.next-shop .similar-products .grid {
  gap: 18px !important;
}
body.next-shop .card {
  min-width: 0 !important;
  min-height: 500px !important;
  height: auto !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  background: var(--next-card) !important;
  border: 1px solid var(--next-line) !important;
  border-radius: 24px !important;
  box-shadow: none !important;
  transform: none !important;
  transition: .22s transform, .22s box-shadow, .22s border-color;
}
body.next-shop .card::before,
body.next-shop .card::after { display: none !important; content: none !important; }
body.next-shop .card:hover {
  transform: translateY(-4px) !important;
  border-color: #b9cec7 !important;
  box-shadow: 0 20px 50px rgba(13, 46, 42, .09) !important;
}
body.next-shop .card__image-container {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1.06 / 1 !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 0 !important;
}
body.next-shop .flip-container,
body.next-shop .flipper,
body.next-shop .front,
body.next-shop .front > a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  position: static !important;
  transform: none !important;
}
body.next-shop .back { display: none !important; }
body.next-shop .card img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 8px !important;
  background: #fff !important;
  mix-blend-mode: normal;
  transform: none !important;
}
body.next-shop .availability-badge {
  top: 12px !important;
  left: 12px !important;
  z-index: 3;
  border-radius: 999px !important;
  background: var(--next-ink) !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 7px 11px !important;
}
body.next-shop .card__title-container {
  min-height: 112px !important;
  padding: 18px 18px 10px !important;
  background: var(--next-card) !important;
}
body.next-shop .card__title-link { text-decoration: none !important; }
body.next-shop .card__title {
  margin: 0 !important;
  color: var(--next-ink) !important;
  font-size: 15px !important;
  line-height: 1.38 !important;
  font-weight: 500 !important;
  letter-spacing: -.01em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.next-shop .card__sku {
  margin-top: 8px !important;
  color: #81908c !important;
  font-size: 11px !important;
  line-height: 1.3 !important;
}
body.next-shop .card__footer {
  width: 100% !important;
  height: auto !important;
  min-height: 111px !important;
  position: static !important;
  inset: auto !important;
  margin-top: auto !important;
  padding: 0 18px 18px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 12px !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  background: var(--next-card) !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.next-shop .card__price {
  color: var(--next-ink) !important;
  font-size: 20px !important;
  line-height: 1 !important;
  font-weight: 650 !important;
  white-space: nowrap;
}
body.next-shop .card__button,
body.next-shop .add-to-cart-button,
body.next-shop #submit-order-button {
  width: auto !important;
  min-width: 112px;
  min-height: 42px;
  padding: 10px 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--next-mint) !important;
  color: #082b24 !important;
  font-size: 13px !important;
  line-height: 1.15 !important;
  font-weight: 500 !important;
  cursor: pointer;
}
body.next-shop .card__button:hover,
body.next-shop .add-to-cart-button:hover { filter: brightness(.95); }
body.next-shop .show-more-button {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--next-ink) !important;
  padding: 14px 28px !important;
  color: #fff !important;
  font-weight: 500 !important;
}

/* Live search: compact results, isolated from the product-page title */
body.next-shop .search-results.show {
  display: block !important;
  width: min(920px, calc(100vw - 32px)) !important;
  max-height: min(72vh, 720px) !important;
  overflow: auto !important;
  padding: 14px !important;
  border: 1px solid var(--next-line) !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 30px 80px rgba(7, 34, 30, .18) !important;
}
body.next-shop .all-results-link {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 8px 10px 13px !important;
  color: #078e6f !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
}
body.next-shop .all-results-link .arrow { width: 16px; height: 16px; }
body.next-shop .live-search-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px !important;
}
body.next-shop .search-result-item {
  min-width: 0;
  border: 1px solid var(--next-line) !important;
  border-radius: 16px !important;
  background: var(--next-card) !important;
  overflow: hidden;
}
body.next-shop .search-result-item:hover { background: var(--next-card) !important; }
body.next-shop .search-result-item .search-item-row {
  min-height: 112px;
  padding: 10px !important;
  align-items: center !important;
}
body.next-shop .search-result-item .search-item-image {
  width: 92px !important;
  height: 92px !important;
  margin-right: 14px !important;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
body.next-shop .search-result-item .search-item-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 3px;
  background: #fff !important;
  mix-blend-mode: normal;
}
body.next-shop .search-result-item .search-item-info { min-width: 0; flex: 1; }
body.next-shop .search-result-item .product-name {
  margin: 0 !important;
  color: var(--next-ink) !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.next-shop .search-result-item .product-availability { font-size: 12px !important; }
body.next-shop .search-result-item .product-price {
  margin-top: 4px !important;
  color: var(--next-ink) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}
body.next-shop .search-result-item .item-divider { display: none !important; }
.next-search-summary {
  margin: 34px 0 24px;
  padding: 34px 38px;
  border-radius: 28px;
  background: var(--next-ink);
  color: #fff;
}
.next-search-summary span {
  color: var(--next-mint);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.next-search-summary h1 {
  margin: 8px 0 6px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.next-search-summary p { margin: 0; color: #c9d8d4; font-size: 17px; }

/* Product page */
.next-product-nav {
  width: min(var(--next-shell), calc(100% - 48px));
  margin: 30px auto 10px;
  padding: 0;
  display: flex;
  justify-content: space-between;
  color: var(--next-muted);
}
.next-product-nav a { color: var(--next-ink); font-weight: 600; text-decoration: none; }
body.next-shop > .container {
  width: min(var(--next-shell), calc(100% - 48px));
  max-width: none !important;
  margin: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body.next-shop > .container > main.product-page {
  margin-bottom: 34px;
  padding: 38px !important;
  background: #fff;
  border: 1px solid var(--next-line);
  border-radius: 32px;
}
body.next-shop > .container > main.product-page > .product-name {
  max-width: 1050px;
  margin: 0 0 30px !important;
  color: var(--next-ink) !important;
  font-size: clamp(28px, 2.35vw, 40px) !important;
  line-height: 1.14 !important;
  letter-spacing: -.025em !important;
  font-weight: 650 !important;
}
body.next-shop > .container > main.product-page > .flex {
  gap: 30px !important;
}
body.next-shop > .container > main.product-page > .flex > .md\:w-1\/2 {
  width: calc(50% - 15px) !important;
  padding-left: 0 !important;
}
body.next-shop .main-image-container {
  min-height: 520px !important;
  overflow: hidden !important;
  border: 1px solid var(--next-line) !important;
  border-radius: 26px !important;
  background: var(--next-card) !important;
}
body.next-shop .main-image-container .zoom-container { min-height: 520px !important; background: var(--next-card) !important; }
body.next-shop #main-image {
  width: 100% !important;
  height: 520px !important;
  max-height: 520px !important;
  object-fit: contain !important;
  padding: 22px !important;
  background: var(--next-card) !important;
  mix-blend-mode: multiply;
}
body.next-shop .leiba { z-index: 2; }
body.next-shop .thumbnail {
  width: 76px !important;
  height: 76px !important;
  padding: 6px;
  object-fit: contain !important;
  background: var(--next-card) !important;
  border: 1px solid var(--next-line) !important;
  border-radius: 13px !important;
  mix-blend-mode: multiply;
}
body.next-shop .product-info-container { display: grid !important; gap: 12px !important; }
body.next-shop .product-info-container > .product-page { display: grid !important; grid-template-columns: 1fr 1fr; gap: 12px; }
body.next-shop .product-info-container > .product-page > .product-card { height: 100%; }
body.next-shop .product-card,
body.next-shop .product-description-container,
body.next-shop .product-price-container {
  margin: 0 !important;
  padding: 18px !important;
  border: 1px solid var(--next-line) !important;
  border-radius: 18px !important;
  background: #f8faf9 !important;
  box-shadow: none !important;
}
body.next-shop .product-card p,
body.next-shop .product-description-container p { line-height: 1.48 !important; }
body.next-shop .product-price-container {
  position: static !important;
  min-height: 148px;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 22px !important;
  overflow: hidden !important;
  background: var(--next-ink) !important;
  color: #fff !important;
}
body.next-shop .price-quantity {
  display: flex !important;
  flex-direction: column-reverse !important;
  align-items: flex-start !important;
  gap: 14px !important;
}
body.next-shop .price-with-discount { align-items: flex-start !important; }
body.next-shop .product-price-container .price-text {
  margin: 3px 0 0 !important;
  color: var(--next-mint) !important;
  font-size: 31px !important;
  line-height: 1 !important;
  font-weight: 650 !important;
}
body.next-shop .original-price { color: #a9bbb6 !important; font-size: 13px !important; }
body.next-shop .discount-badge { font-weight: 500 !important; }
body.next-shop .quantity-selector {
  overflow: hidden;
  padding: 3px !important;
  border-radius: 999px !important;
  background: #fff !important;
}
body.next-shop .quantity-selector button { color: var(--next-ink) !important; font-weight: 500 !important; }
body.next-shop .quantity-selector input { font-weight: 500 !important; }
body.next-shop .product-price-container > .add-to-cart-button {
  min-width: 190px !important;
  min-height: 48px !important;
  font-size: 14px !important;
}
body.next-shop .tabs-switcher { border-bottom: 1px solid var(--next-line) !important; }
body.next-shop .tab-btn { font-weight: 500 !important; }
body.next-shop .tab-btn.active { color: var(--next-ink) !important; border-color: var(--next-mint) !important; }
body.next-shop .product-description > h2 {
  margin-top: 30px !important;
  color: var(--next-ink) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  letter-spacing: -.02em;
}
body.next-shop .similar-products { overflow: visible !important; }

/* Cart drawer */
body.next-shop #cart-modal {
  justify-content: flex-end !important;
  align-items: stretch !important;
  padding: 0 !important;
  background: rgba(3, 22, 19, .58) !important;
  backdrop-filter: blur(5px);
}
body.next-shop #cart-modal .cart-modal-content {
  width: min(540px, 100%) !important;
  max-width: none !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 34px !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 30px 0 0 30px !important;
  box-shadow: -30px 0 90px rgba(0, 0, 0, .2) !important;
}
body.next-shop #cart-modal .cart-modal-content > .close { color: var(--next-ink) !important; font-size: 30px !important; line-height: 1 !important; z-index: 3 !important; }
body.next-shop #cart-modal h2 { font-size: 32px !important; font-weight: 650 !important; letter-spacing: -.03em !important; }
body.next-shop #cart-container { max-height: none !important; overflow: auto !important; flex: 1 !important; }
body.next-shop .cart-item { border-bottom: 1px solid var(--next-line) !important; padding: 14px 0 !important; }
body.next-shop .cart-item img { background: #fff; mix-blend-mode: normal; border-radius: 12px; }
body.next-shop .cart-item-name { font-weight: 500 !important; line-height: 1.35 !important; }
body.next-shop .cart-item-quantity-container {
  width: max-content;
  margin-top: 10px !important;
  overflow: hidden;
  border: 1px solid var(--next-line);
  border-radius: 999px;
  background: var(--next-card);
}
body.next-shop .cart-item-quantity-container button {
  width: 36px !important;
  height: 34px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--next-ink) !important;
  font-weight: 500 !important;
}
body.next-shop .cart-item-quantity-container input {
  width: 38px !important;
  height: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  background: #fff !important;
  text-align: center !important;
  font-weight: 500 !important;
  appearance: textfield;
}
body.next-shop .cart-item-quantity-container input::-webkit-inner-spin-button,
body.next-shop .cart-item-quantity-container input::-webkit-outer-spin-button { appearance: none; margin: 0; }
body.next-shop .cart-total { border-top: 1px solid var(--next-line); padding-top: 18px; font-weight: 600 !important; }
body.next-shop .cart-modal-buttons { display: grid !important; grid-template-columns: 1fr 1fr; gap: 9px !important; }
body.next-shop .continue-shopping-button,
body.next-shop .checkout-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
}

/* Checkout and shared footer */
.next-checkout-intro { margin-bottom: 28px; }
.next-checkout-intro > a { color: var(--next-ink); font-weight: 600; text-decoration: none; }
.next-checkout-intro > span { display: block; margin-top: 26px; color: var(--next-mint); font-weight: 650; text-transform: uppercase; letter-spacing: .12em; font-size: 12px; }
.next-checkout-intro h1 { font-size: 54px; letter-spacing: -.035em; margin: 6px 0; }
.next-checkout-intro p { color: #667b75; font-size: 18px; margin: 0; }
body.next-shop main.max-w-4xl { max-width: 1120px !important; padding-top: 40px !important; }
body.next-shop #order-form input,
body.next-shop #order-form select,
body.next-shop #order-form textarea { border: 1px solid var(--next-line) !important; border-radius: 13px !important; padding: 12px !important; background: #fff !important; }
body.next-shop main.max-w-4xl .bg-white { border: 1px solid var(--next-line) !important; border-radius: 24px !important; box-shadow: none !important; padding: 24px !important; }
.next-app-ribbon {
  width: min(var(--next-shell), calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 32px 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  border-radius: 30px;
  background: var(--next-aqua);
}
.next-app-ribbon span { font-size: 12px; font-weight: 650; text-transform: uppercase; letter-spacing: .12em; }
.next-app-ribbon h2 { max-width: 760px; margin: 7px 0 0; font-size: 28px; letter-spacing: -.025em; }
.next-app-ribbon a { background: var(--next-ink); color: #fff !important; white-space: nowrap; }
body.next-shop .footer { background: var(--next-ink) !important; color: #d5e4e0 !important; padding: 24px !important; }

@media (max-width: 1050px) {
  body.next-shop .card__footer { grid-template-columns: 1fr !important; }
  body.next-shop .card__button { width: 100% !important; }
  body.next-shop .product-info-container > .product-page { grid-template-columns: 1fr; }
  body.next-shop .product-price-container { grid-template-columns: 1fr !important; }
  body.next-shop .product-price-container > .add-to-cart-button { width: 100% !important; }
}

@media (max-width: 900px) {
  .next-shop-hero { margin: 18px auto; padding: 36px 28px; grid-template-columns: 1fr; gap: 26px; border-radius: 28px; }
  .next-shop-hero h1 { font-size: 52px; }
  .next-shop-hero__aside { padding: 23px; }
  .next-shop-discovery { align-items: flex-start; flex-direction: column; }
  .next-shop-chips { justify-content: flex-start; }
  .next-app-ribbon { align-items: flex-start; flex-direction: column; }
  .next-product-nav { margin-top: 18px; }
  .next-product-nav span { display: none; }
  body.next-shop > .container > main.product-page > .flex { flex-direction: column !important; }
  body.next-shop > .container > main.product-page > .flex > .md\:w-1\/2 { width: 100% !important; }
}

@media (max-width: 640px) {
  body.next-shop .main,
  .next-shop-hero,
  .next-product-nav,
  body.next-shop > .container,
  .next-app-ribbon { width: calc(100% - 24px); }
  body.next-shop .main { padding: 4px 0 50px !important; }
  .next-shop-hero { padding: 31px 22px; margin-top: 132px; border-radius: 24px; }
  .next-shop-hero h1 { font-size: 42px; line-height: 1.02; }
  .next-shop-hero p { font-size: 16px; }
  .next-shop-actions { display: grid; }
  .next-shop-actions a { width: 100%; }
  .next-shop-hero__aside strong { font-size: 46px; }
  .next-shop-discovery { padding: 22px 2px 15px; gap: 15px; }
  .next-shop-discovery strong { font-size: 21px; }
  .next-shop-chips { flex-wrap: nowrap; max-width: 100%; overflow: auto; padding-bottom: 4px; }
  .next-shop-chips button { white-space: nowrap; }
  .next-shop-list-head { align-items: flex-start; flex-direction: column; gap: 6px; }
  .next-shop-list-head h2 { font-size: 28px; }
  body.next-shop #product-list,
  body.next-shop .similar-products .grid { gap: 10px !important; }
  body.next-shop .card { min-height: 400px !important; border-radius: 18px !important; }
  body.next-shop .card__image-container { aspect-ratio: 1 / 1 !important; }
  body.next-shop .card img { padding: 5px !important; }
  body.next-shop .card__title-container { min-height: 96px !important; padding: 12px 11px 7px !important; }
  body.next-shop .card__title { font-size: 13px !important; -webkit-line-clamp: 3; }
  body.next-shop .card__footer { min-height: 104px !important; padding: 8px 11px 12px !important; gap: 9px !important; }
  body.next-shop .card__price { font-size: 17px !important; }
  body.next-shop .card__button { min-height: 39px; font-size: 12px !important; padding: 8px !important; }
  body.next-shop .availability-badge { top: 8px !important; left: 8px !important; font-size: 10px !important; padding: 5px 8px !important; }
  body.next-shop .search-results.show { left: 16px !important; right: 16px !important; width: auto !important; max-height: 68vh !important; padding: 10px !important; }
  .next-search-summary { margin: 132px 0 20px; padding: 28px 22px; border-radius: 22px; }
  .next-search-summary h1 { font-size: 36px; }
  body.next-shop .live-search-list { grid-template-columns: 1fr; }
  body.next-shop .search-result-item .search-item-image { width: 78px !important; height: 78px !important; }
  body.next-shop .search-result-item .search-item-row { min-height: 96px; }
  .next-product-nav { margin-top: 132px !important; padding: 0 2px; }
  body.next-shop > .container > main.product-page { border: 0; border-radius: 22px; padding: 22px 14px !important; }
  body.next-shop > .container > main.product-page > .product-name { font-size: 27px !important; line-height: 1.17 !important; margin-bottom: 22px !important; }
  body.next-shop .main-image-container,
  body.next-shop .main-image-container .zoom-container { min-height: 350px !important; }
  body.next-shop #main-image { height: 350px !important; max-height: 350px !important; padding: 12px !important; }
  body.next-shop .product-price-container { min-height: 0; }
  body.next-shop .product-description > h2 { font-size: 22px !important; }
  body.next-shop #cart-modal .cart-modal-content { width: 100% !important; border-radius: 0 !important; padding: 24px 18px !important; }
  body.next-shop .cart-modal-buttons { grid-template-columns: 1fr; }
  .next-checkout-intro h1 { font-size: 42px; }
  body.next-shop main.max-w-4xl { margin-top: 116px !important; padding: 24px 12px !important; }
  .next-app-ribbon { padding: 27px 22px; border-radius: 24px; }
  .next-app-ribbon h2 { font-size: 24px; }
  body.next-shop .mobile-search-bar { position: fixed !important; top: 70px !important; left: 0 !important; right: 0 !important; z-index: 1001 !important; margin: 0 !important; transform: none !important; }
}
