/* Common styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cart {
    display: flex;
    align-items: center;
    padding: 7px 10px;
    border-radius: 3px;
    width: 80px;
}

.bi-cart {
    color: black;
    height: 26px;
    width: 26px;
}

.cart p {
    height: 26px;
    width: 22px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background-color: white;
    color: black;
}
.filters{
    margin-top: 120px;
}

.containercart {
    display: flex;
    width: 100%;
    margin-top: 130px;
}

#root {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
    margin-left: 10px;
}

/* .sidebar {
    width: 30%;
    border-radius: 5px;
    background-color: #eee;
    margin-left: 50px;
    padding: 15px;
    text-align: center;
}

.head {
    background-color: goldenrod;
    border-radius: 3px;
    height: 40px;
    padding: 10px;
    margin-bottom: 20px;
    color: white;
    display: flex;
    align-items: center;
}

.foot {
    display: flex;
    justify-content: space-between;
    margin: 20px 0px;
    padding: 10px 0px;
    border-top: 1px solid #333;
} */

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid goldenrod;
    background-color: #f3f0ed;
    border-radius: 5px;
    padding: 15px;
}
.images {
    height: 272px;
    width: 380px;
    border: 1px solid black;
    border-radius: 22px;
    object-position: center;
}
.images:hover{
    scale: 1.05;
}

.bottom {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bottom p{
    margin-bottom:2px ;
}
.bottom h2 {
    font-size: 16px;
    /* color: red; */
}

.bottom button {
    /* width: 50%; */
    border: 1px solid black;
    border-radius: 25px;
    /* background-color: #FF6500; */
    padding: 7px 15px;
    cursor: pointer;
    color: black;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 16px;
}
.btn-gap{
    margin: 4px;
}
.btn-color{
    color: black;
    font-size: 22px;
}

button:hover {
    background-color: #afaea9;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #f3f0ed;
    border-bottom: 1px solid #aaa;
    border-radius: 3px;
    margin: 10px 0;
}

.row-img {
    width: 70px; /* Adjusted size */
    height: 70px; /* Adjusted size */
    border-radius: 5px;
    border: 1px solid goldenrod;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rowing {
    max-width: 43px;
    max-height: 43px;
    border-radius: 50%; /* Adjusted size */
}
.btn-pay{
    width: 50%;
    border: 1px solid black;
    border-radius: 25px;
    background-color: #FF6500;
    padding: 7px 15px;
    cursor: pointer;
    color: white;
}

.bi-trash:hover {
    cursor: pointer;
    color: #FF6500;
}

/* Responsive styles */
@media (max-width: 768px) {
    .containercart {
        flex-direction: column;
        align-items: center;
    }

    #root {
        width: 90%;
        grid-template-columns: 1fr;
        align-items: center;

    }

    .sidebar {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .images {
        height: 172px;
        width: 180px;
        object-position: center;
    }
}
