/* Public arama - Admin Home Index ile aynı yapı */
.search-hero {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 50%, #1e293b 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
    position: relative;
    overflow: hidden;
}
.search-panel-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.search-panel-close:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}
.search-panel-close .material-symbols-rounded {
    font-size: 24px;
}
.search-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.search-hero h1 {
    font-weight: 700;
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.search-hero .subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.search-box-wrap {
    position: relative;
    max-width: 480px;
}
.search-box-wrap input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.search-box-wrap input::placeholder { color: rgba(255,255,255,0.5); }
.search-box-wrap:focus-within input {
    border-color: #38bdf8;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(56,189,248,0.2);
}
.search-box-wrap:focus-within .search-icon { color: #38bdf8; }
.search-box-wrap input:focus { outline: none; }
.search-box-wrap .search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 22px;
    transition: color 0.3s;
    pointer-events: none;
}
.feature-strip-wrap {
    margin-top: 1.25rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-strip {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
}
.feature-strip::-webkit-scrollbar { display: none; }
.feature-strip-nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}
.feature-strip-nav:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}
.feature-strip-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.feature-strip-nav .material-symbols-rounded { font-size: 20px; }
.feature-chip {
    flex-shrink: 0;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: none;
    letter-spacing: 0.01em;
}
.feature-chip:hover { transform: translateY(-2px); }
.feature-chip.chip-active {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(56,189,248,0.4);
}
.feature-chip.chip-inactive {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    border: 1px solid rgba(255,255,255,0.2);
}
.feature-chip.chip-inactive:hover {
    background: rgba(255,255,255,0.18);
}
.results-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}
.results-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(180deg, #fafbfc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}
.results-header h6 {
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}
.results-header .badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 10px;
}
.loading-bar {
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9);
    animation: loading-pulse 1.5s ease-in-out infinite;
}
@keyframes loading-pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
.product-list {
    padding: 0;
}
.product-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    transition: background 0.2s ease;
    animation: row-fade 0.4s ease forwards;
}
.product-row:last-child { border-bottom: none; }
.product-row:hover { background: #f8fafc; }
@keyframes row-fade {
    from { opacity: 0; }
    to { opacity: 1; }
}
.product-row .row-info {
    flex: 1;
    min-width: 0;
}
.product-row .row-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}
.product-row .row-meta {
    font-size: 0.85rem;
    color: #64748b;
}
.empty-state, .no-results {
    padding: 4rem 2rem;
    text-align: center;
}
.empty-state .icon-wrap, .no-results .icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.empty-state .icon-wrap .material-symbols-rounded,
.no-results .icon-wrap .material-symbols-rounded {
    font-size: 40px;
    color: #94a3b8;
}
.empty-state p, .no-results p {
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* ----- Duftfinder step-by-step wizard - tam sayfa, kurumsal teal ----- */
/* Renk paleti: vurgu teal #0d9488, metin koyu #374151, çerçeve açık gri #e5e7eb */
:root {
    --wizard-accent: #0d9488;
    --wizard-accent-hover: #0f766e;
    --wizard-text: #374151;
    --wizard-text-muted: #6b7280;
    --wizard-border: #e5e7eb;
    --wizard-bg: #fafafa;
}

.duftfinder-wizard-fullpage {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    min-height: max(50vh, 380px);
    padding: 2rem 1rem 3rem;
    background: linear-gradient(165deg, #fafbfc 0%, #f5f3ff 40%, #fefce8 100%);
    overflow: hidden;
    position: relative;
}
/* Hero ile aynı dekoratif yumuşak lekeler */
.duftfinder-wizard-fullpage::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}
.duftfinder-wizard-fullpage::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -40px;
    pointer-events: none;
}
.duftfinder-wizard-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    min-height: 380px;
    padding: 0 1rem 1rem;
    box-sizing: border-box;
}
.duftfinder-wizard-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--wizard-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.duftfinder-wizard-close:hover {
    background: var(--wizard-border);
    color: var(--wizard-text);
}
.duftfinder-wizard-close .material-symbols-rounded { font-size: 22px; }
.duftfinder-wizard-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wizard-text);
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.02em;
}
.duftfinder-wizard-step-label {
    font-size: 0.875rem;
    color: var(--wizard-text-muted);
    margin: 0 0 0.5rem 0;
    font-weight: 500;
}
.wizard-progress-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}
.wizard-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--wizard-border);
    color: var(--wizard-text-muted);
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.wizard-dot.active {
    background: var(--wizard-accent);
    color: #fff;
    transform: scale(1.1);
}
.wizard-dot.done {
    background: #ccfbf1;
    color: var(--wizard-accent-hover);
}
.duftfinder-wizard-progress-track {
    height: 3px;
    background: var(--wizard-border);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.duftfinder-wizard-progress-fill {
    height: 100%;
    background: var(--wizard-accent);
    border-radius: 2px;
    transition: width 0.35s ease;
}
.wizard-step {
    min-height: 30rem;
    overflow-x: hidden;
    overflow-y: auto;
    animation: wizardStepIn 0.35s ease forwards;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 0.5rem;
    padding-top: 0.5rem;
    box-sizing: border-box;
}
@keyframes wizardStepIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.wizard-step-desc {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--wizard-text);
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.4;
    text-align: center;
}
.wizard-step-hint {
    display: none; /* ipuçları kaldırıldı */
    font-size: 0.85rem;
    color: var(--wizard-text-muted);
    margin-bottom: 1.25rem;
    text-align: center;
    font-weight: 400;
}
.wizard-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0 0.25rem;
    box-sizing: border-box;
}
.wizard-option {
    flex: 1 1 auto;
    min-width: 90px;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 0.75rem;
    border: 2px solid var(--wizard-border);
    border-radius: 16px;
    background: #fff;
    color: var(--wizard-text);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
    min-height: 0;
    box-sizing: border-box;
}
.wizard-option:hover {
    border-color: #94a3b8;
    background: var(--wizard-bg);
}
.wizard-option.selected {
    border-color: var(--wizard-accent);
    border-width: 2px;
    background: #fff;
    color: var(--wizard-text);
    box-shadow: 0 0 0 1px var(--wizard-accent);
}
/* Cinsiyet kartları: img/ men.png, kadin.png, unisex.png + etiket + köşe sembolü (♂ ♀ ⚥) */
.wizard-option-gender {
    position: relative;
    padding-bottom: 2rem;
    overflow: hidden;
    max-width: 31% !important;
}
.wizard-options-gender {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0 0.5rem;
}
.wizard-option-gender .wizard-option-img-wrap {
    width: auto;
    height: 12rem;
}
.wizard-option-img-wrap {
    width: auto;
    height: 15rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
}
.wizard-option-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s ease;
}
.wizard-option.selected .wizard-option-img-wrap { background: transparent; }
.wizard-option.selected .wizard-option-img { opacity: 1; }
.wizard-option-label { font-weight: 600; }
.wizard-option-symbol {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    font-size: 1rem;
    color: var(--wizard-text-muted);
    transition: color 0.2s ease;
}
.wizard-option.selected .wizard-option-symbol { color: var(--wizard-accent); }
.wizard-option-icon {
    font-size: 32px;
    color: var(--wizard-text-muted);
}
.wizard-option.selected .wizard-option-icon { color: var(--wizard-accent); }
.wizard-features-wrap {
    max-height: 280px;
    overflow-y: auto;
    padding: 4px 0;
}
.wizard-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.wizard-feature-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    border: 2px solid var(--wizard-border);
    background: #fff;
    color: var(--wizard-text);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}
.wizard-feature-chip:hover {
    border-color: #94a3b8;
    background: var(--wizard-bg);
}
.wizard-feature-chip.selected {
    border-color: var(--wizard-accent);
    background: #ccfbf1;
    color: var(--wizard-accent-hover);
}

/* Renk chip: arka plan rengi API’den (hexCode); metin rengi kontrast */
.wizard-color-chip {
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}
.wizard-color-chip.selected {
    box-shadow: 0 0 0 3px rgba(0,0,0,0.2);
    filter: brightness(1.05);
}

/* Mevsim kartları (resim + etiket) */
.wizard-options-mevsim {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.wizard-option-mevsim {
    flex: 1;
    /* min-width: 120px; */
    /* max-width: 160px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem;
    border: 2px solid var(--wizard-border);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    width: auto;
    height: 9rem;
}
.wizard-option-mevsim:hover {
    border-color: #94a3b8;
    background: var(--wizard-bg);
}
.wizard-option-mevsim.selected {
    border-color: var(--wizard-accent);
    box-shadow: 0 0 0 1px var(--wizard-accent);
}
.wizard-mevsim-img {
    width: 100%;
    height: 6rem;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wizard-mevsim-img[data-season="spring"] { background: linear-gradient(145deg, #dcfce7 0%, #86efac 100%); }
.wizard-mevsim-img[data-season="summer"] { background: linear-gradient(145deg, #fef3c7 0%, #fcd34d 100%); }
.wizard-mevsim-img[data-season="autumn"] { background: linear-gradient(145deg, #fed7aa 0%, #fdba74 100%); }
.wizard-mevsim-img[data-season="winter"] { background: linear-gradient(145deg, #e0e7ff 0%, #c7d2fe 100%); }
.wizard-mevsim-img.mevsim-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 0;
}
.wizard-option-mevsim .wizard-option-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wizard-option-mevsim .wizard-option-img,
.wizard-option-mevsim .wizard-option-img-wrap,
.wizard-option-mevsim .wizard-option-label {
    pointer-events: none;
}
.wizard-option-mevsim .wizard-option-label {
    font-weight: 600;
    color: var(--wizard-text);
    font-size: 0.9rem;
}

/* Renk kartları (renk kutusu + etiket, mevsim gibi liste) */
.wizard-options-renk {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.wizard-option-renk {
    flex: 1;
    /* min-width: 120px; */
    /* max-width: 160px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem;
    border: 2px solid var(--wizard-border);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    width: auto;
    height: 9rem;
}
.wizard-option-renk:hover {
    border-color: #94a3b8;
    background: var(--wizard-bg);
}
.wizard-option-renk.selected {
    border-color: var(--wizard-accent);
    box-shadow: 0 0 0 1px var(--wizard-accent);
}
.wizard-renk-swatch {
    width: 100%;
    height: 6rem;
    border-radius: 0;
    overflow: hidden;
    flex-shrink: 0;
}
.wizard-option-renk .wizard-option-label {
    font-weight: 600;
    color: var(--wizard-text);
    font-size: 0.9rem;
    pointer-events: none;
}

/* Kullanım alanı kartları (resim + etiket) */
.wizard-options-kullanim {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}
.wizard-option-kullanim {
    flex: 1;
    /* min-width: 120px; */
    /* max-width: 160px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    padding: 0.75rem;
    border: 2px solid var(--wizard-border);
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    width: auto;
    height: 9rem;
}
.wizard-option-kullanim:hover {
    border-color: #94a3b8;
    background: var(--wizard-bg);
}
.wizard-option-kullanim.selected {
    border-color: var(--wizard-accent);
    box-shadow: 0 0 0 1px var(--wizard-accent);
}
.wizard-kullanim-img {
    width: 100%;
    height: 6rem;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(145deg, #f3e8ff 0%, #e9d5ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wizard-kullanim-img[data-usage="home"] { background: linear-gradient(145deg, #fef3c7 0%, #fde68a 100%); }
.wizard-kullanim-img[data-usage="office"] { background: linear-gradient(145deg, #dbeafe 0%, #93c5fd 100%); }
.wizard-kullanim-img[data-usage="car"] { background: linear-gradient(145deg, #e5e7eb 0%, #9ca3af 100%); }
.wizard-kullanim-img[data-usage="outdoor"] { background: linear-gradient(145deg, #d1fae5 0%, #6ee7b7 100%); }
.wizard-kullanim-img[data-usage="gift"] { background: linear-gradient(145deg, #fce7f3 0%, #fbcfe8 100%); }
.wizard-kullanim-img[data-usage="spa"] { background: linear-gradient(145deg, #e0f2fe 0%, #bae6fd 100%); }
.wizard-option-kullanim .wizard-option-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wizard-option-kullanim .wizard-option-label {
    font-weight: 600;
    color: var(--wizard-text);
    font-size: 0.9rem;
}

.wizard-step-results {
    min-height: 200px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: 0.5rem;
    box-sizing: border-box;
}
.wizard-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--wizard-border);
}
.wizard-results-title {
    font-weight: 600;
    color: var(--wizard-text);
    font-size: 1rem;
}
.wizard-results-badge {
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--wizard-accent);
    color: #fff;
    font-size: 0.85rem;
}
.wizard-product-list {
    padding: 0.25rem 0.25rem 0.5rem;
    max-height: 50vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.wizard-product-list .product-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    border: 1px solid var(--wizard-border);
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.wizard-product-list .product-row:last-child {
    margin-bottom: 0;
}
.wizard-product-list .product-row:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.wizard-product-list .row-img-wrap {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wizard-product-list .row-img-wrap.row-img-placeholder .material-symbols-rounded {
    font-size: 32px;
    color: var(--wizard-text-muted);
}
.wizard-product-list .row-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wizard-product-list .row-info {
    flex: 1;
    min-width: 0;
}
.wizard-product-list .row-title {
    font-weight: 700;
    color: var(--wizard-text);
    font-size: 1rem;
    margin-bottom: 0.35rem;
    line-height: 1.35;
}
.wizard-product-list .row-meta {
    font-size: 0.85rem;
    color: var(--wizard-text-muted);
    line-height: 1.4;
}
.wizard-no-results {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--wizard-text-muted);
}
.wizard-no-results .material-symbols-rounded {
    font-size: 48px;
    color: var(--wizard-border);
    display: block;
    margin-bottom: 0.75rem;
}
.wizard-no-results p { margin: 0; font-weight: 500; }
.duftfinder-wizard-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 0.5rem;
    border-top: 1px solid var(--wizard-border);
}
.duftfinder-wizard-btn {
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
}
.duftfinder-wizard-btn .wizard-btn-icon {
    font-size: 20px;
}
.duftfinder-wizard-btn:focus-visible {
    outline: 2px solid var(--wizard-accent);
    outline-offset: 2px;
}
.duftfinder-wizard-btn-primary {
    background: var(--wizard-accent);
    color: #fff;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
}
.duftfinder-wizard-btn-primary:hover {
    background: var(--wizard-accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}
.duftfinder-wizard-btn-secondary {
    background: #fff;
    color: var(--wizard-text-muted);
    border: 2px solid var(--wizard-border);
}
.duftfinder-wizard-btn-secondary:hover {
    color: var(--wizard-text);
    border-color: var(--wizard-text-muted);
    background: var(--wizard-bg);
}

@media (max-width: 576px) {
    .duftfinder-wizard-fullpage { padding: 1.25rem 0.75rem 2rem; }
    .duftfinder-wizard-inner { min-height: 320px; }
    .duftfinder-wizard-title { font-size: 1.35rem; }
    .wizard-step-desc { font-size: 1.1rem; }
    .wizard-dot { width: 24px; height: 24px; font-size: 0.7rem; }
    .wizard-option { min-width: 80px; max-width: 130px; padding: 1rem 0.5rem; }
    .wizard-options-gender { gap: 1.25rem; }
    .wizard-option-mevsim, .wizard-option-kullanim, .wizard-option-renk { min-width: 100px; max-width: 140px; }
    .duftfinder-wizard-btn { padding: 12px 20px; font-size: 0.95rem; min-height: 44px; }
}

/* Tablet/mobile polish for publish-facing web */
@media (max-width: 991.98px) {
    .search-hero {
        border-radius: 16px;
        padding: 1.5rem 1rem 1rem;
    }

    .results-card {
        border-radius: 16px;
    }

    .results-header {
        padding: 1rem;
    }

    .product-row {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }

    .duftfinder-wizard-inner {
        max-width: 100%;
        padding: 0 0.35rem 0.75rem;
    }

    .wizard-step {
        min-height: 23rem;
        padding-left: 0;
        padding-right: 0;
    }

    .wizard-options-gender {
        gap: 1rem;
    }

    .wizard-option-gender {
        max-width: calc(33.333% - 0.7rem) !important;
        min-width: 0;
    }

    .wizard-option-gender .wizard-option-img-wrap {
        height: 9.5rem;
    }

    .wizard-option-mevsim,
    .wizard-option-renk,
    .wizard-option-kullanim {
        flex: 0 0 calc(50% - 0.6rem);
        max-width: calc(50% - 0.6rem);
        height: auto;
        min-height: 8.25rem;
    }

    .wizard-mevsim-img,
    .wizard-renk-swatch,
    .wizard-kullanim-img {
        height: 5rem;
    }

    .wizard-product-list .product-row {
        gap: 0.9rem;
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    .search-hero {
        margin-bottom: 1rem;
        padding-top: 2.7rem;
    }

    .search-panel-close {
        top: 0.6rem;
        right: 0.6rem;
        width: 36px;
        height: 36px;
    }

    .feature-strip-wrap {
        gap: 6px;
    }

    .feature-strip-nav {
        width: 32px;
        height: 32px;
    }

    .feature-chip {
        padding: 7px 14px;
        font-size: 0.8rem;
    }

    .results-header {
        gap: 0.5rem;
        align-items: flex-start !important;
        flex-direction: column;
    }

    .product-row {
        flex-direction: column;
        align-items: stretch;
    }

    .product-row .row-title {
        font-size: 0.96rem;
    }

    .duftfinder-wizard-progress-track {
        margin-bottom: 1.2rem;
    }

    .wizard-step {
        min-height: 0;
    }

    .wizard-step-desc {
        font-size: 1.02rem;
        margin-bottom: 0.75rem;
    }

    .wizard-options {
        gap: 0.75rem;
        padding: 0;
    }

    .wizard-option-gender {
        flex: 1 1 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem) !important;
        padding: 0.8rem 0.45rem 1.45rem;
    }

    .wizard-option-gender .wizard-option-img-wrap {
        height: 7.5rem;
    }

    .wizard-option-mevsim,
    .wizard-option-renk,
    .wizard-option-kullanim {
        flex: 0 0 calc(50% - 0.4rem);
        max-width: calc(50% - 0.4rem);
        min-height: 7.6rem;
        padding: 0.55rem;
    }

    .wizard-option-mevsim .wizard-option-label,
    .wizard-option-renk .wizard-option-label,
    .wizard-option-kullanim .wizard-option-label {
        font-size: 0.82rem;
    }

    .duftfinder-wizard-actions {
        margin-top: 1.5rem;
        padding-top: 1rem;
        gap: 10px;
    }

    .duftfinder-wizard-btn {
        flex: 1;
        justify-content: center;
        width: 100%;
    }

    .duftfinder-wizard-fullpage {
        padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
    }

    .duftfinder-wizard-actions {
        position: sticky;
        bottom: 0;
        z-index: 5;
        background: linear-gradient(180deg, rgba(250, 251, 252, 0.88) 0%, rgba(250, 251, 252, 1) 45%);
        backdrop-filter: blur(6px);
        border-top: 1px solid #e5e7eb;
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px));
    }

    .wizard-product-list {
        max-height: 46vh;
    }
}

@media (max-width: 479.98px) {
    .wizard-option-gender {
        flex: 0 0 calc(50% - 0.4rem);
        max-width: calc(50% - 0.4rem) !important;
    }

    .wizard-option-gender .wizard-option-img-wrap {
        height: 8.5rem;
    }

    .wizard-option-mevsim,
    .wizard-option-renk,
    .wizard-option-kullanim {
        flex: 0 0 calc(50% - 0.4rem);
        max-width: calc(50% - 0.4rem);
    }

    .wizard-product-list .product-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .wizard-product-list .row-img-wrap {
        width: 52px;
        height: 52px;
    }

    .wizard-results-header {
        align-items: flex-start;
    }

    .wizard-results-badge {
        font-size: 0.78rem;
        padding: 5px 10px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .feature-chip:hover,
    .product-row:hover,
    .wizard-option:hover,
    .wizard-feature-chip:hover,
    .duftfinder-wizard-btn-primary:hover,
    .duftfinder-wizard-btn-secondary:hover {
        transform: none;
        box-shadow: none;
    }

    .wizard-option,
    .wizard-feature-chip,
    .feature-chip,
    .duftfinder-wizard-btn {
        min-height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .feature-chip,
    .product-row,
    .wizard-option,
    .wizard-feature-chip,
    .duftfinder-wizard-btn,
    .duftfinder-wizard-progress-fill {
        transition: none !important;
        animation: none !important;
    }
}
