.cupom-head:before {
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: -10px;
    left: 0;
    content: "";
    background: transparent;
}

.cupom-head svg, .cupom-head path {
	display: block;
    align-items: center;
    margin: auto;
    width: 30px;
    top: -1px;
    position: relative;
    height: 34px;
    -webkit-font-smoothing: antialiased;
    transition: all .2s;
    fill: var(--cor_icones);
    fill-opacity: 1;
}

.menu-wrapper.span6.hidden-phone {
	width: 64%;
    display: flex;
    height: 50px;
    position: relative;
    top: 0;
    justify-content: space-around;
    align-items: center;
    padding-left: 20px;
}


/* OPEN MODEL */
.cupom-head {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 0 15px;
    vertical-align: middle;
    margin-top: 38px;
}

.cupom-head svg {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
}

.cupom-head p {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500 !important;
    color: var(--color-in-bg-clean);
    margin: 0;
    font-weight: 600;
}

.cupom-head .cupom-modal {
    display: none; 
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    width: 280px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    margin-top: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cupom-head .cupom-modal::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
}

.cupom-head:hover .cupom-modal {
    display: flex;
}

.cupom-head .title {
    color: #4d4d4d;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.cupom-head .cupom-code {
    display: block;
    border: 2px dashed #012143;
    color: #012143;
    font-size: 20px;
    font-weight: 800;
    padding: 12px 10px;
    border-radius: 4px;
    width: 100%;
    margin-bottom: 15px;
    background-color: #fff;
}

.cupom-head .validate {
    display: block;
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

.cupom-code-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
}

.cupom-code {
    display: block;
    border: 2px dashed #012143; 
    color: #012143;
    font-size: 18px;
    font-weight: 800;
    padding: 10px 15px;
    border-radius: 4px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

/* copy msg + api do navegador */
.copy-msg {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    color: #999;
}

.cupom-code.copied {
    border-color: #28a745;
    color: #28a745;
    background-color: #f8fff9;
}

/* CUPOM DISCOUNT MOBILE START */
@media(max-width: 760px) {
    .right-options {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end;
        gap: 10px; 
    }

    .cupom-mobile-trigger {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        padding: 0 5px;
        cursor: pointer;
        order: -1; 
    }

    .cupom-mobile-trigger svg {
        width: 26px; 
        height: 26px;
        display: block;
    }

    .cupom-modal-mobile {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 999999;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cupom-modal-content {
        background: #fff;
        width: 85%;
        max-width: 300px;
        padding: 30px 20px;
        border-radius: 12px;
        text-align: center;
        position: relative;
    }

    .close-cupom {
        position: absolute;
        top: 5px;
        right: 15px;
        font-size: 30px;
        color: #ccc;
    }

    .cupom-code {
        border: 2px dashed #012143;
        padding: 10px;
        font-size: 20px;
        font-weight: bold;
        margin: 15px 0 5px;
        color: #012143;
    }
}