
  .lpw-widget,
  .lpw-widget * {
    box-sizing: border-box;
  }

  .lpw-widget {
    --lpw-bg: #151515;
    --lpw-panel: #252525;
    --lpw-text: #ffffff;
    --lpw-muted: #c8c8c8;
    --lpw-border: #b9b9b9;
    --lpw-green: #00f313;
    width: 100%;
    overflow: hidden;
    background: var(--lpw-bg);
    color: var(--lpw-text);
    font-family: inherit;
  }

  .lpw-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: clamp(32px, 5vw, 76px);
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: clamp(32px, 4vw, 64px) clamp(20px, 3.5vw, 52px);
  }

  .lpw-media,
  .lpw-info {
    min-width: 0;
  }

  .lpw-media {
    align-self: start;
    background: #ffffff;
  }

  .lpw-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
  }

  .lpw-info {
    align-self: start;
  }

  .lpw-title {
    margin: 4px 0 28px;
    color: var(--lpw-text);
    font-size: clamp(17px, 1.45vw, 22px);
    font-weight: 500;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .lpw-price-box {
    display: flex;
    align-items: center;
    min-height: 112px;
    margin-bottom: 24px;
    padding: 24px 38px;
    background: var(--lpw-panel);
  }

  .lpw-price {
    font-size: clamp(32px, 3vw, 40px);
    font-weight: 700;
    line-height: 1;
  }

  .lpw-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .lpw-legend {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    color: var(--lpw-text);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }

  .lpw-current-option {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 500;
  }

  .lpw-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }

  .lpw-option {
    min-height: 54px;
    max-width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--lpw-border);
    border-radius: 5px;
    background: transparent;
    color: var(--lpw-text);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    overflow-wrap: anywhere;
    cursor: pointer;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  }

  .lpw-option:hover,
  .lpw-option:focus-visible {
    border-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 1px #ffffff;
  }

  .lpw-option.is-selected {
    border-color: #ffffff;
    background: #ffffff;
    color: #242424;
  }

  .lpw-quantity-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
  }

  .lpw-quantity-label {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 700;
  }

  .lpw-quantity {
    display: grid;
    grid-template-columns: 52px minmax(64px, 1fr) 52px;
    width: min(292px, 100%);
    height: 48px;
    border: 1px solid var(--lpw-border);
  }

  .lpw-qty-button,
  .lpw-qty-input {
    min-width: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--lpw-text);
    font: inherit;
    text-align: center;
  }

  .lpw-qty-button {
    font-size: 25px;
    cursor: pointer;
  }

  .lpw-qty-button:hover,
  .lpw-qty-button:focus-visible {
    background: #303030;
    outline: none;
  }

  .lpw-qty-input {
    width: 100%;
    appearance: textfield;
    font-size: 17px;
  }

  .lpw-qty-input::-webkit-inner-spin-button,
  .lpw-qty-input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
  }

  .lpw-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin-top: 30px;
  }

  .lpw-action {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 18px;
    border: 1px solid transparent;
    border-radius: 5px;
    font: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: filter .18s ease, opacity .18s ease, transform .18s ease;
  }

  .lpw-action:hover,
  .lpw-action:focus-visible {
    filter: brightness(.9);
    outline: none;
  }

  .lpw-action:active {
    transform: translateY(1px);
  }

  .lpw-add {
    background: #ffffff;
    color: #080808;
  }

  .lpw-buy {
    background: var(--lpw-green);
    color: #000000;
  }

  .lpw-inquiry {
    grid-column: 1 / -1;
    background: #000000;
    color: #ffffff;
  }

  .lpw-action:disabled {
    opacity: .55;
    cursor: wait;
  }

  .lpw-status {
    min-height: 22px;
    margin: 12px 0 0;
    color: var(--lpw-muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .lpw-status.is-success {
    color: #67f274;
  }

  .lpw-status.is-error {
    color: #ff7373;
  }

  @media (max-width: 900px) {
    .lpw-inner {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 20px;
    }

    .lpw-title {
      margin: 0 0 20px;
    }

    .lpw-price-box {
      min-height: 82px;
      padding: 20px;
    }

    .lpw-options {
      gap: 10px;
    }

    .lpw-option {
      min-height: 48px;
      padding: 10px 13px;
      font-size: 13px;
    }

    .lpw-quantity-row {
      align-items: flex-start;
      flex-direction: column;
      gap: 10px;
      margin-top: 28px;
    }

    .lpw-quantity {
      width: 100%;
    }
  }

  @media (max-width: 520px) {
    .lpw-actions {
      grid-template-columns: 1fr;
    }

    .lpw-inquiry {
      grid-column: auto;
    }

    .lpw-action {
      min-height: 54px;
      font-size: 16px;
    }

    .lpw-option {
      width: 100%;
      justify-content: flex-start;
    }
  }
