/* LV Button Widget Styles */
.lv-button-wrapper {
    display: block;
    width: 100%;
    margin-bottom: 15px;
}

.lv-button {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 15px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    color: inherit;
    width: 100%;
    box-sizing: border-box;
}

.lv-button:hover {
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: var(--lv-hover-gradient, linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, rgba(139, 69, 19, 0) 100%));
}

.lv-button-content {
    flex: 1 !important;
    min-width: 0 !important;
    overflow: hidden;
}

.lv-button-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px 0;
    color: #2d3748;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lv-button-subtitle {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 6px 0;
    color: var(--lv-custom-color, #8B4513);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lv-button-emphasis {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: #718096;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.lv-button-intel {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.5;
    color: #4a5568;
    border-top: 1px dashed #e2e8f0;
    padding-top: 8px;
}

.lv-button-intel br {
    display: block;
    content: "";
    margin-top: 2px;
}

.lv-button-avatar {
    flex-shrink: 0 !important;
    position: relative !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #f7fafc;
}

.lv-button-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lv-button-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.lv-button-fullwidth {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .lv-button {
        padding: 12px;
        gap: 12px;
    }
    
    .lv-button-title {
        font-size: 16px;
    }
    
    .lv-button-subtitle {
        font-size: 13px;
    }
    
    .lv-button-emphasis {
        font-size: 12px;
    }
    
    .lv-button-avatar {
        width: 50px;
        height: 50px;
    }
}

/* Elementor editor preview */
.elementor-editor-active .lv-button:hover {
    transform: none;
}