    
    .cart-container {
      display: none;
      max-width: 1200px;
/*  051925      margin: 40px auto;   */
/*  051925      padding: 0 20px;    */

      min-height: 100vh;
      overflow: hidden;
margin: 0 auto; /* This centers the div horizontally */
    }
    .cart-title {
      text-align: center;
      font-size: 2rem;
      letter-spacing: 2px;
      margin-bottom: 40px;
      font-weight: 400;

      margin: 40px auto;
      padding: 0 20px;

    }
    .cart-header,
    .cart-row {
      display: flex;
      align-items: flex-start;
      border-bottom: 1px solid #eee;
      padding: 20px 0;
    }
    .cart-header {
      font-size: 0.95rem;
      color: #aaa;
      font-weight: 400;
      border-bottom: 1px solid #eee;
      padding-top: 0;
      padding-bottom: 0;
    }
    .cart-col-product {
      flex: 2;
      display: flex;
      align-items: center;
    }
    .cart-col-quantity {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      min-width: 140px;
    }
    .cart-col-total {
      flex: 1;
      text-align: right;
      min-width: 120px;
      color: #444;
      font-size: 1rem;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }
    .product-img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      margin-right: 24px;
      flex-shrink: 1;
    }
    .cart-product-details {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }
    .product-title {
      font-size: 1rem;
      font-weight: 500;
      margin-bottom: 2px;
      color: #222;
    }
    .product-price {
      color: #888;
      font-size: 0.95rem;
    }
    .product-cart-desc {
      color: #aaa;
      font-size: 0.85rem;
    }
    .quantity-controls {
      display: flex;
      align-items: center;
      margin-bottom: 6px;
    }
    .cart-quantity-btn {
/*  display: flex;  */
      width: 28px;
      height: 28px;
      border: 1px solid #eee;
      background: #faf9f7;
      color: #444;
      font-size: 1.1rem;
      cursor: pointer;
      outline: none;
    }
    .quantity-value {
      width: 28px;
      text-align: center;
      border: none;
      background: transparent;
      font-size: 1rem;
      margin: 0 6px;
      pointer-events: none;
    }
    .remove-link {
      color: #888;
      font-size: 0.95rem;
      text-decoration: underline;
      cursor: pointer;
    }
    .cart-summary {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      margin-top: 30px;
      gap: 8px;
    }
    .cart-total-label {
      font-size: 1.1rem;
      color: #444;
    }
    .cart-summary small {
      color: #aaa;
      font-size: 0.9rem;
    }
    .checkout-btn {
      background: #efbf04;
      color: #444444
      border: none;
      padding: 12px 32px;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 1.5px;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }
    .checkout-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    .hidden {
      display: none !important;
    }
    @media (max-width: 700px) {
      .cart-header, .cart-row {
        flex-direction: column;
        align-items: stretch;
      }
      .cart-col-product, .cart-col-quantity, .cart-col-total {
        min-width: 0;
        margin-bottom: 10px;
      }
      .cart-summary {
        align-items: stretch;
      }
    }


