* {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      body {
        background-color: #f8f9fa;
      }
      .cart-content {
        margin: 6rem auto;
        padding: 2rem;
        width: 85%;
        background: #fff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        border-radius: 1rem;
      }
      .cart-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        border-bottom: 1px solid #ddd;
        padding: 1rem;
        transition: transform 0.3s;
      }
      .cart-item:hover {
        transform: scale(1.01);
        background-color: #f1f1f1;
      }
      .cart-item img {
        width: 80px;
        height: auto;
        object-fit: contain;
        border-radius: 0.5rem;
      }
      .title-item h4 {
        font-size: 1.1rem;
        font-weight: 600;
      }
      .title-item p {
        margin-bottom: 0;
      }
      .inc-dec button,
      .remove-btn {
        background: #054997;
        color: #fff;
        border: none;
        padding: 0.4rem 0.7rem;
        border-radius: 0.3rem;
        transition: background 0.3s ease, transform 0.2s;
      }
      .inc-dec button:hover,
      .remove-btn:hover {
        background-color: #0360c0;
        transform: scale(1.1);
      }
      .amount-sec,
      .cart-right {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
      .checkout .btn-success {
        transition: transform 0.3s;
      }
      .checkout .btn-success:hover {
        transform: scale(1.05);
      }
      @media (max-width: 768px) {
        .cart-content {
          padding: 1rem;
        }
        .cart-item {
          flex-direction: column;
          text-align: center;
        }
        .cart-item img {
          width: 100%;
        }
        .cart-left {
          flex-direction: column;
          gap: 1rem;
        }
      }