/* assets/css/frontend.css */
.bv-protect-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
}

.bv-step {
    animation: slideIn 0.3s ease-out;
}

.bv-step.hidden {
    display: none;
}
.bv-loading.hidden{
    display: none;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.bv-title {
    text-align: center;
    color: #004272;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.bv-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.bv-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.1), transparent);
    transition: left 0.5s;
}

.bv-card:hover::before {
    left: 100%;
}

.bv-card:hover {
    border-color: #1a639b;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

.bv-card-icon {
    color: #1a639b;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.bv-card h3 {
    color: #004272;
    font-size: 22px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

.bv-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.bv-btn {
    background: linear-gradient(135deg, #1a639b, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bv-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.bv-btn-secondary {
    background: white;
    color: #1a639b;
    border: 2px solid #1a639b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto 20px auto;
}

.bv-btn-secondary:hover {
    background: #1a639b;
    color: white;
}

.bv-btn-back {
    background: #6b7280;
    color: white;
    border: none;
    margin-top: 25px;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.bv-btn-back:hover {
    background: #4b5563;
}

.bv-store-selector {
    max-width: 600px;
    margin: 0 auto;
}

.bv-geolocation-section {
    text-align: center;
    margin-bottom: 30px;
}

.bv-help-text {
    color: #6b7280;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
}

.bv-stores-list {
    display: grid;
    gap: 10px;
}

.bv-store-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: between;
    align-items: center;
}

.bv-store-item:hover {
    border-color: #1a639b;
    background: #f8faff;
}

.bv-store-info h4 {
    color: #004272;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.bv-store-info p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.bv-store-distance {
    color: #10b981;
    font-weight: 600;
    font-size: 14px;
}

.bv-loading {
    text-align: center;
    padding: 40px;
}

.bv-spinner {
    border: 3px solid #e5e7eb;
    border-top: 3px solid #1a639b;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.bv-product-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bv-product-card:hover {
    border-color: #1a639b;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
    transform: translateY(-1px);
}

.bv-product-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a639b, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.filter-store{
    margin-bottom: 10px;
}

.input-postal-code-filter{
    width: 280px;
    padding: 12px 24px !important;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.no-result{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 20px;
}
/* Responsive */
@media (max-width: 768px) {
    .bv-protect-container {
        padding: 15px;
    }
    
    .bv-cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .bv-title {
        font-size: 18px;
    }
    
    .bv-card {
        padding: 20px 15px;
    }
}