  /* Wrapper */
  .cart-wrapper {
      width: 100%;
      max-width: 1100px;
      margin: 120px auto 60px;
      background: #fff;
      box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.9);
      border-radius: 8px;
      padding: 40px 50px;
  }

  h1 {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 40px;
      color: #111;
  }

  .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 25px 0;
      border-bottom: 1px solid #e5e5e5;
  }

  .item-left {
      display: flex;
      gap: 20px;
      align-items: flex-start;
  }

  .item-image img {
      width: 95px;
      height: 95px;
      object-fit: cover;
      border-radius: 8px;
  }

  .item-details h3 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #111;
  }

  .item-details p {
      font-size: 14px;
      color: #6d7175;
      margin: 3px 0;
  }

  .item-right {
      text-align: right;
  }

  .price {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #111;
  }

  .edit,
  .remove {
      font-size: 13px;
      cursor: pointer;
      margin-bottom: 6px;
      transition: 0.2s ease;
  }

  .edit {
      color: #006fbb;
  }

  .edit:hover {
      text-decoration: underline;
  }

  .remove {
      color: #d72c0d;
  }

  .remove:hover {
      text-decoration: underline;
  }

  .cart-summary {
      margin-top: 40px;
      border-top: 1px solid #e5e5e5;
      padding-top: 30px;
      max-width: 350px;
      margin-left: auto;
  }

  .cart-summary p {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      margin: 10px 0;
      color: #111;
  }

  .cart-summary strong {
      font-size: 16px;
  }

  .checkout-btn {
      width: 100%;
      margin-top: 20px;
      padding: 14px;
      background: #111;
      color: white;
      border: none;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.25s ease;
  }

  .checkout-btn:hover {
      background: #333;
  }

  .quantity-selector {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
  }

  .quantity-selector button {
      width: 32px;
      height: 32px;
      border: 1px solid #7e7b7b;
      background: white;
      cursor: pointer;
      font-size: 16px;
  }

  .quantity-selector input {
      width: 50px;
      text-align: center;
      border: 1px solid #7e7b7b;
      height: 32px;
  }

  .cart-note {
      margin-top: 40px;
  }

  .cart-note label {
      display: block;
      font-size: 14px;
      margin-bottom: 8px;
      font-weight: 500;
  }

  .cart-note textarea {
      width: 100%;
      min-height: 80px;
      padding: 10px;
      border: 1px solid #7e7b7b;
      resize: vertical;
  }

  .shipping-section {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 1px solid #7e7b7b;
  }

  .shipping-section h2 {
      font-size: 18px;
      margin-bottom: 20px;
  }

  .form-group {
      margin-bottom: 20px;
  }

  .form-group label {
      display: block;
      font-size: 14px;
      margin-bottom: 6px;
  }

  .form-group input,
  .form-group select {
      width: 100%;
      padding: 10px;
      border: 1px solid #7e7b7b;
  }

  @media(max-width:768px) {
      .cart-wrapper {
          padding: 25px;
      }

      .cart-item {
          flex-direction: column;
          gap: 15px;
      }

      .item-right {
          text-align: left;
      }

      .cart-summary {
          max-width: 100%;
      }
  }