body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}
.price-box {
    font-family: Europa-ExtraBold;
    position: absolute;
    top: 50%;
    left: 82%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: bold;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: end;
    color: #202085;

    line-height: 1;
}

.price-box .old-price {
    color: #818182;
    font-size: 40px;
    text-decoration: line-through;
    font-family: Europa-ExtraBold;
}

.price-box .price {
    font-family: Europa-ExtraBold;
    font-size: 60px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .price-box {
        top: 45%;
        left: 82%;
        width: 30%;
        font-size: 26px !important;
        line-height: 1;
        align-items: flex-end;
    }

    .price-box .old-price {
        font-size: 18px !important;
        margin-top: 8px;
        margin-right: 8px;
        text-decoration: line-through;
        white-space: nowrap;
    }

    .price-box .price {
        font-size: 30px !important;
        margin-top: 4px;
        color: #ffffff;
        white-space: nowrap;
    }
}

/* iPhone 12 / 13 / 14 / 15 / 16 gibi 390px ekranlar */
@media (max-width: 430px) {
    .price-box {
        top: 45%;
        left: 82%;
        width: 32%;
    }

    .price-box .old-price {
        font-size: 15px !important;
        margin-top: 6px;
        margin-right: 6px;
    }

    .price-box .price {
        font-size: 26px !important;
        margin-top: 4px;
    }
}

/* Daha küçük telefonlar */
@media (max-width: 375px) {
    .price-box {
        top: 45%;
        left: 82%;
        width: 34%;
    }

    .price-box .old-price {
        font-size: 13px !important;
        margin-top: 5px;
        margin-right: 4px;
    }

    .price-box .price {
        font-size: 22px !important;
        margin-top: 3px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 330px) {
    .price-box {
        top: 45%;
        left: 81%;
        width: 36%;
    }

    .price-box .old-price {
        font-size: 11px !important;
    }

    .price-box .price {
        font-size: 18px !important;
    }
}

.countdown-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* SOL | ORTA | SAĞ */
    align-items: center;
    background: #e74c3c;
    padding: 7px 3px;
    border:2px dashed #fff;
}

/* SOL */
.countdown-left {
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
}

/* ORTA (TAM ORTA) */
.countdown-center {
    display: flex;
    gap: 6px;
    justify-content: center;
}

/* SAĞ */
.countdown-right {
    display: flex;
    justify-content: flex-end;
}

/* SAYAÇ */
.time-box {
    background: #2f2f2f;
    color: #fff;
    padding: 6px 10px;
    font-weight: 700;
    font-size: 14px;
    min-width: 64px;
    text-align: center;
}

.time-box span {
    font-size: 10px;
}

/* BUTON */
.order-btn-img {
    width: 110px;
}

#urunler {
    position: relative;
    top: -70px !important;
}
