    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #ffffff;
      color: #111111;
    }
    a { color: inherit; }

    .cp-page-wrap {
      max-width: 1100px;
      margin: 0 auto;
      padding: 48px 24px 100px;
      min-height: 60vh;
    }

    .cp-page-heading {
      font-size: 28px;
      font-weight: 600;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    [data-cart-page] {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 48px;
      align-items: start;
    }

    @media screen and (max-width: 860px) {
      [data-cart-page] {
        grid-template-columns: 1fr;
      }
    }

    /* Empty state */
    .cp-page-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 20px;
    }
    .cp-page-empty__text {
      font-size: 18px;
      color: #666;
      margin-bottom: 24px;
    }
    .cp-page-empty__btn {
      display: inline-block;
      padding: 14px 36px;
      background: #111111;
      color: #ffffff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: background 0.2s ease;
    }
    .cp-page-empty__btn:hover { background: #333333; }

    /* Items list */
    .cp-page-items {
      border-top: 1px solid #eaeaea;
    }

    .cp-page-items-head {
      display: grid;
      grid-template-columns: 2.4fr 0.8fr 1fr 0.8fr;
      gap: 16px;
      padding: 16px 0;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #999999;
      border-bottom: 1px solid #eaeaea;
    }

    @media screen and (max-width: 860px) {
      .cp-page-items-head { display: none; }
    }

    .cp-page-item {
      display: grid;
      grid-template-columns: 2.4fr 0.8fr 1fr 0.8fr;
      gap: 16px;
      align-items: center;
      padding: 24px 0;
      border-bottom: 1px solid #eaeaea;
    }

    .cp-page-item__image {
      grid-row: span 1;
    }
    .cp-page-item__image img {
      width: 88px;
      height: 108px;
      object-fit: cover;
      background: #f5f5f5;
      display: block;
    }

    .cp-page-item__details {
      display: flex;
      flex-direction: column;
      gap: 6px;
      grid-column: span 1;
    }
    .cp-page-item__title {
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }
    .cp-page-item__variant {
      font-size: 13px;
      color: #777777;
    }
    .cp-page-remove-btn {
      background: none;
      border: none;
      padding: 0;
      margin-top: 4px;
      font-size: 12px;
      color: #999999;
      text-decoration: underline;
      cursor: pointer;
      width: fit-content;
    }
    .cp-page-remove-btn:hover { color: #111111; }

    .cp-page-item__price {
      font-size: 14px;
    }
    .cp-page-item__price--mobile { display: none; }

    .cp-page-qty-wrap {
      display: inline-flex;
      align-items: center;
      border: 1px solid #e0e0e0;
      width: fit-content;
    }
    .cp-page-qty-btn {
      width: 32px; height: 32px;
      background: none;
      border: none;
      font-size: 15px;
      cursor: pointer;
      color: #111111;
      transition: background 0.15s ease;
    }
    .cp-page-qty-btn:hover { background: #f5f5f5; }
    .cp-page-qty-value {
      width: 32px;
      text-align: center;
      font-size: 14px;
    }

    .cp-page-item__line-total {
      font-size: 14px;
      font-weight: 600;
    }

    @media screen and (max-width: 860px) {
      .cp-page-item {
        grid-template-columns: 88px 1fr;
        grid-template-areas:
          "img details"
          "img qty"
          "img total";
        row-gap: 10px;
      }
      .cp-page-item__image { grid-area: img; }
      .cp-page-item__details { grid-area: details; }
      .cp-page-item__price { display: none; }
      .cp-page-item__price--mobile { display: block; font-size: 14px; font-weight: 600; }
      .cp-page-item__quantity { grid-area: qty; }
      .cp-page-item__line-total { grid-area: total; }
    }

    /* Summary */
    .cp-page-summary {
      background: #fafafa;
      padding: 28px;
      position: sticky;
      top: 100px;
    }
    .cp-page-summary__title {
      font-size: 16px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }
    .cp-page-summary__row {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin-bottom: 8px;
    }
    .cp-page-summary__note {
      font-size: 12px;
      color: #888888;
      margin: 12px 0 24px;
      line-height: 1.5;
    }
    .cp-page-checkout-btn {
      display: block;
      width: 100%;
      padding: 16px;
      background: #111111;
      color: #ffffff;
      border: none;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.2s ease;
    }
    .cp-page-checkout-btn:hover { background: #333333; }
    .cp-page-continue-link {
      display: block;
      text-align: center;
      margin-top: 14px;
      font-size: 12px;
      color: #666666;
      text-decoration: underline;
    }
