.iphone16e {
    position: relative;

    display: grid;
    grid-template-columns: 2fr 1fr;
    font-family: "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    place-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-inline-end: 1.5rem;
}

.iphone16e img {
    max-width: 100%;
    height: auto;
}

.iphone16e .dropsLogo {
    transform: scale(0.5);
    position: absolute;
    right: .5rem;
    top: .5rem;
    transform-origin: top right;
}

.iphone16e__images {
    background-color: #f5f5f7;
    text-align: center;
    padding: 2.625rem 2rem 2.438rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.iphone16e__text {
    font-size: 1.375rem;
    text-align: center;
}

.iphone16e__price {
    font-size: 1.938rem;
    font-weight: 500;
    line-height: 1;
}

.iphone16e__price span {
    font-size: 3.438rem;
    font-weight: 600;
}

@media (max-width: 1050px) {
    .iphone16e__price {
        font-size: 1.5rem;
    }

    .iphone16e__price span {
        font-size: 2.5rem;
    }
}

@media (max-width: 800px) {
    .iphone16e {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-inline-end: 0;
        margin-block-end: 2rem;
    }

    .iphone16e__images {
        padding: 1.5rem;
    }

    .iphone16e .dropsLogo {
        transform: scale(0.35);
    }
}

@media (max-width: 520px) {
    .iphone16e__price {
        font-size: 1.125rem;
    }

    .iphone16e__price span {
        font-size: 2rem;
    }
}