*{
    margin: 0;
    padding: 0;
}
.cart-container {
      width: 60%;
      margin: 20px auto;
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #eee;
      padding: 15px 0;
    }

    .cart-item-left img {
      width: 120px;
      border-radius: 8px;
    }

    .cart-item-center {
      flex: 1;
      margin-left: 20px;
    }

    .cart-item-center h3 {
      font-size: 16px;
      margin: 0 0 8px;
    }

    .cart-item-center .brand {
      color: #888;
      font-size: 13px;
    }

    .btn-remove {
      background: none;
      border: none;
      color: #e74c3c;
      cursor: pointer;
      font-size: 14px;
      margin-top: 5px;
    }

    .cart-item-right {
      text-align: right;
    }

    .cart-item-right .price {
      font-size: 16px;
      color: #e74c3c;
      font-weight: bold;
      display: block;
      margin-bottom: 10px;
    }

    .quantity {
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .quantity button {
      width: 30px;
      height: 30px;
      border: 1px solid #ddd;
      background: #f9f9f9;
      cursor: pointer;
    }

    .quantity input {
      width: 40px;
      text-align: center;
      border: 1px solid #ddd;
      height: 30px;
      margin: 0 5px;
    }

    .cart-summary {
      width: 300px;
      margin: 20px 0 20px auto;
      padding: 15px 20px;
      font-size: 16px;
      line-height: 1.8;
    }

     .cart-summary p {
      margin: 8px 0;
      display: flex;
      justify-content: space-between;
    }
    .cart-summary strong {
      font-size: 18px;
      color: #e63946;
    }
    .cart-summary .total {
      font-size: 20px;
      font-weight: bold;
      color: #d62828;
    }

    .btn-checkout {
      background: #f6b517;
      border: none;
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;
      margin-top: 10px;
      margin-left: 37%;
    }

    .frame-bag{
      margin: 20px auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 20px;
    }
    .text-bag{
      font-size: 25px;
      font-weight: bold;
      color: #0000009f;
    }
    .icon-bag{
      font-size: 80px;
      margin-top: 10px;
      color: #00000052;
    }

    .btn-home{
      background: #f9b1018a;
      border: none;
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: bold;
      cursor: pointer;

    }
    .button-home:hover{
      background: #f9b1018a;
      border-radius: 5px;
    }
    .alert-success {
    position: absolute;
    top: 21.3%;
    left: 0;
    background: #d4edda;
    color: #155724;
    padding: 10px 20px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    z-index: 9999;
    
}
