.cart-page {
    padding: 34px 0 90px;
  }

  .cart-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
  }

  .cart-header-copy {
    max-width: 720px;
  }

  .cart-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 30px;
    padding: 0 11px;
    margin-bottom: 13px;
    border: 1px solid rgba(192, 132, 252, .18);
    border-radius: 999px;
    background: rgba(168, 85, 247, .08);
    color: #d8b4fe;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  .cart-eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 13px rgba(168, 85, 247, .9);
  }

  .cart-header h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 950;
    letter-spacing: -.065em;
    line-height: .95;
  }

  .cart-header p {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, .52);
    font-size: 14px;
    line-height: 1.65;
  }

  .back-to-store {
    flex-shrink: 0;
    min-height: 46px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
    transition:
      transform .18s ease,
      border-color .18s ease,
      background .18s ease,
      color .18s ease;
  }

  .back-to-store:hover {
    transform: translateY(-2px);
    border-color: rgba(192, 132, 252, .24);
    background: rgba(168, 85, 247, .08);
    color: #fff;
  }

  .cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 18px;
    align-items: start;
  }

  .cart-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 25px;
    background:
      radial-gradient(circle at 0 0, rgba(147, 51, 234, .09), transparent 31%),
      rgba(12, 9, 21, .76);
    box-shadow: 0 24px 72px rgba(0, 0, 0, .31);
    backdrop-filter: blur(18px);
  }

  .cart-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, .035),
        transparent 25%,
        transparent 75%,
        rgba(168, 85, 247, .025)
      );
  }

  .cart-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 9px;
    padding: 11px;
  }

  .cart-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 102px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 18px;
    background: rgba(255, 255, 255, .026);
    transition:
      border-color .18s ease,
      background .18s ease;
  }

  .cart-item:hover {
    border-color: rgba(192, 132, 252, .15);
    background: rgba(255, 255, 255, .035);
  }

  .cart-item-image {
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 15px;
    object-fit: cover;
    background: #08050e;
  }

  .cart-item-info {
    min-width: 0;
  }

  .cart-item-info h3 {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .cart-item-option {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .cart-item-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    flex-wrap: wrap;
  }

  .quantity-control {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    background: rgba(0, 0, 0, .22);
  }

  .quantity-control button {
    width: 33px;
    height: 32px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition:
      background .16s ease,
      color .16s ease;
  }

  .quantity-control button:hover {
    background: rgba(168, 85, 247, .12);
    color: #fff;
  }

  .quantity-control strong {
    min-width: 31px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
  }

  .remove-item {
    padding: 7px 9px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: rgba(255, 255, 255, .42);
    font-size: 11px;
    font-weight: 850;
    cursor: pointer;
    transition:
      color .16s ease,
      background .16s ease;
  }

  .remove-item:hover {
    background: rgba(255, 83, 115, .08);
    color: #ff9caf;
  }

  .cart-item-price {
    padding-left: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: -.02em;
    text-align: right;
    white-space: nowrap;
  }

  .cart-summary {
    position: sticky;
    top: 110px;
    padding: 22px;
  }

  .cart-summary-inner {
    position: relative;
    z-index: 1;
  }

  .summary-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: #c4a1eb;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .summary-label i {
    font-size: 9px;
  }

  .cart-summary h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 24px;
    font-weight: 950;
    letter-spacing: -.04em;
  }

  .summary-rows {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .065);
    border-radius: 17px;
    background: rgba(255, 255, 255, .02);
  }

  .summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    min-height: 47px;
    padding: 0 13px;
    border-bottom: 1px solid rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .49);
    font-size: 12px;
    font-weight: 750;
  }

  .summary-row:last-child {
    border-bottom: 0;
  }

  .summary-row strong {
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    font-weight: 900;
  }

  .summary-row.total {
    min-height: 59px;
    color: #fff;
    background: rgba(255, 255, 255, .025);
    font-size: 15px;
    font-weight: 950;
  }

  .summary-row.total strong {
    color: #fff;
    font-size: 20px;
    letter-spacing: -.03em;
  }

  .discount-field {
    margin-top: 14px;
  }

  .discount-field label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .53);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .discount-field input {
    width: 100%;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    outline: none;
    background: rgba(0, 0, 0, .22);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition:
      border-color .18s ease,
      box-shadow .18s ease,
      background .18s ease;
  }

  .discount-field input:focus {
    border-color: rgba(168, 85, 247, .45);
    background: rgba(0, 0, 0, .3);
    box-shadow: 0 0 0 4px rgba(168, 85, 247, .08);
  }

  .discount-field input::placeholder {
    color: rgba(255, 255, 255, .23);
  }

  .checkout-button,
  .clear-button {
    width: 100%;
    min-height: 52px;
    border-radius: 15px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 950;
    cursor: pointer;
    transition:
      transform .18s ease,
      filter .18s ease,
      border-color .18s ease,
      background .18s ease;
  }

  .checkout-button {
    margin-top: 16px;
    border: 1px solid rgba(216, 180, 254, .22);
    background:
      linear-gradient(135deg, #a855f7, #7c3aed);
    box-shadow:
      0 15px 36px rgba(124, 58, 237, .22),
      inset 0 1px rgba(255, 255, 255, .14);
  }

  .checkout-button:hover:not(:disabled) {
    transform: translateY(-2px);
    filter: brightness(1.07);
  }

  .checkout-button:disabled {
    opacity: .42;
    cursor: not-allowed;
    box-shadow: none;
  }

  .clear-button {
    min-height: 44px;
    margin-top: 9px;
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .025);
    color: rgba(255, 255, 255, .53);
  }

  .clear-button:hover {
    border-color: rgba(255, 97, 126, .2);
    background: rgba(255, 83, 115, .06);
    color: #ffadbd;
  }

  .security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
    color: rgba(255, 255, 255, .34);
    font-size: 10.5px;
    font-weight: 750;
  }

  .security-note i {
    color: rgba(216, 180, 254, .72);
  }

  .empty-cart {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    min-height: 390px;
    padding: 50px 24px;
    text-align: center;
  }

  .empty-cart-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 17px;
    border: 1px solid rgba(192, 132, 252, .17);
    border-radius: 19px;
    background: rgba(168, 85, 247, .08);
    color: #d8b4fe;
    display: grid;
    place-items: center;
    font-size: 21px;
    box-shadow: 0 14px 34px rgba(124, 58, 237, .1);
  }

  .empty-cart strong {
    display: block;
    margin-bottom: 7px;
    color: #fff;
    font-size: 19px;
    font-weight: 950;
    letter-spacing: -.03em;
  }

  .empty-cart span {
    display: block;
    color: rgba(255, 255, 255, .44);
    font-size: 13px;
    line-height: 1.6;
  }

  .empty-cart a {
    min-height: 44px;
    margin-top: 20px;
    padding: 0 16px;
    border: 1px solid rgba(216, 180, 254, .2);
    border-radius: 14px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none;
  }

  @media (max-width: 960px) {
    .cart-layout {
      grid-template-columns: 1fr;
    }

    .cart-summary {
      position: relative;
      top: auto;
    }
  }

  @media (max-width: 700px) {
    .cart-page {
      padding: 24px 0 70px;
    }

    .cart-header {
      display: grid;
      align-items: start;
    }

    .back-to-store {
      width: fit-content;
    }

    .cart-item {
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 12px;
    }

    .cart-item-image {
      width: 64px;
      height: 64px;
      border-radius: 13px;
    }

    .cart-item-price {
      grid-column: 1 / -1;
      padding: 0 0 0 76px;
      text-align: left;
    }
  }

  @media (max-width: 460px) {
    .cart-card {
      border-radius: 21px;
    }

    .cart-list {
      padding: 8px;
    }

    .cart-item {
      padding: 10px;
      border-radius: 15px;
    }

    .cart-summary {
      padding: 18px;
    }

    .cart-item-price {
      padding-left: 0;
    }
  }
