/* ========================================
   REGISTRACE STANICE - WIZARD
   MODERN DESIGN - MOBILE FIRST + BEM
   ======================================== */

:root {
    /* Oranžová paleta - sladěno s hlavičkou webu (#ff6b35) */
    --orange-50: #fff5f0;
    --orange-100: #ffe8dd;
    --orange-200: #ffd0bb;
    --orange-300: #ffb088;
    --orange-400: #ff8855;
    --orange-500: #ff6b35;
    --orange-600: #ff3d00;

    /* Neutrální barvy */
    --gray-50: #fafafa;
    --gray-100: #f4f4f5;
    --gray-200: #e4e4e7;
    --gray-300: #d4d4d8;
    --gray-400: #a1a1aa;
    --gray-500: #71717a;
    --gray-600: #52525b;
    --gray-700: #3f3f46;
    --gray-800: #27272a;
    --gray-900: #18181b;

    /* Funkční barvy */
    --success: #22c55e;
    --success-light: #f0fdf4;
    --error: #ef4444;
    --warning-bg: #fffbeb;
    --warning-border: #fde68a;
    --warning-text: #92400e;

    /* Stíny */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-orange: 0 4px 14px rgba(255, 107, 53, 0.35);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.wizard-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 24px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: padding 0.3s ease;
}

/* Kompaktní verze při scrollování */
.wizard-progress--compact {
    padding: 10px 20px;
}

.wizard-progress--compact .wizard-progress__header {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    overflow: hidden;
}

.wizard-progress--compact .wizard-progress__track {
    max-height: 0;
    margin-bottom: 0;
    opacity: 0;
    overflow: hidden;
}

.wizard-progress--compact .wizard-progress__number {
    width: 28px;
    height: 28px;
    font-size: 12px;
}

.wizard-progress--compact .wizard-progress__label {
    font-size: 10px;
}

.wizard-progress__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    max-height: 50px;
    opacity: 1;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
}

.wizard-progress__back {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.wizard-progress__back:hover {
    opacity: 1;
}

.wizard-progress__back svg {
    width: 18px;
    height: 18px;
}

.wizard-progress__logo {
    display: block;
}

.wizard-progress__logo-img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.wizard-progress__spacer {
    width: 70px;
}

.wizard-progress__track {
    height: 4px;
    max-height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    overflow: hidden;
    opacity: 1;
    transition: max-height 0.3s ease, margin 0.3s ease, opacity 0.3s ease;
}

.wizard-progress__fill {
    height: 100%;
    background-color: #ffffff;
    border-radius: var(--radius-full);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-progress__steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}

.wizard-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.wizard-progress__number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0);
}

.wizard-progress__step--active .wizard-progress__number,
.wizard-progress__step--completed .wizard-progress__number {
    background-color: #ffffff;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wizard-progress__step--completed .wizard-progress__number::after {
    content: '✓';
}

.wizard-progress__step--completed .wizard-progress__number span {
    display: none;
}

.wizard-progress__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
    max-width: 100%;
    transition: color 0.3s ease;
}

.wizard-progress__step--active .wizard-progress__label,
.wizard-progress__step--completed .wizard-progress__label {
    color: #ffffff;
}

/* ========================================
   WIZARD CONTAINER
   ======================================== */

.wizard {
    background-color: var(--gray-50);
    padding-bottom: 120px; /* Prostor pro fixed navigaci */
    min-height: 100vh; /* Zajistí dostatek prostoru pro scroll */
}

.wizard__step {
    display: none;
    padding: 28px 16px;
    padding-top: 28px;
    animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard__step--active {
    display: block;
}

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

/* ========================================
   WIZARD HEADER
   ======================================== */

.wizard__header {
    text-align: center;
    margin-bottom: 36px;
}

.wizard__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.wizard__icon--breeder {
    background: linear-gradient(145deg, var(--orange-400) 0%, var(--orange-500) 100%);
    box-shadow: var(--shadow-orange);
}

.wizard__icon--success {
    background: linear-gradient(145deg, #34d399 0%, var(--success) 100%);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.wizard__icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.wizard__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
}

.wizard__subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ========================================
   WIZARD CONTENT
   ======================================== */

.wizard__content {
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   FORM FIELDS - MODERN STYLE
   ======================================== */

.wizard__field {
    margin-bottom: 20px;
}

.wizard__field-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.wizard__field--half {
    flex: 1;
    margin-bottom: 0;
}

.wizard__field--three-quarters {
    flex: 3;
    margin-bottom: 0;
}

.wizard__field--quarter {
    flex: 1;
    margin-bottom: 0;
}

.wizard__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}

.wizard__required {
    color: var(--orange-500);
    font-weight: 500;
}

/* Modern inputs - tenké linky, jemné přechody */
.wizard__input,
.wizard__select,
.wizard__textarea {
    width: 100%;
    padding: 12px 14px;
    min-height: 46px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-800);
    background-color: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.wizard__input:hover,
.wizard__select:hover,
.wizard__textarea:hover {
    border-color: var(--gray-300);
}

.wizard__input:focus,
.wizard__select:focus,
.wizard__textarea:focus {
    border-color: var(--orange-400);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.wizard__input::placeholder,
.wizard__textarea::placeholder {
    color: var(--gray-400);
}

.wizard__textarea--short {
    min-height: 100px;
    resize: vertical;
}

.wizard__textarea--long {
    min-height: 160px;
    resize: vertical;
}

/* Input with icon */
.wizard__input-wrapper {
    position: relative;
}

.wizard__input-wrapper--icon .wizard__input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    pointer-events: none;
}

.wizard__input--with-icon {
    padding-left: 42px;
}

.wizard__input-icon--facebook {
    color: #1877F2;
}

.wizard__input-icon--instagram {
    color: #E4405F;
}

/* Modern Select */
.wizard__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a1a1aa'%3E%3Cpath d='M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
    cursor: pointer;
}

/* Efekt pro automaticky vyplněné pole */
.wizard__input--filled {
    background-color: var(--success-light) !important;
    border-color: var(--success) !important;
}

/* Readonly pole */
.wizard__input[readonly] {
    background-color: var(--gray-50);
    cursor: default;
}

/* Hints */
.wizard__hint {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 6px;
    line-height: 1.5;
}

/* Privacy note - moderní verze */
.wizard__privacy-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 4px;
    margin-bottom: 24px;
    padding: 12px 14px;
    background-color: var(--warning-bg);
    border: 1px solid var(--warning-border);
    border-radius: var(--radius-md);
    font-size: 13px;
    color: var(--warning-text);
    line-height: 1.5;
}

.wizard__privacy-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    color: #f59e0b;
    margin-top: 1px;
}

/* Errors */
.wizard__error {
    font-size: 12px;
    color: var(--error);
    margin-top: 6px;
    display: none;
}

.wizard__error--visible {
    display: block;
}

.wizard__input--error {
    border-color: var(--error) !important;
}

.wizard__counter {
    font-size: 11px;
    color: var(--gray-400);
    text-align: right;
    margin-top: 4px;
}

.wizard__counter-min {
    color: var(--gray-400);
    font-weight: 400;
}

/* Loading a prázdné stavy */
.wizard__loading,
.wizard__no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-500);
    font-size: 14px;
}

.wizard__loading::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 12px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--orange-500);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ========================================
   FILE UPLOAD - MODERN
   ======================================== */

.wizard__upload {
    position: relative;
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background-color: var(--gray-50);
    transition: all 0.2s ease;
}

.wizard__upload:hover {
    border-color: var(--orange-400);
    background-color: var(--orange-50);
}

.wizard__upload-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.wizard__upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    text-align: center;
    cursor: pointer;
}

.wizard__upload-icon {
    width: 40px;
    height: 40px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

.wizard__upload-text {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.wizard__upload-hint {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 4px;
}

.wizard__preview {
    margin-top: 12px;
}

.wizard__preview-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius-sm);
}

/* File preview (pro PDF a dokumenty) */
.wizard__file-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background-color: var(--success-light);
    border: 1px solid var(--success);
    border-radius: var(--radius-md);
}

.wizard__file-preview--pdf {
    flex-direction: row;
    justify-content: flex-start;
}

.wizard__file-icon {
    width: 32px;
    height: 32px;
    color: var(--success);
}

.wizard__file-name {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 500;
}

/* ========================================
   SEARCH INPUT
   ======================================== */

.wizard__search-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.wizard__search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    pointer-events: none;
    z-index: 1;
}

.wizard__input--search {
    padding-left: 42px;
    padding-right: 42px;
    width: 100%;
}

.wizard__search-clear {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.2s ease;
    z-index: 1;
}

.wizard__search-clear svg {
    width: 14px;
    height: 14px;
    color: var(--gray-600);
}

.wizard__search-clear:hover {
    background: var(--gray-300);
}

.wizard__search-clear--visible {
    display: flex;
}

/* ========================================
   BREEDS SELECTION - MODERN
   ======================================== */

.wizard__selected-breeds {
    background-color: var(--orange-50);
    border: 1px solid var(--orange-200);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 20px;
    min-height: 56px;
}

.wizard__selected-empty {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
    margin: 0;
}

.wizard__selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.wizard__selected-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
}

.wizard__selected-tag-remove {
    width: 14px;
    height: 14px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.15s ease;
}

.wizard__selected-tag-remove:hover {
    opacity: 1;
}

.wizard__breeds-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wizard__breeds-group-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wizard__breeds-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.wizard__breed-option {
    cursor: pointer;
}

.wizard__breed-option input {
    display: none;
}

.wizard__breed-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background-color: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all 0.15s ease;
    text-align: center;
}

.wizard__breed-option input:checked + .wizard__breed-card {
    border-color: var(--orange-400);
    background-color: var(--orange-50);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.wizard__breed-card:hover {
    border-color: var(--orange-300);
}

.wizard__breed-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}

/* ========================================
   ADVANTAGES SELECTION - MODERN
   ======================================== */

.wizard__advantages-counter {
    text-align: center;
    padding: 16px;
    background-color: var(--orange-50);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.wizard__advantages-count {
    font-size: 28px;
    font-weight: 700;
    color: var(--orange-500);
}

.wizard__advantages-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-left: 4px;
}

.wizard__advantages-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.wizard__advantages-category-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0 0 14px 0;
}

.wizard__advantages-category-title svg {
    width: 18px;
    height: 18px;
    color: var(--orange-500);
}

.wizard__advantages-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wizard__advantage-option {
    cursor: pointer;
}

.wizard__advantage-option input {
    display: none;
}

.wizard__advantage-card {
    display: flex;
    flex-direction: column;
    padding: 14px 16px;
    background-color: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    transition: all 0.15s ease;
}

.wizard__advantage-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.wizard__advantage-icon svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.wizard__advantage-option input:checked + .wizard__advantage-card .wizard__advantage-icon {
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
}

.wizard__advantage-option input:checked + .wizard__advantage-card {
    border-color: var(--orange-400);
    background-color: var(--orange-50);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.wizard__advantage-card:hover {
    border-color: var(--orange-300);
}

.wizard__advantage-option input:disabled + .wizard__advantage-card {
    opacity: 0.5;
    cursor: not-allowed;
}

.wizard__advantage-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.wizard__advantage-desc {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.4;
}

/* ========================================
   SOCIAL INPUTS
   ======================================== */

.wizard__social-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   SUMMARY (STEP 6) - MODERN
   ======================================== */

.wizard__summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wizard__summary-section {
    background-color: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.wizard__summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.wizard__summary-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0;
}

.wizard__summary-edit {
    background: none;
    border: none;
    color: var(--orange-500);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background-color 0.15s ease;
}

.wizard__summary-edit:hover {
    background-color: var(--orange-50);
}

.wizard__summary-content {
    padding: 14px 16px;
}

.wizard__summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
}

.wizard__summary-row:last-child {
    border-bottom: none;
}

.wizard__summary-label {
    font-size: 13px;
    color: var(--gray-500);
}

.wizard__summary-value {
    font-size: 13px;
    color: var(--gray-800);
    font-weight: 500;
    text-align: right;
}

.wizard__summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.wizard__summary-tag {
    display: inline-block;
    padding: 4px 10px;
    background-color: var(--orange-50);
    color: var(--orange-600);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
}

/* ========================================
   CHECKBOX (TERMS) - MODERN
   ======================================== */

.wizard__field--terms {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.wizard__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.wizard__checkbox-label input {
    display: none;
}

.wizard__checkbox-custom {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1.5px solid var(--gray-300);
    border-radius: 6px;
    background-color: #ffffff;
    transition: all 0.15s ease;
    position: relative;
}

.wizard__checkbox-label:hover .wizard__checkbox-custom {
    border-color: var(--orange-400);
}

.wizard__checkbox-label input:checked + .wizard__checkbox-custom {
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    border-color: transparent;
}

.wizard__checkbox-label input:checked + .wizard__checkbox-custom::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 5px;
    height: 9px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wizard__checkbox-text {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
}

.wizard__link {
    color: var(--orange-500);
    text-decoration: none;
    font-weight: 500;
}

.wizard__link:hover {
    text-decoration: underline;
}

/* ========================================
   NAVIGATION BUTTONS - MODERN
   ======================================== */

.wizard__navigation {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 100;
}

.wizard__navigation-inner {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

.wizard__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard__btn svg {
    width: 18px;
    height: 18px;
}

.wizard__btn--back {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.wizard__btn--back:hover:not(:disabled) {
    background-color: rgba(255, 255, 255, 0.25);
}

.wizard__btn--back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.wizard__btn--next {
    flex: 1;
    background: linear-gradient(135deg, var(--orange-400) 0%, var(--orange-500) 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.wizard__btn--next:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.5);
}

.wizard__btn--submit {
    flex: 1;
    background-color: #ffffff;
    color: var(--success);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wizard__btn--submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Spinner pro loading */
.wizard__btn-spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   ======================================== */

@media (min-width: 768px) {
    .wizard-progress {
        padding: 28px 40px;
    }

    .wizard-progress__logo-img {
        height: 36px;
    }

    .wizard-progress__number {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .wizard-progress__label {
        font-size: 12px;
    }

    .wizard__step {
        padding: 40px 32px;
    }

    .wizard__icon {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .wizard__icon svg {
        width: 36px;
        height: 36px;
    }

    .wizard__title {
        font-size: 26px;
    }

    .wizard__subtitle {
        font-size: 15px;
    }

    .wizard__field-row {
        flex-direction: row;
    }

    .wizard__field--quarter {
        min-width: 80px;
        max-width: 120px;
    }

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

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

    .wizard__social-inputs {
        flex-direction: row;
    }

    .wizard__social-inputs .wizard__input-wrapper {
        flex: 1;
    }

    .wizard__navigation {
        padding: 18px 32px;
    }

    .wizard__navigation-inner {
        max-width: 560px;
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP (1024px+)
   ======================================== */

@media (min-width: 1024px) {
    .wizard-progress {
        padding: 32px 60px;
    }

    .wizard-progress__logo-img {
        height: 40px;
    }

    .wizard__step {
        padding: 48px;
    }

    .wizard__content {
        max-width: 640px;
    }

    .wizard__title {
        font-size: 28px;
    }

    .wizard__breeds-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wizard__navigation-inner {
        max-width: 600px;
    }
}
