.list-wrap {
    font-size: large;
}

/* Default for desktop devices */
.logo img {
    max-width: 350px;
}

/* For tablets (up to 1024px) */
@media (max-width: 1024px) {
    .logo img {
        max-width: 300px;
    }
}

/* For mobile devices (up to 768px) */
@media (max-width: 768px) {
    .logo img {
        max-width: 200px;
    }
}




.formula-area {
    display: flex;
    justify-content: center;
    /* Centers the container horizontally */
    align-items: center;
    /* Centers the container vertically */
}

.formula-content {
    text-align: center;
    /* Centers text inside the content */
    display: flex;
    flex-direction: column;
    /* Aligns content vertically */
    align-items: center;
    /* Centers child elements horizontally */
}

.formula-list {
    display: inline-block;
    text-align: center;
    /* Centers the list items */
    list-style: none;
    padding: 0;
    margin: 0;
}

.formula-list li {
    margin-bottom: 10px;
    font-size: larger;
    font-weight: bold;
}


/* coupon code - START*/
.coupon-area {
    text-align: center;
}

.coupon-area input {
    padding: 10px 15px;
    border: 2px dashed #000;
    border-radius: 5px;
    font-size: 18px;
    width: 200px;
    text-align: center;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    height: 60px;
}

.coupon-area p {
    color: #ffffff;
    font-weight: bold;
}

.coupon-wrap {
    display: inline-block;
}

@media (max-width: 768px) {
    .coupon-wrap button {
        display: inline;
        margin-top: 10px;
    }
}


/* coupon code - END*/




.price-retail {
    text-decoration: line-through;
}

@media (max-width: 768px) {
    #about-button {
        text-align: center;
    }
}