/* Wine Custom Label Design - Frontend Button Styles */

.wcld-customize-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #722F37 0%, #8B3A3A 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wcld-customize-button:hover {
    background: linear-gradient(135deg, #8B3A3A 0%, #722F37 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    text-decoration: none;
}

.wcld-customize-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.wcld-customize-button:focus {
    outline: 2px solid #722F37;
    outline-offset: 2px;
}

/* Icon styling */
.wcld-customize-button svg,
.wcld-customize-button i {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Responsive */
@media (max-width: 768px) {
    .wcld-customize-button {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* Elementor widget button styles */
.wcld-elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wcld-elementor-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.wcld-elementor-button:active {
    transform: translateY(0);
}

.wcld-button-wrapper {
    margin: 10px 0;
}