/* Shared card layout */
.kh-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 12px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    background: #ffffff;
}

.kh-product-thumb {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.kh-product-thumb img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.kh-product-title {
    font-size: 14px;
    line-height: 1.4;
    margin: 4px 0 6px;
    flex-grow: 1;
}

.kh-product-title a {
    color: #222;
    text-decoration: none;
}

.kh-product-price {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.kh-add-to-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.2;
    border-radius: 999px;
    text-transform: uppercase;
}

/* Master shop layout */
.kh-master-shop-wrapper {
    width: 100%;
}

.kh-master-shop-section {
    margin-bottom: 40px;
}

.kh-master-shop-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 12px;
}

.kh-master-shop-section-title {
    font-size: 20px;
    font-weight: 600;
}

.kh-master-shop-view-all {
    font-size: 13px;
    text-decoration: none;
}

/* Horizontal row used by master + row widget */
.kh-master-shop-row,
.kh-product-row-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.kh-master-shop-row .kh-product-card,
.kh-product-row-scroll .kh-product-card {
    min-width: 190px;
    max-width: 210px;
}

/* Row heading bar */
.kh-product-row-wrapper {
    margin-bottom: 40px;
}

.kh-product-row-heading-bar {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.kh-row-heading {
    font-size: 20px;
    font-weight: 600;
}

.kh-row-subheading {
    font-size: 13px;
    color: #777;
}

.kh-row-view-all {
    margin-left: auto;
    font-size: 13px;
    text-decoration: none;
}

/* Grid widget */
.kh-product-grid {
    display: grid;
    gap: 16px;
}

.kh-product-grid.columns-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.kh-product-grid.columns-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.kh-product-grid.columns-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.kh-product-grid.columns-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.kh-product-grid.columns-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .kh-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 768px) {
    .kh-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .kh-master-shop-row .kh-product-card,
    .kh-product-row-scroll .kh-product-card {
        min-width: 160px;
    }
}
