.shop-cart-toggle {
  position: relative;
  width: 44px;
  min-width: 44px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid #cdd7d2;
  background: #ffffff;
  color: #1f3f52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.shop-cart-toggle:hover,
.shop-cart-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: #9cb5a8;
  box-shadow: 0 10px 20px rgba(14, 36, 47, 0.14);
}

.shop-cart-toggle svg {
  width: 19px;
  height: 19px;
}

.shop-cart-count {
  position: absolute;
  top: -7px;
  right: -8px;
  width: 22px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #0b8a6d;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #ffffff;
}

.shop-section {
  padding-top: 84px;
}

.shop-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.shop-card {
  border-radius: 20px;
  border: 1px solid #d4ddd8;
  background: #ffffff;
  display: grid;
  overflow: hidden;
  min-height: 100%;
}

.shop-card-media {
  display: block;
  background: linear-gradient(180deg, #f7faf8 0%, #eef4ef 100%);
  border-bottom: 1px solid #dde5e1;
  aspect-ratio: 4 / 3;
}

.shop-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-card-content {
  padding: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.shop-card-content h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.shop-card-content p {
  margin: 0;
  color: #506170;
  line-height: 1.52;
  font-size: 0.92rem;
}

.shop-card-pricing {
  display: grid;
  gap: 3px;
}

.shop-price-original {
  font-size: 0.94rem;
  color: #7f8f99;
  text-decoration: line-through;
}

.shop-price-current {
  font-size: 1.18rem;
  color: #123646;
  font-family: 'Sora', sans-serif;
}

.shop-card-action {
  width: 100%;
  min-height: 42px;
  margin-top: 2px;
}

.shop-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 23, 0.44);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 89;
}

.shop-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100vw);
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 48px rgba(6, 22, 31, 0.32);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

body.shop-cart-open {
  overflow: hidden;
}

body.shop-cart-open .shop-cart-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.shop-cart-open .shop-cart-drawer {
  transform: translateX(0);
}

.shop-cart-header {
  background: #09121a;
  color: #ffffff;
  min-height: 78px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-cart-header h2 {
  margin: 0;
  font-size: 1.62rem;
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
}

.shop-cart-header h2 small {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.shop-cart-close {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.shop-cart-body {
  overflow-y: auto;
  padding: 16px 16px 12px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.shop-cart-empty {
  margin: 0;
  color: #526372;
  line-height: 1.6;
  border: 1px dashed #cfdbd4;
  border-radius: 14px;
  padding: 18px;
  background: #f8fbf8;
}

.shop-cart-item {
  border: 1px solid #dbe3df;
  border-radius: 16px;
  padding: 10px;
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.shop-cart-item-image {
  width: 86px;
  height: 86px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: #edf3ee;
}

.shop-cart-item-content {
  display: grid;
  gap: 6px;
}

.shop-cart-item-content h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.shop-cart-item-unit {
  margin: 0;
  color: #425764;
  font-weight: 700;
}

.shop-cart-item-controls {
  width: fit-content;
  border-radius: 10px;
  border: 1px solid #d5ddda;
  overflow: hidden;
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  align-items: center;
}

.shop-cart-item-controls button {
  border: 0;
  background: #ffffff;
  color: #1f3e50;
  font-size: 1.22rem;
  min-height: 32px;
  cursor: pointer;
}

.shop-cart-item-controls span {
  display: inline-flex;
  justify-content: center;
  font-weight: 800;
  color: #30495a;
}

.shop-cart-remove {
  width: fit-content;
  border: 0;
  background: transparent;
  color: #7a2222;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
}

.shop-cart-item-total {
  font-family: 'Sora', sans-serif;
  color: #143648;
  font-size: 1rem;
  align-self: center;
}

.shop-cart-footer {
  border-top: 1px solid #dce3df;
  padding: 14px 16px 16px;
  display: grid;
  gap: 14px;
  background: #ffffff;
}

.shop-cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #253e4d;
}

.shop-cart-total-row strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
}

.shop-cart-checkout {
  width: 100%;
  min-height: 46px;
}

.shop-cart-checkout.is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.shop-product-main {
  padding: 30px 0 84px;
}

.shop-product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #536977;
  font-size: 0.92rem;
}

.shop-product-breadcrumb a {
  color: #244d61;
  font-weight: 700;
}

.shop-product-layout-premium {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 30px;
  align-items: start;
}

.shop-product-media {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
}

.shop-product-stage {
  margin: 0;
  border: 1px solid #d6e0db;
  border-radius: 24px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(12, 33, 44, 0.09);
}

.shop-product-stage img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 20px;
  display: block;
}

.shop-product-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-thumb {
  width: 74px;
  min-width: 74px;
  height: 74px;
  border-radius: 12px;
  border: 1px solid #cfdbd4;
  background: #ffffff;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.shop-thumb:hover,
.shop-thumb.is-active {
  border-color: #0b8a6d;
  box-shadow: 0 10px 22px rgba(7, 30, 38, 0.14);
  transform: translateY(-1px);
}

.shop-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.shop-product-buybox,
.shop-product-copy {
  border-radius: 24px;
  border: 1px solid #d7e0db;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(12, 33, 44, 0.08);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.shop-product-kicker {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0b8a6d;
  font-weight: 800;
}

.shop-product-buybox h1,
.shop-product-copy h1 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
}

.shop-product-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.shop-stars {
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  color: #ee8f1c;
}

.shop-rating-copy {
  color: #495f6d;
  font-size: 0.86rem;
}

.shop-product-buybox p,
.shop-product-copy p {
  margin: 0;
  color: #4a5f6d;
  line-height: 1.62;
}

.shop-product-description {
  margin-top: 2px;
}

.shop-product-pricing {
  display: grid;
  gap: 4px;
  margin-top: 2px;
}

.shop-product-pricing .shop-price-original {
  font-size: 1rem;
}

.shop-product-pricing .shop-price-current {
  font-size: clamp(1.9rem, 2.8vw, 2.25rem);
}

.shop-product-pix {
  color: #0b8a6d;
  font-weight: 800;
}

.shop-product-installment {
  color: #3a5361;
  font-weight: 700;
}

.shop-product-shipping {
  border-radius: 12px;
  border: 1px solid #dce6e1;
  background: #f7fbf9;
  padding: 10px 12px;
  color: #244a5d;
  font-weight: 700;
}

.shop-qty-row {
  display: grid;
  gap: 8px;
  margin-top: 2px;
}

.shop-qty-row label {
  font-weight: 800;
  color: #233b49;
}

.shop-qty-control {
  width: fit-content;
  border: 1px solid #cfdbd4;
  border-radius: 12px;
  overflow: hidden;
  display: inline-grid;
  grid-template-columns: 42px 58px 42px;
  align-items: center;
}

.shop-qty-control button {
  border: 0;
  background: #ffffff;
  color: #21475b;
  font-size: 1.26rem;
  min-height: 42px;
  cursor: pointer;
}

.shop-qty-control input {
  width: 58px;
  min-height: 42px;
  border: 0;
  border-left: 1px solid #d8e2dd;
  border-right: 1px solid #d8e2dd;
  text-align: center;
  font-weight: 800;
  color: #1e3f52;
  font-size: 1rem;
}

.shop-product-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.shop-product-benefits {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  color: #2f4b5a;
}

.shop-product-benefits li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.shop-product-benefits li::before {
  content: '✓';
  width: 18px;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #e2f2ea;
  color: #0b8a6d;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-product-details {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.shop-product-description-card {
  border-radius: 20px;
  border: 1px solid #d7e0db;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 27, 35, 0.06);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.shop-product-description-card h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.08rem;
}

.shop-product-description-card p {
  margin: 0;
  color: #445b6a;
  line-height: 1.62;
}

.shop-product-highlights {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 7px;
  color: #2d4351;
}

.shop-product-shelf {
  margin-top: 42px;
}

.shop-product-shelf h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.shop-product-shelf .shop-grid {
  margin-top: 16px;
}

.checkout-layout {
  margin-top: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: start;
}

.checkout-panel {
  border-radius: 22px;
  border: 1px solid #d5dfda;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(11, 27, 35, 0.08);
  padding: 20px;
}

.checkout-form-panel {
  display: grid;
  gap: 14px;
}

.checkout-panel-head h1,
.checkout-panel-head h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  line-height: 1.2;
}

.checkout-panel-head h1 {
  font-size: clamp(1.55rem, 2.8vw, 2rem);
}

.checkout-panel-head h2 {
  font-size: 1.2rem;
}

.checkout-panel-head p {
  margin: 8px 0 0;
  color: #4f6270;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-form fieldset {
  margin: 0;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #d6e0db;
  display: grid;
  gap: 10px;
}

.checkout-submit-btn {
  min-height: 50px;
  font-size: 1.06rem;
}

.checkout-form legend {
  padding: 0 6px;
  font-weight: 800;
  color: #2d4656;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #355061;
  font-weight: 700;
}

.checkout-form input:not([type='checkbox']):not([type='radio']) {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #cfdad4;
  background: #ffffff;
  padding: 0 12px;
  color: #1f3f52;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
}

.checkout-form select {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #cfdad4;
  background: #ffffff;
  padding: 0 38px 0 12px;
  color: #1f3f52;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  line-height: 1.2;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23556675' d='M1.2.6a1 1 0 0 0-1.4 1.4l4.5 4.5a1 1 0 0 0 1.4 0L10.2 2A1 1 0 1 0 8.8.6L5 4.4 1.2.6Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
}

.checkout-form input:not([type='checkbox']):not([type='radio']):focus-visible {
  outline: 2px solid rgba(11, 138, 109, 0.36);
  outline-offset: 1px;
}

.checkout-form select:focus-visible {
  outline: 2px solid rgba(11, 138, 109, 0.36);
  outline-offset: 1px;
}

.checkout-form input.field-invalid,
.checkout-form select.field-invalid {
  border-color: #d04242;
  box-shadow: 0 0 0 1px rgba(208, 66, 66, 0.24);
}

.checkout-field-error {
  margin: 4px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  color: #d04242;
}

.checkout-form .is-locked {
  background: #f3f6f4;
  color: #536675;
  cursor: not-allowed;
}

.checkout-phone-with-country {
  display: grid;
  grid-template-columns: 106px 1fr;
  align-items: center;
  border: 1px solid #cfdad4;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.checkout-country-prefix {
  position: relative;
  height: 100%;
  border-right: 1px solid #d7e2dc;
  background: #f6faf8;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px 0 8px;
}

.checkout-phone-with-country .checkout-country-code-select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  cursor: pointer;
  opacity: 0;
  -webkit-appearance: none;
  appearance: none;
}

.checkout-phone-with-country .checkout-country-code-select:focus-visible {
  outline: none;
}

.checkout-phone-with-country .checkout-country-code-select option {
  color: #0f172a;
  background: #ffffff;
}

.checkout-phone-with-country .checkout-country-code-select option:disabled {
  color: #64748b;
}

.checkout-country-flag {
  font-size: 1.05rem;
  line-height: 1;
}

.checkout-country-dial-code {
  font-size: 0.92rem;
  color: #355061;
  font-weight: 700;
  line-height: 1;
}

.checkout-country-arrow {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 0;
  height: 0;
  transform: translateY(-40%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6a7c89;
  pointer-events: none;
}

.checkout-phone-with-country input:not([type='checkbox']):not([type='radio']) {
  border: 0;
  border-radius: 0;
  background: transparent;
  height: 42px;
  min-height: 42px;
  box-shadow: none;
}

.checkout-phone-with-country:focus-within {
  border-color: #8db9a7;
  box-shadow: 0 0 0 1px rgba(11, 138, 109, 0.2);
}

.checkout-phone-with-country.field-invalid {
  border-color: #d04242;
  box-shadow: 0 0 0 1px rgba(208, 66, 66, 0.24);
}

.checkout-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.checkout-check {
  display: flex !important;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.checkout-check input[type='checkbox'] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: #0b8a6d;
}

.checkout-check span {
  line-height: 1.4;
}

.checkout-radio {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid #d2dcd7;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  cursor: pointer;
}

.checkout-form label.checkout-radio {
  display: flex;
  align-items: center;
}

.checkout-radio input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: #0b8a6d;
}

.checkout-shipping-options {
  display: grid;
  gap: 8px;
}

.checkout-shipping-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-right: 14px;
}

.checkout-shipping-option-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.checkout-shipping-option strong {
  margin-left: auto;
  min-width: 92px;
  text-align: right;
  display: inline-flex;
  justify-content: flex-end;
  font-family: 'Sora', sans-serif;
  color: #14384b;
  font-size: 0.92rem;
}

.checkout-shipping-feedback {
  margin: 2px 0 0;
}

.checkout-payment-security-text {
  margin: 0;
}

.checkout-payment-option {
  width: 100%;
  justify-content: space-between;
  gap: 10px;
  padding-right: 12px;
}

.checkout-payment-option-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.checkout-payment-logo {
  width: 54px;
  height: auto;
  object-fit: contain;
}

.checkout-card-flags {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.checkout-card-flag {
  border: 1px solid #d5dfda;
  border-radius: 6px;
  background: #ffffff;
  padding: 0;
  width: 40px;
  min-width: 40px;
  height: 26px;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

[data-checkout-card-flag][hidden] {
  display: none !important;
}

.checkout-card-flag-logo {
  display: block;
  width: 38px;
  height: 24px;
  object-fit: contain;
}

.checkout-card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid #d5dfda;
  background: #ffffff;
  color: #355061;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.checkout-card-more-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.checkout-card-more-balloon {
  right: 0;
  width: max-content;
  max-width: min(260px, 78vw);
  padding: 10px;
}

.checkout-card-more-balloon::before {
  right: 18px;
}

.checkout-card-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.checkout-card-flag-text {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #ffffff;
  padding: 0 5px;
  text-align: center;
}

.checkout-card-flag-text[data-brand='hipercard'] {
  background: linear-gradient(120deg, #b50052, #d51263);
}

.checkout-card-flag-text[data-brand='diners'] {
  background: linear-gradient(120deg, #005a9c, #1e8bcf);
}

.checkout-payment-note {
  border: 1px solid #dce6e1;
  background: #f7fbf9;
  border-radius: 10px;
  padding: 10px 12px;
  color: #2f4f61;
  font-size: 0.86rem;
  line-height: 1.45;
}

.checkout-payment-note strong {
  display: inline-block;
  margin-top: 4px;
}

.checkout-payment-note[hidden],
.checkout-card-fields[hidden],
.checkout-help-text[hidden],
[data-checkout-installment-row][hidden],
[data-checkout-discount-row][hidden] {
  display: none !important;
}

.checkout-card-fields {
  display: grid;
  gap: 10px;
}

.checkout-card-brick-container {
  min-height: 280px;
  border: 1px solid #d6e0db;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px;
}

.checkout-card-brick-container:empty {
  min-height: 180px;
}

.checkout-card-brick-container select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: none !important;
}

.checkout-card-brick-container select::-ms-expand {
  display: none !important;
}

.checkout-card-brick-container [data-testid='card-payment-brick__title'],
.checkout-card-brick-container [data-testid='payment-brick__title'],
.checkout-card-brick-container .mp-checkout-bricks__form-title,
.checkout-card-brick-container .mp-card-title,
.checkout-card-brick-container [data-testid='card-payment-brick__payment-methods'],
.checkout-card-brick-container .mp-checkout-bricks__payment-methods,
.checkout-card-brick-container .mp-card-payment-methods {
  display: none !important;
}

.checkout-inline-help-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-help-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.checkout-help-trigger {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #c9d6cf;
  background: #ffffff;
  color: #1f3f52;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.checkout-help-text {
  margin: 4px 0 0;
}

.checkout-help-balloon {
  position: absolute;
  top: calc(100% + 8px);
  right: -6px;
  z-index: 20;
  width: min(290px, 78vw);
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #d7e2dc;
  border-radius: 10px;
  background: #ffffff;
  color: #355061;
  line-height: 1.45;
  box-shadow: 0 12px 26px rgba(17, 38, 52, 0.12);
}

.checkout-help-balloon::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #d7e2dc;
  border-left: 1px solid #d7e2dc;
  background: #ffffff;
  transform: rotate(45deg);
}

.checkout-summary-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.checkout-panel-head-summary {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.checkout-panel-head-summary p {
  margin: 0;
  font-weight: 800;
  color: #284858;
}

.checkout-items {
  display: grid;
  gap: 10px;
}

.checkout-coupon {
  display: grid;
  gap: 6px;
}

.checkout-coupon label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: #355061;
  font-weight: 700;
}

.checkout-coupon-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-coupon input {
  width: 100%;
  height: 42px;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid #cfdad4;
  background: #ffffff;
  padding: 0 12px;
  color: #1f3f52;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
}

.checkout-coupon input:focus-visible {
  outline: 2px solid rgba(11, 138, 109, 0.36);
  outline-offset: 1px;
}

.checkout-coupon-apply {
  min-height: 42px;
  min-width: 96px;
  padding: 0 18px;
}

.checkout-coupon-apply:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.checkout-coupon-feedback {
  margin: 0;
  min-height: 1.2em;
  color: #355061;
  font-weight: 600;
}

.checkout-coupon-feedback.error {
  color: #d04242;
}

.checkout-coupon-feedback.success {
  color: #0b8a6d;
}

.checkout-item {
  border: 1px solid #dce4df;
  border-radius: 14px;
  padding: 10px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.checkout-item img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  background: #edf3ef;
}

.checkout-item-copy {
  display: grid;
  gap: 2px;
}

.checkout-item-copy h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.25;
}

.checkout-item-copy p {
  margin: 0;
  color: #4f6370;
  font-size: 0.88rem;
}

.checkout-item strong {
  font-family: 'Sora', sans-serif;
  color: #14384b;
  font-size: 0.96rem;
}

.checkout-totals {
  border-top: 1px solid #dbe3de;
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #324f60;
}

.checkout-shipping-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-shipping-info-trigger {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #c9d6cf;
  background: #ffffff;
  color: #1f3f52;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
}

.checkout-shipping-info-trigger:hover {
  border-color: #0b8a6d;
  color: #0b8a6d;
}

.checkout-shipping-info-trigger:focus-visible {
  outline: 2px solid rgba(11, 138, 109, 0.34);
  outline-offset: 1px;
}

.checkout-totals strong {
  font-family: 'Sora', sans-serif;
}

.checkout-total-row {
  border-top: 1px solid #dce3df;
  padding-top: 8px;
}

.checkout-total-row strong {
  font-size: 1.16rem;
  color: #12384a;
}

.checkout-note {
  margin: 0;
  border-radius: 12px;
  border: 1px solid #dbe3de;
  background: #f7fbf9;
  padding: 10px 12px;
  color: #335364;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkout-shipping-info-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
}

.checkout-shipping-info-modal[hidden] {
  display: none !important;
}

.checkout-shipping-info-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(19, 39, 54, 0.5);
}

.checkout-shipping-info-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  border-radius: 16px;
  border: 1px solid #d8e3dd;
  background: #ffffff;
  box-shadow: 0 24px 56px rgba(19, 39, 54, 0.22);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.checkout-shipping-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid #dbe4de;
}

.checkout-shipping-info-header h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  color: #14384b;
}

.checkout-shipping-info-close {
  border: 0;
  background: transparent;
  color: #264858;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.checkout-shipping-info-content {
  overflow-y: auto;
  padding: 16px;
  color: #355061;
  line-height: 1.6;
}

.checkout-shipping-info-content h3 {
  margin: 0 0 10px;
  font-family: 'Sora', sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  color: #163b4f;
}

.checkout-shipping-info-content p {
  margin: 0 0 10px;
}

.checkout-shipping-info-content ul {
  margin: 0 0 10px;
  padding-left: 20px;
}

.checkout-shipping-info-content li {
  margin-bottom: 6px;
}

body.checkout-modal-open {
  overflow: hidden;
}

.checkout-empty-panel {
  margin-top: 20px;
  text-align: center;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.checkout-empty-panel h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
}

.checkout-empty-panel p,
.checkout-empty-copy {
  margin: 0;
  color: #4d6270;
}

.checkout-thank-page {
  background: #eef1f5;
}

.checkout-thank-header {
  min-height: 88px;
  background: #215bcf;
  display: flex;
  align-items: center;
}

.checkout-thank-header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
}

.checkout-thank-brand {
  display: inline-flex;
  align-items: center;
}

.checkout-thank-brand img {
  width: min(220px, 56vw);
  height: auto;
  display: block;
}

.checkout-thank-main {
  padding: 24px 0 44px;
}

.checkout-thank-layout {
  margin-top: 0;
  border-radius: 20px;
  border: 1px solid #d9dde5;
  background: #f5f6f9;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  overflow: hidden;
}

.checkout-thank-primary {
  background: #ffffff;
  padding: 30px;
  display: grid;
  gap: 18px;
}

.checkout-thank-title-block {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.checkout-thank-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 2px solid #2562da;
  color: #2562da;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.checkout-thank-icon svg {
  width: 28px;
  height: 28px;
}

.checkout-thank-title-copy p {
  margin: 4px 0 0;
  color: #5f6f7f;
  font-size: 1rem;
}

.checkout-thank-title-copy h1 {
  margin: 2px 0 0;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.62rem, 2.8vw, 2.18rem);
  line-height: 1.18;
  color: #121d2b;
}

.checkout-thank-status-card {
  border: 1px solid #d6dce7;
  border-radius: 14px;
  background: #f7f9fd;
  padding: 16px;
  display: grid;
  gap: 8px;
}

.checkout-thank-status-card h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.28rem;
  color: #17273c;
}

.checkout-thank-status-card p {
  margin: 0;
  color: #3e5568;
  line-height: 1.55;
}

.checkout-status-screen-brick {
  margin-top: 4px;
  border-top: 1px dashed #d6dce7;
  padding-top: 10px;
}

.checkout-status-screen-brick[hidden] {
  display: none !important;
}

.checkout-thank-status-card[data-status='approved'] {
  border-color: #c4dfd6;
  background: #f3fbf7;
}

.checkout-thank-status-card[data-status='processing'] {
  border-color: #d8dde8;
  background: #f7f9fc;
}

.checkout-thank-status-card[data-status='rejected'] {
  border-color: #e9c9c9;
  background: #fff7f7;
}

.checkout-thank-details-card {
  border: 1px solid #d8dde7;
  border-radius: 14px;
  background: #fbfcfe;
  padding: 18px;
  display: grid;
  gap: 16px;
}

.checkout-thank-details-card h2 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  color: #16283d;
  font-size: 1.28rem;
}

.checkout-thank-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

.checkout-thank-info-grid article {
  display: grid;
  gap: 8px;
}

.checkout-thank-info-grid h3 {
  margin: 0;
  font-family: 'Sora', sans-serif;
  font-size: 1.02rem;
  color: #182b42;
}

.checkout-thank-info-grid article:last-child {
  grid-column: 1 / -1;
}

.checkout-thank-info-lines {
  margin: 0;
  color: #274055;
  line-height: 1.58;
  white-space: pre-line;
  font-size: 1.01rem;
}

.checkout-thank-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.checkout-thank-actions p {
  margin: 0;
  color: #2b4156;
  font-size: 1.02rem;
}

.checkout-thank-actions p a {
  text-decoration: underline;
  color: #1f53bf;
  font-weight: 700;
}

.checkout-thank-back-btn {
  min-width: 160px;
}

.checkout-thank-summary {
  border-left: 1px solid #d9dee7;
  background: #f5f6f9;
  padding: 30px 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.checkout-thank-items {
  display: grid;
  gap: 10px;
}

.checkout-thank-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.checkout-thank-item-media {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #dbe1ea;
  background: #ffffff;
}

.checkout-thank-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.checkout-thank-item-media span {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #121a29;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}

.checkout-thank-item-copy h3 {
  margin: 0;
  color: #18263a;
  font-size: 1.03rem;
  line-height: 1.35;
}

.checkout-thank-item strong {
  font-family: 'Sora', sans-serif;
  font-size: 1.08rem;
  color: #1b2f46;
}

.checkout-thank-empty-items {
  margin: 0;
  border: 1px dashed #ccd5e2;
  border-radius: 12px;
  padding: 14px;
  color: #4e6074;
  background: #ffffff;
}

.checkout-thank-totals {
  border-top: 1px solid #d9dee7;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.checkout-thank-totals div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  color: #2a4156;
  font-size: 1.04rem;
}

.checkout-thank-totals strong {
  font-family: 'Sora', sans-serif;
}

.checkout-thank-total-row {
  border-top: 1px solid #d9dee7;
  padding-top: 10px;
}

.checkout-thank-total-row strong {
  color: #101f32;
  font-size: 1.98rem;
}

@media (max-width: 1040px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-product-layout-premium {
    grid-template-columns: 1fr;
  }

  .shop-product-media {
    position: static;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-panel {
    position: static;
  }

  .checkout-thank-layout {
    grid-template-columns: 1fr;
  }

  .checkout-thank-summary {
    border-left: 0;
    border-top: 1px solid #d9dee7;
  }
}

@media (max-width: 820px) {
  .shop-cart-toggle {
    justify-self: end;
  }

  .header-actions .shop-cart-toggle {
    grid-column: 1 / -1;
  }

  .shop-cart-header h2 {
    font-size: 1.35rem;
  }

  .shop-product-details {
    grid-template-columns: 1fr;
  }

  .checkout-thank-primary,
  .checkout-thank-summary {
    padding: 20px;
  }

  .checkout-thank-title-copy h1 {
    font-size: 1.78rem;
  }
}

@media (max-width: 620px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-card-content {
    padding: 14px;
  }

  .shop-product-buybox,
  .shop-product-copy {
    padding: 18px;
  }

  .shop-thumb {
    width: 62px;
    min-width: 62px;
    height: 62px;
  }

  .checkout-panel {
    padding: 16px;
  }

  .checkout-grid-2 {
    grid-template-columns: 1fr;
  }

  .checkout-coupon-row {
    grid-template-columns: 1fr;
  }

  .checkout-coupon-apply {
    width: 100%;
  }

  .checkout-shipping-info-modal {
    padding: 14px;
  }

  .checkout-shipping-info-dialog {
    width: min(760px, calc(100vw - 24px));
    max-height: calc(100vh - 28px);
  }

  .checkout-thank-main {
    padding: 14px 0 28px;
  }

  .checkout-thank-layout {
    border-radius: 14px;
  }

  .checkout-thank-primary,
  .checkout-thank-summary {
    padding: 16px;
  }

  .checkout-thank-title-block {
    gap: 10px;
  }

  .checkout-thank-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .checkout-thank-title-copy h1 {
    font-size: 1.52rem;
  }

  .checkout-thank-info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .checkout-thank-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .checkout-thank-item-media {
    width: 64px;
    height: 64px;
  }

  .checkout-thank-item strong {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-thank-total-row strong {
    font-size: 1.62rem;
  }

  .shop-cart-item {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .shop-cart-item-image {
    width: 74px;
    height: 74px;
  }

  .shop-cart-item-total {
    grid-column: 2;
    justify-self: start;
    margin-top: -2px;
  }
}
