* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F29F05;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    width: 100%;
}

header {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2.5em;
    color: white;
}

.container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    width: 100%;
    max-width: 1200px;
    justify-items: center;
    margin: 0 auto;
}

.product-card {
    background-color: #874421;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    margin-bottom: 40px;
    display: flex; 
    flex-direction: column;
}

.product-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    aspect-ratio: 3 / 2;
}

.product-card h2 {
    font-size: 1.5em;
    margin-top: 10px;
}

.product-card p {
    margin: 10px 0;
}

.price {
    font-size: 1.75em;
    color: #F29F05;
    font-weight: bold;
    margin-bottom: 20px;
}

.quantity {
    font-size: 1.2em;
    color: #DCDCDC;
    font-weight: bold;
    margin-bottom: 20px;
}

button {
    background-color: #FCC96C;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-weight: bold;
}

button:hover {
    background-color: #FBB433;
}

.cart {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 350px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: none;
    transition: transform 0.3s ease-in-out;
    color: black;
}

.cart h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cart-items {
    margin-bottom: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cart-total {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.cart-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 15;
}

.toggle-cart-btn {
    background-color: #ff5722;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e53935;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: normal;
    border: 2px solid white;
}

.cart-wrapper.bounce {
    animation: cartBounce 0.35s ease;
}

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.4) rotate(-8deg);
    }
    55% {
        transform: scale(0.9) rotate(6deg);
    }
    75% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

.quantidade-container{
    bottom: 0;
    margin-top: auto;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }

    .product-card {
        max-width: 100%;
    }
}