/* Stile per il creatore di prodotti */
:root {
    --primary-color: #3b5998;
    --primary-light: #4e9eed;
    --primary-dark: #2d4373;
    --secondary-color: #10b981;
    --secondary-light: #34d399;
    --secondary-dark: #059669;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --success-color: #10b981;
    --info-color: #3b82f6;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --border-radius: 8px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Container principale */
.product-creator-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
}

/* Barra di progresso */
.progress-container {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 1.5rem 2rem;
    color: #fff;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.progress-step.active .step-number {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.progress-step.completed .step-number {
    background-color: var(--success-color);
    color: #fff;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

/* Form container */
.tab-content {
    padding: 2rem;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Form styling */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-700);
}

.input-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    outline: none;
}

.input-help {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 0.25rem;
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-prev {
    background-color: var(--gray-100);
    color: var(--gray-700);
}

.btn-prev:hover {
    background-color: var(--gray-200);
}

.btn-next {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-next:hover {
    background-color: var(--primary-dark);
}

.btn-submit {
    background-color: var(--success-color);
    color: #fff;
}

.btn-submit:hover {
    background-color: var(--secondary-dark);
}

.btn i {
    margin-right: 0.5rem;
}

/* Per modale di selezione stanza */
.room-selector-modal {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.room-selector-modal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    padding: 1rem 1.5rem;
}

.room-selector-modal .modal-title {
    font-weight: 600;
    margin: 0;
}

.room-selector-modal .modal-body {
    padding: 1.5rem;
}

.room-selector-modal .modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* Responsive design */
@media (max-width: 768px) {
    .progress-steps {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .progress-step {
        flex: 0 0 auto;
        margin-right: 1.5rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
    }
}

/* Messaggi di errore */
.invalid-feedback {
    display: block;
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.is-invalid {
    border-color: var(--danger-color);
}

.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Tooltips e suggerimenti */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gray-800);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

/* Personalizzazione file upload */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--gray-50);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    color: var(--gray-600);
}

.file-upload-label:hover {
    border-color: var(--primary-light);
    background-color: rgba(79, 70, 229, 0.05);
}

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

.file-preview {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.file-preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-preview-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background-color: var(--danger-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 1;
}

/* Icone e decorazioni */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--gray-800);
    font-weight: 600;
}

.help-tip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--gray-400);
    color: white;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    cursor: help;
}

/* Checkbox e radio personalizzati */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: white;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    margin-right: 0.75rem;
    transition: all 0.2s ease;
}

.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--primary-light);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

/* Notifiche di successo e errore */
.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success-color);
    color: var(--success-color);
}

.alert-error {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger-color);
    color: var(--danger-color);
}

.alert-icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

/* Gli stili per il contenitore principale sono già definiti sopra */

.product-form {
    padding: 0;
}

/* Indicatore di progresso */
.progress-container {
    padding: 20px 20px 25px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    min-width: 0;
}

.progress-step::before {
    content: "";
    position: absolute;
    top: 25px;
    left: calc(-50% + 20px);
    width: calc(100% - 40px);
    height: 3px;
    background-color: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.progress-step:first-child::before {
    display: none;
}

.progress-step.active::before,
.progress-step.completed::before {
    background-color: white;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.progress-step.active .step-number {
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

.progress-step.completed .step-number {
    background-color: white;
    color: var(--success-color);
}

.progress-step.completed .step-number::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
}

.step-label {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    padding: 0 5px;
}

.progress-bar {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background-color: white;
    transition: width 0.3s ease;
}

/* Contenuto dei tab */
.tab-content {
    padding: 30px;
    background-color: white;
}

.tab-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 15px;
}

.tab-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-title i {
    color: var(--primary-color);
}

.tab-description {
    color: var(--gray-600);
    margin-bottom: 0;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 25px;
}

.form-group {
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 20px;
    position: relative;
}

.col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--gray-700);
}

.required-badge {
    color: var(--danger-color);
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-select {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray-700);
    background-color: #fff;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234B5563' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.form-select:focus {
    border-color: var(--primary-light);
    outline: 0;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-helper {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.input-group {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.input-group-text {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--gray-700);
    text-align: center;
    white-space: nowrap;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    border-right: 0;
}

.input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.is-invalid {
    border-color: var(--danger-color) !important;
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--danger-color);
}

.form-switch-container {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.form-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin-right: 15px;
}

.form-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-300);
    transition: 0.4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.form-switch-label {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-switch-label span {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 3px;
}

.form-switch-label small {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Upload containers */
.upload-container {
    margin-bottom: 15px;
}

.upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    padding: 40px 20px;
    text-align: center;
    background-color: var(--gray-50);
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--primary-light);
    background-color: rgba(99, 102, 241, 0.05);
}

.upload-area i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.upload-area span {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 5px;
}

.upload-area small {
    color: var(--gray-500);
}

.hidden-upload {
    display: none;
}

/* Anteprima immagini */
.image-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.image-preview-item {
    width: 150px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    background-color: white;
}

.image-preview-thumb {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.main-image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.75rem;
    padding: 5px 10px;
    border-top-right-radius: var(--border-radius);
}

.remove-image-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: rgba(239, 68, 68, 0.8);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-image-btn:hover {
    background-color: var(--danger-color);
}

.image-preview-name {
    padding: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-700);
    border-top: 1px solid var(--gray-200);
}

/* Anteprima file */
.file-previews {
    margin-top: 15px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-radius: var(--border-radius);
    background-color: white;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.file-preview-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.file-preview-info {
    flex: 1;
}

.file-preview-name {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 3px;
}

.file-preview-size {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.remove-file-btn {
    background-color: transparent;
    border: none;
    color: var(--gray-500);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.remove-file-btn:hover {
    background-color: var(--gray-100);
    color: var(--danger-color);
}

/* SEO Preview */
.seo-preview-container {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.seo-preview-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 15px;
}

.seo-preview {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-200);
}

.seo-preview .seo-preview-title {
    color: #1a0dab;
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.seo-preview-url {
    color: #006621;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
}

.seo-preview-description {
    color: #545454;
    font-size: 14px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.btn-prev,
.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: var(--border-radius);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-prev {
    background-color: var(--gray-100);
    color: var(--gray-700);
}

.btn-prev:hover {
    background-color: var(--gray-200);
}

.btn-prev i {
    margin-right: 8px;
}

.btn-next {
    background-color: var(--primary-color);
    color: white;
}

.btn-next:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-next i {
    margin-left: 8px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-submit i {
    margin-right: 8px;
}

/* Utility */
.d-block {
    display: block;
}

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

[x-cloak] {
    display: none !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .col-md-3, .col-md-4, .col-md-6, .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .progress-step .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .progress-container {
        padding: 15px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .progress-step::before {
        top: 20px;
    }
}

@media (max-width: 576px) {
    .progress-step .step-label {
        display: none;
    }
    
    .form-switch-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .form-switch {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .tab-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
    }
}
