.cart-section {
    padding: 30px 0;
    background-color: #f9f9f9;
}

.cart-section h1 {
    font-size: 2em;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.cart-items {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item:last-child {
    border-bottom: none;
}

.item-image {
    width: 100px;
    margin-right: 15px;
}

.item-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.item-details {
    flex-grow: 1;
}

.item-name {
    font-size: 1em;
    color: #333;
    margin-bottom: 5px;
}

.item-price {
    font-size: 1.1em;
    font-weight: bold;
    color: #000;
    margin-bottom: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
}

.quantity-button {
    background-color: #f0f0f0;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 1em;
}

.quantity-input {
    width: 40px;
    text-align: center;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin: 0 5px;
    font-size: 1em;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4d4d;
    font-size: 1.2em;
    cursor: pointer;
    margin-left: 15px;
}

.remove-item:hover {
    color: #cc0000;
}

.cart-summary {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: right;
}

.subtotal, .shipping, .total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1em;
}

.total {
    font-size: 1.2em;
    font-weight: bold;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.checkout-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.checkout-button:hover {
    background-color: #0056b3;
}

footer {
    background-color: #000;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column p {
    font-size: 0.9em;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: #fff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.app-badges img {
    height: 40px; 
    border-radius: 5px;
    max-height: 40px; 
}   

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 0.8em;
    color: #777;
    border-top: 1px solid #222;
    margin-top: 30px;
}

#frete {
    color: green;
}
