/* ==================== Design Tokens ==================== */
:root {
    /* Color Palette - Red & Black Theme */
    --hojayfa-color-primary-1: #dc2626;
    --hojayfa-color-primary-hover-1: #b91c1c;
    --hojayfa-color-primary-light-1: #fee2e2;
    --hojayfa-color-dark-1: #000000;
    --hojayfa-color-dark-secondary-1: #1a1a1a;
    --hojayfa-color-dark-tertiary-1: #2d2d2d;
    --hojayfa-color-neutral-50-1: #1a1a1a;
    --hojayfa-color-neutral-100-1: #2d2d2d;
    --hojayfa-color-neutral-200-1: #3d3d3d;
    --hojayfa-color-neutral-300-1: #4d4d4d;
    --hojayfa-color-neutral-400-1: #6b7280;
    --hojayfa-color-neutral-500-1: #9ca3af;
    --hojayfa-color-neutral-600-1: #d1d5db;
    --hojayfa-color-neutral-700-1: #e5e7eb;
    --hojayfa-color-neutral-800-1: #f3f4f6;
    --hojayfa-color-neutral-900-1: #ffffff;
    --hojayfa-color-success-1: #10b981;
    --hojayfa-color-danger-1: #dc2626;
    --hojayfa-color-warning-1: #f59e0b;
    
    /* Typography */
    --hojayfa-font-family-1: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --hojayfa-font-size-xs-1: 0.75rem;
    --hojayfa-font-size-sm-1: 0.875rem;
    --hojayfa-font-size-base-1: 1rem;
    --hojayfa-font-size-lg-1: 1.125rem;
    --hojayfa-font-size-xl-1: 1.25rem;
    --hojayfa-font-size-2xl-1: 1.5rem;
    --hojayfa-font-size-3xl-1: 1.875rem;
    --hojayfa-font-weight-normal-1: 400;
    --hojayfa-font-weight-medium-1: 500;
    --hojayfa-font-weight-semibold-1: 600;
    --hojayfa-font-weight-bold-1: 700;
    
    /* Spacing */
    --hojayfa-spacing-1: 0.25rem;
    --hojayfa-spacing-2: 0.5rem;
    --hojayfa-spacing-3: 0.75rem;
    --hojayfa-spacing-4: 1rem;
    --hojayfa-spacing-5: 1.25rem;
    --hojayfa-spacing-6: 1.5rem;
    --hojayfa-spacing-8: 2rem;
    --hojayfa-spacing-10: 2.5rem;
    --hojayfa-spacing-12: 3rem;
    --hojayfa-spacing-16: 4rem;
    
    /* Border Radius */
    --hojayfa-radius-sm-1: 0.25rem;
    --hojayfa-radius-md-1: 0.5rem;
    --hojayfa-radius-lg-1: 0.75rem;
    --hojayfa-radius-xl-1: 1rem;
    --hojayfa-radius-2xl-1: 1.5rem;
    --hojayfa-radius-full-1: 9999px;
    
    /* Shadows */
    --hojayfa-shadow-sm-1: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --hojayfa-shadow-md-1: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --hojayfa-shadow-lg-1: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.4);
    --hojayfa-shadow-xl-1: 0 20px 25px -5px rgba(0, 0, 0, 0.6), 0 10px 10px -5px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --hojayfa-transition-fast-1: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --hojayfa-transition-base-1: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --hojayfa-transition-slow-1: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==================== Typography ==================== */
 h2, h3, h4, h5, h6 {
    font-weight: var(--hojayfa-font-weight-bold-1);
    line-height: 1.2;
    color: var(--hojayfa-color-neutral-900-1);
}

/* ==================== Layout ==================== */
.hojayfa-container-1 {
    max-width: 1200px;
    margin: 0 auto;
}

.hojayfa-app-title-1{
            text-align: center;
            margin-bottom: 1.5rem;
            padding: 1rem 0;
	color: #f70c3f;
        }

.hojayfa-app-title-1 h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }
.hojayfa-main-content-1 {
    display: flex;
    flex-direction: column;
    gap: var(--hojayfa-spacing-6);

}

/* ==================== Upload Card Component ==================== */
.hojayfa-upload-card-1 {
	   border: 3px dashed rgba(239, 68, 68, 0.5);
    border-radius: var(--hojayfa-radius-2xl-1);
    padding: var(--hojayfa-spacing-8);

    transition: all var(--hojayfa-transition-base-1);
    text-align: center;
    cursor: pointer;
    position: relative;
}

.hojayfa-upload-icon-1 {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--hojayfa-spacing-4);
    color: var(--hojayfa-color-primary-1);
}

.hojayfa-upload-text-1 {
    font-size: var(--hojayfa-font-size-xl-1);
    color: var(--hojayfa-color-neutral-900-1);
    margin-bottom: var(--hojayfa-spacing-4);
    font-weight: var(--hojayfa-font-weight-bold-1);
}

.hojayfa-upload-subtext-1 {
    font-size: var(--hojayfa-font-size-base-1);
    color: var(--hojayfa-color-neutral-600-1);
    margin-bottom: var(--hojayfa-spacing-6);
    font-weight: var(--hojayfa-font-weight-semibold-1);
}

.hojayfa-btn-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--hojayfa-spacing-2);
    padding: var(--hojayfa-spacing-4) var(--hojayfa-spacing-8);
    font-size: var(--hojayfa-font-size-lg-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    border-radius: var(--hojayfa-radius-xl-1);
    border: none;
    cursor: pointer;
    transition: all var(--hojayfa-transition-base-1);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: var(--hojayfa-shadow-md-1);
}

.hojayfa-btn-1:focus-visible {
    outline: 3px solid var(--hojayfa-color-primary-1);
    outline-offset: 2px;
}

.hojayfa-btn-primary-1 {
    background-color: var(--hojayfa-color-primary-1);
    color: white;
}

.hojayfa-btn-primary-1:hover:not(:disabled) {
    background-color: var(--hojayfa-color-primary-hover-1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 38, 38, 0.5);
}

.hojayfa-btn-secondary-1 {
    background-color: var(--hojayfa-color-dark-tertiary-1);
    color: white;
    border: 2px solid var(--hojayfa-color-primary-1);
}

.hojayfa-btn-secondary-1:hover {
    background-color: var(--hojayfa-color-primary-1);
    transform: translateY(-2px);
}

.hojayfa-btn-danger-1 {
    background-color: var(--hojayfa-color-primary-1);
    color: white;
}

.hojayfa-btn-danger-1:hover {
    background-color: var(--hojayfa-color-primary-hover-1);
    transform: translateY(-2px);
}

.hojayfa-btn-sm-1 {
    padding: var(--hojayfa-spacing-3) var(--hojayfa-spacing-5);
    font-size: var(--hojayfa-font-size-base-1);
}

.hojayfa-btn-1:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

#hojayfaFileInput1 {
    display: none;
}

@media (max-width: 768px) {
    .hojayfa-upload-card-1 {
        padding: var(--hojayfa-spacing-6);
    }
    
    .hojayfa-upload-icon-1 {
        width: 60px;
        height: 60px;
    }
    
    .hojayfa-btn-1 {
        padding: var(--hojayfa-spacing-3) var(--hojayfa-spacing-6);
        font-size: var(--hojayfa-font-size-base-1);
    }
}

/* ==================== Gallery Component ==================== */
.hojayfa-gallery-section-1 {
    display: none;
}

.hojayfa-gallery-section-1.hojayfa-active-1 {
    display: block;
}

.hojayfa-gallery-header-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--hojayfa-spacing-6);
    flex-wrap: wrap;
    gap: var(--hojayfa-spacing-4);
    padding: var(--hojayfa-spacing-5);
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-xl-1);
    border: 2px solid var(--hojayfa-color-primary-1);
}

.hojayfa-gallery-info-1 {
    font-size: var(--hojayfa-font-size-xl-1);
    color: var(--hojayfa-color-neutral-900-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
}

.hojayfa-gallery-actions-1 {
    display: flex;
    gap: var(--hojayfa-spacing-3);
    flex-wrap: wrap;
}

.hojayfa-gallery-grid-1 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--hojayfa-spacing-4);
}

@media (max-width: 768px) {
    .hojayfa-gallery-grid-1 {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: var(--hojayfa-spacing-3);
    }
    
    .hojayfa-gallery-header-1 {
        padding: var(--hojayfa-spacing-4);
    }
    
    .hojayfa-gallery-info-1 {
        font-size: var(--hojayfa-font-size-lg-1);
    }
}

/* ==================== Gallery Item Component ==================== */
.hojayfa-gallery-item-1 {
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-xl-1);
    overflow: hidden;
    transition: all var(--hojayfa-transition-base-1);
    border: 2px solid var(--hojayfa-color-primary-1);
    cursor: move;
}

.hojayfa-gallery-item-1:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.hojayfa-gallery-item-1.hojayfa-selected-1 {
    border-color: var(--hojayfa-color-primary-1);
    box-shadow: 0 0 0 4px var(--hojayfa-color-primary-light-1);
}

.hojayfa-gallery-item-1.hojayfa-dragging-1 {
    opacity: 0.5;
}

.hojayfa-gallery-item-thumbnail-container-1 {
    position: relative;
    background-color: var(--hojayfa-color-dark-tertiary-1);
    overflow: hidden;
}

.hojayfa-gallery-item-thumbnail-1 {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: var(--hojayfa-color-dark-tertiary-1);
    cursor: pointer;
    padding: var(--hojayfa-spacing-2);
}

.hojayfa-gallery-item-info-1 {
    padding: var(--hojayfa-spacing-4);
    background: var(--hojayfa-color-dark-tertiary-1);
}

.hojayfa-gallery-item-name-1 {
    font-size: var(--hojayfa-font-size-base-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-neutral-900-1);
    margin-bottom: var(--hojayfa-spacing-2);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hojayfa-gallery-item-meta-1 {
    font-size: var(--hojayfa-font-size-sm-1);
    color: var(--hojayfa-color-neutral-600-1);
    margin-bottom: var(--hojayfa-spacing-3);
    font-weight: var(--hojayfa-font-weight-semibold-1);
}

.hojayfa-gallery-item-actions-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--hojayfa-spacing-2);
}

.hojayfa-icon-btn-1 {
    background: var(--hojayfa-color-primary-1);
    border: none;
    border-radius: var(--hojayfa-radius-md-1);
    padding: var(--hojayfa-spacing-3);
    cursor: pointer;
    transition: all var(--hojayfa-transition-fast-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    min-height: 44px;
}

.hojayfa-icon-btn-1:hover {
    background: var(--hojayfa-color-primary-hover-1);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}

.hojayfa-icon-btn-1 svg {
    width: 20px;
    height: 20px;
}

.hojayfa-page-number-badge-1 {
    position: absolute;
    top: var(--hojayfa-spacing-3);
    left: var(--hojayfa-spacing-3);
    background: var(--hojayfa-color-primary-1);
    color: white;
    font-size: var(--hojayfa-font-size-sm-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    padding: var(--hojayfa-spacing-2) var(--hojayfa-spacing-4);
    border-radius: var(--hojayfa-radius-full-1);
    box-shadow: var(--hojayfa-shadow-lg-1);
}

@media (max-width: 768px) {
    .hojayfa-gallery-item-thumbnail-1 {
        height: 160px;
    }
    
    .hojayfa-gallery-item-info-1 {
        padding: var(--hojayfa-spacing-3);
    }

    .hojayfa-icon-btn-1 {
        padding: var(--hojayfa-spacing-2);
        min-height: 48px;
    }

    .hojayfa-icon-btn-1 svg {
        width: 24px;
        height: 24px;
    }
}

/* ==================== Settings Panel Component ==================== */
.hojayfa-settings-panel-1 {
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-2xl-1);
    padding: var(--hojayfa-spacing-8);
    box-shadow: var(--hojayfa-shadow-xl-1);
    border: 3px solid var(--hojayfa-color-primary-1);
}

.hojayfa-settings-title-1 {
    font-size: var(--hojayfa-font-size-2xl-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    margin-bottom: var(--hojayfa-spacing-6);
    color: var(--hojayfa-color-neutral-900-1);
    text-align: center;
    padding-bottom: var(--hojayfa-spacing-4);
    border-bottom: 3px solid var(--hojayfa-color-primary-1);
}

.hojayfa-setting-group-1 {
    margin-bottom: var(--hojayfa-spacing-6);
}

.hojayfa-setting-label-1 {
    display: block;
    font-size: var(--hojayfa-font-size-base-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-neutral-900-1);
    margin-bottom: var(--hojayfa-spacing-3);
}

.hojayfa-setting-help-1 {
    font-size: var(--hojayfa-font-size-sm-1);
    color: var(--hojayfa-color-neutral-600-1);
    margin-top: var(--hojayfa-spacing-2);
    display: block;
    font-weight: var(--hojayfa-font-weight-semibold-1);
}

.hojayfa-form-control-1 {
    width: 100%;
    padding: var(--hojayfa-spacing-4);
    border: 2px solid var(--hojayfa-color-primary-1);
    border-radius: var(--hojayfa-radius-lg-1);
    font-size: var(--hojayfa-font-size-base-1);
    transition: all var(--hojayfa-transition-fast-1);
    font-family: var(--hojayfa-font-family-1);
    background-color: var(--hojayfa-color-dark-tertiary-1);
    font-weight: var(--hojayfa-font-weight-semibold-1);
    color: var(--hojayfa-color-neutral-900-1);
}

.hojayfa-form-control-1:focus {
    outline: none;
    border-color: var(--hojayfa-color-primary-1);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.3);
}

select.hojayfa-form-control-1 {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23dc2626'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

.hojayfa-radio-group-1 {
    display: flex;
    gap: var(--hojayfa-spacing-3);
    flex-wrap: wrap;
}

.hojayfa-radio-option-1 {
    flex: 1;
    min-width: 100px;
}

.hojayfa-radio-option-1 input[type="radio"] {
    display: none;
}

.hojayfa-radio-option-1 label {
    display: block;
    padding: var(--hojayfa-spacing-4);
    border: 3px solid var(--hojayfa-color-primary-1);
    border-radius: var(--hojayfa-radius-lg-1);
    text-align: center;
    cursor: pointer;
    transition: all var(--hojayfa-transition-fast-1);
    font-size: var(--hojayfa-font-size-base-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    background-color: var(--hojayfa-color-dark-tertiary-1);
    color: var(--hojayfa-color-neutral-900-1);
}

.hojayfa-radio-option-1 input[type="radio"]:checked + label {
    border-color: var(--hojayfa-color-primary-1);
    background-color: var(--hojayfa-color-primary-1);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.5);
}

.hojayfa-radio-option-1 label:hover {
    border-color: var(--hojayfa-color-primary-1);
    transform: translateY(-2px);
}

.hojayfa-slider-container-1 {
    display: flex;
    align-items: center;
    gap: var(--hojayfa-spacing-4);
}

input[type="range"].hojayfa-range-slider-1 {
    flex: 1;
    height: 10px;
    border-radius: var(--hojayfa-radius-full-1);
    background: var(--hojayfa-color-dark-tertiary-1);
    outline: none;
    -webkit-appearance: none;
}

input[type="range"].hojayfa-range-slider-1::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hojayfa-color-primary-1);
    cursor: pointer;
    transition: all var(--hojayfa-transition-fast-1);
    box-shadow: var(--hojayfa-shadow-md-1);
}

input[type="range"].hojayfa-range-slider-1::-webkit-slider-thumb:hover {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(220, 38, 38, 0.3);
}

input[type="range"].hojayfa-range-slider-1::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--hojayfa-color-primary-1);
    cursor: pointer;
    border: none;
    box-shadow: var(--hojayfa-shadow-md-1);
}

.hojayfa-slider-value-1 {
    font-size: var(--hojayfa-font-size-lg-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-primary-1);
    min-width: 70px;
    text-align: right;
}

@media (max-width: 768px) {
    .hojayfa-settings-panel-1 {
        padding: var(--hojayfa-spacing-6);
    }
    
    .hojayfa-radio-option-1 {
        min-width: 80px;
    }
}

/* ==================== Progress Bar Component ==================== */
.hojayfa-progress-section-1 {
    display: none;
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-2xl-1);
    padding: var(--hojayfa-spacing-8);
    box-shadow: var(--hojayfa-shadow-xl-1);
    border: 3px solid var(--hojayfa-color-primary-1);
}

.hojayfa-progress-section-1.hojayfa-active-1 {
    display: block;
}

.hojayfa-progress-header-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--hojayfa-spacing-4);
}

.hojayfa-progress-title-1 {
    font-size: var(--hojayfa-font-size-xl-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-neutral-900-1);
}

.hojayfa-progress-percentage-1 {
    font-size: var(--hojayfa-font-size-2xl-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-primary-1);
}

.hojayfa-progress-bar-container-1 {
    width: 100%;
    height: 16px;
    background-color: var(--hojayfa-color-dark-tertiary-1);
    border-radius: var(--hojayfa-radius-full-1);
    overflow: hidden;
    margin-bottom: var(--hojayfa-spacing-4);
    border: 2px solid var(--hojayfa-color-primary-1);
}

.hojayfa-progress-bar-fill-1 {
    height: 100%;
    background: linear-gradient(90deg, var(--hojayfa-color-primary-1) 0%, #f97316 100%);
    border-radius: var(--hojayfa-radius-full-1);
    transition: width var(--hojayfa-transition-slow-1);
    width: 0%;
}

.hojayfa-progress-info-1 {
    font-size: var(--hojayfa-font-size-base-1);
    color: var(--hojayfa-color-neutral-900-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    text-align: center;
}

/* ==================== Live Preview Component ==================== */
.hojayfa-preview-section-1 {
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-2xl-1);
    padding: var(--hojayfa-spacing-8);
    box-shadow: var(--hojayfa-shadow-xl-1);
    display: none;
    border: 3px solid var(--hojayfa-color-primary-1);
}

.hojayfa-preview-section-1.hojayfa-active-1 {
    display: block;
}

.hojayfa-preview-title-1 {
    font-size: var(--hojayfa-font-size-2xl-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-neutral-900-1);
    margin-bottom: var(--hojayfa-spacing-6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--hojayfa-spacing-3);
}

.hojayfa-preview-image-container-1 {
    background: var(--hojayfa-color-dark-tertiary-1);
    border-radius: var(--hojayfa-radius-xl-1);
    padding: var(--hojayfa-spacing-6);
    display: flex;
    flex-direction: column;
    gap: var(--hojayfa-spacing-4);
}

.hojayfa-preview-image-wrapper-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--hojayfa-color-dark-1);
    padding: var(--hojayfa-spacing-4);
    border-radius: var(--hojayfa-radius-lg-1);
    min-height: 400px;
}

.hojayfa-preview-image-1 {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: var(--hojayfa-radius-md-1);
    box-shadow: var(--hojayfa-shadow-xl-1);
}

.hojayfa-preview-info-1 {
    text-align: center;
    color: var(--hojayfa-color-neutral-900-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    font-size: var(--hojayfa-font-size-lg-1);
}

@media (max-width: 768px) {
    .hojayfa-preview-section-1 {
        padding: var(--hojayfa-spacing-6);
    }
    
    .hojayfa-preview-image-wrapper-1 {
        min-height: 300px;
    }

    .hojayfa-preview-image-1 {
        max-height: 400px;
    }
}

/* ==================== Toast Notification Component ==================== */
.hojayfa-toast-container-1 {
    position: fixed;
    top: var(--hojayfa-spacing-6);
    right: var(--hojayfa-spacing-6);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: var(--hojayfa-spacing-3);
    max-width: 400px;
}

.hojayfa-toast-1 {
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-xl-1);
    padding: var(--hojayfa-spacing-5);
    box-shadow: var(--hojayfa-shadow-xl-1);
    display: flex;
    align-items: start;
    gap: var(--hojayfa-spacing-3);
    animation: hojayfaSlideIn1 0.3s ease-out;
    border: 3px solid var(--hojayfa-color-primary-1);
}

@keyframes hojayfaSlideIn1 {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hojayfa-toast-1.hojayfa-success-1 {
    border-left-color: var(--hojayfa-color-success-1);
}

.hojayfa-toast-1.hojayfa-error-1 {
    border-left-color: var(--hojayfa-color-danger-1);
}

.hojayfa-toast-1.hojayfa-warning-1 {
    border-left-color: var(--hojayfa-color-warning-1);
}

.hojayfa-toast-icon-1 {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.hojayfa-toast-1.hojayfa-success-1 .hojayfa-toast-icon-1 {
    color: var(--hojayfa-color-success-1);
}

.hojayfa-toast-1.hojayfa-error-1 .hojayfa-toast-icon-1 {
    color: var(--hojayfa-color-danger-1);
}

.hojayfa-toast-1.hojayfa-warning-1 .hojayfa-toast-icon-1 {
    color: var(--hojayfa-color-warning-1);
}

.hojayfa-toast-content-1 {
    flex: 1;
}

.hojayfa-toast-title-1 {
    font-weight: var(--hojayfa-font-weight-bold-1);
    margin-bottom: var(--hojayfa-spacing-1);
    color: var(--hojayfa-color-neutral-900-1);
    font-size: var(--hojayfa-font-size-base-1);
}

.hojayfa-toast-message-1 {
    font-size: var(--hojayfa-font-size-sm-1);
    color: var(--hojayfa-color-neutral-700-1);
    font-weight: var(--hojayfa-font-weight-semibold-1);
}

.hojayfa-toast-close-1 {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--hojayfa-color-neutral-400-1);
    padding: 0;
    flex-shrink: 0;
}

.hojayfa-toast-close-1:hover {
    color: var(--hojayfa-color-primary-1);
}

@media (max-width: 768px) {
    .hojayfa-toast-container-1 {
        left: var(--hojayfa-spacing-3);
        right: var(--hojayfa-spacing-3);
        top: var(--hojayfa-spacing-3);
        max-width: none;
    }
}

/* ==================== Download Section ==================== */
.hojayfa-download-section-1 {
    display: none;
    background: var(--hojayfa-color-dark-secondary-1);
    border-radius: var(--hojayfa-radius-2xl-1);
    padding: var(--hojayfa-spacing-10);
    box-shadow: var(--hojayfa-shadow-xl-1);
    text-align: center;
    border: 3px solid var(--hojayfa-color-primary-1);
}

.hojayfa-download-section-1.hojayfa-active-1 {
    display: block;
}

.hojayfa-success-icon-1 {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--hojayfa-spacing-6);
    color: var(--hojayfa-color-success-1);
}

.hojayfa-download-title-1 {
    font-size: var(--hojayfa-font-size-3xl-1);
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: var(--hojayfa-color-neutral-900-1);
    margin-bottom: var(--hojayfa-spacing-4);
}

.hojayfa-download-info-1 {
    font-size: var(--hojayfa-font-size-lg-1);
    color: var(--hojayfa-color-neutral-700-1);
    margin-bottom: var(--hojayfa-spacing-8);
    font-weight: var(--hojayfa-font-weight-semibold-1);
}

.hojayfa-download-actions-1 {
    display: flex;
    gap: var(--hojayfa-spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== Advanced Settings Toggle ==================== */
.hojayfa-advanced-toggle-1 {
    background: var(--hojayfa-color-primary-1);
    border: none;
    width: 100%;
    padding: var(--hojayfa-spacing-4);
    border-radius: var(--hojayfa-radius-lg-1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: var(--hojayfa-font-weight-bold-1);
    color: white;
    transition: all var(--hojayfa-transition-fast-1);
    margin-top: var(--hojayfa-spacing-6);
    font-size: var(--hojayfa-font-size-base-1);
}

.hojayfa-advanced-toggle-1:hover {
    background: var(--hojayfa-color-primary-hover-1);
    transform: translateY(-2px);
}

.hojayfa-advanced-toggle-1 svg {
    transition: transform var(--hojayfa-transition-base-1);
}

.hojayfa-advanced-toggle-1.hojayfa-active-1 svg {
    transform: rotate(180deg);
}

.hojayfa-advanced-settings-1 {
    display: none;
    margin-top: var(--hojayfa-spacing-6);
}

.hojayfa-advanced-settings-1.hojayfa-active-1 {
    display: block;
}

/* ==================== Convert Button ==================== */
.hojayfa-convert-button-1 {
    width: 100%;
    margin-top: var(--hojayfa-spacing-6);
    padding: var(--hojayfa-spacing-5);
    font-size: var(--hojayfa-font-size-xl-1);
}