/**
 * Tour Editor Module 001 - Complete CSS
 * Minimal, clean design for all field types
 */
 

/* ===== BASE STYLES ===== */
.tour-manager-wrapper-mjk729 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

.tour-header-mjk729 {
    margin-bottom: 20px;
}

.tour-header-mjk729 h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
}

.save-status-mjk729 {
    font-size: 0.75rem;
    color: #6b7280;
}

/* ===== SECTION STYLES ===== */
.tour-section-mjk729 {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.section-title-mjk729 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-icon-mjk729 {
    stroke: #6b7280;
    width: 18px;
    height: 18px;
}

/* ===== GRID LAYOUT ===== */
.tour-grid-mjk729 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.field-group-mjk729 {
    flex: 1;
    min-width: 200px;
}

.field-group-mjk729.col-25 { flex-basis: calc(25% - 12px); }
.field-group-mjk729.col-50 { flex-basis: calc(50% - 8px); }
.field-group-mjk729.col-75 { flex-basis: calc(75% - 6px); }
.field-group-mjk729.col-100 { flex-basis: 100%; }

/* ===== FIELD STYLES ===== */
.field-group-mjk729 label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #4b5563;
    margin-bottom: 6px;
}

.field-hint-mjk729 {
    display: flex;
    align-items: center;
    margin-top: 6px;
    padding: 6px 10px;
    background: #eff6ff;
    border-left: 3px solid #3b82f6;
    border-radius: 3px;
    font-size: 0.75rem;
    color: #1e40af;
    line-height: 1.4;
}

.required-mjk729 {
    color: #dc2626;
}

.editable-field-mjk729 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.15s ease;
}

.editable-field-mjk729:hover {
    background: #ffffff;
    border-color: #d1d5db;
}

.editable-field-mjk729.editing {
    background: #ffffff;
    border-color: #3b82f6;
    outline: 2px solid rgba(59, 130, 246, 0.1);
}

.field-value-mjk729 {
    flex: 1;
    color: #111827;
    font-size: 0.9375rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* URL Field Specific Styling */
.field-value-mjk729.has-url-mjk729 {
    font-family: 'Courier New', Consolas, monospace;
    font-size: 0.875rem;
    color: #1d4ed8;
    cursor: help;
    word-break: break-all;
    max-width: 100%;
}

.field-value-mjk729.has-url-mjk729:hover {
    color: #2563eb;
    text-decoration: underline;
}

.edit-btn-mjk729 {
    opacity: 0;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    margin-left: 8px;
    transition: opacity 0.15s ease, color 0.15s ease;
}

.editable-field-mjk729:hover .edit-btn-mjk729 {
    opacity: 1;
}

.edit-btn-mjk729:hover {
    color: #3b82f6;
}

.edit-btn-mjk729:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    opacity: 1;
}

/* ===== EDIT CONTAINER ===== */
.edit-container-mjk729 {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.edit-input-mjk729 {
    flex: 1;
    padding: 6px 10px;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: border-color 0.15s ease;
}

.edit-input-mjk729:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

textarea.edit-input-mjk729 {
    resize: vertical;
    min-height: 60px;
}

select.edit-input-mjk729 {
    cursor: pointer;
}

/* ===== EDIT CONTROLS ===== */
.edit-controls-mjk729 {
    display: flex;
    gap: 4px;
}

.save-btn-mjk729,
.cancel-btn-mjk729 {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

.save-btn-mjk729 {
    background: #10b981;
}

.save-btn-mjk729:hover {
    background: #059669;
}

.cancel-btn-mjk729 {
    background: #6b7280;
}

.cancel-btn-mjk729:hover {
    background: #4b5563;
}

.save-btn-mjk729 svg,
.cancel-btn-mjk729 svg {
    width: 14px;
    height: 14px;
}

/* ===== MULTI-SELECT WRAPPER ===== */
.multi-select-wrapper-mjk729 {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 150px;
    overflow-y: auto;
    padding: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 3px;
    flex: 1;
}

.checkbox-label-mjk729 {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 2px 0;
}

.checkbox-label-mjk729:hover {
    background: #f9fafb;
}

.checkbox-label-mjk729 input[type="checkbox"] {
    margin-right: 8px;
}

.checkbox-label-mjk729 span {
    font-size: 0.875rem;
}

/* ===== BOOLEAN SWITCH ===== */
.switch-label-mjk729 {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.switch-label-mjk729 input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider-mjk729 {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: 0.3s;
    border-radius: 24px;
}

.switch-slider-mjk729:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.switch-label-mjk729 input:checked + .switch-slider-mjk729 {
    background-color: #3b82f6;
}

.switch-label-mjk729 input:checked + .switch-slider-mjk729:before {
    transform: translateX(20px);
}

/* ===== STATUS BADGES ===== */
.status-badge-mjk729 {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.status-active { 
    background: #dcfce7; 
    color: #166534;
}

.status-coming_soon { 
    background: #fef3c7; 
    color: #92400e;
}

.status-sold_out { 
    background: #fee2e2; 
    color: #991b1b;
}

.status-cancelled { 
    background: #f3f4f6; 
    color: #374151;
}

.status-draft { 
    background: #e0e7ff; 
    color: #3730a3;
}

/* ===== SPECIAL BADGES ===== */
.badge-mjk729 {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.badge-bestseller { 
    background: #fbbf24; 
    color: #78350f;
}

.badge-recommended { 
    background: #60a5fa; 
    color: #ffffff;
}

.badge-new { 
    background: #34d399; 
    color: #ffffff;
}

.badge-hot { 
    background: #f87171; 
    color: #ffffff;
}

.badge-lastminute { 
    background: #a78bfa; 
    color: #ffffff;
}

.badge-exclusive { 
    background: #1f2937; 
    color: #ffffff;
}

/* ===== BOOLEAN BADGES ===== */
.boolean-badge-mjk729 {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.boolean-badge-mjk729.true {
    background: #dcfce7;
    color: #166534;
}

.boolean-badge-mjk729.false {
    background: #f3f4f6;
    color: #6b7280;
}

/* ===== REPEATER FIELDS ===== */
.repeater-field-mjk729 {
    margin-top: 10px;
}

.repeater-items-mjk729 {
    margin-bottom: 12px;
    max-height: 300px;
    overflow-y: auto;
}

.repeater-item-mjk729 {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
    transition: all 0.15s ease;
}

.repeater-item-mjk729:hover {
    background: #ffffff;
    border-color: #d1d5db;
}

.dest-display-mjk729 {
    flex: 1;
    font-size: 0.9375rem;
    color: #111827;
}

.dest-display-mjk729 strong {
    font-weight: 600;
    color: #1f2937;
}

.highlight-item-mjk729 {
    display: flex;
    align-items: center;
}

.highlight-number-mjk729 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 12px;
    flex-shrink: 0;
}

.highlight-text-mjk729 {
    flex: 1;
    color: #111827;
}

.repeater-actions-mjk729 {
    display: flex;
    gap: 4px;
    margin-left: 12px;
}

.edit-repeater-btn-mjk729,
.delete-repeater-btn-mjk729 {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: color 0.15s ease;
}

.edit-repeater-btn-mjk729:hover {
    color: #3b82f6;
}

.delete-repeater-btn-mjk729:hover {
    color: #ef4444;
}

.add-repeater-btn-mjk729 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.15s ease;
}

.add-repeater-btn-mjk729:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.add-repeater-btn-mjk729 svg {
    width: 16px;
    height: 16px;
}

.no-items-mjk729 {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    font-style: italic;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    border-radius: 4px;
}

/* ===== WYSIWYG FIELD ===== */
.wysiwyg-field-mjk729 {
    margin-top: 10px;
}

.wysiwyg-content-mjk729 {
    padding: 15px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    min-height: 100px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #111827;
}

.wysiwyg-content-mjk729 p {
    margin: 0 0 1em;
}

.wysiwyg-content-mjk729 p:last-child {
    margin-bottom: 0;
}

.edit-wysiwyg-btn-mjk729 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 10px 20px;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.edit-wysiwyg-btn-mjk729:hover {
    background: #2563eb;
}

.edit-wysiwyg-btn-mjk729 svg {
    width: 16px;
    height: 16px;
}

/* ===== MODAL STYLES ===== */
.modal-mjk729 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
}

.modal-overlay-mjk729 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.modal-content-mjk729 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    padding: 25px;
    min-width: 400px;
    max-width: 500px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-large-mjk729 {
    max-width: 900px;
    width: 90%;
}

.modal-content-mjk729 h3 {
    margin: 0 0 20px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-fields-mjk729 {
    margin-bottom: 20px;
}

.modal-fields-mjk729 label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.modal-input-mjk729 {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 0.9375rem;
    margin-bottom: 16px;
    transition: border-color 0.15s ease;
}

.modal-input-mjk729:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modal-actions-mjk729 {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.modal-save-btn-mjk729,
.modal-save-wysiwyg-btn-mjk729,
.modal-cancel-btn-mjk729 {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.modal-save-btn-mjk729,
.modal-save-wysiwyg-btn-mjk729 {
    background: #3b82f6;
    color: white;
}

.modal-save-btn-mjk729:hover,
.modal-save-wysiwyg-btn-mjk729:hover {
    background: #2563eb;
}

.modal-cancel-btn-mjk729 {
    background: #f3f4f6;
    color: #374151;
}

.modal-cancel-btn-mjk729:hover {
    background: #e5e7eb;
}

/* ===== LOADING OVERLAY ===== */
.loading-overlay-mjk729 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner-mjk729 {
    width: 36px;
    height: 36px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-mjk729 0.8s linear infinite;
}

@keyframes spin-mjk729 {
    to { transform: rotate(360deg); }
}

/* ===== NOTIFICATIONS ===== */
.notification-mjk729 {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.notification-mjk729.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-success-mjk729 {
    background: #ffffff;
    border-left: 4px solid #10b981;
    color: #065f46;
}

.notification-error-mjk729 {
    background: #ffffff;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

/* ===== ERROR STATES ===== */
.tour-error-mjk729 {
    padding: 12px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 4px;
    color: #991b1b;
    font-size: 0.875rem;
}

/* ===== WORDPRESS EDITOR OVERRIDES ===== */
.modal-fields-mjk729 .wp-editor-wrap {
    margin-bottom: 0;
}

.modal-fields-mjk729 .mce-container {
    border: 1px solid #d1d5db;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .tour-manager-wrapper-mjk729 {
        padding: 10px;
    }
    
    .tour-section-mjk729 {
        padding: 16px;
    }
    
    .tour-grid-mjk729 {
        flex-direction: column;
    }
    
    .field-group-mjk729 {
        flex-basis: 100% !important;
        min-width: 100%;
    }
    
    .modal-content-mjk729 {
        width: 95%;
        min-width: auto;
        padding: 20px;
    }
    
    .notification-mjk729 {
        right: 10px;
        left: 10px;
    }
    
    .repeater-items-mjk729 {
        max-height: 200px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .edit-btn-mjk729,
    .edit-controls-mjk729,
    .add-repeater-btn-mjk729,
    .edit-wysiwyg-btn-mjk729,
    .repeater-actions-mjk729 {
        display: none !important;
    }
    
    .editable-field-mjk729 {
        border: none;
        padding: 0;
        background: none;
    }
}

/* ===== ACCESSIBILITY ===== */
.edit-btn-mjk729:focus,
.save-btn-mjk729:focus,
.cancel-btn-mjk729:focus,
.add-repeater-btn-mjk729:focus,
.edit-repeater-btn-mjk729:focus,
.delete-repeater-btn-mjk729:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ===== UTILITIES ===== */
.disabled-mjk729 {
    opacity: 0.6;
    pointer-events: none;
}

.hidden-mjk729 {
    display: none !important;
}

/* ===== AIRLINE LOGO UPLOAD ===== */
.airline-details-wrapper-mjk729 {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.airline-logo-upload-mjk729 {
    flex-shrink: 0;
}

.logo-dropzone-mjk729 {
    position: relative;
    width: 200px;
    height: 100px;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
}

.logo-dropzone-mjk729:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.logo-dropzone-mjk729.dragover {
    border-color: #3b82f6;
    background: #dbeafe;
    transform: scale(1.02);
}

.logo-dropzone-mjk729.uploading {
    opacity: 0.6;
    pointer-events: none;
}

.logo-placeholder-mjk729 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 16px;
    text-align: center;
}

.logo-icon-mjk729 {
    color: #9ca3af;
    margin-bottom: 8px;
}

.logo-text-mjk729 {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

.logo-hint-mjk729 {
    font-size: 0.6875rem;
    color: #9ca3af;
}

/* Logo Preview */
.logo-preview-mjk729 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    background: #ffffff;
}

.logo-overlay-mjk729 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.logo-dropzone-mjk729.has-image:hover .logo-overlay-mjk729 {
    opacity: 1;
}

.logo-remove-btn-mjk729 {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logo-remove-btn-mjk729:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.logo-remove-btn-mjk729 svg {
    width: 20px;
    height: 20px;
}

/* Airline Details Field */
.airline-details-field-mjk729 {
    flex: 1;
    min-width: 0;
}

.airline-details-field-mjk729 .editable-field-mjk729 {
    min-height: 100px;
    align-items: flex-start;
}

.airline-details-field-mjk729 .field-value-mjk729 {
    padding-top: 4px;
}

/* Loading Spinner for Upload */
.logo-upload-spinner-mjk729 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    border: 3px solid #e5e7eb;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin-mjk729 0.8s linear infinite;
}

/* Responsive for Airline Logo */
@media (max-width: 768px) {
    .airline-details-wrapper-mjk729 {
        flex-direction: column;
    }

    .logo-dropzone-mjk729 {
        width: 100%;
        max-width: 300px;
    }
}

/* ===== SCROLLBAR STYLING ===== */
.repeater-items-mjk729::-webkit-scrollbar,
.multi-select-wrapper-mjk729::-webkit-scrollbar {
    width: 6px;
}

.repeater-items-mjk729::-webkit-scrollbar-track,
.multi-select-wrapper-mjk729::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.repeater-items-mjk729::-webkit-scrollbar-thumb,
.multi-select-wrapper-mjk729::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.repeater-items-mjk729::-webkit-scrollbar-thumb:hover,
.multi-select-wrapper-mjk729::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* ========================================
   STICKY TITLE STYLES
   ======================================== */
.sticky-title-container-001 {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sticky State */
.sticky-title-container-001.is-sticky-001 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin-bottom: 0;
    border-radius: 0;
    padding: 12px 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-title-container-001.is-sticky-001.is-visible-001 {
    opacity: 1;
    transform: translateY(0);
}

/* Content Wrapper */
.sticky-title-content-001 {
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-title-wrapper-001 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.sticky-title-main-001 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 1 auto;
    min-width: 0;
}

/* Title Text */
.sticky-title-text-001 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: font-size 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-title-container-001.is-sticky-001 .sticky-title-text-001 {
    font-size: 16px;
}

/* Meta Information */
.sticky-title-meta-001 {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.sticky-meta-item-001 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    backdrop-filter: blur(10px);
    transition: all 0.2s ease;
}

.sticky-meta-item-001:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.sticky-meta-icon-001 {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

/* Sticky State Meta Adjustments */
.sticky-title-container-001.is-sticky-001 .sticky-meta-item-001 {
    font-size: 12px;
    padding: 3px 10px;
}

.sticky-title-container-001.is-sticky-001 .sticky-title-main-001 {
    gap: 6px;
}

/* ========================================
   NAVIGATION TABS
   ======================================== */
.sticky-nav-tabs-001 {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-shrink: 0;
}

.sticky-tab-btn-001 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    white-space: nowrap;
}

.sticky-tab-btn-001:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-tab-btn-001.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #667eea;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.sticky-tab-btn-001.active:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #5568d3;
    transform: translateY(-2px);
}

.sticky-tab-icon-001 {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.sticky-tab-text-001 {
    font-size: 13px;
    font-weight: 600;
}

/* Sticky State Tabs */
.sticky-title-container-001.is-sticky-001 .sticky-tab-btn-001 {
    padding: 6px 12px;
}

.sticky-title-container-001.is-sticky-001 .sticky-tab-text-001 {
    font-size: 12px;
}

.sticky-title-container-001.is-sticky-001 .sticky-tab-icon-001 {
    width: 14px;
    height: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .sticky-title-wrapper-001 {
        gap: 20px;
    }

    .sticky-tab-text-001 {
        display: none;
    }

    .sticky-tab-btn-001 {
        padding: 10px;
        gap: 0;
    }

    .sticky-nav-tabs-001 {
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .sticky-title-container-001 {
        padding: 15px 20px;
        border-radius: 8px;
    }

    .sticky-title-container-001.is-sticky-001 {
        padding: 10px 15px;
    }

    .sticky-title-wrapper-001 {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sticky-title-text-001 {
        font-size: 18px;
        white-space: normal;
    }

    .sticky-title-container-001.is-sticky-001 .sticky-title-text-001 {
        font-size: 14px;
        white-space: nowrap;
    }

    .sticky-title-meta-001 {
        gap: 8px;
    }

    .sticky-meta-item-001 {
        font-size: 12px;
        padding: 3px 10px;
    }

    .sticky-title-container-001.is-sticky-001 .sticky-meta-item-001 {
        font-size: 10px;
        padding: 2px 8px;
    }

    .sticky-title-container-001.is-sticky-001 .sticky-title-wrapper-001 {
        flex-direction: row;
        align-items: center;
    }

    .sticky-title-container-001.is-sticky-001 .sticky-title-main-001 {
        flex: 1;
        min-width: 0;
    }

    .sticky-nav-tabs-001 {
        gap: 3px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sticky-nav-tabs-001::-webkit-scrollbar {
        display: none;
    }

    .sticky-tab-btn-001 {
        padding: 8px;
    }

    .sticky-title-container-001.is-sticky-001 .sticky-tab-btn-001 {
        padding: 6px;
    }
}

@media (max-width: 480px) {
    .sticky-title-text-001 {
        font-size: 18px;
    }

    .sticky-title-container-001.is-sticky-001 .sticky-title-text-001 {
        font-size: 14px;
    }

    .sticky-title-meta-001 {
        gap: 6px;
    }

    .sticky-meta-item-001 {
        font-size: 11px;
        padding: 2px 8px;
    }
}

/* Animation for Initial Load */
@keyframes slideInFromTop {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-title-container-001:not(.is-sticky-001) {
    animation: slideInFromTop 0.5s ease-out;
}
/* ========================================
   SECTION 005 - STATUS ^& PROMOTIONS
   ======================================== */
.section-005 .tour-grid-mjk729 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.section-005 .field-group-mjk729 { flex: none; min-width: 0; }
.section-005 .editable-field-mjk729 { justify-content: space-between; }
.section-005 .status-badge-mjk729, .section-005 .badge-mjk729, .section-005 .boolean-badge-mjk729 { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 6px; font-size: 0.875rem; font-weight: 600; }
/* SECTION 006 - TOUR HIGHLIGHTS */
.section-006 .repeater-field-mjk729 { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; padding: 16px; }
.section-006 .repeater-items-mjk729 { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; max-height: none; }
.section-006 .highlight-item-mjk729 { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; margin-bottom: 0; transition: all 0.2s ease; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.section-006 .highlight-item-mjk729:hover { border-color: #3b82f6; box-shadow: 0 4px 6px -1px rgba(59,130,246,0.1); }
.section-006 .highlight-number-mjk729 { width: 28px; height: 28px; background: linear-gradient(135deg, #667eea 0%%, #764ba2 100%%); font-size: 0.8125rem; font-weight: 700; }
.section-006 .add-repeater-btn-mjk729 { width: 100%%; justify-content: center; padding: 12px 20px; background: #ffffff; border: 2px dashed #d1d5db; border-radius: 8px; font-weight: 600; color: #6b7280; }
.section-006 .add-repeater-btn-mjk729:hover { border-color: #3b82f6; border-style: solid; background: #eff6ff; color: #3b82f6; }
.section-006 .no-items-mjk729 { background: #ffffff; border: 2px dashed #e5e7eb; border-radius: 8px; padding: 30px 20px; }
@media (max-width: 1024px) { .section-005 .tour-grid-mjk729 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .section-005 .tour-grid-mjk729 { grid-template-columns: 1fr; } }
