html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    overflow: hidden;
}

.scale-wrapper {
    width: 1920px;
    height: 1080px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: scale(var(--scale-factor)) translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.header {
    height: 119px;
    flex-shrink: 0;
}

.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    height: 94px;
    flex-shrink: 0;
}

.container-960 {
    width: 960px;
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

    .products-grid.col1 {
        grid-template-columns: repeat(1, 1fr);
    }

    .products-grid.col2 {
        grid-template-columns: repeat(2, 1fr);
    }

.product-item {
    position: relative;
    background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 1) 100%);
    padding: 10px;
    text-align: center;
    font-size: 3rem;
    display: flex;
    flex-direction: column;
}

    .product-item:after {
        content: '';
        margin: -10px;
        background-image: url(/uploads/images/genel/Duvar-2-min.jpg);
        background-position: center;
        background-repeat: repeat;
        background-size: contain;
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.product-first {
    flex-shrink: 0;
}

.product-content {
    flex: 1;
    display: flex;
    align-items: center;
}

    .product-content.hizala1 {
        justify-content: center;
    }

    .product-content.hizala2 {
        justify-content: space-between;
    }

.product-end {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.urunbaslik {
    font-weight: 700;
    color: #ff7800;
    -webkit-text-stroke: 1px #fff;
}

    .urunbaslik.fontsize1 {
        font-size: 3.8rem;
    }

    .urunbaslik.fontsize2 {
        font-size: 2.8rem;
    }

.urungorsel {
    max-width: 70%;
    height: fit-content;
    max-height: 180px;
}

.fiyatlar {
    font-family: calibri;
    font-weight: 700;
    color: #fff;
    padding: 0 10px;
}

.birim {
    color: #fdb773;
    line-height: 1.2;
}
    .birim.fontsize1 {
        width: 150px;
    }

.fiyat {
    font-size: 3.5rem;
}

    .fiyat.fontsize1 {
        font-size: 6.5rem;
        line-height: 0.8;
    }

        .fiyat.fontsize1 small {
            font-size: 3.5rem;
        }

    .fiyat.fontsize2 {
        padding-left: 20px;
        font-size: 6.5rem;
        line-height: 0.8;
    }

        .fiyat.fontsize2 small {
            font-size: 3.5rem;
        }

img.full-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

img.half-fit {
    width: 50%;
    height: 100%;
    float: left;
    object-fit: cover;
}