/* Layout type 4: same zone chrome as type 3; product area is a fixed Rows×Cols grid scaled to fit. */

.pos-layout-type-4 .pos-catalog--zone-detail .pos-product-grid--scaled {
    display: grid;
    grid-template-columns: repeat(var(--pos-tile-cols, 1), minmax(0, 1fr));
    grid-template-rows: repeat(var(--pos-tile-rows, 1), minmax(0, 1fr));
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    align-content: stretch;
    gap: 0.5rem;
    padding-bottom: 0;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile {
    min-height: 0;
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
    overflow: hidden;
    padding: 0.4rem;
    gap: 0.1rem;
    justify-content: flex-start;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile__image {
    flex: 0 1 auto;
    max-height: 40%;
    min-height: 0;
    width: 100%;
    object-fit: contain;
    margin-bottom: 0.1rem;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile--profile {
    padding: 0;
    justify-content: center;
    align-items: center;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile--profile .pos-product-tile__image {
    flex: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    margin: 0;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile__name {
    font-size: clamp(0.65rem, 1.6vh, 0.95rem);
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    white-space: normal;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile__price,
.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile__profile-hint {
    font-size: clamp(0.6rem, 1.4vh, 0.85rem);
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile__pickup {
    font-size: clamp(0.55rem, 1.2vh, 0.75rem);
    margin-top: 0.1rem;
}

.pos-layout-type-4 .pos-product-grid--scaled .pos-product-tile__soldout {
    font-size: clamp(0.55rem, 1.2vh, 0.75rem);
}

.pos-layout-type-4 .pos-product-tile--empty {
    visibility: hidden;
    pointer-events: none;
    border: none;
    background: transparent;
    box-shadow: none;
}
