main {
    padding: 80px 0 100px 0;

}

@media (max-width: 768px) {
    main {
        padding: 0px 0px 40px 0px;
        max-width: calc(100vw - 40px);
    }
}

/* Select Gift OTP Page */
.gift-container {
    display: flex;
    flex-direction: row;
    gap: 100px;
    width: fit-content;
    z-index: 2;
    margin: 0 auto;
    padding: 40px;
    position: relative;
}

/* Text Content Section */
.gift-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
    text-align: center;
    max-width: 418px;
    width: 100%;
}

.gift-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.gift-subtitle {
    font-size: 23px;
    font-weight: 700;
    line-height: 30px;
    color: #F2A347;
}

.gift-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 30px;
    color: #0B0427;
}

.gift-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    background: #2020B3;
    border: 2px solid #fff;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 34px;
    cursor: pointer;
    transition: background 0.2s ease;
    min-width: 264px;
    height: 50px;
}

.gift-button:hover {
    background: #1a1a99;
}

.gift-image-container {
    width: 380px;
    height: 293px;
}

.gift-image {
    object-fit: cover;
    object-position: 0px 20px;
    z-index: 2;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .gift-container {
        padding: 20px;
        flex-direction: column-reverse;
        gap: 20px;
        width: 100%;
    }

    .gift-card {
        flex-direction: column;
        padding: 28px 24px;
        border-radius: 20px;
        gap: 20px;
        min-height: auto;
    }

    .gift-image-section {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        height: 200px;
        order: -1;
    }

    .gift-image-container {
        width: 100%;
    }


    .gift-image {
        object-position: -20px 0px;
    }

    .gift-content {
        max-width: 100%;
    }

    .gift-subtitle {
        font-size: 20px;
    }

    .gift-title {
        font-size: 26px;
        line-height: 28px;
    }

    .gift-button {
        width: calc(100% - 40px);
        min-width: auto;

    }
}
