
.section--product {
    margin: 50px 0 0 0;
}

.section--product .container {
    display: flex;
    justify-content: space-between;
}

.section--product .section__column {
    width: calc(50% - 20px);
}

.section--product .section__image {
    width: 100%;
}

.section--product .section__image img {
    max-width: 100%;
    margin-left: -80px;
}

.section--product .section__title {
}

.section--product .section__introduction {
    margin: 45px 0 50px 0;
}

.giftcard-form {
    max-width: 520px;
}

.giftcard-form__label {
    display: block;
    font-weight: 600;
    position: absolute;
    top:0;
    left:0;
    z-index: 100;
    pointer-events: none;
    text-transform: uppercase;
    font-size:18px;
    transition: linear .15s;
}
.giftcard-form__label span {
    font-size:14px;
}
.giftcard-form__row {
    width: 100%;
    margin: 0 0 45px 0;
}

.giftcard-form__input {
    width: 100%;
    padding: 0;
    line-height: 40px;
    font-size: 20px;
    border:none;
    border-bottom:1px solid var(--color-primary);
    appearance: none;
    border-radius: 0;
}
.giftcard-form__input:focus {
    outline:none;
}
.giftcard-form__row.focused .giftcard-form__label {
    top:-20px;
    font-size:14px;
}
.giftcard-form__btn {
    flex: 0 0 auto;
    margin: 0;
    font-size: 1rem;
    border: 0;
    border-radius: .5rem;
    background: #252e38;
    color: #fff;
    cursor: pointer;
}

.giftcard-form__btn:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.giftcard-form__hint {
    margin: 44px 0 0 0;
    font-size: 13px;
}

.giftcard-form__error {
    color: #b91c1c;
    margin: .5rem 0 0;
    font-weight: 600;
}


@media all and (max-width: 1000px){
    .section--product .container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap:50px;
    }
    .section--product .section__column{
        width: 100%;
    }
    .section--product .section__image img {
        margin-left:0;
    }
}
