/**
 * Stili CSS per il form delle cooperative - Tema Legacoop Liguria
 */

/* Variabili per i colori del tema */
:root {
    --primary-color: #C9224B;
    --primary-hover: #a71d40;
    --secondary-color: #1E3A8A;
    --secondary-hover: #1b347c;
    --light-bg: #F8F9FA;
    --text-color: #333333;
    --border-color: #e5e7eb;
}

/* Stili per il contenitore del form */
.cooperative-form-container {
    max-width: 1200px;
    margin: 2rem auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    border-top: 4px solid var(--primary-color);
}

/* Stili per gli step */
.step-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stili per gli indicatori di step - Stilizzati come nel tema principale */
.step {
    position: relative;
    font-size: 0.875rem;
    color: #6b7280;
    padding-bottom: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.step.active {
    color: var(--primary-color);
    font-weight: 700;
}

.step:before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-color: #e5e7eb;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    transition: all 0.3s ease;
    z-index: 2;
}

.step.active:before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 34, 75, 0.2);
}

/* Linea connettiva tra gli step */
.progress-container .flex {
    position: relative;
}


/* Stili per la barra di progresso - Design moderno */
.progress-bar {
    background-color: #e5e7eb;
    height: 6px;
    border-radius: 3px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.progress {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    height: 100%;
    border-radius: 3px;
    transition: width 0.4s ease;
    position: relative;
}

.progress:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 30px 30px;
    animation: progressAnimation 2s linear infinite;
    z-index: 1;
}

@keyframes progressAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

/* Stili per i titoli - Stesso stile dell'header del sito */
.step-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
    text-align: center;
    position: relative;
}

.step-content h2:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

/* Stili per i campi di input - Allineati agli input del tema */
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    transition: all 0.2s ease-in-out;
    color: var(--text-color);
    background-color: #f9fafb;
}

input[type="text"]:hover,
input[type="number"]:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="url"]:hover,
select:hover,
textarea:hover {
    border-color: #9ca3af;
    background-color: #ffffff;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 34, 75, 0.15);
    background-color: #ffffff;
}

input.border-red-500,
select.border-red-500,
textarea.border-red-500 {
    border-color: #ef4444;
    background-color: #fef2f2;
}

/* Stili per le label */
label {
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

/* Stili per i file input */
.file-input {
    display: block;
    width: 100%;
    padding: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-width: 1px;
    border-radius: 0.375rem;
    border-color: var(--border-color);
}

.file-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 34, 75, 0.2);
}

/* Stili per i pulsanti - Allineati al tema Legacoop */
button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.next-step, .submit-form {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(201, 34, 75, 0.3);
}

.next-step:hover, .submit-form:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 3px 6px rgba(201, 34, 75, 0.4);
    transform: translateY(-1px);
}

.prev-step {
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.prev-step:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    border-color: #9ca3af;
}

/* Stili per le anteprime delle immagini */
.preview-logo,
.preview-galleria {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.preview-logo img,
.preview-galleria img {
    border-radius: 0.25rem;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Stili per i messaggi di feedback - Coerenti con lo stile delle notifiche */
#form-success,
#form-error {
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
    padding-left: 3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#form-success {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #22c55e;
}

#form-success:before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #22c55e;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#form-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

#form-error:before {
    content: '!';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #ef4444;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Area upload file */
.file-upload-area {
    border: 2px dashed #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
}

/* Checkbox personalizzati */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

/* Debug e test areas */
.debug-panel {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.debug-panel h3 {
    color: #374151;
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.debug-output {
    background-color: #ffffff;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .cooperative-form-container {
        padding: 1rem;
    }
    
    .step {
        font-size: 0.75rem;
    }
    
    .step:before {
        width: 16px;
        height: 16px;
        top: -16px;
    }
    
    button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .grid-cols-2,
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Classi di utilità */
.hidden {
    display: none !important;
}

.text-primary {
    color: var(--primary-color);
}

.text-secondary {
    color: var(--secondary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/**
 * Stili CSS aggiornati per il form delle cooperative - Tema Legacoop Liguria
 * Uniformato con header e footer
 */

/* Variabili per i colori del tema */
:root {
    --primary-color: #C9224B;
    --primary-hover: #a71d40;
    --secondary-color: #1E3A8A;
    --secondary-hover: #1b347c;
    --light-bg: #F8F9FA;
    --text-color: #333333;
    --border-color: #e5e7eb;
}

/* Reset e stile base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Stili per il contenitore del form */
.cooperative-form-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .cooperative-form-container {
        max-width: 1200px;
        margin: 2rem auto;
    }
}

/* Form */
.cooperative-form {
    padding: 1rem;
}

@media (min-width: 768px) {
    .cooperative-form {
        padding: 2rem;
    }
}

/* Intestazione del form - uguale allo stile del menu fullscreen */
.form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.form-header:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.1) 100%);
}

@media (min-width: 768px) {
    .form-header {
        padding: 2rem;
        border-radius: 0.5rem 0.5rem 0 0;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
}

.form-description {
    font-size: 1rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .form-description {
        font-size: 1.125rem;
    }
}

/* Contenitore step */
.progress-container {
    padding: 1.5rem 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 1rem;
}

/* Linea connettiva tra gli step */
.steps-container:before {
    content: '';
    position: absolute;
    top: 10px;
    left: 4%;
    right: 4%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 1;
}

/* Step */
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #e5e7eb;
    border: 2px solid #d1d5db;
    margin-bottom: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-dot {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 34, 75, 0.2);
    transform: scale(1.1);
}

.step-name {
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
    padding-top: 5px;
    transition: all 0.3s ease;
}

.text-primary {
    color: var(--primary-color);
    font-weight: 700;
}

.step.active .step-name {
    color: var(--primary-color);
    transform: translateY(2px);
}

/* Barra di progresso */
.progress-bar {
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-top: 10px;
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 3px;
    transition: width 0.4s ease;
    position: relative;
}

.progress:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%,
        transparent
    );
    background-size: 30px 30px;
    animation: progressAnimation 2s linear infinite;
    z-index: 1;
}

@keyframes progressAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 30px;
    }
}

/* Step content */
.step-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.step-content.active {
    display: block;
}

.step-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.step-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    padding-left: 0.5rem;
    border-left: 3px solid var(--primary-color);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form fields */
.form-field {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
select,
textarea {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background-color: #f9fafb;
    transition: all 0.3s ease;
    height: 42px; /* Uniform height */
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

textarea {
    height: auto;
    min-height: 100px;
}

input:focus + label,
select:focus + label,
textarea:focus + label {
    color: var(--primary-color);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 34, 75, 0.15);
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* File upload */
.file-upload-area {
    border: 2px dashed #e5e7eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(201, 34, 75, 0.05);
    transform: translateY(-2px);
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: #9ca3af;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.file-upload-area:hover .upload-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

.upload-hint {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.file-input {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border: none;
    cursor: pointer;
}

.preview-logo,
.preview-galleria {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.5rem 0;
    min-height: 20px;
}

.preview-logo img,
.preview-galleria img {
    max-height: 80px;
    border-radius: 0.25rem;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.preview-logo img:hover,
.preview-galleria img:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Checkbox */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.custom-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.custom-checkbox:hover {
    transform: translateX(3px);
}

.custom-checkbox label {
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Buttons */
.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.next-step, .submit-form {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px rgba(201, 34, 75, 0.3);
}

.next-step:hover, .submit-form:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 3px 6px rgba(201, 34, 75, 0.4);
    transform: translateY(-3px);
}

.prev-step {
    background-color: #f3f4f6;
    color: #4b5563;
    border: 1px solid #d1d5db;
}

.prev-step:hover {
    background-color: #e5e7eb;
    color: #1f2937;
    transform: translateY(-2px);
}

/* First step only has next button */
.step-content[data-step="1"] .form-buttons {
    justify-content: flex-end;
}

/* Success and error messages */
#form-success,
#form-error {
    padding: 1.25rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    position: relative;
    padding-left: 3rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#form-success {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #22c55e;
}

#form-success:before {
    content: '✓';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #22c55e;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#form-error {
    background-color: #fef2f2;
    color: #b91c1c;
    border-left: 4px solid #ef4444;
}

#form-error:before {
    content: '!';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #ef4444;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Debug container */
#debug-container {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    font-family: monospace;
    font-size: 0.75rem;
    max-height: 200px;
    overflow-y: auto;
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Titoli delle sottosezioni */
.subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.5rem;
}

.subsection-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Filtro fullscreen (come il menu) */
#filter-overlay {
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 1000;
}

#filter-overlay.flex {
    animation: fadeIn 0.3s ease forwards;
}

#filter-overlay.hidden {
    animation: fadeOut 0.3s ease forwards;
    display: flex !important;
    opacity: 0;
    pointer-events: none;
}

.filter-toggle {
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.filter-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.filter-content {
    padding: 2rem;
    width: 100%;
    max-width: 800px;
}

.filter-title {
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: bold;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group label {
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.filter-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.filter-actions button {
    margin: 0 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-apply {
    background-color: white;
    color: var(--primary-color);
}

.filter-apply:hover {
    background-color: #f9fafb;
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.filter-reset {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.filter-reset:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Checkbox filtri */
.filter-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.filter-checkbox:hover {
    transform: translateX(5px);
}

.filter-checkbox input[type="checkbox"] {
    margin-right: 0.5rem;
}
.step.active:before {
    display: none!important
}
.step-dot:before {
    display: none!important}
