/**
 * WC WhatsApp & Katalog Button - Frontend Style
 */

.wcwk-button-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 25px;
    width: 100%;
    max-width: 400px;
}

.wcwk-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px !important;
    border: none;
    border-radius: 6px;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
    width: 100%;
    line-height: 1.4 !important;
    box-sizing: border-box;
    text-align: center;
}

/* Tombol WhatsApp */
.wcwk-btn-wa {
    background: #25D366;
    color: #ffffff;
}

.wcwk-btn-wa:hover,
.wcwk-btn-wa:focus {
    filter: brightness(0.92);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Tombol Katalog */
.wcwk-btn-katalog {
    background: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.wcwk-btn-katalog:hover,
.wcwk-btn-katalog:focus {
    filter: brightness(0.95);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.2);
}

/* Icon SVG */
.wcwk-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 480px) {
    .wcwk-button-group {
        max-width: 100%;
    }

    .wcwk-btn {
        font-size: 15px !important;
        padding: 13px 20px !important;
    }

    .wcwk-btn svg {
        width: 20px;
        height: 20px;
    }
}
