/**
* Theme Name: Machic Child
* Description: This is a child theme of Machic, generated by Merlin WP.
* Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
* Template: machic
* Version: 1.5.6
*/
/* CIT Custom Product Grid */

.cit-product-section {
    width: 100%;
    margin: 30px 0;
}

.cit-product-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.cit-product-section-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.cit-product-view-all {
    font-size: 14px;
    font-weight: 500;
}

.cit-product-grid {
    display: grid;
    grid-template-columns: repeat(var(--cit-desktop-columns), minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.cit-product-card {
    min-width: 0;
}

.cit-product-image {
    display: block;
    width: 100%;
    overflow: hidden;
    background: #dadadb;
}

.cit-product-image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.cit-product-details {
    padding-top: 10px;
}

.cit-product-title {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.cit-product-title a {
    color: inherit;
    text-decoration: none;
}

.cit-product-title a:hover {
    color: var(--color-link);
}

.cit-product-price {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 1199px) {
    .cit-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .cit-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .cit-product-title {
        font-size: 13px;
    }

    .cit-product-price {
        font-size: 15px;
    }
}