/*.gesture_box {*/
/*    cursor: pointer;*/
/*}*/

.gift_box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 120px;
}

.gift_box .gift_box_lt,
.gift_box .gift_box_rt {
    width: 50%;
}

.gift_box_rt .gift_head {
    color: var(--dark-900);
    font-family: var(--heading-font);
    font-size: 40px;
    font-weight: 500;
    line-height: 55px;
}

.gift_box_rt .sub_head_inter {
    line-height: 38px;
    color: var(--grey-666);
    margin: 60px 0;
    border-left: 1px solid #C2B48E;
    padding: 19px 0 19px 30px;
    margin-left: 60px;
}

.gift_box_rt .com_btn {
    margin-left: 90px;
}

/* -------------card--------------- */
.audio_modal .modal-body {
    padding: 0;
}

.audio_modal .modal-dialog,
.audio-card {
    /* max-width: 580px; */
}

.audio-card {
    background: url(../../images/front/ct_noise_bg.webp) no-repeat center / cover;
    padding: 40px;
    display: flex;
    gap: 25px;
}

.audio-content {
    text-align: center;
    width: 60%;
}

.song_title {
    color: var(--dark-900);
    font-family: var(--heading-font);
    font-size: 24px;
    font-weight: 500;
}

.song_phrase {
    color: var(--dark-333);
    font-weight: 500;
}


.audio-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #d6c9a3;
    position: relative;
    margin-bottom: 16px;
}

.progress-bar span {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background: var(--gold-color);
}

.controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.controls .icon,
.controls .play {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.controls .play {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-color);
    color: #fff;
    font-size: 18px;
}

.audio-links a {
    color: var(--gold-color);
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.audio-links span {
    margin: 0 6px;
}



/* ------------- */

.gift_flower_options {
    display: none;
}

.gift_flower_options.is-visible {
    display: flex;
    gap: 15px;
}

/* OPTION CARD */
.flower_option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

/* HIDE DEFAULT RADIO */
.flower_option input {
    display: none;
}

/* CUSTOM RADIO */
.custom_radio {
    width: 18px;
    height: 18px;
    border: 2px solid #999;
    border-radius: 50%;
    position: relative;
}

/* INNER DOT */
.custom_radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #8c8a72;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.2s;
}

/* TEXT */
.option_text {
    font-size: 14px;
}

/* ACTIVE STATE */
.flower_option input:checked+.custom_radio {
    border-color: #8c8a72;
}

.flower_option input:checked+.custom_radio::after {
    transform: translate(-50%, -50%) scale(1);
}


/* HOVER EFFECT */
.flower_option:hover {
    border-color: #8c8a72;
}





/* ----------------- */


.share-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-top: 20px;
}

.share-box {
    border: 2px solid transparent;
    border-radius: 8px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 140px;
}

/* WhatsApp: Bright Green to Dark Teal */
.share-box.whatsapp {
    background-image: linear-gradient(#eae6e0, #eae6e0), linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #128C7E;
}

/* Gmail: Google's Red, Blue, Green, Yellow */
.share-box.gmail {
    background-image: linear-gradient(#eae6e0, #eae6e0), linear-gradient(135deg, #EA4335 0%, #4285F4 33%, #34A853 66%, #FBBC04 100%);
    color: #EA4335;
}

/* Instagram: Official Sunset Gradient */
.share-box.instagram {
    background-image: linear-gradient(#eae6e0, #eae6e0), linear-gradient(45deg, #F09433 0%, #E6683C 25%, #DC2743 50%, #CC2366 75%, #BC1888 100%);
    color: #DC2743;
}

.share-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.share-box svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    color: inherit;
}

.share-box:hover svg {
    transform: scale(1.1);
}

@media (max-width: 767px) {
    .share-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 16px;
    }

    .share-box {
        flex-direction: row;
        padding: 16px 20px;
        min-height: auto;
        justify-content: flex-start;
    }

}