/* Quote List Button Styles - Header Uyumlu */
.promigo-quote-list-button {
    display: inline-block;
    font-family: inherit;
}

.quote-button-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    transition: all 0.15s ease;
    position: relative;
    border: 1px solid #e0e0e0;
    cursor: pointer;
}

.quote-button-link:hover {
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-color: #d0d0d0;
}

.quote-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    color: currentColor;
}

.quote-badge {
background-color: transparent !important;
    color: white !important;
    border-radius: 30% !important;
    padding: 4px 8px !important;
    font-size: 12px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    display: flex !important
;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
    height: 20px !important;
    position: absolute !important;
    top: 14px !important;
    right: 10px !important;
    border: 0 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    flex-shrink: 0 !important;
}
a.quote-button-link {
    padding-right: 40px !important;
}
.quote-text {
    white-space: nowrap;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .promigo-quote-list-button {
        display: block !important;
        width: auto;
    }
    
    .quote-button-link {
        padding: 8px 12px;
        font-size: 12px;
        gap: 4px;
        min-width: auto;
        width: auto;
        height: auto;
        border-radius: 6px;
        justify-content: flex-start;
    }
    
    .quote-text {
        display: inline !important;
        font-size: 12px;
    }
    
    .quote-icon {
        width: 16px;
        height: 16px;
    }
    
    .quote-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .quote-badge {
        top: -4px;
        right: -4px;
        min-width: 14px;
        height: 14px;
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    .quote-button-link {
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .quote-text {
        font-size: 11px;
    }
    
    .quote-icon {
        width: 14px;
        height: 14px;
    }
    
    .quote-icon svg {
        width: 14px;
        height: 14px;
    }
}

/* Animation for badge - subtle */
@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.quote-badge {
    animation: badgePulse 3s infinite;
}
