/* ======================
    HVNLYTICS CSS VARIABLES & RESET
======================= */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap'); */
:root {
    /* =========================================
        FOUNDATION TOKENS
    ========================================= */
    --hvnly-color-white: #ffffff;
    --hvnly-color-black: #000000;
    --hvnly-color-gray-100: #f8f9fa;
    --hvnly-color-gray-200: #e4e4ed;
    --hvnly-color-gray-500: #6c757d;
    --hvnly-color-gray-800: #333;
    --hvnly-color-bg-light: #F8F8F8;
    --hvnly-color-bg-white: #FFFFFF;

    /* =========================================
        BRAND TOKENS
    ========================================= */
    --hvnly-brand-primary: #6C60FE;
    --hvnly-brand-secondary: #764ba2;
    --hvnly-brand-accent: #FF9AA2;
    --hvnly-brand-success: #00B46A;
    --hvnly-brand-error: #FF4D4F;
    --hvnly-brand-warning: #FFB507;

    /* =========================================
        STATUS TOKENS
    ========================================= */
    --hvnly-status-sale: #6C60FE;
    --hvnly-status-rent: #00C2A8;
    --hvnly-status-pending: #FFB507;
    --hvnly-status-sold: #FF4D4F;
    --hvnly-status-off: #9192A3;

    /* =========================================
        TYPOGRAPHY TOKENS
    ========================================= */
    --hvnly-font-size-xs: 0.75rem;
    --hvnly-font-size-sm: 0.875rem;
    --hvnly-font-size-md: 1rem;
    --hvnly-font-size-lg: 1.25rem;
    --hvnly-font-size-xl: 1.5rem;
    --hvnly-font-size-title: 24px;
    --hvnly-font-size-price: 1.2rem;
    --hvnly-font-size-md-price: 1.4rem;
    --hvnly-font-size-meta: 0.875rem;
    --hvnly-font-size-excerpt: 0.95rem;
    --hvnly-font-size-label: 0.9rem;
    
    --hvnly-font-weight-light: 300;
    --hvnly-font-weight-regular: 400;
    --hvnly-font-weight-medium: 500;
    --hvnly-font-weight-semibold: 600;
    --hvnly-font-weight-bold: 700;
    --hvnly-font-weight-extrabold: 700;

    --hvnly-text-primary: #1E1E2F;
    --hvnly-text-secondary: #555;

    /* =========================================
        SPACING TOKENS
    ========================================= */
    --hvnly-space-xs: 0.25rem;
    --hvnly-space-sm: 0.5rem;
    --hvnly-space-md: 1rem;
    --hvnly-space-lg: 1.5rem;
    --hvnly-space-xl: 2rem;
    --hvnly-space-2xl: 3rem;

    /* =========================================
        BORDER & SHADOW TOKENS
    ========================================= */
    --hvnly-border-color: #E4E4ED;
    --hvnly-border-radius-xs: 4px;
    --hvnly-border-radius-sm: 6px;
    --hvnly-border-radius-md: 8px;
    --hvnly-border-radius-lg: 12px;
    
    --hvnly-shadow-card: 0px 4px 24px rgba(189, 189, 189, 0.24);
    --hvnly-shadow-card-hover: 0 4px 12px rgba(0,0,0,0.08);

    /* =========================================
        COMPONENT TOKENS
    ========================================= */
    --hvnly-card-bg: var(--hvnly-color-bg-white);
    --hvnly-card-border: 1px solid var(--hvnly-border-color);
    --hvnly-card-radius: 8px;
    --hvnly-card-shadow: var(--hvnly-shadow-card);
    --hvnly-card-padding: 1.5rem;

    --hvnly-button-bg: var(--hvnly-brand-primary);
    --hvnly-button-bg-hover: #5944f0;
    --hvnly-button-color: var(--hvnly-color-white);
    --hvnly-button-radius: 4px;
    --hvnly-button-padding: 0.75rem 1.5rem;

    --hvnly-input-border: var(--hvnly-border-color);
    --hvnly-input-focus: var(--hvnly-brand-primary);
    --hvnly-input-radius: 4px;

    --hvnly-slider-track: #eee;
    --hvnly-slider-thumb: var(--hvnly-brand-primary);
    --hvnly-slider-range: var(--hvnly-brand-secondary);

    --hvnly-transition-time: 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    background: var(--hvnly-color-bg-light);
    color: var(--hvnly-text-primary);
    line-height: 1.6;
    min-height: 100vh;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}
.wp-editor-container textarea.wp-editor-area{    font-family: var(--hvnly-bodyFont);}

#wpwrap,
#wpwrap .wrap #wp-content-editor-container iframe{
    font-family: var(--hvnly-bodyFont);
}
body.wp-admin {
    background-color: var(--hvnly-color-bg-off-light);
    font-family: var(--hvnly-bodyFont);
}
/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Main Wrapper */
.hvnly--property--import-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--hvnly-space-lg);
}

/* Full Width Navbar */
.hvnly--property--import-navbar {
    width: 100%;
    background: var(--hvnly-color-bg-white);
    border-bottom: 1px solid var(--hvnly-border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--hvnly-space-md) 5%;
    position: relative;
    z-index: 10;
    margin-top: 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.hvnly--property--import-navbar-left {
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-md);
}

.hvnly--property--import-navbar-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--hvnly-border-radius-md);
    background: linear-gradient(135deg, var(--hvnly-brand-primary) 0%, var(--hvnly-brand-secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hvnly-color-white);
    font-weight: var(--hvnly-font-weight-bold);
    box-shadow: 0 4px 12px rgba(108, 96, 254, 0.3);
}

.hvnly--property--import-navbar-title {
    font-size: var(--hvnly-font-size-xl);
    font-weight: var(--hvnly-font-weight-bold);
    color: var(--hvnly-text-primary);
    margin: 0;
    line-height: 1em;
}

.hvnly--property--import-navbar-right {
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-md);
}

.hvnly--property--import-doc-button {
    font-weight: var(--hvnly-font-weight-semibold);
    font-size: var(--hvnly-font-size-sm);
    padding: var(--hvnly-space-sm) var(--hvnly-space-lg);
    border: 1px solid var(--hvnly-status-pending);
    color: var(--hvnly-status-pending);
    background-color: rgba(255, 181, 7, 0.08);
    border-radius: var(--hvnly-button-radius);
    height: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-doc-button:hover {
    background-color: rgba(255, 181, 7, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 181, 7, 0.2);
}

.hvnly--property--import-close-button {
    font-weight: var(--hvnly-font-weight-medium);
    font-size: var(--hvnly-font-size-sm);
    padding: var(--hvnly-space-sm) var(--hvnly-space-lg);
    border: 1px solid var(--hvnly-brand-error);
    color: var(--hvnly-brand-error);
    background-color: rgba(255, 77, 79, 0.08);
    border-radius: var(--hvnly-button-radius);
    height: auto;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    transition: var(--hvnly-transition-time);
    cursor: pointer;
}

.hvnly--property--import-close-button:hover {
    background-color: rgba(255, 77, 79, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 77, 79, 0.2);
}
.hvnly--property--import-navbar-right a {text-decoration: none !important;}
/* Step Progress */
.hvnly--property--import-step-progress-container {
    margin: var(--hvnly-space-2xl) 0 var(--hvnly-space-xl);
}

.hvnly--property--import-step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--hvnly-space-lg);
    position: relative;
}

.hvnly--property--import-step-progress::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--hvnly-border-color);
    z-index: 1;
    border-radius: 3px;
}

.hvnly--property--import-step-progress-bar {
    position: absolute;
    top: 24px;
    left: 0;
    width: 25%;
    height: 6px;
    background: var(--hvnly-brand-success);
    z-index: 2;
    border-radius: 3px;
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    flex: 1;
}

.hvnly--property--import-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--hvnly-color-bg-white);
    border: 3px solid var(--hvnly-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--hvnly-space-sm);
    transition: var(--hvnly-transition-time);
    font-size: var(--hvnly-font-size-lg);
    color: var(--hvnly-text-secondary);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.hvnly--property--import-step-item.active .hvnly--property--import-step-icon {
    background: var(--hvnly-brand-primary);
    border-color: var(--hvnly-brand-primary);
    color: var(--hvnly-color-white);
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(108, 96, 254, 0.3);
}

.hvnly--property--import-step-item.completed .hvnly--property--import-step-icon {
    background: var(--hvnly-brand-success);
    border-color: var(--hvnly-brand-success);
    color: var(--hvnly-color-white);
    box-shadow: 0 6px 12px rgba(0, 180, 106, 0.3);
}

.hvnly--property--import-step-title {
    font-size: var(--hvnly-font-size-sm);
    font-weight: var(--hvnly-font-weight-semibold);
    color: var(--hvnly-text-secondary);
    text-align: center;
}

.hvnly--property--import-step-item.active .hvnly--property--import-step-title {
    color: var(--hvnly-brand-primary);
}

.hvnly--property--import-step-item.completed .hvnly--property--import-step-title {
    color: var(--hvnly-brand-success);
}

/* Content Card */
.hvnly--property--import-content-card {
    background: var(--hvnly-card-bg);
    border-radius: var(--hvnly-card-radius);
    padding: var(--hvnly-space-xl);
    box-shadow: var(--hvnly-card-shadow);
    margin-top: var(--hvnly-space-lg);
    transition: var(--hvnly-transition-time);
    position: relative;
    overflow: hidden;
}

.hvnly--property--import-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--hvnly-brand-primary), var(--hvnly-brand-secondary));
}

.hvnly--property--import-content-card:hover {
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hvnly--property--import-card-title {
    margin-top: 0;
    margin-bottom: var(--hvnly-space-sm);
    font-size: var(--hvnly-font-size-title);
    font-weight: var(--hvnly-font-weight-bold);
    line-height: 1.3;
    color: var(--hvnly-text-primary);
}

.hvnly--property--import-card-description {
    font-size: var(--hvnly-font-size-excerpt);
    font-weight: var(--hvnly-font-weight-regular);
    line-height: 1.6;
    color: var(--hvnly-text-secondary);
}

.hvnly--property--import-divider {
    height: 1px;
    background: var(--hvnly-border-color);
    margin: var(--hvnly-space-xl) 0;
}

/* Form Rows */
.hvnly--property--import-form-row {
    display: flex;
    align-items: flex-start;
    margin-top: var(--hvnly-space-xl);
    padding: var(--hvnly-space-md);
    border-radius: var(--hvnly-input-radius);
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-form-row:hover {
    background-color: rgba(108, 96, 254, 0.03);
}

.hvnly--property--import-form-label {
    width: 30%;
    font-weight: var(--hvnly-font-weight-semibold);
    font-size: var(--hvnly-font-size-md);
    padding-top: var(--hvnly-space-sm);
}

.hvnly--property--import-form-controls {
    width: 70%;
}

/* Radio Group */
.hvnly--property--import-radio-group {
    display: flex;
    gap: 0;
    border-radius: var(--hvnly-input-radius);
    overflow: hidden;
    border: 2px solid var(--hvnly-border-color);
    background: var(--hvnly-color-bg-white);
}

.hvnly--property--import-radio-button {
    flex: 1;
    padding: var(--hvnly-space-sm) var(--hvnly-space-md);
    text-align: center;
    background: var(--hvnly-color-bg-white);
    cursor: pointer;
    transition: var(--hvnly-transition-time);
    border-right: 1px solid var(--hvnly-border-color);
    font-weight: var(--hvnly-font-weight-medium);
}

.hvnly--property--import-radio-button:last-child {
    border-right: none;
}

.hvnly--property--import-radio-button.selected {
    background: var(--hvnly-brand-primary);
    color: var(--hvnly-color-white);
}

/* Checkbox Group */
.hvnly--property--import-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: var(--hvnly-space-sm);
}

.hvnly--property--import-checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    padding: var(--hvnly-space-sm) var(--hvnly-space-md);
    border-radius: var(--hvnly-input-radius);
    border: 2px solid var(--hvnly-border-color);
    background: var(--hvnly-color-bg-white);
    cursor: pointer;
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-checkbox-item:hover {
    border-color: var(--hvnly-brand-primary);
    background-color: rgba(108, 96, 254, 0.05);
}

.hvnly--property--import-checkbox-item.selected {
    border-color: var(--hvnly-brand-primary);
    background-color: rgba(108, 96, 254, 0.1);
}

.hvnly--property--import-checkbox {
    width: 20px;
    height: 20px;
    border-radius: var(--hvnly-border-radius-xs);
    border: 2px solid var(--hvnly-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-checkbox-item.selected .hvnly--property--import-checkbox {
    background: var(--hvnly-brand-primary);
    border-color: var(--hvnly-brand-primary);
}

.hvnly--property--import-checkbox-item.selected .hvnly--property--import-checkbox::after {
    content: '✓';
    color: var(--hvnly-color-white);
    font-size: var(--hvnly-font-size-sm);
    font-weight: var(--hvnly-font-weight-bold);
}

.hvnly--property--import-checkbox-label {
    font-weight: var(--hvnly-font-weight-medium);
}

/* Toggle Switch */
.hvnly--property--import-toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.hvnly--property--import-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.hvnly--property--import-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--hvnly-border-color);
    transition: .4s;
    border-radius: 34px;
}

.hvnly--property--import-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: var(--hvnly-color-white);
    transition: .4s;
    border-radius: 50%;
}

input:checked + .hvnly--property--import-toggle-slider {
    background-color: var(--hvnly-brand-success);
}

input:checked + .hvnly--property--import-toggle-slider:before {
    transform: translateX(24px);
}

/* Text Input */
.hvnly--property--import-text-input {
    width: 100%;
    padding: var(--hvnly-space-sm) var(--hvnly-space-md);
    border: 2px solid var(--hvnly-border-color);
    border-radius: var(--hvnly-input-radius);
    font-size: var(--hvnly-font-size-md);
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-text-input:focus {
    border-color: var(--hvnly-brand-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 96, 254, 0.2);
}

/* Accordion */
.hvnly--property--import-accordion {
    border-radius: var(--hvnly-input-radius);
    overflow: hidden;
    border: 2px solid var(--hvnly-border-color);
}

.hvnly--property--import-accordion-item {
    border-bottom: 1px solid var(--hvnly-border-color);
}

.hvnly--property--import-accordion-item:last-child {
    border-bottom: none;
}

.hvnly--property--import-accordion-header {
    padding: var(--hvnly-space-md) var(--hvnly-space-lg);
    background: var(--hvnly-color-bg-white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-accordion-header:hover {
    background-color: rgba(108, 96, 254, 0.05);
}

.hvnly--property--import-accordion-title {
    font-weight: var(--hvnly-font-weight-semibold);
    font-size: var(--hvnly-font-size-md);
}

.hvnly--property--import-accordion-icon {
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-accordion-item.active .hvnly--property--import-accordion-icon {
    transform: rotate(180deg);
}

.hvnly--property--import-accordion-content {
    padding: 0 var(--hvnly-space-lg);
    max-height: 0;
    overflow: hidden;
    transition: var(--hvnly-transition-time);
    background: var(--hvnly-color-bg-light);
}

.hvnly--property--import-accordion-item.active .hvnly--property--import-accordion-content {
    padding: var(--hvnly-space-lg);
    max-height: 500px;
}

/* Info Box */
.hvnly--property--import-info-box {
    margin-top: var(--hvnly-space-xl);
    padding: var(--hvnly-space-md) var(--hvnly-space-lg);
    background: rgba(108, 96, 254, 0.08);
    border: 1px solid rgba(108, 96, 254, 0.2);
    border-radius: var(--hvnly-input-radius);
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
}

.hvnly--property--import-info-icon {
    color: var(--hvnly-brand-primary);
    font-size: var(--hvnly-font-size-lg);
}

.hvnly--property--import-info-text {
    color: var(--hvnly-brand-primary);
    font-size: var(--hvnly-font-size-md);
    font-weight: var(--hvnly-font-weight-medium);
}

/* Navigation Buttons */
.hvnly--property--import-navigation {
    margin-top: var(--hvnly-space-2xl);
    display: flex;
    justify-content: space-between;
}

.hvnly--property--import-nav-button {
    height: 48px;
    padding: var(--hvnly-button-padding);
    border-radius: var(--hvnly-button-radius);
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    cursor: pointer;
    transition: var(--hvnly-transition-time);
    font-weight: var(--hvnly-font-weight-semibold);
    border: none;
    font-size: var(--hvnly-font-size-md);
}

.hvnly--property--import-nav-button.prev {
    background-color: var(--hvnly-color-gray-500);
    color: var(--hvnly-color-white);
}

.hvnly--property--import-nav-button.prev:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(90, 98, 104, 0.3);
}

.hvnly--property--import-nav-button.next {
    background: linear-gradient(135deg, var(--hvnly-brand-primary) 0%, var(--hvnly-brand-secondary) 100%);
    color: var(--hvnly-color-white);
}

.hvnly--property--import-nav-button.next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 96, 254, 0.4);
}

.hvnly--property--import-nav-button.skip {
    background: transparent;
    color: var(--hvnly-color-gray-500);
    border: 2px solid var(--hvnly-border-color);
}

.hvnly--property--import-nav-button.skip:hover {
    background-color: rgba(108, 117, 125, 0.08);
    transform: translateY(-2px);
}

.hvnly--property--import-nav-button:disabled {
    background-color: var(--hvnly-border-color);
    color: var(--hvnly-text-secondary);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Completion Screen */
.hvnly--property--import-completion-screen {
    text-align: center;
    padding: var(--hvnly-space-2xl) var(--hvnly-space-lg);
}

.hvnly--property--import-completion-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--hvnly-brand-success) 0%, var(--hvnly-status-rent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--hvnly-space-xl);
    color: var(--hvnly-color-white);
    font-size: 40px;
    box-shadow: 0 10px 20px rgba(0, 180, 106, 0.3);
}

.hvnly--property--import-completion-title {
    font-size: 32px;
    font-weight: var(--hvnly-font-weight-bold);
    color: var(--hvnly-text-primary);
    margin-bottom: var(--hvnly-space-md);
}

.hvnly--property--import-completion-description {
    font-size: var(--hvnly-font-size-lg);
    color: var(--hvnly-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--hvnly-space-2xl);
    line-height: 1.6;
}

.hvnly--property--import-completion-actions {
    display: flex;
    justify-content: center;
    gap: var(--hvnly-space-md);
    margin-top: var(--hvnly-space-xl);
}

.hvnly--property--import-completion-button {
    padding: var(--hvnly-space-md) var(--hvnly-space-2xl);
    border-radius: var(--hvnly-button-radius);
    font-weight: var(--hvnly-font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    transition: var(--hvnly-transition-time);
    border: none;
    cursor: pointer;
}

.hvnly--property--import-completion-button.primary {
    background: var(--hvnly-brand-primary);
    color: var(--hvnly-color-white);
}

.hvnly--property--import-completion-button.secondary {
    background: transparent;
    color: var(--hvnly-brand-primary);
    border: 2px solid var(--hvnly-brand-primary);
}

.hvnly--property--import-completion-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 96, 254, 0.3);
}

/* Progress Animation */
.hvnly--property--import-progress-container {
    margin: var(--hvnly-space-2xl) 0;
    text-align: center;
}

.hvnly--property--import-progress-bar {
    height: 12px;
    background: var(--hvnly-border-color);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: var(--hvnly-space-md);
}

.hvnly--property--import-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--hvnly-brand-primary), var(--hvnly-brand-secondary));
    border-radius: 6px;
    width: 0%;
    transition: width 2s ease-in-out;
}

.hvnly--property--import-progress-text {
    font-size: var(--hvnly-font-size-md);
    font-weight: var(--hvnly-font-weight-medium);
    color: var(--hvnly-text-secondary);
}

/* Celebration Animation */
.hvnly--property--import-celebration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.hvnly--property--import-celebration.active {
    opacity: 1;
    visibility: visible;
}

.hvnly--property--import-celebration-content {
    background: var(--hvnly-color-white);
    padding: var(--hvnly-space-2xl);
    border-radius: var(--hvnly-border-radius-lg);
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.5s ease;
}

.hvnly--property--import-celebration.active .hvnly--property--import-celebration-content {
    transform: scale(1);
}

.hvnly--property--import-celebration-title {
    font-size: 32px;
    font-weight: var(--hvnly-font-weight-bold);
    color: var(--hvnly-brand-primary);
    margin-bottom: var(--hvnly-space-lg);
}

.hvnly--property--import-celebration-description {
    font-size: var(--hvnly-font-size-lg);
    color: var(--hvnly-text-secondary);
    margin-bottom: var(--hvnly-space-xl);
}

.hvnly--property--import-celebration-actions {
    display: flex;
    justify-content: center;
    gap: var(--hvnly-space-md);
}

/* Animation for step transitions */
@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hvnly--property--import-step-content {
    animation: slideIn 0.5s ease-out;
}

/* Quantity Slider */
.hvnly--property--import-quantity-slider-container {
    width: 100%;
    margin: var(--hvnly-space-sm) 0 var(--hvnly-space-lg);
}

.hvnly--property--import-slider-wrapper {
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-lg);
    margin-bottom: var(--hvnly-space-sm);
}

.hvnly--property--import-quantity-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 10px;
    border-radius: 5px;
    background: var(--hvnly-slider-track);
    outline: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.hvnly--property--import-quantity-slider:hover {
    opacity: 1;
}

.hvnly--property--import-quantity-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hvnly-slider-thumb);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(108, 96, 254, 0.4);
    border: 3px solid var(--hvnly-color-white);
    transition: all 0.2s ease;
}

.hvnly--property--import-quantity-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(108, 96, 254, 0.6);
}

.hvnly--property--import-quantity-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hvnly-slider-thumb);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(108, 96, 254, 0.4);
    border: 3px solid var(--hvnly-color-white);
    transition: all 0.2s ease;
}

.hvnly--property--import-quantity-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(108, 96, 254, 0.6);
}

.hvnly--property--import-quantity-value {
    min-width: 60px;
    text-align: center;
    font-weight: var(--hvnly-font-weight-bold);
    font-size: var(--hvnly-font-size-lg);
    color: var(--hvnly-brand-primary);
    background: rgba(108, 96, 254, 0.1);
    padding: var(--hvnly-space-sm) var(--hvnly-space-md);
    border-radius: var(--hvnly-input-radius);
    border: 2px solid rgba(108, 96, 254, 0.2);
}

.hvnly--property--import-slider-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: var(--hvnly-space-sm);
    padding: 0 var(--hvnly-space-sm);
}

.hvnly--property--import-slider-tick {
    position: relative;
    width: 1px;
    height: 8px;
    background: var(--hvnly-border-color);
    transform: translateX(-50%);
}

.hvnly--property--import-slider-tick:nth-child(5n+1) {
    height: 16px;
    background: var(--hvnly-text-secondary);
}

.hvnly--property--import-slider-tick-label {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--hvnly-font-size-xs);
    color: var(--hvnly-text-secondary);
    white-space: nowrap;
}

.hvnly--property--import-quantity-description {
    font-size: var(--hvnly-font-size-sm);
    color: var(--hvnly-text-secondary);
    margin-top: var(--hvnly-space-md);
    padding: var(--hvnly-space-sm) var(--hvnly-space-md);
    background: rgba(108, 96, 254, 0.05);
    border-radius: var(--hvnly-input-radius);
    border-left: 4px solid var(--hvnly-brand-primary);
}

/* Add these styles to your hvnly-import-wizard.css file */

/* Department Tabs */
.hvnly--property--import-department-tabs {
    display: flex;
    gap: var(--hvnly-space-md);
    margin-bottom: var(--hvnly-space-xl);
    flex-wrap: wrap;
}

.hvnly--property--import-department-tab {
    flex: 1;
    min-width: 120px;
    padding: var(--hvnly-space-md) var(--hvnly-space-lg);
    background: var(--hvnly-color-bg-white);
    border: 2px solid var(--hvnly-border-color);
    border-radius: var(--hvnly-border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--hvnly-space-sm);
    cursor: pointer;
    transition: var(--hvnly-transition-time);
    font-weight: var(--hvnly-font-weight-semibold);
    color: var(--hvnly-text-secondary);
}

.hvnly--property--import-department-tab i {
    font-size: var(--hvnly-font-size-lg);
}

.hvnly--property--import-department-tab:hover {
    border-color: var(--hvnly-brand-primary);
    background-color: rgba(108, 96, 254, 0.05);
    transform: translateY(-2px);
    box-shadow: var(--hvnly-shadow-card-hover);
}

.hvnly--property--import-department-tab.active {
    background: linear-gradient(135deg, var(--hvnly-brand-primary) 0%, var(--hvnly-brand-secondary) 100%);
    border-color: transparent;
    color: var(--hvnly-color-white);
    box-shadow: 0 4px 12px rgba(108, 96, 254, 0.3);
}

/* Taxonomy Sections */
.hvnly--property--import-taxonomy-container {
    margin-top: var(--hvnly-space-xl);
}

.hvnly--property--import-taxonomy-section {
    margin-bottom: var(--hvnly-space-xl);
    padding: var(--hvnly-space-lg);
    background: rgba(108, 96, 254, 0.02);
    border-radius: var(--hvnly-border-radius-md);
    border: 1px solid var(--hvnly-border-color);
    transition: var(--hvnly-transition-time);
}

.hvnly--property--import-taxonomy-section:hover {
    border-color: rgba(108, 96, 254, 0.3);
    box-shadow: var(--hvnly-shadow-card-hover);
}

.hvnly--property--import-taxonomy-title {
    font-size: var(--hvnly-font-size-lg);
    font-weight: var(--hvnly-font-weight-semibold);
    color: var(--hvnly-text-primary);
    margin-bottom: var(--hvnly-space-md);
    padding-bottom: var(--hvnly-space-sm);
    border-bottom: 2px solid var(--hvnly-border-color);
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
}

.hvnly--property--import-taxonomy-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--hvnly-brand-primary);
    border-radius: 2px;
}

.hvnly--property--import-taxonomy-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--hvnly-border-color), transparent);
    margin: var(--hvnly-space-lg) 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hvnly--property--import-department-tabs {
        flex-direction: column;
    }
    
    .hvnly--property--import-department-tab {
        width: 100%;
    }
    
    .hvnly--property--import-taxonomy-section {
        padding: var(--hvnly-space-md);
    }
}

/* Animation for taxonomy sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hvnly--property--import-taxonomy-section {
    animation: fadeInUp 0.5s ease-out;
    animation-fill-mode: both;
}

.hvnly--property--import-taxonomy-section:nth-child(1) { animation-delay: 0.1s; }
.hvnly--property--import-taxonomy-section:nth-child(2) { animation-delay: 0.2s; }
.hvnly--property--import-taxonomy-section:nth-child(3) { animation-delay: 0.3s; }
.hvnly--property--import-taxonomy-section:nth-child(4) { animation-delay: 0.4s; }
.hvnly--property--import-taxonomy-section:nth-child(5) { animation-delay: 0.5s; }
.hvnly--property--import-taxonomy-section:nth-child(6) { animation-delay: 0.6s; }

/* Update checkbox group for taxonomy sections */
.hvnly--property--import-taxonomy-section .hvnly--property--import-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--hvnly-space-sm);
}

@media (max-width: 768px) {
    .hvnly--property--import-taxonomy-section .hvnly--property--import-checkbox-group {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hvnly--property--import-navbar {
        flex-direction: column;
        gap: var(--hvnly-space-md);
        padding: var(--hvnly-space-md);
    }
    
    .hvnly--property--import-navbar-left, .hvnly--property--import-navbar-right {
        width: 100%;
        justify-content: center;
    }
    
    .hvnly--property--import-wrapper {
        margin: var(--hvnly-space-xl) auto;
        padding: 0 var(--hvnly-space-md);
    }
    
    .hvnly--property--import-form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hvnly--property--import-form-label, .hvnly--property--import-form-controls {
        width: 100%;
    }
    
    .hvnly--property--import-form-label {
        margin-bottom: var(--hvnly-space-sm);
    }
    
    .hvnly--property--import-radio-group {
        flex-direction: column;
    }
    
    .hvnly--property--import-radio-button {
        border-right: none;
        border-bottom: 1px solid var(--hvnly-border-color);
    }
    
    .hvnly--property--import-radio-button:last-child {
        border-bottom: none;
    }
    
    .hvnly--property--import-completion-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* Responsive slider */
    .hvnly--property--import-slider-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: var(--hvnly-space-md);
    }
    
    .hvnly--property--import-quantity-value {
        align-self: center;
        width: 100px;
    }
    
    .hvnly--property--import-slider-ticks {
        display: none;
    }
}


/* =========================================
    IMPORT CANCELLATION & ERROR STYLES
========================================= */

/* Cancel/Pause Buttons */
.hvnly--property--import-cancel-container {
    margin-top: var(--hvnly-space-lg);
    text-align: center;
    animation: fadeInUp 0.5s ease-out;
}

.hvnly--property--import-cancel-button,
.hvnly--property--import-pause-button {
    padding: var(--hvnly-space-md) var(--hvnly-space-xl);
    border-radius: var(--hvnly-button-radius);
    font-weight: var(--hvnly-font-weight-semibold);
    font-size: var(--hvnly-font-size-md);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    transition: var(--hvnly-transition-time);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hvnly--property--import-cancel-button {
    background: var(--hvnly-brand-error);
    color: var(--hvnly-color-white);
}

.hvnly--property--import-cancel-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 79, 0.4);
}

.hvnly--property--import-cancel-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.hvnly--property--import-pause-button {
    background: var(--hvnly-brand-warning);
    color: var(--hvnly-color-white);
}

.hvnly--property--import-pause-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 181, 7, 0.4);
}

/* Error Popup */
.hvnly--property--import-error-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--hvnly-color-white);
    padding: var(--hvnly-space-xl);
    border-radius: var(--hvnly-border-radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    max-width: 500px;
    width: 90%;
    border-top: 4px solid var(--hvnly-brand-error);
    animation: slideInError 0.3s ease-out;
}

@keyframes slideInError {
    from {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.hvnly--property--import-error-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hvnly--property--import-error-popup pre {
    font-size: var(--hvnly-font-size-xs);
    color: var(--hvnly-brand-error);
    white-space: pre-wrap;
    word-wrap: break-word;
    margin: 0;
    padding: var(--hvnly-space-sm);
    background: rgba(255, 77, 79, 0.02);
    border-radius: var(--hvnly-border-radius-sm);
    max-height: 200px;
    overflow-y: auto;
    font-family: monospace;
}

/* Resume/Cancelled state buttons */
#resumeImportBtn,
#restartImportBtn {
    transition: var(--hvnly-transition-time);
}

#resumeImportBtn:hover,
#restartImportBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(108, 96, 254, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hvnly--property--import-cancel-container {
        display: flex;
        flex-direction: column;
        gap: var(--hvnly-space-md);
    }
    
    .hvnly--property--import-cancel-button,
    .hvnly--property--import-pause-button {
        margin-left: 0 !important;
        width: 100%;
        justify-content: center;
    }
    
    .hvnly--property--import-error-popup {
        width: 95%;
        padding: var(--hvnly-space-lg);
    }
}

/* =========================================
    SELECT ALL CHECKBOX STYLES
========================================= */

/* Select All Container */
.hvnly--property--import-select-all {
    margin-bottom: var(--hvnly-space-lg);
    padding-bottom: var(--hvnly-space-sm);
    border-bottom: 2px dashed var(--hvnly-border-color);
    position: relative;
}

.hvnly--property--import-select-all::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 50px;
    height: 2px;
    background: var(--hvnly-brand-primary);
    border-radius: 2px;
}

/* Select All Item */
.hvnly--property--import-select-all-item {
    display: flex;
    align-items: center;
    gap: var(--hvnly-space-sm);
    padding: var(--hvnly-space-md) var(--hvnly-space-lg);
    border-radius: var(--hvnly-border-radius-md);
    border: 2px solid var(--hvnly-border-color);
    background: linear-gradient(135deg, rgba(108, 96, 254, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: var(--hvnly-font-weight-semibold);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.hvnly--property--import-select-all-item:hover {
    border-color: var(--hvnly-brand-primary);
    background: linear-gradient(135deg, rgba(108, 96, 254, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(108, 96, 254, 0.15);
}

.hvnly--property--import-select-all-item.selected {
    border-color: var(--hvnly-brand-success);
    background: linear-gradient(135deg, rgba(0, 180, 106, 0.1) 0%, rgba(0, 194, 168, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(0, 180, 106, 0.2);
}

/* Select All Checkbox */
.hvnly--property--import-select-all-item .hvnly--property--import-checkbox {
    width: 22px;
    height: 22px;
    border-radius: var(--hvnly-border-radius-sm);
    border: 2px solid var(--hvnly-border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    background: var(--hvnly-color-white);
    position: relative;
}

.hvnly--property--import-select-all-item:hover .hvnly--property--import-checkbox {
    border-color: var(--hvnly-brand-primary);
    transform: scale(1.05);
}

.hvnly--property--import-select-all-item.selected .hvnly--property--import-checkbox {
    background: var(--hvnly-brand-success);
    border-color: var(--hvnly-brand-success);
    animation: selectAllPulse 0.5s ease;
}

.hvnly--property--import-select-all-item.selected .hvnly--property--import-checkbox::after {
    content: '✓';
    color: var(--hvnly-color-white);
    font-size: var(--hvnly-font-size-sm);
    font-weight: var(--hvnly-font-weight-bold);
    animation: checkmarkAppear 0.3s ease;
}

/* Select All Label */
.hvnly--property--import-select-all-item .hvnly--property--import-checkbox-label {
    font-weight: var(--hvnly-font-weight-bold);
    color: var(--hvnly-text-primary);
    font-size: var(--hvnly-font-size-md);
    letter-spacing: 0.3px;
    position: relative;
}

.hvnly--property--import-select-all-item.selected .hvnly--property--import-checkbox-label {
    color: var(--hvnly-brand-success);
}

/* Select All Badge */
.hvnly--property--import-select-all-item::after {
    content: attr(data-count);
    margin-left: auto;
    font-size: var(--hvnly-font-size-sm);
    color: var(--hvnly-text-secondary);
    background: var(--hvnly-color-gray-100);
    padding: 2px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.hvnly--property--import-select-all-item:hover::after {
    background: var(--hvnly-brand-primary);
    color: var(--hvnly-color-white);
}

.hvnly--property--import-select-all-item.selected::after {
    background: var(--hvnly-brand-success);
    color: var(--hvnly-color-white);
}

/* Animations */
@keyframes selectAllPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmarkAppear {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hvnly--property--import-select-all-item {
        padding: var(--hvnly-space-md);
    }
    
    .hvnly--property--import-select-all-item .hvnly--property--import-checkbox-label {
        font-size: var(--hvnly-font-size-sm);
    }
    
    .hvnly--property--import-select-all-item::after {
        font-size: var(--hvnly-font-size-xs);
        padding: 2px 6px;
    }
}

/* Dark Mode Support (if you have it) */
@media (prefers-color-scheme: dark) {
    .hvnly--property--import-select-all-item {
        background: linear-gradient(135deg, rgba(108, 96, 254, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    }
    
    .hvnly--property--import-select-all-item:hover {
        background: linear-gradient(135deg, rgba(108, 96, 254, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    }
}

/* Hover Effect for Checkbox Group */
.hvnly--property--import-taxonomy-section:hover .hvnly--property--import-select-all-item {
    border-color: rgba(108, 96, 254, 0.3);
}

/* Disabled State (if needed) */
.hvnly--property--import-select-all-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.hvnly--property--import-select-all-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Loading State */
.hvnly--property--import-select-all-item.loading {
    pointer-events: none;
    opacity: 0.7;
}

.hvnly--property--import-select-all-item.loading .hvnly--property--import-checkbox::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid var(--hvnly-border-color);
    border-top-color: var(--hvnly-brand-primary);
    border-radius: 50%;
    animation: selectAllSpin 1s linear infinite;
}

@keyframes selectAllSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Tooltip for Select All */
.hvnly--property--import-select-all-item[data-tooltip] {
    position: relative;
}

.hvnly--property--import-select-all-item[data-tooltip]:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: var(--hvnly-text-primary);
    color: var(--hvnly-color-white);
    font-size: var(--hvnly-font-size-xs);
    border-radius: var(--hvnly-border-radius-sm);
    white-space: nowrap;
    z-index: 10;
    margin-bottom: 5px;
}

html.wp-toolbar {
    padding-top: 0px !important;
  
}

/* Section Spacing Adjustments */
.hvnly--property--import-taxonomy-section {
    position: relative;
    padding-top: var(--hvnly-space-md);
}

.hvnly--property--import-taxonomy-title {
    margin-bottom: var(--hvnly-space-md);
}

/* Ensure checkbox group has proper spacing after select all */
.hvnly--property--import-taxonomy-section .hvnly--property--import-checkbox-group {
    margin-top: var(--hvnly-space-md);
}

/* Force full-width layout for Property Import Wizard - Hide left sidebar */
.hvnly_property_page_hvnly-property-import #adminmenuwrap,
.hvnly_property_page_hvnly-property-import #adminmenumain,
.hvnly_property_page_hvnly-property-import #adminmenu {
    display: none !important;
}

.hvnly_property_page_hvnly-property-import #wpcontent,
.hvnly_property_page_hvnly-property-import #wpbody-content {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.hvnly_property_page_hvnly-property-import #wpbody {
    margin-left: 0 !important;
}

/* Remove admin bar spacing if needed */
.hvnly_property_page_hvnly-property-import #wpadminbar {
    display: none !important;
}

.hvnly_property_page_hvnly-property-import html {
    margin-top: 0 !important;
}

/* Ensure the content takes full width */
.hvnly_property_page_hvnly-property-import .wrap,
.hvnly_property_page_hvnly-property-import #wpwrap,
.hvnly_property_page_hvnly-property-import #wpcontent {
    background: transparent !important;
}

/* Make the wizard container full width */
.hvnly_property_page_hvnly-property-import .hvnly--property--import-wrapper {
    max-width:1000px;
    width:75%;
    margin: 0 auto;
}






/* Professional Subtle Animations - Clean & Non-Disruptive */

/* Main container - subtle fade in only */
.hvnly--property--import-wrapper {
    animation: gentleFadeIn 0.5s ease-out;
}

@keyframes gentleFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Content card - subtle scale */
.hvnly--property--import-content-card {
    animation: gentleScale 0.4s ease-out 0.1s both;
}

@keyframes gentleScale {
    0% {
        opacity: 0;
        transform: scale(0.98);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Navbar - simple slide down */
.hvnly--property--import-navbar {
    animation: gentleSlideDown 0.4s ease-out;
}

@keyframes gentleSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step items - simple fade up */
.hvnly--property--import-step-item {
    animation: gentleFadeUp 0.4s ease-out forwards;
    opacity: 0;
}

.hvnly--property--import-step-item:nth-child(1) { animation-delay: 0.05s; }
.hvnly--property--import-step-item:nth-child(2) { animation-delay: 0.1s; }
.hvnly--property--import-step-item:nth-child(3) { animation-delay: 0.15s; }
.hvnly--property--import-step-item:nth-child(4) { animation-delay: 0.2s; }

@keyframes gentleFadeUp {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Progress bar - simple width animation */
.hvnly--property--import-step-progress-bar {
    animation: gentleWidth 0.5s ease-out 0.2s both;
}

@keyframes gentleWidth {
    0% {
        width: 0%;
    }
}

/* Title - simple fade */
.hvnly--property--import-card-title {
    animation: gentleFade 0.4s ease-out 0.15s both;
}

@keyframes gentleFade {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Description - simple fade */
.hvnly--property--import-card-description {
    animation: gentleFade 0.4s ease-out 0.2s both;
}

/* Navigation buttons - simple fade */
.hvnly--property--import-nav-button {
    animation: gentleFade 0.4s ease-out forwards;
    opacity: 0;
}

.hvnly--property--import-nav-button.prev {
    animation-delay: 0.25s;
}

.hvnly--property--import-nav-button.skip {
    animation-delay: 0.3s;
}

.hvnly--property--import-nav-button.next {
    animation-delay: 0.35s;
}

/* Step content transition - clean slide */
.hvnly--property--import-step-content {
    transition: opacity 0.2s ease;
}

/* Smooth hover effects - no movement, just color change */
.hvnly--property--import-nav-button,
.hvnly--property--import-department-tab,
.hvnly--property--import-checkbox-item,
.hvnly--property--import-select-all-item {
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* No transform on hover - just subtle color changes */
.hvnly--property--import-nav-button:hover {
    transform: none;
}

.hvnly--property--import-department-tab:hover {
    transform: none;
}

.hvnly--property--import-checkbox-item:hover {
    transform: none;
}

/* Progress bar fill - smooth */
.hvnly--property--import-progress-fill {
    transition: width 0.4s ease-out;
}

/* Simple card hover - no movement, just shadow */
.hvnly--property--import-content-card {
    transition: box-shadow 0.2s ease;
}

.hvnly--property--import-content-card:hover {
    transform: none;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .hvnly--property--import-wrapper,
    .hvnly--property--import-content-card,
    .hvnly--property--import-navbar,
    .hvnly--property--import-step-item,
    .hvnly--property--import-card-title,
    .hvnly--property--import-card-description,
    .hvnly--property--import-nav-button {
        animation: none;
        opacity: 1;
        transform: none;
    }
    
    .hvnly--property--import-step-progress-bar {
        animation: none;
    }
}



/* =========================================
   VIDEO TUTORIAL POPUP - FIXED BUTTONS & SMOOTH ANIMATIONS
   Add this to the end of your CSS file
========================================= */

/* Fix for popup overlay - smooth appearance */
.hvnly-video-tutorial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.hvnly-video-tutorial-overlay.hvnly-video-tutorial-show {
    opacity: 1;
    visibility: visible;
}

.hvnly-video-tutorial-overlay.hvnly-video-tutorial-fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Popup container - smooth scale animation */
.hvnly-video-tutorial-container {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 750px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.hvnly-video-tutorial-overlay.hvnly-video-tutorial-show .hvnly-video-tutorial-container {
    transform: scale(1);
}

/* Header styles - keep as is */
.hvnly-video-tutorial-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, #6C60FE 0%, #764ba2 100%);
}

.hvnly-video-tutorial-header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.hvnly-video-tutorial-header-icon i {
    color: #ffffff;
    font-size: 20px;
}

.hvnly-video-tutorial-title {
    flex: 1;
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
}

/* ========== FIXED BUTTON STYLES (No theme conflict) ========== */
.hvnly-video-tutorial-close {
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    margin: 0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    color: #ffffff !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hvnly-video-tutorial-close:hover {
    background: rgba(255, 255, 255, 0.35) !important;
    transform: rotate(90deg) !important;
}

.hvnly-video-tutorial-body {
    padding: 24px;
}

.hvnly-video-tutorial-player-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a2e;
}

.hvnly-video-tutorial-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
}

.hvnly-video-tutorial-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.hvnly-video-tutorial-description {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.5;
}

/* ========== FOOTER BUTTONS - FORCED STYLES ========== */
.hvnly-video-tutorial-footer {
    display: flex !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 20px 24px !important;
    background: #f8f9fa !important;
    border-top: 1px solid #e9ecef !important;
}

/* Don't show again button */
.hvnly-video-tutorial-dont-show {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: transparent !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #555 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
    box-shadow: none !important;
    outline: none !important;
}

.hvnly-video-tutorial-dont-show:hover {
    border-color: #6C60FE !important;
    color: #6C60FE !important;
    background: rgba(108, 96, 254, 0.05) !important;
}

/* Get Started button */
.hvnly-video-tutorial-get-started {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #6C60FE 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 8px 28px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
    box-shadow: 0 2px 8px rgba(108, 96, 254, 0.3) !important;
    outline: none !important;
}

.hvnly-video-tutorial-get-started:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(108, 96, 254, 0.4) !important;
}
/* Documentation Link inside Video Popup */
.hvnly-video-tutorial-doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 13px;
    color: var(--hvnly-brand-primary, #6C60FE);
    text-decoration: none;
    transition: all 0.2s ease;
}

.hvnly-video-tutorial-doc-link:hover {
    color: var(--hvnly-brand-secondary, #764ba2);
    text-decoration: underline;
}

.hvnly-video-tutorial-doc-link i {
    font-size: 12px;
}
/* Responsive */
@media (max-width: 640px) {
    .hvnly-video-tutorial-footer {
        flex-direction: column !important;
    }
    
    .hvnly-video-tutorial-dont-show,
    .hvnly-video-tutorial-get-started {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .hvnly-video-tutorial-header {
        padding: 16px 20px;
    }
    
    .hvnly-video-tutorial-body {
        padding: 20px;
    }
}

/* =========================================
   PREVENT BACKGROUND SCROLLING WHEN POPUP IS OPEN
========================================= */

/* When popup is open, prevent body from scrolling */
body.hvnly-video-popup-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
}

/* Ensure the popup overlay handles scrolling if needed */
.hvnly-video-tutorial-overlay {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Popup container should handle its own scrolling if content overflows */
.hvnly-video-tutorial-container {
    max-height: 90vh !important;
    overflow-y: auto !important;
}

/* Hide scrollbar on body when popup is open (optional) */
body.hvnly-video-popup-open::-webkit-scrollbar {
    display: none !important;
}