/* Stili per le fee di produzione nel carrello */

/* Rende le fee più compatte e leggibili nella sidebar */
.cart_totals .cart-discount th,
.cart_totals .fee th {
    font-size: 14px;
    line-height: 1.4;
    padding: 8px 0;
}

/* Stile per le fee con icone */
.cart_totals .fee th {
    position: relative;
    cursor: help;
}

/* Tooltip per i dettagli */
.fee-tooltip {
    position: absolute;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    bottom: 100%;
    left: 0;
    margin-bottom: 5px;
}

.fee-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 20px;
    border: 5px solid transparent;
    border-top-color: #333;
}

.fee-tooltip.active {
    opacity: 1;
}

/* Icone più grandi e colorate */
.fee-icon {
    font-size: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

/* Data in evidenza */
.fee-date {
    font-weight: 600;
    color: #2271b1;
}

/* Responsive per mobile */
@media (max-width: 768px) {
    .cart_totals .fee th {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .fee-icon {
        font-size: 14px;
    }
    
    .fee-tooltip {
        position: fixed;
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
    }
}

/* Animazione per le icone */
.fee-icon {
    display: inline-block;
    animation: subtle-bounce 2s infinite;
}

@keyframes subtle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

/* Stile per il totale con consegna */
.order-total .fee-summary {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 5px;
    font-weight: normal;
}

/* Evidenzia quando ci sono più opzioni */
.production-options-notice {
    background: #f0f8ff;
    border: 1px solid #2271b1;
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
    font-size: 13px;
}

.production-options-notice .dashicons {
    color: #2271b1;
    margin-right: 5px;
}