/**
 * Estilos públicos para listas de presentes
 */

/* Container Principal */
.vbcm-public-gift-list {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Cabeçalho da Lista */
.vbcm-list-header {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.vbcm-list-cover {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.vbcm-list-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbcm-list-info {
    padding: 30px;
}

.vbcm-list-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f6fc;
    color: #2271b1;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.vbcm-list-title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1d2327;
}

.vbcm-list-host {
    font-size: 18px;
    color: #646970;
    margin-bottom: 15px;
}

.vbcm-list-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #646970;
    margin-bottom: 15px;
}

.vbcm-list-description {
    color: #50575e;
    line-height: 1.6;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #dcdcde;
}

/* Barra de Progresso */
.vbcm-list-progress {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.vbcm-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.vbcm-progress-label {
    font-weight: 600;
    color: #1d2327;
}

.vbcm-progress-percentage {
    font-size: 24px;
    font-weight: 700;
    color: #46b450;
}

.vbcm-progress-bar-wrapper {
    height: 30px;
    background: #f0f0f1;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 10px;
}

.vbcm-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #46b450 0%, #5bc75b 100%);
    transition: width 0.5s ease;
}

.vbcm-progress-stats {
    text-align: center;
    color: #646970;
}

/* Grade de Produtos */
.vbcm-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.vbcm-product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.vbcm-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.vbcm-product-card.vbcm-completed {
    opacity: 0.8;
}

.vbcm-product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f1;
    position: relative;
}

.vbcm-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbcm-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbcm-no-image .dashicons {
    font-size: 80px;
    color: #c3c4c7;
}

.vbcm-completed-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #46b450;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.vbcm-product-info {
    padding: 20px;
}

.vbcm-product-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #1d2327;
    line-height: 1.4;
}

.vbcm-product-price {
    font-size: 22px;
    font-weight: 700;
    color: #2271b1;
    margin-bottom: 10px;
}

.vbcm-product-notes {
    color: #646970;
    font-size: 14px;
    margin-bottom: 15px;
}

.vbcm-product-quantity {
    margin: 20px 0;
}

.vbcm-quantity-bar {
    height: 8px;
    background: #f0f0f1;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.vbcm-quantity-fill {
    height: 100%;
    background: linear-gradient(90deg, #46b450 0%, #5bc75b 100%);
    transition: width 0.5s ease;
}

.vbcm-quantity-text {
    font-size: 14px;
    color: #646970;
    text-align: center;
}

.vbcm-quantity-purchased {
    color: #46b450;
    font-weight: 700;
}

.vbcm-product-actions {
    margin-top: 15px;
}

.vbcm-product-completed {
    text-align: center;
    padding: 15px;
    background: #d4edda;
    color: #155724;
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Botões */
.vbcm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.vbcm-btn-primary {
    background: #2271b1;
    color: #fff;
}

.vbcm-btn-primary:hover {
    background: #135e96;
    color: #fff;
}

.vbcm-btn-secondary {
    background: #f0f0f1;
    color: #1d2327;
}

.vbcm-btn-secondary:hover {
    background: #dcdcde;
}

.vbcm-btn-block {
    display: flex;
    width: 100%;
}

/* Modal */
.vbcm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
}

.vbcm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.vbcm-modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
}

.vbcm-modal-content {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    position: relative;
}

.vbcm-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    color: #646970;
    font-size: 24px;
    line-height: 1;
    padding: 0;
}

.vbcm-modal-close:hover {
    color: #1d2327;
}

.vbcm-modal h3 {
    margin: 0 0 20px 0;
    font-size: 24px;
}

.vbcm-form-group {
    margin-bottom: 20px;
}

.vbcm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1d2327;
}

.vbcm-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #c3c4c7;
    border-radius: 5px;
    font-size: 16px;
}

.vbcm-input:focus {
    outline: none;
    border-color: #2271b1;
}

.vbcm-modal-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.vbcm-modal-actions .vbcm-btn {
    flex: 1;
}

.vbcm-success-icon {
    text-align: center;
    margin-bottom: 20px;
}

.vbcm-success-icon .dashicons {
    font-size: 80px;
    color: #46b450;
}

/* Listagem de Listas */
.vbcm-public-gift-lists {
    width: 100%;
    margin: 0;
    padding: 0;
}

.vbcm-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.vbcm-list-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.vbcm-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.vbcm-card-cover {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f1;
}

.vbcm-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbcm-card-cover.vbcm-no-cover {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbcm-card-cover.vbcm-no-cover .dashicons {
    font-size: 60px;
    color: #c3c4c7;
}

.vbcm-card-content {
    padding: 20px;
}

.vbcm-card-type {
    display: inline;
    color: #666;
    font-size: 12px;
    font-weight: 400;
}

.vbcm-card-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #1d2327;
}

.vbcm-card-host {
    color: #646970;
    margin-bottom: 8px;
}

.vbcm-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #646970;
    font-size: 14px;
    margin-bottom: 15px;
}

.vbcm-card-progress {
    margin-bottom: 15px;
}

.vbcm-progress-mini {
    height: 6px;
    background: #f0f0f1;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 5px;
}

.vbcm-progress-mini-fill {
    height: 100%;
    background: linear-gradient(90deg, #46b450 0%, #5bc75b 100%);
}

.vbcm-progress-mini-text {
    font-size: 12px;
    color: #646970;
}

.vbcm-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #646970;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .vbcm-products-grid {
        grid-template-columns: 1fr;
    }

    .vbcm-lists-grid {
        grid-template-columns: 1fr;
    }

    .vbcm-list-title {
        font-size: 24px;
    }

    .vbcm-list-cover {
        height: 200px;
    }

    .vbcm-modal-dialog {
        width: 95%;
    }
}

/* ========================================
   NAVEGADOR DE LISTAS (Lists Browser)
   ======================================== */

.vbcm-lists-browser {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Barra de Busca e Filtros */
.vbcm-search-filters {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.vbcm-search-box {
    position: relative;
}

.vbcm-search-input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.vbcm-search-input:focus {
    outline: none;
    border-color: var(--e-global-color-primary, #E91E63);
}

.vbcm-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 20px;
}

/* Date Filter */
.vbcm-date-filter {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.vbcm-date-inputs {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    padding: 8px 16px;
    height: 58px;
}

.vbcm-date-input,
input.vbcm-date-input[type="date"] {
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: "DM Sans", sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    color: #4D4D4D !important;
    outline: none !important;
    box-shadow: none !important;
    width: 140px !important;
    min-width: 140px !important;
    height: auto !important;
    min-height: auto !important;
    cursor: pointer !important;
}

.vbcm-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.vbcm-date-input::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.vbcm-date-input:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.vbcm-date-separator {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #808080;
    white-space: nowrap;
}

.vbcm-date-clear,
button.vbcm-date-clear {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    border: none !important;
    background: transparent !important;
    background-color: transparent !important;
    border-radius: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    color: #808080 !important;
    transition: all 0.2s !important;
    box-shadow: none !important;
    outline: none !important;
    flex-shrink: 0 !important;
}

.vbcm-date-clear:hover,
button.vbcm-date-clear:hover {
    background: #F5F5F5 !important;
    background-color: #F5F5F5 !important;
    color: #4D4D4D !important;
    transform: none !important;
    box-shadow: none !important;
}

.vbcm-date-clear svg {
    width: 16px;
    height: 16px;
    display: block;
}

.vbcm-filters {
    position: relative;
}

.vbcm-filter-toggle,
button.vbcm-filter-toggle {
    display: flex !important;
    align-items: center !important;
    align-self: center !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: "DM Sans" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    white-space: nowrap !important;
    box-shadow: none !important;
    text-decoration: none !important;
    outline: none !important;
    min-height: auto !important;
    height: auto !important;
    width: auto !important;
}

.vbcm-filter-toggle:hover,
button.vbcm-filter-toggle:hover {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    color: #000 !important;
    box-shadow: none !important;
    transform: none !important;
    text-decoration: none !important;
}

.vbcm-filter-toggle .dashicons {
    font-size: 18px;
}

.vbcm-filter-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    min-width: 250px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 100;
}

.vbcm-filter-options label {
    display: block;
    padding: 8px 0;
    cursor: pointer;
    transition: color 0.3s;
    color: #333;
    font-size: 14px;
}

.vbcm-filter-options label:hover {
    color: var(--e-global-color-primary, #E91E63);
}

.vbcm-filter-options input[type="radio"] {
    margin-right: 10px;
    accent-color: var(--e-global-color-primary, #E91E63);
}

/* Grid de Listas */
.vbcm-lists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Card de Lista */
.vbcm-list-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: visible;
    transition: all 0.3s;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.vbcm-list-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.vbcm-card-image {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 4px;
}

.vbcm-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbcm-card-image.vbcm-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.vbcm-card-image.vbcm-no-image .dashicons {
    font-size: 32px;
    color: #999;
}

.vbcm-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.vbcm-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

.vbcm-card-host {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.vbcm-card-meta {
    margin: 0;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vbcm-card-type {
    color: #666;
}

.vbcm-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vbcm-card-date svg {
    flex-shrink: 0;
    width: 15px;
    height: 16px;
}

.vbcm-btn-visualizar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 28px;
    background: var(--e-global-color-primary, #E91E63);
    color: #fff !important;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
    margin-left: auto;
}

.vbcm-btn-visualizar:hover {
    background: var(--e-global-color-primary, #C2185B);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

/* Loading e Estados */
.vbcm-loading {
    text-align: center;
    padding: 40px 20px;
}

.vbcm-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--e-global-color-primary, #E91E63);
    border-radius: 50%;
    animation: vbcm-spin 1s linear infinite;
}

@keyframes vbcm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vbcm-loading p,
.vbcm-no-more p {
    color: #666;
    font-size: 16px;
}

.vbcm-no-more {
    text-align: center;
    padding: 20px;
    color: #999;
}

/* Estado Vazio (Empty State) */
.vbcm-empty-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.vbcm-empty-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    color: #ddd;
    opacity: 0.7;
}

.vbcm-empty-icon svg {
    width: 100%;
    height: 100%;
}

.vbcm-empty-title {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 600;
    color: #666;
}

.vbcm-empty-description {
    margin: 0;
    font-size: 16px;
    color: #999;
    max-width: 400px;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .vbcm-filters-row {
        flex-direction: column;
    }

    .vbcm-date-filter {
        width: 100%;
    }

    .vbcm-date-inputs {
        flex: 1;
        width: 100%;
    }

    .vbcm-date-input,
    input.vbcm-date-input[type="date"] {
        width: 100px !important;
        min-width: 100px !important;
        font-size: 13px !important;
    }

    .vbcm-date-separator {
        font-size: 13px;
    }

    .vbcm-lists-grid {
        grid-template-columns: 1fr;
    }

    .vbcm-list-card {
        flex-direction: column;
    }

    .vbcm-card-image {
        width: 100%;
        height: 150px;
    }

    .vbcm-btn-visualizar {
        width: 100%;
    }

    .vbcm-empty-state {
        padding: 60px 20px;
    }

    .vbcm-empty-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .vbcm-empty-title {
        font-size: 20px;
    }

    .vbcm-empty-description {
        font-size: 14px;
    }
}

/* ========================================
   NOVO LAYOUT - PÁGINA INDIVIDUAL DA LISTA
   ======================================== */

/* Cabeçalho Novo */
.vbcm-list-header-new {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Container dos botões de ação */
.vbcm-header-buttons {
    order: 3;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
    margin-left: auto;
}

/* Estilos removidos - agora unificados na seção de botões de compartilhamento */

/* Estilos removidos - agora unificados na seção de botões de compartilhamento */

/* Estilos removidos - agora unificados na seção de botões de compartilhamento */

/* Estilos removidos - agora unificados na seção de botões de compartilhamento */

.vbcm-header-left {
    flex-shrink: 0;
}

.vbcm-list-cover-image {
    width: 300px;
    height: 300px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    background: #f5f5f5;
}

.vbcm-list-cover-placeholder {
    width: 300px;
    height: 300px;
    aspect-ratio: 1/1;
    border-radius: 4px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbcm-list-cover-placeholder .dashicons {
    font-size: 60px;
    color: #ccc;
}

.vbcm-header-right {
    flex: 1;
    min-width: 0;
}

.vbcm-list-title-new {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-transform: capitalize;
}

.vbcm-list-host-new {
    font-size: 14px;
    color: #666;
    margin: 0 0 8px 0;
}

.vbcm-list-meta-new {
    font-size: 12px;
    color: #999;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vbcm-list-type-new {
    color: #666;
}

.vbcm-list-date-new {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vbcm-list-date-new svg {
    flex-shrink: 0;
}

/* Loader de Produtos */
.vbcm-products-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    gap: 16px;
}

.vbcm-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #E3127F;
    border-radius: 50%;
    animation: vbcm-spin 1s linear infinite;
}

@keyframes vbcm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.vbcm-products-loader p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

/* Loader de scroll infinito */
.vbcm-scroll-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    gap: 12px;
}

.vbcm-scroll-loader p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

/* Seção de Produtos Disponíveis e Filtro */
.vbcm-products-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.vbcm-products-filters-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Campo de Pesquisa */
.vbcm-search-box {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
}

.vbcm-search-icon {
    position: absolute !important;
    right: 12px !important;
    color: #4D4D4D !important;
    pointer-events: none !important;
}

.vbcm-search-input,
input.vbcm-search-input {
    padding: 8px 44px 8px 12px !important;
    border: 1px solid #E6E6E6 !important;
    border-radius: 12px !important;
    font-size: 14px !important;
    height: 58px !important;
    min-height: 58px !important;
    transition: all 0.2s !important;
    background: #fff !important;
    background-color: #fff !important;
    box-shadow: none !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    color: #333 !important;
}

/* Largura do input na página de lista individual (500px) */
.vbcm-products-section-header .vbcm-search-input,
.vbcm-products-section-header input.vbcm-search-input {
    width: 500px !important;
    max-width: 500px !important;
    min-width: 500px !important;
}

/* Largura do input na página de todas as listas (100% do espaço disponível) */
.vbcm-filters-row .vbcm-search-box {
    flex: 1 !important;
}

.vbcm-filters-row .vbcm-search-input,
.vbcm-filters-row input.vbcm-search-input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
}

.vbcm-search-input:focus,
input.vbcm-search-input:focus {
    outline: none !important;
    border-color: #E3127F !important;
    box-shadow: 0 0 0 3px rgba(227, 18, 127, 0.1) !important;
    background: #fff !important;
    background-color: #fff !important;
}

.vbcm-search-input::placeholder,
input.vbcm-search-input::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

/* Checkbox Customizado para "Produtos disponíveis" */
.vbcm-filter-available {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.vbcm-filter-available input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vbcm-filter-checkbox {
    width: 20px;
    height: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: all 0.2s;
    flex-shrink: 0;
}

.vbcm-filter-checkbox svg {
    opacity: 0;
    transition: opacity 0.2s;
}

.vbcm-filter-available input[type="checkbox"]:checked + .vbcm-filter-checkbox {
    background: #D9FBDF;
    border-color: #D9FBDF;
}

.vbcm-filter-available input[type="checkbox"]:checked + .vbcm-filter-checkbox svg {
    opacity: 1;
}

.vbcm-filter-label {
    font-size: 14px;
    color: #333;
}

/* Checkbox Customizado para "Mostrar eventos passados" */
.vbcm-past-events-filter {
    margin: 0;
}

.vbcm-filter-past-events {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.vbcm-filter-past-events input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vbcm-filter-past-events input[type="checkbox"]:checked + .vbcm-filter-checkbox {
    background: #D9FBDF;
    border-color: #D9FBDF;
}

.vbcm-filter-past-events input[type="checkbox"]:checked + .vbcm-filter-checkbox svg {
    opacity: 1;
}

/* Container para agrupar busca, filtros de data e classificação na mesma linha */
.vbcm-filters-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.vbcm-filters-row .vbcm-search-box {
    flex: 1;
    min-width: 300px;
}

.vbcm-products-filter {
    position: relative;
}

.vbcm-filter-toggle-btn,
button.vbcm-filter-toggle-btn {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    font-family: "DM Sans" !important;
    font-size: 14px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    color: #333 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    box-shadow: none !important;
    text-decoration: none !important;
    outline: none !important;
    min-height: auto !important;
    height: auto !important;
    width: auto !important;
}

.vbcm-filter-toggle-btn:hover,
button.vbcm-filter-toggle-btn:hover {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    color: #000 !important;
    box-shadow: none !important;
    transform: none !important;
    text-decoration: none !important;
}

.vbcm-filter-toggle-btn svg,
button.vbcm-filter-toggle-btn svg {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.vbcm-filter-toggle-btn.active svg,
button.vbcm-filter-toggle-btn.active svg {
    transform: rotate(180deg);
}

.vbcm-filter-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    min-width: 250px;
    z-index: 100;
    padding: 8px 0;
}

.vbcm-filter-dropdown label {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.vbcm-filter-dropdown label:hover {
    background: #f5f5f5;
}

.vbcm-filter-dropdown input[type="radio"] {
    margin-right: 8px;
}

/* Grade de Produtos Nova (2 colunas) */
.vbcm-products-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Espaçamento entre pesquisa e produtos na nova lista */
.vbcm-step-2 .vbcm-products-grid-new {
    margin-top: 40px;
}

.vbcm-product-card-new {
    position: relative;
    display: flex;
    gap: 12px;
    padding: 12px;
    margin-left: 30px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}

.vbcm-product-card-new:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.vbcm-product-card-new.vbcm-completed {
    opacity: 0.6;
}

/* Imagem do Produto (quadrada, 140x140px) */
.vbcm-product-image-new {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.vbcm-product-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Informações do Produto */
.vbcm-product-info-new {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: center;
}

.vbcm-product-sku {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Container para código de barras e SKU */
.vbcm-product-codes {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    flex-wrap: wrap;
    position: relative;
    padding-right: 20px;
}

.vbcm-product-barcode {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vbcm-code-separator {
    width: 4px;
    height: 4px;
    background-color: #E3127F;
    border-radius: 50%;
    flex-shrink: 0;
}

.vbcm-product-sku-pink {
    font-size: 11px;
    color: #E3127F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Botão de adicionar mais unidade */
.vbcm-add-unit-btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    max-width: 14px !important;
    max-height: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    border-radius: 50% !important;
    color: #E3127F !important;
    cursor: pointer !important;
    transition: all 0.15s ease !important;
    opacity: 0.6;
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.vbcm-add-unit-btn:hover {
    opacity: 1 !important;
    transform: scale(1.2) !important;
    background: rgba(227, 18, 127, 0.1) !important;
}

.vbcm-add-unit-btn:active,
.vbcm-add-unit-btn.vbcm-adding {
    transform: scale(0.9) !important;
    opacity: 1 !important;
}

.vbcm-add-unit-btn svg {
    width: 12px !important;
    height: 12px !important;
    display: block !important;
}

.vbcm-product-name-new {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #333;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-transform: capitalize;
}

.vbcm-product-description-new {
    font-size: 12px;
    color: #777;
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vbcm-product-price-new {
    font-size: 16px;
    font-weight: 600;
    color: #E3127F;
    margin: 0;
}

/* Observação do item */
.vbcm-item-notes-wrapper {
    margin-top: 4px;
}

.vbcm-item-notes-display {
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.vbcm-item-notes-text {
    font-size: 11px;
    color: #666;
    font-style: italic;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vbcm-edit-note-btn,
button.vbcm-edit-note-btn {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    font-size: 11px !important;
    color: #999 !important;
    flex-shrink: 0;
    line-height: 1 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    display: inline !important;
    border-radius: 0 !important;
    opacity: 0;
    transition: opacity 0.2s;
}

.vbcm-item-notes-display:hover .vbcm-edit-note-btn {
    opacity: 1;
}

.vbcm-add-note-btn,
button.vbcm-add-note-btn,
.vbcm-product-card-new .vbcm-add-note-btn {
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    font-size: 10px !important;
    color: #bbb !important;
    display: inline !important;
    border-radius: 0 !important;
    line-height: 1.3 !important;
    min-height: 0 !important;
    min-width: 0 !important;
    transition: color 0.2s;
}

.vbcm-add-note-btn:hover,
button.vbcm-add-note-btn:hover {
    color: #888 !important;
    background: none !important;
}

.vbcm-note-edit-form {
    margin-top: 4px;
}

.vbcm-note-textarea {
    width: 100%;
    font-size: 12px;
    padding: 6px 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    min-height: 40px;
}

.vbcm-note-textarea:focus {
    border-color: #E3127F;
    outline: none;
    box-shadow: 0 0 0 1px #E3127F;
}

.vbcm-note-form-actions {
    display: flex;
    gap: 6px;
    margin-top: 4px;
}

.vbcm-note-save-btn,
button.vbcm-note-save-btn {
    background: #E3127F !important;
    background-color: #E3127F !important;
    color: #fff !important;
    border: none !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    cursor: pointer !important;
    min-height: 0 !important;
    min-width: 0 !important;
    line-height: 1.3 !important;
    display: inline-block !important;
    transition: opacity 0.2s;
}

.vbcm-note-save-btn:hover,
button.vbcm-note-save-btn:hover {
    opacity: 0.9;
    color: #fff !important;
}

.vbcm-note-cancel-btn,
button.vbcm-note-cancel-btn {
    background: #f0f0f0 !important;
    background-color: #f0f0f0 !important;
    color: #666 !important;
    border: none !important;
    padding: 4px 12px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    cursor: pointer !important;
    min-height: 0 !important;
    min-width: 0 !important;
    line-height: 1.3 !important;
    display: inline-block !important;
}

/* Botão de Presentear (circular) - Reset e estilos específicos */
.vbcm-product-card-new .vbcm-gift-btn,
button.vbcm-gift-btn {
    position: absolute !important;
    top: 50% !important;
    left: -30px !important;
    transform: translateY(-50%) !important;
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    min-height: 62px !important;
    max-width: 62px !important;
    max-height: 62px !important;
    border-radius: 50% !important;
    background: #000 !important;
    background-color: #000 !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #fff !important;
    font-size: 0 !important;
    line-height: 1 !important;
    text-decoration: none !important;
    outline: none !important;
}

.vbcm-product-card-new .vbcm-gift-btn:hover,
button.vbcm-gift-btn:hover {
    background: #333 !important;
    background-color: #333 !important;
    transform: translateY(-50%) scale(1.05) !important;
    color: #fff !important;
    box-shadow: none !important;
    border: none !important;
}

.vbcm-product-card-new .vbcm-gift-btn svg,
button.vbcm-gift-btn svg {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    pointer-events: none;
}

/* Botão quando produto já foi presenteado */
.vbcm-product-card-new .vbcm-gift-btn.vbcm-gifted,
button.vbcm-gift-btn.vbcm-gifted {
    background: #D9FBDF !important;
    background-color: #D9FBDF !important;
    color: #000 !important;
}

/* Ícones dentro do botão gifted */
.vbcm-gift-btn.vbcm-gifted .vbcm-normal-icon {
    display: block;
}

.vbcm-gift-btn.vbcm-gifted .vbcm-remove-icon {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Hover no botão gifted - mostra ícone de remover e muda para vermelho */
.vbcm-product-card-new .vbcm-gift-btn.vbcm-gifted:hover,
button.vbcm-gift-btn.vbcm-gifted:hover {
    background: #dc3545 !important;
    background-color: #dc3545 !important;
    transform: translateY(-50%) scale(1.05) !important;
    color: #fff !important;
}

.vbcm-gift-btn.vbcm-gifted:hover .vbcm-normal-icon {
    display: none;
}

.vbcm-gift-btn.vbcm-gifted:hover .vbcm-remove-icon {
    display: block;
}

/* Mantém botão clicável para produtos completos */
.vbcm-product-card-new.vbcm-completed .vbcm-gift-btn {
    cursor: pointer !important;
    opacity: 1 !important;
}

/* Modal de Confirmação */
.vbcm-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbcm-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.vbcm-modal-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    padding: 32px;
    max-width: 400px;
    width: 90%;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.vbcm-modal-close,
button.vbcm-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    background: none !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    min-height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    padding: 4px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #999 !important;
    cursor: pointer !important;
    transition: color 0.2s !important;
    border-radius: 4px !important;
    line-height: 1 !important;
    font-size: 0 !important;
    text-decoration: none !important;
    outline: none !important;
}

.vbcm-modal-close:hover,
button.vbcm-modal-close:hover {
    color: #333 !important;
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    box-shadow: none !important;
    border: none !important;
    transform: none !important;
}

.vbcm-modal-close svg,
button.vbcm-modal-close svg {
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0;
    pointer-events: none;
}

.vbcm-modal h3 {
    margin: 0 0 16px 0;
    font-size: 22px;
    color: #333;
}

.vbcm-modal-text {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
}

.vbcm-modal-product-name {
    margin: 0 0 24px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.vbcm-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.vbcm-modal-actions .vbcm-btn,
button.vbcm-btn {
    padding: 10px 24px !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    text-align: center !important;
    min-height: auto !important;
    height: auto !important;
}

.vbcm-modal-actions .vbcm-btn-cancel,
button.vbcm-btn-cancel {
    background: #f5f5f5 !important;
    background-color: #f5f5f5 !important;
    color: #333 !important;
}

.vbcm-modal-actions .vbcm-btn-cancel:hover,
button.vbcm-btn-cancel:hover {
    background: #e0e0e0 !important;
    background-color: #e0e0e0 !important;
    color: #333 !important;
    box-shadow: none !important;
    border: none !important;
}

.vbcm-modal-actions .vbcm-btn-confirm,
button.vbcm-btn-confirm {
    background: #E3127F !important;
    background-color: #E3127F !important;
    color: #fff !important;
}

.vbcm-modal-actions .vbcm-btn-confirm:hover,
button.vbcm-btn-confirm:hover {
    background: #c2105e !important;
    background-color: #c2105e !important;
    color: #fff !important;
    box-shadow: none !important;
    border: none !important;
}

/* Botão de desmarcar (vermelho) */
.vbcm-modal-actions .vbcm-btn-unconfirm,
button.vbcm-btn-unconfirm {
    background: #dc3545 !important;
    background-color: #dc3545 !important;
    color: #fff !important;
}

.vbcm-modal-actions .vbcm-btn-unconfirm:hover,
button.vbcm-btn-unconfirm:hover {
    background: #c82333 !important;
    background-color: #c82333 !important;
    color: #fff !important;
    box-shadow: none !important;
    border: none !important;
}

/* Responsivo */
@media (max-width: 768px) {
    .vbcm-list-header-new {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vbcm-header-buttons {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    /* Botões menores no mobile */
    .vbcm-header-buttons .vbcm-back-btn,
    .vbcm-header-buttons .vbcm-back-btn-list,
    .vbcm-header-buttons .vbcm-edit-list-btn,
    .vbcm-header-buttons .vbcm-admin-edit-list-btn,
    .vbcm-header-buttons .vbcm-share-btn,
    .vbcm-header-buttons .vbcm-copy-link-btn {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        min-height: 36px !important;
    }

    .vbcm-header-buttons svg {
        width: 16px !important;
        height: 16px !important;
    }

    .vbcm-list-title-new {
        font-size: 20px;
    }

    .vbcm-list-meta-new {
        justify-content: center;
    }

    .vbcm-products-section-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    /* Input de busca respeita largura da tela no mobile */
    .vbcm-products-section-header .vbcm-search-input,
    .vbcm-products-section-header input.vbcm-search-input {
        width: 100% !important;
        max-width: 100% !important;
        min-width: auto !important;
    }

    .vbcm-search-box {
        width: 100%;
    }

    .vbcm-products-grid-new {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vbcm-list-cover-image,
    .vbcm-list-cover-placeholder {
        width: 200px;
        height: 200px;
    }

    .vbcm-list-title-new {
        font-size: 20px;
    }

    .vbcm-product-image-new {
        width: 64px;
        height: 64px;
    }

    .vbcm-product-name-new {
        font-size: 13px;
    }

    .vbcm-add-to-cart-btn,
    .vbcm-product-completed-badge {
        width: 36px;
        height: 36px;
    }

    .vbcm-add-to-cart-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* ========================================
   Formulário de Nova Lista
   ======================================== */

.vbcm-new-list-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

/* Botão de voltar no topo */
.vbcm-back-btn-top {
    position: static;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    border-radius: 50% !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #E3127F !important;
    border: 2px solid #E3127F !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0 !important;
    margin: 0 20px 0 0 !important;
    line-height: 1 !important;
    font-size: inherit !important;
    font-weight: normal !important;
    text-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
    vertical-align: middle;
}

.vbcm-back-btn-top:hover {
    background: #E3127F !important;
    background-color: #E3127F !important;
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(227, 18, 127, 0.4) !important;
    border-color: #E3127F !important;
}

.vbcm-back-btn-top:focus {
    background: transparent !important;
    background-color: transparent !important;
    color: #E3127F !important;
    box-shadow: none !important;
    outline: none !important;
}

.vbcm-back-btn-top svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

.vbcm-back-btn-top svg path {
    fill: #E3127F !important;
}

.vbcm-back-btn-top:hover svg path {
    fill: #fff !important;
}

/* Container com largura 100% na etapa de produtos */
.vbcm-new-list-container.vbcm-products-step {
    max-width: 100%;
}

.vbcm-new-list-header {
    text-align: center;
    margin-bottom: 40px;
}

.vbcm-new-list-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbcm-new-list-description {
    font-size: 16px;
    color: #fff;
    margin: 0;
}

/* Form Sections */
.vbcm-form-section {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Etapa 2 - Seção de produtos com largura 100% */
.vbcm-step-2 .vbcm-form-section {
    max-width: 100%;
    width: 100%;
}

.vbcm-section-title,
h5.vbcm-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d2327;
    margin: 0 0 24px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

/* Form Rows and Groups */
.vbcm-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.vbcm-form-row:last-child {
    margin-bottom: 0;
}

.vbcm-form-group {
    display: flex;
    flex-direction: column;
}

.vbcm-form-group.vbcm-full-width {
    width: 100%;
}

.vbcm-form-group.vbcm-half-width {
    flex: 1;
}

/* Form Labels */
.vbcm-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 8px;
    display: block;
}

.vbcm-required {
    color: #dc3545;
}

/* Form Inputs */
.vbcm-form-input,
input.vbcm-form-input,
input.vbcm-form-input[type="text"],
input.vbcm-form-input[type="date"],
.vbcm-form-select,
select.vbcm-form-select,
.vbcm-form-textarea,
textarea.vbcm-form-textarea {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #E6E6E6 !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    color: #1d2327 !important;
    transition: border-color 0.2s, box-shadow 0.2s !important;
    background: #fff !important;
    background-color: #fff !important;
    box-shadow: none !important;
    height: auto !important;
    min-height: auto !important;
    line-height: normal !important;
}

.vbcm-form-input:focus,
input.vbcm-form-input:focus,
input.vbcm-form-input[type="text"]:focus,
input.vbcm-form-input[type="date"]:focus,
.vbcm-form-select:focus,
select.vbcm-form-select:focus,
.vbcm-form-textarea:focus,
textarea.vbcm-form-textarea:focus {
    outline: none !important;
    border-color: #E3127F !important;
    box-shadow: 0 0 0 3px rgba(227, 18, 127, 0.1) !important;
}

.vbcm-form-input::placeholder,
input.vbcm-form-input::placeholder,
.vbcm-form-textarea::placeholder,
textarea.vbcm-form-textarea::placeholder {
    color: #999 !important;
}

.vbcm-form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Upload Area */
.vbcm-upload-area {
    position: relative;
    border: 2px dashed #E6E6E6;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
}

.vbcm-upload-area:hover {
    border-color: #E3127F;
    background: #fff;
}

.vbcm-upload-area.vbcm-dragover {
    border-color: #E3127F;
    background: rgba(227, 18, 127, 0.05);
}

.vbcm-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vbcm-upload-content svg {
    color: #999;
}

.vbcm-upload-text {
    font-size: 16px;
    font-weight: 500;
    color: #1d2327;
    margin: 0;
}

.vbcm-upload-hint {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.vbcm-file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.vbcm-preview-image {
    max-width: 100%;
    max-height: 300px;
    border-radius: 8px;
    object-fit: cover;
}

.vbcm-btn-remove-image {
    margin-top: 12px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #dc3545;
    color: #dc3545;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.vbcm-btn-remove-image:hover {
    background: #dc3545;
    color: #fff;
}

/* Form Messages */
.vbcm-form-messages {
    margin: 20px 0;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.vbcm-form-messages.vbcm-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.vbcm-form-messages.vbcm-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Form Actions */
.vbcm-form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 32px;
}

.vbcm-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-family: inherit;
}

.vbcm-btn-primary,
button.vbcm-btn-primary {
    background: #fff !important;
    background-color: #fff !important;
    color: #E3127F !important;
    border: 2px solid #fff !important;
}

.vbcm-btn-primary:hover,
button.vbcm-btn-primary:hover {
    background: #E3127F !important;
    background-color: #E3127F !important;
    color: #fff !important;
    border: 2px solid #E3127F !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(227, 18, 127, 0.3) !important;
}

.vbcm-btn-primary:disabled,
button.vbcm-btn-primary:disabled {
    background: #ccc !important;
    background-color: #ccc !important;
    color: #999 !important;
    border: 2px solid #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.vbcm-btn-secondary {
    background: #fff;
    color: #646970;
    border: 1px solid #e0e0e0;
}

.vbcm-btn-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .vbcm-new-list-container {
        padding: 20px 15px;
    }

    .vbcm-new-list-header h2 {
        font-size: 24px;
    }

    .vbcm-form-section {
        padding: 20px;
    }

    .vbcm-form-row {
        flex-direction: column;
        gap: 0;
    }

    .vbcm-form-group.vbcm-half-width {
        width: 100%;
    }

    .vbcm-form-actions {
        flex-direction: column;
    }

    .vbcm-btn {
        width: 100%;
    }
}

/* Etapas do Formulário */
.vbcm-form-step {
    display: none;
}

.vbcm-form-step.active {
    display: block;
}

/* Buscador de Produtos */
.vbcm-product-search-box {
    position: relative;
    margin-bottom: 24px;
}

.vbcm-product-search-box .vbcm-form-input {
    padding-right: 45px !important;
}

.vbcm-product-search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Produtos Disponíveis */
.vbcm-products-available {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
    max-height: 600px;
    overflow-y: auto;
    padding: 8px;
}

.vbcm-loading-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #646970;
}

/* Produto Card para Seleção */
.vbcm-product-select-card {
    background: #fff;
    border: 2px solid #E6E6E6;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.vbcm-product-select-card:hover {
    border-color: #E3127F;
    box-shadow: 0 4px 12px rgba(227, 18, 127, 0.15);
}

.vbcm-product-select-card.selected {
    border-color: #E3127F;
    background: rgba(227, 18, 127, 0.05);
}

.vbcm-product-select-card .vbcm-product-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}

.vbcm-product-select-card .vbcm-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vbcm-product-select-card .vbcm-product-name {
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 8px;
    text-transform: capitalize;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.vbcm-product-select-card .vbcm-product-price {
    font-size: 16px;
    font-weight: 700;
    color: #E3127F;
}

.vbcm-product-select-card .vbcm-product-checkbox {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border: 2px solid #E6E6E6;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vbcm-product-select-card.selected .vbcm-product-checkbox {
    background: #E3127F;
    border-color: #E3127F;
}

.vbcm-product-select-card .vbcm-product-checkbox svg {
    display: none;
    width: 14px;
    height: 14px;
}

.vbcm-product-select-card.selected .vbcm-product-checkbox svg {
    display: block;
}

/* Produtos Selecionados */
.vbcm-selected-products-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e0e0e0;
}

/* Grid de 2 colunas para produtos selecionados (mesmo estilo da grid de produtos disponíveis) */
.vbcm-selected-products-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Responsivo: 1 coluna em telas pequenas */
@media screen and (max-width: 768px) {
    .vbcm-selected-products-list {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .vbcm-products-available {
        grid-template-columns: 1fr;
    }
}

/* Estilos para produtos com checkbox no grid de 2 colunas (nova lista) */
.vbcm-products-grid-new .vbcm-product-select-card {
    cursor: pointer;
    transition: all 0.2s;
}

.vbcm-products-grid-new .vbcm-product-select-card:hover {
    box-shadow: 0 2px 12px rgba(227, 18, 127, 0.15);
    border-color: #E3127F;
}

.vbcm-products-grid-new .vbcm-product-select-card.vbcm-product-selected {
    border-color: #E3127F;
    background: rgba(227, 18, 127, 0.05);
}

/* Checkbox de Seleção no Card do Grid */
.vbcm-product-select-checkbox {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: 2px solid #E6E6E6;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.vbcm-product-select-card:hover .vbcm-product-select-checkbox {
    border-color: #E3127F;
}

.vbcm-product-select-card.vbcm-product-selected .vbcm-product-select-checkbox {
    background: #E3127F;
    border-color: #E3127F;
}

.vbcm-product-select-checkbox svg {
    display: none;
    width: 16px;
    height: 16px;
}

.vbcm-product-select-card.vbcm-product-selected .vbcm-product-select-checkbox svg {
    display: block;
}

/* Placeholder para imagem ausente */
.vbcm-no-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vbcm-no-image-placeholder::after {
    content: '📦';
    font-size: 48px;
    opacity: 0.3;
}

/* Mensagem de nenhum produto */
.vbcm-no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #646970;
    font-size: 16px;
}

/* Paginação Numérica */
.vbcm-load-more-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 24px;
}

.vbcm-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vbcm-pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 12px;
    background: #fff;
    color: #646970;
    border: 1px solid #E6E6E6;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.vbcm-pagination-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #E3127F;
    color: #E3127F;
}

.vbcm-pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vbcm-pagination-btn.vbcm-pagination-active {
    background: #E3127F;
    color: #fff;
    border-color: #E3127F;
}

.vbcm-pagination-prev,
.vbcm-pagination-next {
    padding: 8px;
}

.vbcm-pagination-prev svg,
.vbcm-pagination-next svg {
    width: 16px;
    height: 16px;
}

.vbcm-pagination-dots {
    display: inline-flex;
    align-items: center;
    padding: 0 4px;
    color: #646970;
    font-weight: 600;
}

/* Responsivo para paginação */
@media screen and (max-width: 600px) {
    .vbcm-pagination {
        gap: 4px;
    }

    .vbcm-pagination-btn {
        min-width: 36px;
        height: 36px;
        padding: 6px 10px;
        font-size: 13px;
    }

    .vbcm-pagination-dots {
        padding: 0 2px;
        font-size: 13px;
    }
}

/* Responsivo para grid de 2 colunas */
@media screen and (max-width: 768px) {
    .vbcm-products-grid-new {
        grid-template-columns: 1fr;
    }

    .vbcm-product-card-new {
        margin-left: 0;
    }

    .vbcm-product-card-new .vbcm-gift-btn {
        position: static !important;
        transform: none !important;
        margin-top: 12px !important;
    }
}

/* ============================================
   Botões de Compartilhamento e Ações do Header
   ============================================ */

/* Classe base para todos os botões do header - ESTILOS UNIFICADOS */
.vbcm-back-btn,
.vbcm-back-btn-list,
.vbcm-lists-btn,
.vbcm-edit-list-btn,
.vbcm-admin-edit-list-btn,
.vbcm-copy-link-btn,
.vbcm-share-btn,
a.vbcm-back-btn,
a.vbcm-back-btn-list,
a.vbcm-lists-btn,
a.vbcm-edit-list-btn,
a.vbcm-admin-edit-list-btn,
button.vbcm-back-btn,
button.vbcm-back-btn-list,
button.vbcm-lists-btn,
button.vbcm-copy-link-btn,
button.vbcm-share-btn {
    /* Posicionamento */
    position: relative !important;

    /* Tamanho fixo */
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    max-width: 44px !important;
    max-height: 44px !important;
    flex-shrink: 0 !important;

    /* Aparência */
    border-radius: 50% !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #E3127F !important;
    border: 2px solid #E3127F !important;

    /* Layout interno */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    /* Reset de estilos */
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
    font-size: inherit !important;
    font-weight: normal !important;
    text-shadow: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;

    /* Interação */
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

/* SVG icons dentro dos botões - tamanho uniforme */
.vbcm-back-btn svg,
.vbcm-back-btn-list svg,
.vbcm-lists-btn svg,
.vbcm-edit-list-btn svg,
.vbcm-admin-edit-list-btn svg,
.vbcm-copy-link-btn svg,
.vbcm-share-btn svg {
    width: 20px !important;
    height: 20px !important;
    fill: currentColor;
}

/* Cor padrão dos paths dos SVGs */
.vbcm-back-btn svg path,
.vbcm-back-btn-list svg path,
.vbcm-lists-btn svg path,
.vbcm-edit-list-btn svg path,
.vbcm-admin-edit-list-btn svg path,
.vbcm-copy-link-btn svg path,
.vbcm-share-btn svg path {
    fill: #E3127F !important;
}

/* Hover state - uniforme para todos os botões */
.vbcm-back-btn:hover,
.vbcm-back-btn-list:hover,
.vbcm-lists-btn:hover,
.vbcm-edit-list-btn:hover,
.vbcm-admin-edit-list-btn:hover,
.vbcm-copy-link-btn:hover,
.vbcm-share-btn:hover,
a.vbcm-back-btn:hover,
a.vbcm-back-btn-list:hover,
a.vbcm-lists-btn:hover,
a.vbcm-edit-list-btn:hover,
a.vbcm-admin-edit-list-btn:hover,
button.vbcm-back-btn:hover,
button.vbcm-back-btn-list:hover,
button.vbcm-lists-btn:hover,
button.vbcm-copy-link-btn:hover,
button.vbcm-share-btn:hover {
    background: #E3127F !important;
    background-color: #E3127F !important;
    color: #fff !important;
    border-color: #E3127F !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(227, 18, 127, 0.4) !important;
}

/* SVG paths no hover - todos ficam brancos */
.vbcm-back-btn:hover svg path,
.vbcm-back-btn-list:hover svg path,
.vbcm-lists-btn:hover svg path,
.vbcm-edit-list-btn:hover svg path,
.vbcm-admin-edit-list-btn:hover svg path,
.vbcm-copy-link-btn:hover svg,
.vbcm-share-btn:hover svg,
.vbcm-copy-link-btn:hover svg path,
.vbcm-share-btn:hover svg path,
.vbcm-copy-link-btn:hover svg line,
.vbcm-share-btn:hover svg line,
.vbcm-copy-link-btn:hover svg circle,
.vbcm-share-btn:hover svg circle {
    color: #fff !important;
    stroke: #fff !important;
    fill: #fff !important;
}

/* Focus state - mantém estilo padrão */
.vbcm-back-btn:focus,
.vbcm-back-btn-list:focus,
.vbcm-lists-btn:focus,
.vbcm-edit-list-btn:focus,
.vbcm-admin-edit-list-btn:focus,
.vbcm-copy-link-btn:focus,
.vbcm-share-btn:focus {
    background: transparent !important;
    background-color: transparent !important;
    color: #E3127F !important;
    box-shadow: none !important;
    outline: none !important;
}

.vbcm-copy-link-btn.vbcm-copied {
    background: #00A854;
    border-color: #00A854;
    color: #fff;
}

.vbcm-copy-link-btn.vbcm-copied svg,
.vbcm-copy-link-btn.vbcm-copied svg path {
    stroke: #fff;
}

/* Modal de compartilhamento */
#vbcm-share-modal .vbcm-modal-content {
    max-width: 500px;
    padding: 30px;
}

#vbcm-share-modal h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

#vbcm-share-modal .vbcm-modal-text {
    margin-bottom: 25px;
    color: #646970;
}

.vbcm-share-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.vbcm-share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #1d2327;
    transition: transform 0.2s ease;
    padding: 10px;
    border-radius: 8px;
}

.vbcm-share-option:hover {
    transform: translateY(-3px);
    background: #f6f7f7;
}

.vbcm-share-option svg {
    transition: transform 0.2s ease;
}

.vbcm-share-option:hover svg {
    transform: scale(1.1);
}

.vbcm-share-option span {
    font-size: 13px;
    font-weight: 500;
}

/* Responsivo para compartilhamento */
@media (max-width: 768px) {
    .vbcm-share-options {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    #vbcm-share-modal .vbcm-modal-content {
        padding: 20px;
        max-width: 90%;
    }

    .vbcm-copy-link-btn svg,
    .vbcm-share-btn svg {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .vbcm-share-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ================================================
   Toast de feedback para código de barras (canto superior direito)
   ================================================ */

#vbcm-toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
}

.vbcm-toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: vbcm-toast-slide-in 0.3s ease;
    background: #fff;
    min-width: 280px;
}

.vbcm-toast.vbcm-toast-hiding {
    animation: vbcm-toast-slide-out 0.3s ease forwards;
}

@keyframes vbcm-toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vbcm-toast-slide-out {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

.vbcm-toast-success {
    border-left: 4px solid #28a745;
}

.vbcm-toast-error {
    border-left: 4px solid #dc3545;
}

.vbcm-toast-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f5f5;
}

.vbcm-toast-content {
    flex: 1;
    min-width: 0;
}

.vbcm-toast-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vbcm-toast-message {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.vbcm-toast-success .vbcm-toast-message {
    color: #28a745;
}

.vbcm-toast-error .vbcm-toast-message {
    color: #dc3545;
}

.vbcm-toast-icon {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vbcm-toast-success .vbcm-toast-icon {
    background: #d4edda;
    color: #28a745;
}

.vbcm-toast-error .vbcm-toast-icon {
    background: #f8d7da;
    color: #dc3545;
}

.vbcm-toast-icon svg {
    width: 24px;
    height: 24px;
}

.vbcm-toast-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

.vbcm-toast-close:hover {
    color: #333;
}

/* Responsivo para toast */
@media (max-width: 480px) {
    #vbcm-toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .vbcm-toast {
        min-width: auto;
    }
}

/* Toast destacado para bipagem de código de barras */
.vbcm-toast.vbcm-toast-barcode {
    padding: 16px 20px;
    min-width: 320px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    transform-origin: top right;
    animation: vbcm-toast-barcode-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vbcm-toast.vbcm-toast-barcode.vbcm-toast-success {
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%);
    border-left: 5px solid #28a745;
}

.vbcm-toast.vbcm-toast-barcode.vbcm-toast-error {
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    border-left: 5px solid #dc3545;
}

.vbcm-toast.vbcm-toast-barcode .vbcm-toast-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 2px solid #28a745;
}

.vbcm-toast.vbcm-toast-barcode.vbcm-toast-error .vbcm-toast-image,
.vbcm-toast.vbcm-toast-barcode.vbcm-toast-error .vbcm-toast-icon {
    border-color: #dc3545;
}

.vbcm-toast.vbcm-toast-barcode .vbcm-toast-icon {
    width: 60px;
    height: 60px;
    border: 2px solid currentColor;
}

.vbcm-toast.vbcm-toast-barcode .vbcm-toast-icon svg {
    width: 32px;
    height: 32px;
}

.vbcm-toast.vbcm-toast-barcode .vbcm-toast-title {
    font-size: 16px;
    margin-bottom: 4px;
}

.vbcm-toast.vbcm-toast-barcode .vbcm-toast-message {
    font-size: 14px;
    font-weight: 500;
}

.vbcm-toast.vbcm-toast-barcode.vbcm-toast-success .vbcm-toast-message {
    color: #28a745;
}

@keyframes vbcm-toast-barcode-in {
    0% {
        opacity: 0;
        transform: translateX(100%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Destaque do card de produto recém-adicionado via bipagem */
.vbcm-product-card-new.vbcm-just-added {
    animation: vbcm-card-highlight 0.5s ease;
    box-shadow: 0 0 0 3px #28a745, 0 8px 25px rgba(40, 167, 69, 0.4) !important;
    border-color: #28a745 !important;
    background: linear-gradient(135deg, #fff 0%, #f0fff4 100%) !important;
    z-index: 10;
}

.vbcm-product-card-new.vbcm-just-added .vbcm-gift-btn {
    animation: vbcm-btn-pulse 0.8s ease infinite;
}

@keyframes vbcm-card-highlight {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes vbcm-btn-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
    }
}

/* Input de busca com estado de carregamento */
.vbcm-search-input.vbcm-searching {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    animation: vbcm-pulse 1s infinite;
}

@keyframes vbcm-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Container da busca - posição relativa para feedback */
.vbcm-search-box {
    position: relative;
}
