
.add-to-cart {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    transition: background 0.3s ease;
}

.add-to-cart a {
}

.btn-add-to-cart {
    text-transform:uppercase;
    font-size:1rem;
    letter-spacing:1px;
    width:100%;
    background-color: #000;
    color:#fff;
    text-align:center;
    margin:0 auto;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.add-to-cart-button:hover {
    background-color: #332d2b;
    transition: background 0.3s ease;
}

.cart-container {
    max-width: 600px;
    margin: 150px auto;
    padding: 20px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.cart-container h2 {
    font-size:2rem;
    text-align: center;
    margin-bottom: 30px;
}

.cart-table {
    margin-left:15px;
    max-width:800px;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table td a {
    color:#acacac;
}

@media screen and (max-width: 600px) {
    .cart-container {
        margin-top:20px;
        box-shadow:none;
        border:none;
    }
    .cart-table {
        margin-left:0;
        border-bottom:1px solid #acacac;
    }
    .table-header {
        display:none;
    }
    .ind-price {
        display:none;
    }
    .cart-table tr {
        border-bottom:1px solid #efefef;
    }
}

.cart-table th,
.cart-table td {
    /*border: 1px solid #ccc;*/
    padding: 12px 16px;
}

.cart-table th {
    font-size:1rem;
    text-transform: uppercase;
    text-align:left;
    /*background-color: #efefef;*/
    color: #4c4c4c;
    font-weight: 600;
    border-bottom:1px solid #ccc;
}

.cart-table td {
    background-color: #ffffff;
}

.total-price {
    margin-left:15px;
}

.remove-item {
    color: #555555;
    text-decoration: none;
    margin-left: 20px;
}

.checkout-button {
    display: block;
    text-align: center;
    background-color: #B6A593;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background-color: #8f7d6f;
    color:#000;
}
