/* ============================================ */
/* MVO LENS CONFIGURATOR V3                     */
/* Light Premium — Framer / Linear style        */
/* ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================ */
/* TOKENS                                       */
/* ============================================ */
:root {
    --mvo-bg: #FAFAF9;
    --mvo-surface: #FFFFFF;
    --mvo-surface-2: #F5F5F4;
    --mvo-surface-3: #E7E5E4;
    --mvo-border: rgba(0, 0, 0, 0.06);
    --mvo-border-hover: rgba(0, 0, 0, 0.12);
    --mvo-border-active: rgba(180, 150, 80, 0.5);
    --mvo-text: #1C1917;
    --mvo-text-secondary: #57534E;
    --mvo-text-muted: #A8A29E;
    --mvo-gold: #B49650;
    --mvo-gold-light: #D4B978;
    --mvo-gold-glow: rgba(180, 150, 80, 0.12);
    --mvo-accent-gradient: linear-gradient(135deg, #C9A962 0%, #E8D5A3 40%, #B49650 100%);
    --mvo-btn-gradient: linear-gradient(135deg, #B49650 0%, #D4B978 50%, #C9A962 100%);
    --mvo-green-light: #22C55E;
    --mvo-error: #EF4444;
    --mvo-info: #6366F1;
    --mvo-radius: 14px;
    --mvo-radius-lg: 20px;
    --mvo-radius-xl: 24px;
    --mvo-font: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    --mvo-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --mvo-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --mvo-z-overlay: 99998;
    --mvo-z-modal: 99999;
    --mvo-z-alert: 100000;
    --mvo-z-pd: 100001;
}

/* ============================================ */
/* HIDE WOOCOMMERCE DEFAULTS                    */
/* ============================================ */
form.cart button.single_add_to_cart_button,
button[name="add-to-cart"].single_add_to_cart_button,
.woocommerce-variation-add-to-cart button.single_add_to_cart_button,
form.cart .quantity,
.elementor-add-to-cart .single_add_to_cart_button {
    display: none !important;
}

/* ============================================ */
/* CTA BUTTON — Gold gradient                   */
/* ============================================ */
.mvo-main-cta {
    margin: 28px 0;
}

.mvo-btn-luxe {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 320px;
    width: auto;
    padding: 16px 36px;
    margin-bottom: 80px;
    background: linear-gradient(135deg, #2D4A3E 0%, #4A7A65 50%, #2D4A3E 100%);
    background-size: 200% 200%;
    color: #fff;
    border: none;
    border-radius: 16px;
    font-family: var(--mvo-font);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    text-transform: none;
    box-shadow: 0 6px 18px rgba(45, 74, 62, 0.25);
}

.mvo-btn-luxe:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(45, 74, 62, 0.35);
}

.mvo-btn-luxe:active {
    transform: scale(0.97);
}

.mvo-btn-icon { display: flex; align-items: center; }
.mvo-btn-icon svg { width: 18px; height: 18px; }
.mvo-btn-text { font-family: var(--mvo-font); }

/* ============================================ */
/* OVERLAY                                      */
/* ============================================ */
.mvo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 25, 23, 0.4);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    z-index: var(--mvo-z-overlay);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--mvo-ease);
}

.mvo-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================ */
/* MODAL — Light premium panel                  */
/* ============================================ */
.mvo-popup-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: 96%;
    max-width: 520px;
    max-height: 90vh;
    background: var(--mvo-bg);
    border: 1px solid var(--mvo-border);
    border-radius: var(--mvo-radius-xl);
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.03),
        0 24px 64px -16px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.06);
    z-index: var(--mvo-z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--mvo-ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: var(--mvo-font);
    color: var(--mvo-text);
}

.mvo-popup-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================ */
/* RESET THEME HEADINGS                         */
/* ============================================ */
#mvo-popup-modal h1, #mvo-popup-modal h2, #mvo-popup-modal h3,
#mvo-popup-modal h4, #mvo-popup-modal h5, #mvo-popup-modal h6,
.mvo-popup-modal h1, .mvo-popup-modal h2, .mvo-popup-modal h3,
.mvo-popup-modal h4, .mvo-popup-modal h5, .mvo-popup-modal h6 {
    line-height: 1.3 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    max-height: none !important;
    letter-spacing: -0.02em !important;
    font-family: var(--mvo-font) !important;
    color: var(--mvo-text) !important;
}

/* ============================================ */
/* HEADER                                       */
/* ============================================ */
.mvo-popup-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 24px 28px 0;
}

.mvo-popup-title,
h2.mvo-popup-title,
#mvo-popup-modal h2.mvo-popup-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--mvo-text) !important;
    letter-spacing: -0.02em !important;
    line-height: 1.3 !important;
}

.mvo-popup-subtitle {
    font-size: 13px;
    color: var(--mvo-text-muted);
    margin: 4px 0 0;
    font-weight: 400;
}

.mvo-popup-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.35s var(--mvo-ease);
    flex-shrink: 0;
    box-shadow: none;
}

.mvo-popup-close:hover {
    transform: rotate(90deg);
}

.mvo-popup-close svg {
    width: 14px;
    height: 14px;
    stroke: #C6A75E;
    transition: stroke 0.3s var(--mvo-ease);
}

.mvo-popup-close:hover svg {
    stroke: #B8872F;
}

/* ============================================ */
/* DOT STEPPER                                  */
/* ============================================ */
.mvo-dot-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 28px 0;
}

.mvo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--mvo-surface-3);
    transition: all 0.4s var(--mvo-ease);
}

.mvo-dot.active {
    width: 24px;
    border-radius: 3px;
    background: var(--mvo-accent-gradient);
    box-shadow: 0 2px 8px var(--mvo-gold-glow);
}

.mvo-dot.completed {
    background: var(--mvo-gold);
    opacity: 0.4;
}

/* ============================================ */
/* BODY                                         */
/* ============================================ */
.mvo-popup-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    scroll-behavior: smooth;
}

.mvo-popup-body::-webkit-scrollbar { width: 3px; }
.mvo-popup-body::-webkit-scrollbar-track { background: transparent; }
.mvo-popup-body::-webkit-scrollbar-thumb { background: var(--mvo-surface-3); border-radius: 10px; }

/* ============================================ */
/* STEP ANIMATION                               */
/* ============================================ */
.mvo-step {
    animation: mvoReveal 0.5s var(--mvo-ease) both;
}

@keyframes mvoReveal {
    from { opacity: 0; transform: translateY(16px); filter: blur(4px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.mvo-step-header {
    margin-bottom: 24px;
}

.mvo-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--mvo-gold-glow);
    border: 1px solid rgba(180, 150, 80, 0.12);
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    color: var(--mvo-gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    animation: mvoBadgeIn 0.4s var(--mvo-ease) 0.1s both;
}

@keyframes mvoBadgeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to { opacity: 1; transform: translateX(0); }
}

.mvo-step-title,
h3.mvo-step-title,
#mvo-popup-modal h3.mvo-step-title,
#mvo-popup-modal .mvo-step-title,
.mvo-popup-body h3,
.elementor-widget-container h3.mvo-step-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--mvo-text) !important;
    letter-spacing: -0.03em !important;
    line-height: 1.25 !important;
    margin: 0 !important;
    padding: 0 !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
    display: block !important;
    white-space: normal !important;
}

.mvo-step-desc {
    color: var(--mvo-text-muted);
    font-size: 14px;
    margin: 8px 0 20px;
    line-height: 1.6;
}

/* ============================================ */
/* OPTION CARDS                                 */
/* ============================================ */
.mvo-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.mvo-options-vertical { grid-template-columns: 1fr; }
.mvo-options-3 { grid-template-columns: repeat(3, 1fr); }
.mvo-options-colors { grid-template-columns: repeat(3, 1fr); }
.mvo-options-colors-4 { grid-template-columns: repeat(4, 1fr); }

.mvo-option {
    cursor: pointer;
    display: block;
}

.mvo-option input { display: none; }

.mvo-option-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 22px 16px;
    background: var(--mvo-surface);
    border: 1px solid var(--mvo-border);
    border-radius: var(--mvo-radius);
    transition: all 0.3s var(--mvo-ease);
    text-align: center;
    height: 100%;
    overflow: hidden;
}

/* Hover */
.mvo-option:hover .mvo-option-card {
    border-color: var(--mvo-border-hover);
    background: var(--mvo-surface-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Selected state — gold accent */
.mvo-option input:checked + .mvo-option-card {
    border-color: var(--mvo-gold);
    background: rgba(180, 150, 80, 0.04);
    box-shadow:
        0 0 0 1px var(--mvo-border-active),
        0 4px 16px var(--mvo-gold-glow);
}

/* Gold top line on selected */
.mvo-option input:checked + .mvo-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: var(--mvo-accent-gradient);
    border-radius: 0 0 2px 2px;
    animation: mvoGoldLine 0.4s var(--mvo-ease);
}

@keyframes mvoGoldLine {
    from { left: 50%; right: 50%; opacity: 0; }
    to { left: 20%; right: 20%; opacity: 1; }
}

.mvo-option-icon {
    font-size: 24px;
    line-height: 1;
    color: var(--mvo-text-muted);
    transition: all 0.3s var(--mvo-spring);
}

.mvo-option-icon svg {
    stroke: var(--mvo-text-muted);
    transition: stroke 0.3s;
}

.mvo-option input:checked + .mvo-option-card .mvo-option-icon svg {
    stroke: var(--mvo-gold);
}

.mvo-option input:checked + .mvo-option-card .mvo-option-icon {
    transform: scale(1.1);
    color: var(--mvo-gold);
}

.mvo-option-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--mvo-text);
    font-family: var(--mvo-font);
    line-height: 1.3;
}

.mvo-option-desc {
    font-size: 11px;
    color: var(--mvo-text-muted);
    line-height: 1.4;
}

.mvo-option-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--mvo-gold);
    font-family: var(--mvo-font);
    margin-top: auto;
    letter-spacing: -0.01em;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.mvo-option input:checked + .mvo-option-card .mvo-option-price,
.mvo-option input:checked + .mvo-option-horizontal .mvo-option-price {
    opacity: 1;
    font-weight: 700;
}

/* ============================================ */
/* HORIZONTAL OPTIONS                           */
/* ============================================ */
.mvo-option-horizontal {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 16px 20px;
    align-items: center;
}

.mvo-option-horizontal .mvo-option-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.mvo-option-horizontal .mvo-option-price {
    margin: 0 0 0 16px;
    white-space: nowrap;
    font-size: 14px;
}

/* Left gold bar on selected horizontal */
.mvo-option-horizontal::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--mvo-accent-gradient);
    border-radius: 0 3px 3px 0;
    transition: height 0.3s var(--mvo-spring);
}

.mvo-option input:checked + .mvo-option-horizontal::after {
    height: 50%;
}

.mvo-option-horizontal::before { display: none; }

/* ============================================ */
/* COLOR SWATCHES                               */
/* ============================================ */
.mvo-color-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 18px 12px;
    background: var(--mvo-surface);
    border: 1px solid var(--mvo-border);
    border-radius: var(--mvo-radius);
    transition: all 0.3s var(--mvo-ease);
}

.mvo-option input:checked + .mvo-color-card {
    border-color: var(--mvo-gold);
    box-shadow: 0 4px 16px var(--mvo-gold-glow);
}

.mvo-option:hover .mvo-color-card {
    border-color: var(--mvo-border-hover);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mvo-color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--mvo-surface-3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s var(--mvo-spring);
}

.mvo-option input:checked + .mvo-color-card .mvo-color-swatch {
    transform: scale(1.15);
    border-color: var(--mvo-gold);
    box-shadow: 0 4px 16px rgba(180, 150, 80, 0.25);
}

.mvo-color-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--mvo-text-secondary);
}

/* ============================================ */
/* TOGGLE MANUAL / UPLOAD                       */
/* ============================================ */
.mvo-correction-toggle {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--mvo-surface-2);
    padding: 3px;
    border-radius: 10px;
    border: 1px solid var(--mvo-border);
}

.mvo-toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: 1px solid #C6A75E;
    border-radius: 16px;
    background: linear-gradient(90deg, #C9993E 0%, #D8B46A 50%, #E4C680 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.35s ease;
    font-family: var(--mvo-font);
    box-shadow: 0 6px 18px rgba(201, 153, 62, 0.25);
}

.mvo-toggle-btn:hover {
    background: linear-gradient(90deg, #B8872F 0%, #CFA856 50%, #DDBF70 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 153, 62, 0.35);
    color: #ffffff;
}

.mvo-toggle-btn:active { transform: scale(0.97); }

.mvo-toggle-btn.active {
    background: linear-gradient(90deg, #B8872F 0%, #CFA856 50%, #DDBF70 100%);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(201, 153, 62, 0.3);
    border: 1px solid #C6A75E;
}

.mvo-toggle-icon { font-size: 14px; display: flex; }
.mvo-toggle-icon svg { width: 14px; height: 14px; stroke: currentColor; }

/* ============================================ */
/* UPLOAD ZONE                                  */
/* ============================================ */
.mvo-upload-zone { margin-bottom: 8px; }

.mvo-upload-dropzone {
    border: 1px dashed var(--mvo-surface-3);
    border-radius: var(--mvo-radius);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s var(--mvo-ease);
    background: var(--mvo-surface);
}

.mvo-upload-dropzone:hover,
.mvo-upload-dropzone.dragover {
    border-color: var(--mvo-gold);
    background: rgba(180, 150, 80, 0.02);
}

.mvo-upload-icon { margin-bottom: 12px; }
.mvo-upload-icon svg { stroke: var(--mvo-text-muted); }
.mvo-upload-text { font-size: 14px; color: var(--mvo-text); margin: 0 0 4px; font-family: var(--mvo-font); }
.mvo-upload-subtext { font-size: 12px; color: var(--mvo-text-muted); margin: 0 0 6px; }
.mvo-upload-formats { font-size: 10px; color: var(--mvo-text-muted); margin: 0; letter-spacing: 0.5px; text-transform: uppercase; }

.mvo-upload-preview {
    border: 1px solid rgba(180, 150, 80, 0.2);
    border-radius: var(--mvo-radius);
    padding: 14px;
    background: rgba(180, 150, 80, 0.03);
    animation: mvoReveal 0.3s var(--mvo-ease);
}

.mvo-upload-file-info { display: flex; align-items: center; gap: 12px; }
.mvo-upload-file-icon { flex-shrink: 0; }
.mvo-upload-file-details { flex: 1; min-width: 0; }
.mvo-upload-file-name { display: block; font-size: 13px; font-weight: 600; color: var(--mvo-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mvo-upload-file-size { font-size: 11px; color: var(--mvo-text-muted); }
.mvo-upload-remove {
    width: 26px; height: 26px; border-radius: 8px; border: none;
    background: var(--mvo-surface-2); color: var(--mvo-text-muted); font-size: 11px;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.25s var(--mvo-ease);
}
.mvo-upload-remove:hover { background: var(--mvo-surface-3); color: var(--mvo-text-secondary); transform: scale(1.05); }
.mvo-upload-success { margin-top: 8px; font-size: 12px; font-weight: 600; color: var(--mvo-gold); }

.mvo-upload-progress { text-align: center; padding: 20px; }
.mvo-upload-progress-bar { width: 100%; height: 3px; background: var(--mvo-surface-2); border-radius: 2px; overflow: hidden; margin-bottom: 10px; }
.mvo-upload-progress-fill { height: 100%; width: 0%; background: var(--mvo-accent-gradient); border-radius: 2px; transition: width 0.3s ease; }
.mvo-upload-progress-text { font-size: 12px; color: var(--mvo-text-muted); }

/* ============================================ */
/* EYE CORRECTIONS                              */
/* ============================================ */
.mvo-eyes-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.mvo-eye-card {
    background: var(--mvo-surface);
    padding: 18px;
    border-radius: var(--mvo-radius);
    border: 1px solid var(--mvo-border);
}

.mvo-eye-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--mvo-gold);
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

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

.mvo-field label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--mvo-text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mvo-required { color: var(--mvo-error); }
.mvo-optional { text-transform: none; font-weight: 400; font-size: 9px; color: var(--mvo-text-muted); letter-spacing: 0; }

.mvo-select {
    width: 100%;
    padding: 9px 12px;
    background: var(--mvo-surface-2);
    border: 1px solid var(--mvo-border);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--mvo-text);
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 12 12'%3E%3Cpath fill='%23A8A29E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
    font-family: var(--mvo-font);
}

.mvo-select:focus {
    outline: none;
    border-color: var(--mvo-gold);
    box-shadow: 0 0 0 2px var(--mvo-gold-glow);
    background-color: var(--mvo-surface);
}

/* ============================================ */
/* PD ZONES                                     */
/* ============================================ */
.mvo-pd-zone { margin-top: 16px; animation: mvoReveal 0.3s var(--mvo-ease); }

.mvo-pd-manual-box {
    background: var(--mvo-surface);
    padding: 20px;
    border-radius: var(--mvo-radius);
    text-align: center;
    border: 1px solid var(--mvo-border);
}

.mvo-pd-label {
    display: block; font-size: 13px; font-weight: 500;
    color: var(--mvo-text-secondary); margin-bottom: 12px;
}

.mvo-input-pd {
    width: 100%; max-width: 160px; padding: 12px;
    background: var(--mvo-surface-2); border: 1px solid var(--mvo-border);
    border-radius: 10px; font-size: 24px; font-weight: 800;
    text-align: center; color: var(--mvo-text); transition: all 0.2s;
    font-family: var(--mvo-font);
}

.mvo-input-pd:focus {
    outline: none; border-color: var(--mvo-gold);
    box-shadow: 0 0 0 2px var(--mvo-gold-glow);
    background: var(--mvo-surface);
}

.mvo-pd-hint { display: block; font-size: 11px; color: var(--mvo-text-muted); margin-top: 8px; }

.mvo-btn-camera {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; background: var(--mvo-btn-gradient);
    color: #fff; border: none; border-radius: 12px;
    font-size: 14px; font-weight: 600; cursor: pointer;
    transition: all 0.35s var(--mvo-ease); font-family: var(--mvo-font);
    box-shadow: 0 2px 8px rgba(180, 150, 80, 0.2);
}

.mvo-btn-camera:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(180, 150, 80, 0.3);
}

.mvo-btn-camera svg { width: 18px; height: 18px; }

.mvo-pd-result {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 14px; padding: 14px;
    background: var(--mvo-gold-glow); border: 1px solid rgba(180, 150, 80, 0.15);
    border-radius: 12px; animation: mvoReveal 0.3s var(--mvo-ease);
}

.mvo-pd-result-icon {
    width: 20px; height: 20px; display: flex; align-items: center; justify-content: center;
    background: var(--mvo-gold); color: #fff; border-radius: 6px; font-size: 11px; font-weight: 700;
}

.mvo-pd-result-text { font-size: 14px; color: var(--mvo-text-secondary); }

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.mvo-popup-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px 22px;
    border-top: 1px solid var(--mvo-border);
    background: var(--mvo-surface);
    backdrop-filter: blur(8px);
}

.mvo-price-display { display: flex; flex-direction: column; gap: 2px; }

.mvo-price-label {
    font-size: 9px; color: var(--mvo-text-muted);
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
}

.mvo-price-value {
    font-size: 26px; font-weight: 800; letter-spacing: -0.04em;
    font-family: var(--mvo-font);
    color: var(--mvo-text);
    transition: all 0.35s var(--mvo-spring);
}

.mvo-price-value .mvo-price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--mvo-gold);
    margin-left: 1px;
}

.mvo-price-value.mvo-price-bump {
    animation: mvoPricePop 0.5s var(--mvo-spring);
}

@keyframes mvoPricePop {
    0% { transform: scale(1); opacity: 1; }
    25% { transform: scale(1.06) translateY(-2px); opacity: 0.8; }
    50% { transform: scale(1.1) translateY(-3px); color: var(--mvo-gold); }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

.mvo-footer-buttons { display: flex; gap: 8px; }

.mvo-btn-back,
.mvo-btn-next {
    padding: 12px 22px; border: none; border-radius: 10px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.25s var(--mvo-ease); font-family: var(--mvo-font);
}

.mvo-btn-back {
    background: transparent;
    color: #C6A75E;
    border: 2px solid #C6A75E;
    border-radius: 16px;
    padding: 14px 28px;
    box-shadow: none;
}

.mvo-btn-back:hover {
    background: rgba(198, 167, 94, 0.10);
    color: #000000;
    border-color: #C6A75E;
}

.mvo-btn-next {
    background: linear-gradient(90deg, #C9993E 0%, #D8B46A 50%, #E4C680 100%);
    border: 1px solid #C6A75E;
    color: #ffffff;
    min-width: 130px;
    border-radius: 16px;
    padding: 14px 28px;
    box-shadow: 0 6px 18px rgba(201, 153, 62, 0.25);
}

.mvo-btn-next:hover {
    background: linear-gradient(90deg, #B8872F 0%, #CFA856 50%, #DDBF70 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(201, 153, 62, 0.35);
}

.mvo-btn-next:active { transform: scale(0.97); }

.mvo-btn-next:disabled {
    background: var(--mvo-surface-3);
    color: var(--mvo-text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

/* ============================================ */
/* FITTINGBOX PD POPUP                          */
/* ============================================ */
.mm-msrt-overlay {
    position: fixed; inset: 0;
    background: rgba(28, 25, 23, 0.6);
    backdrop-filter: blur(12px);
    z-index: var(--mvo-z-pd);
}

.mm-msrt-wrapper {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 394px; height: 700px;
    z-index: calc(var(--mvo-z-pd) + 1);
    background: #fff; border-radius: var(--mvo-radius-xl);
    overflow: hidden; box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.mm-msrt-close {
    position: absolute; top: 12px; right: 12px;
    width: 30px; height: 30px;
    background: rgba(0, 0, 0, 0.06); border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px; font-size: 16px; cursor: pointer; z-index: 10;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s; color: var(--mvo-text);
}

.mm-msrt-close:hover { background: var(--mvo-error); border-color: var(--mvo-error); color: #fff; }
.mm-msrt-close:hover svg { stroke: #fff; }

#msrt-container { width: 100% !important; height: 100% !important; }
#msrt-container iframe, #msrtWidgetIframeContainer { width: 100% !important; height: 100% !important; border: none !important; }

@media (min-width: 768px) {
    .mm-msrt-wrapper { width: 700px; height: 90vh; max-height: 800px; }
}

/* ============================================ */
/* ALERT POPUP                                  */
/* ============================================ */
.mvo-alert-overlay {
    position: fixed; inset: 0;
    background: rgba(28, 25, 23, 0.4);
    backdrop-filter: blur(12px);
    display: flex; align-items: center; justify-content: center;
    z-index: var(--mvo-z-alert);
    animation: mvoFadeIn 0.2s var(--mvo-ease);
}

.mvo-alert-box {
    background: var(--mvo-surface);
    border: 1px solid var(--mvo-border);
    padding: 32px;
    border-radius: var(--mvo-radius-xl);
    max-width: 360px; width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
    animation: mvoAlertIn 0.35s var(--mvo-spring);
}

.mvo-alert-icon {
    width: 48px; height: 48px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 14px; font-size: 20px; font-weight: 700;
}

.mvo-alert-icon.mvo-alert-icon-success { background: var(--mvo-gold-glow); color: var(--mvo-gold); }
.mvo-alert-icon.mvo-alert-icon-error { background: rgba(239, 68, 68, 0.08); color: var(--mvo-error); }
.mvo-alert-icon.mvo-alert-icon-warning { background: var(--mvo-gold-glow); color: var(--mvo-gold); }

.mvo-alert-title { font-size: 17px; font-weight: 700; color: var(--mvo-text); margin-bottom: 6px; }
.mvo-alert-message { font-size: 13px; color: var(--mvo-text-muted); line-height: 1.6; margin-bottom: 20px; }

.mvo-alert-btn {
    display: inline-block; padding: 10px 32px;
    background: var(--mvo-btn-gradient); color: #fff;
    border: none; border-radius: 10px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.25s var(--mvo-ease); font-family: var(--mvo-font);
    box-shadow: 0 2px 8px rgba(180, 150, 80, 0.2);
}

.mvo-alert-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(180, 150, 80, 0.3); }

@keyframes mvoFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mvoAlertIn { from { opacity: 0; transform: translateY(12px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ============================================ */
/* RESPONSIVE — Tablet                          */
/* ============================================ */
@media (max-width: 768px) {
    .mvo-popup-modal { width: 98%; max-height: 94vh; border-radius: var(--mvo-radius-lg); }
    .mvo-popup-header { padding: 20px 20px 0; }
    .mvo-popup-title, h2.mvo-popup-title { font-size: 16px !important; }
    .mvo-dot-stepper { padding: 14px 20px 0; }
    .mvo-popup-body { padding: 20px; }
    .mvo-step-title, h3.mvo-step-title, #mvo-popup-modal h3 { font-size: 19px !important; }
    .mvo-option-card { padding: 18px 14px; }
    .mvo-eyes-container { grid-template-columns: 1fr; gap: 10px; }
}

/* ============================================ */
/* RESPONSIVE — Mobile                          */
/* ============================================ */
@media (max-width: 640px) {
    .mvo-popup-modal {
        width: 100%; height: 100%; max-height: 100%;
        border-radius: 0; top: 0; left: 0;
        transform: translateY(100%);
        border: none;
    }
    .mvo-popup-modal.active { transform: translateY(0); }

    .mvo-popup-header { padding: 16px 16px 0; }
    .mvo-popup-title, h2.mvo-popup-title { font-size: 15px !important; }
    .mvo-popup-subtitle { font-size: 11px; }
    .mvo-popup-close { width: 30px; height: 30px; border-radius: 50%; }
    .mvo-popup-close svg { width: 12px; height: 12px; }

    .mvo-dot-stepper { padding: 12px 16px 0; gap: 5px; }

    .mvo-popup-body { padding: 16px; }
    .mvo-step-badge { font-size: 10px; padding: 3px 8px; margin-bottom: 10px; }
    .mvo-step-title, h3.mvo-step-title, #mvo-popup-modal h3 { font-size: 18px !important; }
    .mvo-step-desc { font-size: 13px; }

    .mvo-options { grid-template-columns: 1fr; gap: 8px; }
    .mvo-options-3 { grid-template-columns: repeat(3, 1fr); }
    .mvo-options-colors { grid-template-columns: repeat(3, 1fr); }
    .mvo-options-colors-4 { grid-template-columns: repeat(2, 1fr); }

    .mvo-option-card { padding: 16px 12px; gap: 8px; }
    .mvo-option-icon { font-size: 20px; }
    .mvo-option-icon svg { width: 22px; height: 22px; }
    .mvo-option-label { font-size: 13px; }
    .mvo-option-desc { font-size: 10px; }
    .mvo-option-price { font-size: 12px; }
    .mvo-option-horizontal { padding: 12px 14px; }

    .mvo-correction-toggle { flex-direction: column; gap: 2px; }
    .mvo-toggle-btn { padding: 9px 12px; font-size: 11px; }

    .mvo-upload-dropzone { padding: 24px 16px; }

    .mvo-eyes-container { grid-template-columns: 1fr; gap: 8px; }
    .mvo-eye-card { padding: 14px; }
    .mvo-select { padding: 8px 10px; font-size: 12px; }

    .mvo-popup-footer { padding: 14px 16px 18px; }
    .mvo-price-value { font-size: 20px; }
    .mvo-price-label { font-size: 9px; }
    .mvo-btn-back, .mvo-btn-next { padding: 11px 18px; font-size: 12px; }
    .mvo-btn-next { min-width: 110px; }

    .mvo-color-card { padding: 12px 8px; }
    .mvo-color-swatch { width: 32px; height: 32px; }
    .mvo-color-name { font-size: 11px; }

    .mm-msrt-wrapper { width: 95% !important; height: 80vh !important; max-height: 600px !important; border-radius: var(--mvo-radius-lg) !important; }
}

@media (max-width: 380px) {
    .mvo-popup-header { padding: 14px 14px 0; }
    .mvo-popup-body { padding: 14px; }
    .mvo-step-title, h3.mvo-step-title { font-size: 16px !important; }
    .mvo-options-colors { gap: 6px; }
    .mvo-popup-footer { padding: 12px 14px 16px; }
    .mvo-btn-back, .mvo-btn-next { padding: 10px 14px; font-size: 11px; }
    .mvo-btn-next { min-width: 90px; }
}
