﻿/**
 * Video Commerce Feed - Frontend Styles
 * TikTok-style vertical video feed
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    --vcf-bg: #000;
    --vcf-text: #fff;
    --vcf-text-secondary: rgba(255, 255, 255, 0.7);
    --vcf-accent: #fe2c55;
    --vcf-accent-hover: #ff4d73;
    --vcf-overlay-gradient: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    --vcf-action-bg: rgba(255, 255, 255, 0.1);
    --vcf-action-bg-hover: rgba(255, 255, 255, 0.2);
    --vcf-modal-bg: #ffffff;
    --vcf-border-radius: 12px;
    --vcf-transition: 0.2s ease;
    --vcf-safe-bottom: env(safe-area-inset-bottom, 20px);
}

/* ========================================
   Reset para evitar estilos do tema
   ======================================== */
.vcf-feed-container button:not(.vcf-add-variation-btn):not(.system-btn):not(.size-btn):not(.vcf-variation-option),
.vcf-feed-container a {
    all: unset;
}

.vcf-feed-container button,
.vcf-feed-container a {
    box-sizing: border-box;
}

/* Reset especÃ­fico para botÃµes do modal */
.vcf-modal button {
    all: unset;
    box-sizing: border-box;
    cursor: pointer;
}

/* Acelerar transiÃ§Ã£o de scroll */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
    
    .vcf-feed {
        scroll-padding-top: 0;
        scroll-behavior: smooth;
    }
}

/* ========================================
   Base Container
   ======================================== */
.vcf-feed-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 50px); /* Leave space for mobile navbar */
    height: calc(100dvh - 50px); /* Dynamic viewport height */
    background: #000; /* Black background */
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
    z-index: 10;
}

/* Woodmart cart sidebar e menu mobile devem aparecer acima do feed */
.cart-widget-side,
.mobile-nav {
    z-index: 10000 !important;
}

.cart-widget-side.wd-opened,
.mobile-nav.wd-opened {
    z-index: 10000 !important;
}

.wd-close-side {
    z-index: 9998 !important;
}

.wd-close-side.wd-close-side-opened {
    z-index: 9998 !important;
    background: rgba(0, 0, 0, 0.5) !important;
}

/* Black background for page */
body.page-template-default {
    background: #000 !important;
}

/* Desktop: full height centered feed */
@media (min-width: 1025px) {
    .vcf-feed-container {
        height: 100vh;
        height: 100dvh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        background: #000;
    }

    /* Simula viewport mobile centralizado no desktop */
    .vcf-feed {
        width: 430px;
        max-width: 430px;
        height: 100%;
        background: #000;
    }

    .vcf-slide {
        width: 100%;
    }
}

.vcf-feed {
    height: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vcf-feed::-webkit-scrollbar {
    display: none;
}

/* ========================================
   Video Slide
   ======================================== */
.vcf-slide {
    position: relative;
    width: 100%;
    height: calc(100vh - 50px); /* Match container height */
    height: calc(100dvh - 50px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: hidden;
    flex-shrink: 0;
}

/* Desktop: full height */
@media (min-width: 1025px) {
    .vcf-slide {
        height: 100vh;
        height: 100dvh;
    }
}

.vcf-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--vcf-bg);
}

/* Video loading state */
.vcf-slide.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--vcf-accent);
    border-radius: 50%;
    animation: vcf-spin 0.8s linear infinite;
}

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

/* ========================================
   Labels (Trending, New, etc.)
   ======================================== */
.vcf-labels {
    position: absolute;
    top: 70px;
    left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 10;
}

.vcf-label {
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--vcf-text);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   Right Action Bar (TikTok Style)
   ======================================== */
.vcf-actions {
    position: absolute;
    right: 12px;
    bottom: 80px; /* Above product info */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.vcf-action-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    color: var(--vcf-text) !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    text-decoration: none !important;
    transition: transform var(--vcf-transition) !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-appearance: none !important;
}

.vcf-action-btn:hover,
.vcf-action-btn:focus,
.vcf-action-btn:active {
    background: none !important;
    transform: scale(0.95);
}

.vcf-action-btn .vcf-icon {
    width: 27px;
    height: 27px;
    object-fit: contain;
    display: block;
}

.vcf-action-count,
.vcf-action-label {
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    color: var(--vcf-text);
    margin-top: 0;
    line-height: 1;
}

/* ========================================
   Button States - Active Icons (only like & wishlist)
   ======================================== */

/* Like button - troca Ã­cone quando active */
.vcf-like-btn.active .vcf-icon {
    content: url('../icons/like-hover.png') !important;
}

.vcf-like-btn.animating {
    animation: vcf-like-pop 0.3s ease;
}

@keyframes vcf-like-pop {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* Wishlist button - troca Ã­cone quando active */
.vcf-wishlist-btn.active .vcf-icon {
    content: url('../icons/wishlist-hover.png') !important;
}

/* Wishlist loading state */
.vcf-wishlist-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Remover background de todos os botÃµes */
.vcf-cart-btn,
.vcf-like-btn,
.vcf-wishlist-btn,
.vcf-share-btn,
.vcf-view-btn {
    background: none !important;
    padding: 0 !important;
}

/* ========================================
   Product Info Overlay (Bottom) - TikTok Style
   ======================================== */
.vcf-product-info {
    position: absolute;
    bottom: 10px; /* Above mobile navbar */
    left: 0;
    right: 0;
    padding: 60px 16px 16px 16px;
    padding-right: 70px; /* Space for action buttons */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 5;
}

.vcf-product-link {
    text-decoration: none;
    display: block;
}

.vcf-product-link:hover .vcf-product-name,
.vcf-product-link:active .vcf-product-name {
    text-decoration: underline;
}

.vcf-product-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--vcf-text);
    margin: 0 0 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.3;
}

.vcf-product-subtitle {
    font-size: 13px;
    color: var(--vcf-text);
    opacity: 0.85;
    margin: 0 0 6px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.vcf-product-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--vcf-text);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.vcf-product-price del {
    font-size: 13px;
    opacity: 0.6;
    margin-right: 6px;
    color: var(--vcf-text);
}

.vcf-product-price ins {
    text-decoration: none;
    color: var(--vcf-text);
}

/* WooCommerce price styling override */
.vcf-product-price .woocommerce-Price-amount {
    color: var(--vcf-text) !important;
}

.vcf-product-price .woocommerce-Price-currencySymbol {
    color: var(--vcf-text) !important;
}

/* ========================================
   Progress Bar
   ======================================== */
.vcf-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 15;
}

.vcf-progress-bar {
    height: 100%;
    background: var(--vcf-text);
    width: 0;
    transition: width 0.1s linear;
}

/* ========================================
   Top Controls (Back, Play/Pause, Mute)
   ======================================== */
.vcf-top-controls {
    position: absolute !important;
    top: 20px !important;
    left: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    z-index: 100 !important;
}

.vcf-control-btn {
    width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    padding: 6px !important;
    margin: 0 !important;
    border-radius: 50% !important;
    -webkit-appearance: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.vcf-control-btn:active {
    transform: scale(0.95) !important;
}

/* Desktop: alinhar controles ao feed centralizado (largura 430px) */
@media (min-width: 1025px) {
    .vcf-top-controls {
        left: calc(50% - 199px) !important; /* 430px/2 - 16px padding */
    }
}

.vcf-control-btn .vcf-control-icon {
    width: 17px !important;
    height: 17px !important;
    object-fit: contain !important;
}

/* Play/Pause states - default is playing (pause icon visible) */
.vcf-playpause-btn .vcf-icon-pause {
    display: block !important;
}
.vcf-playpause-btn .vcf-icon-play {
    display: none !important;
}
.vcf-playpause-btn.paused .vcf-icon-pause {
    display: none !important;
}
.vcf-playpause-btn.paused .vcf-icon-play {
    display: block !important;
}

/* Mute/Sound states - default is muted */
.vcf-mute-btn .vcf-icon-mute {
    display: block !important;
}
.vcf-mute-btn .vcf-icon-sound {
    display: none !important;
}
.vcf-mute-btn.unmuted .vcf-icon-mute {
    display: none !important;
}
.vcf-mute-btn.unmuted .vcf-icon-sound {
    display: block !important;
}

/* ========================================
   Loading State
   ======================================== */
.vcf-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vcf-bg);
    z-index: 100;
    transition: opacity 0.3s ease;
}

.vcf-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.vcf-loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--vcf-accent);
    border-radius: 50%;
    animation: vcf-spin 0.8s linear infinite;
}

/* ========================================
   Modal (Variations)
   ======================================== */
.vcf-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999; /* Acima do menu mobile */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.vcf-modal.active {
    opacity: 1;
    visibility: visible;
}

.vcf-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.vcf-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: calc(100vh - 80px); /* Leave space for navbar */
    background: var(--vcf-modal-bg);
    border-radius: 20px 20px 0 0;
    padding: 20px;
    padding-bottom: 80px; /* Extra padding para botÃ£o ficar visÃ­vel acima do menu */
    transform: translateY(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-sizing: border-box;
}

.vcf-modal.active .vcf-modal-content {
    transform: translateY(0);
}

.vcf-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 24px;
    cursor: pointer;
}

/* ========================================
   Variation Form (Light Theme)
   ======================================== */
.vcf-variation-form {
    color: #333;
}

.vcf-variation-product-header {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vcf-variation-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.vcf-variation-product-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #333;
}

.vcf-variation-price {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.vcf-variation-price del {
    color: #999;
    font-weight: 400;
}

.vcf-variation-price ins {
    color: #e74c3c;
    text-decoration: none;
}

/* Reserve System - EXATAMENTE igual custom.css */
.reserve-system {
    text-align: center;
    margin-bottom: 8px;
    padding: 4px 0;
}

.reserve-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.reserve-label {
    font-size: 12px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.3px;
}

.reserve-price {
    font-size: 14px;
    font-weight: 600;
    color: #2d7a4f;
}

.reserve-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 10px;
    font-weight: 600;
    color: #999;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: help;
    position: relative;
    transition: all 0.2s ease;
}

.reserve-info-icon:hover {
    color: #333;
    border-color: #999;
}

/* Tooltip do Reserve */
.reserve-info-icon:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    padding: 12px 14px;
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    text-align: left;
}

/* Seta do tooltip */
.reserve-info-icon:hover::before {
    content: "";
    position: absolute;
    bottom: 115%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
    z-index: 1001;
}

/* Mobile tooltip */
@media (max-width: 480px) {
    .reserve-info-icon:hover::after {
        width: 220px;
        left: auto;
        right: -10px;
        transform: none;
    }
    
    .reserve-info-icon:hover::before {
        left: auto;
        right: 2px;
        transform: none;
    }
}

.reserve-subtext {
    font-size: 10px;
    color: #999;
    margin-top: 2px;
    font-weight: 300;
}

.vcf-variation-attribute {
    margin-bottom: 20px;
}

/* Custom Size Selector - EXATAMENTE igual custom.css */
.custom-size-selector {
    width: 100%;
    margin-bottom: 8px;
}

.size-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.size-system-toggle {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    justify-content: center;
}

.size-system-toggle .system-btn {
    all: unset !important;
    box-sizing: border-box !important;
    flex: 1 !important;
    padding: 8px 10px !important;
    background: #f7f7f7 !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 5px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #666 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-transform: uppercase !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.size-system-toggle .system-btn:hover {
    background: #efefef !important;
    border-color: #d0d0d0 !important;
}

.size-system-toggle .system-btn.active {
    background: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.size-buttons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}

.size-buttons-grid.show {
    max-height: 300px;
    opacity: 1;
    margin-top: 6px;
}

.size-buttons-grid .size-btn {
    all: unset !important;
    box-sizing: border-box !important;
    padding: 10px 4px !important;
    background: #fff !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 5px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.size-buttons-grid .size-btn:hover {
    border-color: #999 !important;
    background: #fafafa !important;
}

.size-buttons-grid .size-btn.selected {
    background: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
    transform: scale(1.05) !important;
}

.size-buttons-grid .size-btn.selected:hover {
    background: #222 !important;
    border-color: #222 !important;
}

.size-buttons-grid .size-btn:disabled {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    background: #f5f5f5 !important;
}

.size-buttons-grid .size-btn:disabled:hover {
    border-color: #e0e0e0 !important;
    background: #f5f5f5 !important;
}

.vcf-variation-attribute label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vcf-variation-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vcf-variation-option {
    min-width: 48px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--vcf-transition);
    text-align: center;
}

.vcf-variation-option:hover {
    border-color: #333;
}

.vcf-variation-option.selected {
    background: #333;
    border-color: #333;
    color: #fff;
}

.vcf-variation-option.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.vcf-variation-stock {
    margin-top: 12px;
    margin-bottom: 0;
    font-size: 13px;
    text-align: left;
}

.vcf-variation-stock .in-stock {
    color: #2d7a4f;
    font-weight: 500;
}

.vcf-variation-stock .out-of-stock {
    color: #ef4444;
    font-weight: 500;
}

.vcf-variation-actions {
    margin-top: 20px;
}

.vcf-add-variation-btn {
    all: unset !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 20px !important;
    background: #333 !important;
    border: none !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.vcf-add-variation-btn:hover {
    background: #222 !important;
}

.vcf-add-variation-btn:disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background: #999 !important;
}

/* ========================================
   Toast Notifications
   ======================================== */
.vcf-toasts {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2000;
    pointer-events: none;
}

.vcf-toast {
    padding: 12px 24px;
    background: var(--vcf-modal-bg);
    border-radius: 8px;
    color: var(--vcf-text);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: vcf-toast-in 0.3s ease, vcf-toast-out 0.3s ease 2.7s forwards;
}

.vcf-toast.success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.vcf-toast.error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

@keyframes vcf-toast-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
}

@keyframes vcf-toast-out {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* ========================================
   Share Popup
   ======================================== */
.vcf-share-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px;
}

.vcf-share-btn-social {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: transform var(--vcf-transition);
}

.vcf-share-btn-social:hover {
    transform: scale(1.1);
}

.vcf-share-btn-social svg {
    width: 24px;
    height: 24px;
}

.vcf-share-facebook { background: #1877f2; color: white; }
.vcf-share-twitter { background: #1da1f2; color: white; }
.vcf-share-whatsapp { background: #25d366; color: white; }
.vcf-share-copy { background: rgba(255, 255, 255, 0.1); color: var(--vcf-text); }

/* ========================================
   Responsive / Desktop Adjustments
   ======================================== */
@media (min-width: 768px) {
    .vcf-feed-container {
        display: flex;
        justify-content: center;
    }
    
    .vcf-feed {
        max-width: 420px;
        border-radius: 0;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    }
    
    .vcf-modal-content {
        border-radius: 20px;
        margin-bottom: 20px;
    }
}

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .vcf-feed {
        scroll-behavior: auto;
    }
    
    .vcf-toast,
    .vcf-loading-spinner,
    .vcf-slide::after {
        animation: none;
    }
}

/* Focus states for keyboard navigation */
.vcf-action-btn:focus-visible,
.vcf-back-btn:focus-visible,
.vcf-mute-btn:focus-visible,
.vcf-variation-option:focus-visible {
    outline: 2px solid var(--vcf-accent);
    outline-offset: 2px;
}

