.gahesa-entrega-producto {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 14px 16px;
    background: #f4f8f2;
    border-left: 4px solid #4CAF50;
    border-radius: 6px;
    font-size: 15px;
    color: #333;
}

.gahesa-entrega-producto i {
    color: #2e7d32;
    font-size: 20px;
    flex-shrink: 0;
}

.gahesa-texto-entrega strong {
    color: #2e7d32;
    font-weight: 600;
}

.gahesa-mas-info {
    margin-left: auto;
    color: #2e7d32;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.gahesa-panel-entrega {
    position: fixed;
    right: -420px;
    width: 360px;
	padding-left: 30px;
	padding-top: 10px;

    top: 135px!important;;
    /*height: calc(100vh - var(--gahesa-header-height, 120px))!important;;*/

    background: #fff;
    z-index: 2147483647;
    transition: right .35s ease;
    overflow-y: auto;
}

.gahesa-panel-entrega h3 {
    margin-top: 0;
    color: #2e7d32;
    font-size: 22px;
}

.gahesa-panel-entrega p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.gahesa-panel-entrega strong {
    color: #2e7d32;
}

.gahesa-panel-entrega hr {
    border: 0;
    border-top: 1px solid #e5e5e5;
    margin: 20px 0;
}

.gahesa-entrega-producto:hover .gahesa-panel-entrega {
    right: 0;
}

@media (max-width: 767px) {

    .gahesa-entrega-producto {
        flex-wrap: wrap;
        font-size: 14px;
        padding: 12px;
    }

    .gahesa-mas-info {
        margin-left: 0;
        width: 100%;
    }

    .gahesa-panel-entrega {
        width: 85%;
        right: -100%;
    }

    .gahesa-entrega-producto:hover .gahesa-panel-entrega {
        right: 0;
    }
}