
.product-store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Gilroy-SemiBold', sans-serif;

    font-size: 18px !important;
}

.product-store-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}



.product-item {
    background-color: #e9e9e9;
    padding: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}



.product-item img {
    max-width: 80%;
    height: auto;
    background-color: transparent;
    display: block; /* Ensure the image is treated as a block element */
    margin: 0; /* Remove any default margin */
    padding: 0; /* Remove any default padding */
}
.product-description {
    margin-top: 10px;
    text-align: center;
    color: black;
}

.product-name {
    margin-top: 10px;
    text-align: center;
    color: black;
}

.product-actions {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector button {
    padding: 5px 10px;
    border: 1px solid lightgray;
    background-color: #f7f7f7;
    cursor: pointer;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: 1px solid lightgray;
    margin: 0 5px;
}

.add-to-cart {
    width: 160px;
    height: 40px;
    padding: 0px 10px;
    background-color: #E9E9E9;
    color: #68AAA5;
    border: 2px solid #68AAA5;
    border-radius: 15px;
    cursor: pointer;
}

.add-to-cart:hover {
    background-color: #218838;
}

.add-to-cart.clicked {
    background-color: #E9E9E9;
    color: #68AAA5;
}

.large-product {
    flex: 1 1 100%;
    max-height: max-content;

}

.learn-more {
    width: 160px;
    height: 40px;
    padding: 0px 10px;
    background-color: #68AAA5;
    color: white;
    border: 2px solid #68AAA5;
    border-radius: 15px;
    cursor: pointer;
    margin-left: 10px;
}

.learn-more:hover {
    background-color: #218838;
}

.spec-pc{
    display:block;
}

.spec-small{
    display:none;
}

/*Modal dialog */
.modal-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.modal-body{
    margin-top: 30px;
    color: black;
    font-family: 'Gilroy-SemiBold', sans-serif;
    font-size: 18px !important;
}

.modal-header, .modal-body, .modal-footer {
    padding: 10px;
}

.modal-header {
    border-bottom: 0px;

}

.modal-title {
    font-size: 24px;
    font-family: 'Gilroy-Bold', sans-serif;
    color: #68AAA5;
}

.modal-footer {
    margin-top: 30px;
    border-top: 0px;
    text-align: right;
}

.tooltip {
    position: absolute;
    background-color: #333;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: opacity 0.9s ease-in-out;
    opacity: 0;
}

.tooltip.show {
    opacity: 1;
}


/* -------RESPONSIVE-------  */
@media (max-width: 768px) {
    .spec-pc{
        display:none;
    }

    .spec-small{
        display:block;
    }
}
@media (max-width: 539px) {
    .product-actions {
        flex-wrap: wrap;
    }
    .learn-more {
        margin-left: 0;
        margin-bottom: 20px;
    }
    .product-item img {
        max-width: 100%;
    }


}