/**
 * Vreugde Product Pro - Design tokens
 *
 * CSS variabelen + gedeelde knop-styling, scoped op .vcp-product-page.
 */
:root {
    --vcp-yellow: #f6c424;
    --vcp-yellow-dark: #e0ac0c;
    --vcp-yellow-soft: #fef6d9;
    --vcp-red: #e6332a;
    --vcp-red-dark: #c41e15;
    --vcp-red-soft: #fef2f2;
    --vcp-text: #111827;
    --vcp-text-muted: #6b7280;
    --vcp-text-soft: #9ca3af;
    --vcp-bg: #ffffff;
    --vcp-bg-soft: #f9fafb;
    --vcp-bg-success: #ecfdf5;
    --vcp-border: #e5e7eb;
    --vcp-border-strong: #d1d5db;
    --vcp-success: #059669;
    --vcp-radius-sm: 6px;
    --vcp-radius: 10px;
    --vcp-radius-lg: 14px;
    --vcp-transition: 150ms ease;
}

/* ==========================================================================
   Knop-styling voor .vcp-product-page — Divi-vrij, schone reset
   ========================================================================== */
.vcp-product-page .vcp-btn,
.vcp-product-page a.vcp-btn,
.vcp-product-page button.vcp-btn {
    appearance: none !important;
    -webkit-appearance: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 42px !important;
    padding: 0 18px !important;
    border-radius: var(--vcp-radius-sm) !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    cursor: pointer !important;
    transition: background-color var(--vcp-transition), border-color var(--vcp-transition), color var(--vcp-transition), transform var(--vcp-transition) !important;
    box-shadow: none !important;
    text-shadow: none !important;
    background-image: none !important;
    margin: 0 !important;
    white-space: nowrap !important;
    border: 1px solid transparent !important;
}

.vcp-product-page .vcp-btn::before,
.vcp-product-page .vcp-btn::after {
    display: none !important;
    content: none !important;
}

.vcp-product-page .vcp-btn:focus-visible {
    outline: 2px solid var(--vcp-yellow) !important;
    outline-offset: 2px !important;
    box-shadow: none !important;
}

.vcp-product-page .vcp-btn--primary,
.vcp-product-page a.vcp-btn--primary,
.vcp-product-page button.vcp-btn--primary {
    background: var(--vcp-red) !important;
    color: #ffffff !important;
    border-color: var(--vcp-red) !important;
    box-shadow: none !important;
}

.vcp-product-page .vcp-btn--primary:hover,
.vcp-product-page a.vcp-btn--primary:hover,
.vcp-product-page button.vcp-btn--primary:hover {
    background: var(--vcp-red-dark) !important;
    border-color: var(--vcp-red-dark) !important;
    color: #ffffff !important;
    transform: translateY(-1px) !important;
    box-shadow: none !important;
}

.vcp-product-page .vcp-btn--primary:active {
    transform: translateY(0) !important;
    box-shadow: none !important;
}

@keyframes vcp-spin {
    to { transform: rotate(360deg); }
}

@keyframes vcp-fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}
