

.spiderkit-display{
    object-fit: cover;
    display: inline-block;
    justify-content: center;
    text-align: center;
    border-top: 2px solid black;
}

.display-image{
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

.display-image img {
    width: 100%;
    max-height: 100%;
    box-sizing: border-box;
}

.display-buttons {
    display: flex;
    gap: 25px;
    padding-bottom: 10;
    align-items: center;
    justify-content: center;
}

.display-buttons .active{
    background-color: black;
    color: white;
}

.display-buttons button {
    width: 125px;
    height: 50px;
    background-color: white;
    border: 1px solid black;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.display-buttons button:hover {
    background-color: black;
    color: white;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.panel {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid;
    border-color: #000;
}

.overlay .button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 15px;
    border: 2px solid;
    border-color: #000;
    color: #000;
    background: transparent;
    cursor: pointer;
}

.overlay .button:hover {
    background-color: black;
    color:#fff;
}

.total-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.total-price{
    border-top: 1px solid #000;
}

.total-price h2{
    color: black;
    font-weight: 600;
    font-size: 20;
}

.cart-button{
    font-family: "Montserrat";
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    outline: 0;
    height: 60px;
    cursor: pointer;
    border: 0;
    font-size: 15px;
    border: 2px solid;
    border-color: #000;
    color: #000;
    background: transparent;
    font-weight: 800;
    line-height: 30px;
    transition: all, 0.1s;
}

.cart-button:hover{
    background-color: black;
    color:#fff;
}

.cart-button:active{
    transform: translateY(0.2rem)
}

.price-container{
    padding: 20px;
}

.total-price-value{
    text-align: right;
    margin-right: 24px;
    font-size: 18px;
}

.total-price-value{
    font-size: 20px;
    font-weight: 600;
}

.toggle-container{
    margin: 20px;
    cursor: pointer;
    height: 60px;
    background-color: black;
    border-radius: 0.2rem;
    display: flex;
    padding: 5px 20px;
    align-items: center;
    justify-content: space-between;
}
  
.toggle-button {
    display: inline-block;
    font-size: 30px;
    color: white;
}

.toggle-name{
    font-size: 30px;
    color: white;
    font-weight: 600;
}
  
.hidden-container {
    display: none;
}

.item-container{
    margin: 20px;
    display: flex;
    overflow-y: auto;
}

.item {
    min-width: 300px;
    padding: 0 30px;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}

.item img{
    display: block;
    background-color: rgb(225, 225, 225);
    width:100%;
    max-width: 350px;
    border-radius: 1.5%;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 20px 0 rgba(0, 0, 0, 0.19);
}

.item .image-container {
    position: relative;
}

.item h2{
    font-size: 20px;
}

.item p{
    font-size: 15px;
}

.item .info{
    align-items: center;
    justify-content: space-between;
}

.item-price-button{
    display: flex;
    justify-content: space-between;
}

.quantity-count {
    width: 70px;
    height: auto;
    font-size: 35px;
    background: #fff;
    cursor: pointer;
    border: none;
    border-radius: 0;
    background: transparent;
    transition: all 0.3s ease;
}

.quantity-count:hover {
    transform: scale(1.15);
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

@media (max-width: 500px){

    .display-buttons button {
        width: 75px;
        height: 35px;
        font-size: 12px;
    }

    .toggle-name{
        font-size: 25px;
    }

    .toggle-button{
        font-size: 30px;
    }
    .item{
        min-width: 250px;
        padding: 0 10px;
    }

    .item h2{
        font-size: 14px;
        margin-right: 5px;
    }
    
    .item .quantity-input{
        font-size: 14px;
        font-weight: 600;
    }

    .cart-button{
        height: 25px;
        font-size: 13px;
        border: 2px solid;
    }
}