/** Shopify CDN: Minification failed

Line 35:0 All "@import" rules must come first

**/
/* Zara-Style Multi-Step Wizard CSS */
/* Adapted from styles-wizard.css for Theme Integration */

/* Usage: Scoped to .modal-container and children to avoid theme conflicts */

/* Trigger Button */
.size-guide-block {
    margin: 5px 0 15px 0;
    display: inline-block;
}

.size-guide-trigger {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0 0 2px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: opacity 0.2s;
}

.size-guide-trigger:hover {
    opacity: 0.7;
}

@import url('https://fonts.googleapis.com/css2?family=Archivo+Narrow:wght@400;500;600;700&display=swap');

/* Scoped to avoid theme conflicts */
.zara-modal-overlay,
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.zara-modal-overlay.active,
.modal-overlay.active {
    display: flex;
    opacity: 1;
}

/* Global Box Sizing Reset for Modal */
.zara-modal-container,
.zara-modal-container * {
    box-sizing: border-box;
}

.zara-modal-container,
.modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    height: auto;
    min-height: 580px;
    /* Force visibility - Fixes collapse */
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    font-family: 'Archivo Narrow', sans-serif;
    color: #000;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
    color: #333;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: rotate(90deg);
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #000;
    z-index: 10;
    transition: opacity 0.2s;
}

.modal-close:hover {
    opacity: 0.6;
}

/* Progress Bar */
.progress-bar {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 40px 16px;
    flex-shrink: 0;
}

.progress-info {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.progress-text {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #999;
    text-transform: uppercase;
}

.progress-text span {
    color: #1a1a1a;
}

.progress-track {
    width: 100%;
    height: 3px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 0%, #3a3a3a 100%);
    width: 0%;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

/* Sliders Compact height */
.measurement-group {
    margin-bottom: 25px;
    /* Compact */
}

/* Steps Container - Grid Stack Approach (Robust) */
.steps-container {
    flex: 1;
    display: grid;
    /* Stack steps via grid instead of absolute */
    grid-template-areas: "step";
    overflow: hidden;
    /* No outer scrolling */
    padding: 0;
    /* Remove padding here, move to .step */
    position: relative;
    width: 100%;
}

.step {
    grid-area: step;
    /* All steps stack on top of each other */
    width: 100%;
    height: 100%;
    padding: 30px 25px 80px;
    /* Reduced side padding to prevent cutoff */
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    background: #fff;
    /* Ensure opacity hides correctly */
    z-index: 1;
    overflow-y: auto;
    /* Internal scroll ONLY if needed */
}

.step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    z-index: 2;
}

.step.prev {
    transform: translateX(-100%);
    opacity: 0;
}

/* Typography */
.step-header {
    text-align: center;
    margin-bottom: 30px;
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
    color: #000;
    text-transform: uppercase;
}

.step-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 400;
}

/* Options Grid */
.options-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 20px;
}

.gender-options {
    grid-template-columns: 1fr 1fr;
    height: 240px;
    /* Fixed height for consistency */
}

.body-type-options {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fit-options {
    grid-template-columns: 1fr;
}

/* Option Cards */
.option-card {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    position: relative;
    /* type='button' is structural, css handles appearance */
}

.option-card:hover {
    border-color: #000;
    background: #fff;
}

.option-card.selected {
    border-color: #000;
    background: #000;
    color: #fff;
}

.option-card.selected .option-subtitle,
.option-card.selected .option-desc {
    color: #ccc;
}

/* Invert SVG colors on selection if using currentColor */
.option-card.selected svg {
    color: #fff;
}

/* Result Icon */
.result-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #000;
}

.measurement-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.measurement-icon {
    width: 30px;
    height: 30px;
    color: #000;
}

/* Icons */
.gender-icon-wrapper,
.body-icon {
    height: 80px;
    /* Reduced for compact layout */
    /* Increased for detailed icons */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    /* Reduced from 20px */
    color: #333;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.option-card:hover .gender-icon-wrapper,
.option-card:hover .body-icon {
    transform: translateY(-5px);
}

/* Detailed SVG Styling & Animation */
.detailed-svg {
    width: 60%;
    height: auto;
    max-height: 70px;
    /* Reduced from 100px */
    display: block;
}

.detailed-svg path,
.detailed-svg rect,
.detailed-svg circle {
    vector-effect: non-scaling-stroke;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.option-card:hover .detailed-svg path {
    animation: none;
    /* Reset on hover or keep drawn */
    stroke-dashoffset: 0;
    transition: stroke-width 0.3s ease;
    stroke-width: 1.5px;
}

.option-card.selected .detailed-svg path {
    stroke: #fff;
    /* Invert stroke for selected state */
    fill: #fff;
    /* Optional: fill if solid look desired */
    animation: fillFadeIn 0.5s ease forwards 0.3s;
}

@keyframes fillFadeIn {
    from {
        fill-opacity: 0;
    }

    to {
        fill-opacity: 1;
    }
}

.option-label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.option-desc {
    font-size: 13px;
    color: #888;
    display: block;
    font-family: 'Archivo Narrow', sans-serif;
    font-weight: 400;
}

/* Result Page Compact */
.result-icon-wrapper {
    width: 50px;
    /* Reduced from 80 */
    height: 30px;
    /* Reduced from 80 */
    margin: 0 auto 10px;
}

.size-result {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.size-badge {
    width: 60px;
    /* Much smaller */
    height: 60px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    background: #fff;
    color: #000;
}

.result-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    /* Horizontal layout */
    margin-bottom: 20px;
    font-size: 13px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    gap: 5px;
}

.detail-label {
    color: #888;
}

.detail-value {
    font-weight: 600;
    color: #000;
}

.alternative-sizes {
    text-align: center;
    margin-bottom: 15px;
    /* Hide if too tight */
}

/* Action Buttons Compact */
.add-cart-btn,
.recalculate-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.add-cart-btn {
    background: #000;
    color: #fff;
}

.recalculate-btn {
    background: #fff;
    color: #000;
    text-decoration: underline;
}

/* Gender Cards */
.gender-card {
    padding: 20px;
    min-height: 180px;
    /* Compact */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Gender Cards Elegant */
.gender-card {
    padding: 20px 10px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    cursor: pointer;
    background: #fff;
    /* Default White */
    color: #000;
    /* Default Black Text */
}

/* High Contrast Hover/Selected for ALL Option Cards */
.gender-card:hover,
.gender-card.selected,
.option-card:hover,
.option-card.selected {
    border-color: #000;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: #000 !important;
    /* Force Black BG */
    color: #fff !important;
    /* Force White Text */
}

.gender-icon-wrapper {
    height: 80px;
    margin-bottom: 20px;
}

/* Invert SVG stroke on hover/select */
.gender-card:hover .detailed-svg,
.gender-card.selected .detailed-svg,
.option-card:hover .detailed-svg,
.option-card.selected .detailed-svg {
    stroke: #fff;
    fill: none;
    /* Keep fill transparent or white if needed */
}

/* Option Content */
.option-content {
    text-align: center;
}

.option-label {
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.option-desc {
    font-size: 12px;
    color: #666;
    display: block;
    font-weight: 400;
    transition: color 0.3s;
}

/* Invert Text Colors on Hover/Selected */
.gender-card:hover .option-label,
.gender-card.selected .option-label,
.gender-card:hover .option-desc,
.gender-card.selected .option-desc,
.option-card:hover .option-label,
.option-card.selected .option-label,
.option-card:hover .option-desc,
.option-card.selected .option-desc {
    color: #fff;
}

/* Fit Cards - Updated for Icons */
.fit-card {
    padding: 20px;
    min-height: 140px;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: row;
    /* Keep row layout for fit options */
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    color: #000;
}

/* SVG styling for Fit Cards */
.fit-card .detailed-svg {
    height: 50px;
    width: auto;
    transition: stroke 0.3s;
}



.fit-card .option-content {
    flex: 1;
}

.fit-icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.fit-card:hover .fit-icon-wrapper {
    transform: scale(1.1);
}

.fit-card .detailed-svg {
    width: 100%;
    height: 100%;
}

.option-card.fit-card:hover {
    border-color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.option-card.fit-card.selected {
    border-color: #000;
    background: #000;
    color: #fff;
}

/* Override invert for selected fit card */
.fit-card.selected .fit-icon-wrapper {
    color: #fff;
}

.fit-card.selected .detailed-svg path {
    stroke: #fff;
}

.fit-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2x2 Grid */
    gap: 15px;
}

/* Visual Body Type Cards */
.option-card.visual {
    padding: 12px;
    min-height: 130px;
    /* Compact */
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border: 2px solid #e8e8e8;
    position: relative;
    overflow: hidden;
}

.option-card.visual::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a 0%, #4a4a4a 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.option-card.visual:hover::before,
.option-card.visual.selected::before {
    opacity: 1;
}

.option-card.visual:hover {
    border-color: #1a1a1a;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.option-card.visual.selected {
    border-color: #1a1a1a;
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
}

.body-icon {
    margin-bottom: 8px;
    transition: transform 0.3s;
}

.option-card.visual:hover .body-icon {
    transform: translateY(-2px);
}

.body-icon svg {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.15));
    width: 70px;
    height: 140px;
}

/* Input Container */
.input-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: auto 0 40px;
    padding: 20px 0;
}

.step-input {
    flex: 1;
    font-size: 48px;
    font-weight: 300;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    padding: 12px 0;
    text-align: center;
    transition: border-color 0.3s;
    font-family: inherit;
}

.step-input:focus {
    outline: none;
    border-bottom-color: #000;
}

.step-input::placeholder {
    color: #d0d0d0;
}

.input-unit {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
}

/* Measurement Sliders */
.measurement-group {
    margin-bottom: 40px;
}

.measurement-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #666;
    margin-bottom: 16px;
    display: block;
    text-transform: uppercase;
}

.slider-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.measurement-slider {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(90deg, #e8e8e8 0%, #d0d0d0 100%);
    outline: none;
    border-radius: 3px;
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.measurement-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.measurement-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.measurement-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    cursor: pointer;
    border-radius: 50%;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.measurement-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Global Box Sizing & Reset */
.zara-modal-container,
.zara-modal-container * {
    box-sizing: border-box;
    max-width: 100%;
}

/* Hide Scrollbars (Clean Look) */
.zara-modal-container ::-webkit-scrollbar {
    width: 0px;
    background: transparent;
    display: none;
}

.zara-modal-container {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.zara-modal-container,
.modal-container {
    background: #ffffff;
    width: 95%;
    /* Wider on small screens */
    max-width: 700px;
    /* Premium Width */
    height: auto;
    max-height: 90vh;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    /* Deeper shadow */
    border-radius: 2px;
    /* Sharper corners for modern look */
    font-family: 'Archivo Narrow', sans-serif;
    color: #111;
    margin: auto;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
    /* Ensure above everything */
    padding: 10px;
    color: #000;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Header & Progress */
.progress-bar {
    padding: 30px 50px 20px;
    background: #fff;
    flex-shrink: 0;
}

.progress-text {
    font-size: 11px;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.progress-track {
    height: 2px;
    background: #f0f0f0;
}

.progress-fill {
    background: #000;
    height: 100%;
}

/* Steps Container */
.steps-container {
    flex: 1;
    display: grid;
    grid-template-areas: "step";
    overflow-y: auto;
    /* Allow scroll internally */
    position: relative;
    width: 100%;
    /* Ensure footer doesn't overlap content at bottom scroll */
    padding-bottom: 80px;
}

.step {
    grid-area: step;
    width: 100%;
    /* Drastically reduced side padding to prevent cutoff */
    padding: 20px 25px 40px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    /* Removed translate to prevent overflow during transition */
    transform: translateX(10px);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none;
    background: #fff;
    visibility: hidden;
    box-sizing: border-box;
    /* Double ensure */
}

.step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    visibility: visible;
}

/* Typography Premium */
.step-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 10px 0 5px;
    text-transform: uppercase;
    text-align: center;
}

.step-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

/* Options Grid Safety */
.options-grid,
.gender-options,
.body-type-options,
.fit-options {
    width: 100%;
    max-width: 100%;
    /* Default is auto-fit, override for specific 2-up */
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.gender-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    height: 240px;
}

/* Force body type and fit options to 2x2 grid for space efficiency */
.body-type-options,
.fit-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 15px;
}

/* Gender Cards Elegant */
.gender-card {
    padding: 20px 10px;
    /* Reduced internal padding */
    min-height: 220px;
    display: flex;
    flex-direction: column;
    /* ... */
}

.gender-card:hover {
    border-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.gender-card.selected {
    border-color: #000;
    background: #fafafa;
}

/* Alternative Sizes - Premium Circle Chips - FORCED */
.alternative-sizes {
    margin-bottom: 30px;
}

.alt-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.alt-sizes-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.alt-size {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
    border: 1px solid #000 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: #000 !important;
    /* Default Black Text */
    background: #fff !important;
    /* Default White Bg */
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
    margin: 0 !important;
}

.alt-size:hover {
    background: #000 !important;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
    border-color: #000 !important;
}

.gender-icon-wrapper {
    height: 80px;
    margin-bottom: 20px;
}

/* Results Page Premium Redesign */
.results-step {
    text-align: center;
    padding-top: 20px;
}

/* Hanger Icon Removed as per user request */
.result-icon-wrapper {
    display: none;
}

.size-result {
    margin: 10px 0 30px;
}

.size-badge {
    width: 100px;
    height: 100px;
    border: 1px solid #000;
    /* Thinner elegant border */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    font-weight: 300;
    /* Variable font weight */
    margin: 0 auto;
    border-radius: 50%;
    /* Circle for elegance */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.result-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}



.detail-item {
    display: flex;
    flex-direction: column;
    font-size: 12px;
    text-transform: uppercase;
    gap: 5px;
}

.detail-label {
    color: #888;
    letter-spacing: 1px;
}

.detail-value {
    font-weight: 600;
    font-size: 14px;
}

/* Sticky Footer (Premium Navigation) */
.nav-buttons {
    position: absolute;
    /* Pin to bottom of modal */
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 50px;
    border-top: 1px solid #f5f5f5;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -10px 40px rgba(255, 255, 255, 0.9);
    /* Fade mask */
}

/* Buttons */
.nav-btn {
    background: none;
    border: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px 0;
    transition: opacity 0.3s;
}

.nav-btn:hover {
    opacity: 0.6;
}

.continue-btn,
.close-wizard-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 40px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 140px;
}

.continue-btn:hover,
.close-wizard-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.close-wizard-btn {
    width: 100%;
    /* Full width on result page? Or keep elegant? Let's go full width */
    margin-bottom: 15px;
    /* Spacing for 'Try Again' */
}

.recalculate-btn {
    background: transparent;
    border: none;
    text-decoration: underline;
    font-size: 11px;
    letter-spacing: 1px;
    color: #666;
    cursor: pointer;
    text-transform: uppercase;
    padding: 10px;
}

.recalculate-btn:hover {
    color: #000;
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .zara-modal-container {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
    }

    .progress-bar {
        padding: 12px 20px 8px;
        /* Tighter padding */
    }

    .progress-info {
        margin-bottom: 8px;
    }

    .step {
        padding: 15px 20px 90px;
        /* Reduced top/side padding */
    }

    .step-header {
        margin-bottom: 20px;
        /* Reduced gap */
    }

    .step-title {
        font-size: 18px;
        /* Smaller typography */
        margin-bottom: 4px;
    }

    .step-subtitle {
        font-size: 13px;
    }

    .gender-options {
        height: auto;
        gap: 10px;
    }

    .gender-card {
        min-height: 150px;
        padding: 15px;
    }

    .body-type-options {
        gap: 10px;
    }

    .option-card.visual {
        padding: 12px;
    }

    .body-icon {
        height: 50px;
        /* Scale down icons */
        margin-bottom: 8px;
    }

    .nav-buttons {
        padding: 15px 20px;
    }
}