/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}

.store-archive {
    padding: 50px 0;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.deal-card img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.deal-card h3 {
    margin-top: 12px;
}
.deal-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
}

.deal-image {
    display: block;
}

.deal-card img {
    width: 100%;
    display: block;
}


.deal-card h3 {
    margin: 0 0 15px;
    font-size: 20px;
}

.deal-card h3 a {
    color: inherit;
    text-decoration: none;
}

a.deal-grab-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 13px 20px;

    background: #ff6b00;
    color: #fff !important;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none !important;

    transition: .3s ease;
}

a.deal-grab-button:hover {
    background: #111;
    color: #fff !important;
}
@media(max-width: 768px) {
    .deals-grid {
        grid-template-columns: 1fr;
    }

}