/* components.css - Componentes específicos para XPRESS Cotizador */

/* ===== COMPONENTES DE ENTRADA MEJORADOS ===== */

/* Input con icono */
.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--xp-text-gray);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.input-with-icon input:focus + i,
.input-with-icon select:focus + i {
    color: var(--xp-orange);
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 48px !important;
    font-size: 15px;
}

/* Input con prefijo/sufijo */
.input-with-prefix {
    position: relative;
}

.input-with-prefix .prefix,
.input-with-prefix .suffix {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--xp-text-gray);
    font-family: var(--font-mono);
    font-weight: 500;
    pointer-events: none;
    font-size: 14px;
}

.input-with-prefix .prefix {
    left: 14px;
}

.input-with-prefix .suffix {
    right: 14px;
}

.input-with-prefix input {
    padding-left: 34px !important;
    font-size: 15px;
}

.input-with-prefix.suffix input {
    padding-right: 34px !important;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e7eb;
    border-radius: 34px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: var(--xp-white);
    border-radius: 50%;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

input:checked + .toggle-slider {
    background-color: var(--xp-orange);
    border-color: var(--xp-orange);
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* ===== COMPONENTES DE TARJETA ===== */

/* Tarjeta de información */
.info-card {
    background: var(--xp-white);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    border: 1px solid var(--xp-border);
    transition: all var(--transition-fast);
}

.info-card:hover {
    border-color: var(--xp-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.info-card .card-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.info-card .card-header i {
    width: 28px;
    height: 28px;
    color: var(--xp-orange);
}

.info-card .card-header h3 {
    font-weight: 600;
    font-size: 18px;
    color: var(--xp-text);
}

.info-card .card-content {
    color: var(--xp-text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Tarjeta de estadísticas */
.stats-card {
    background: linear-gradient(135deg, var(--xp-navy) 0%, var(--xp-navy-light) 100%);
    color: var(--xp-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.stats-card .stat-value {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.stats-card .stat-label {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

.stats-card .stat-change {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-mono);
}

.stats-card .stat-change.positive {
    color: #10B981;
}

.stats-card .stat-change.negative {
    color: #EF4444;
}

/* ===== COMPONENTES DE DATOS ===== */

/* Badges de estado */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mono);
}

.status-badge i {
    width: 14px;
    height: 14px;
}

.status-badge.pending {
    background: #FEF3C7;
    color: #D97706;
}

.status-badge.processing {
    background: #DBEAFE;
    color: #1D4ED8;
}

.status-badge.delivered {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.cancelled {
    background: #FEE2E2;
    color: #B91C1C;
}

/* Tags */
.tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 6px 14px;
    background: var(--xp-blue-soft);
    color: var(--xp-blue);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-mono);
}

.tag i {
    width: 14px;
    height: 14px;
}

.tag.orange {
    background: var(--xp-orange-soft);
    color: var(--xp-orange);
}

.tag.gray {
    background: #F3F4F6;
    color: #6B7280;
}

.tag.success {
    background: #D1FAE5;
    color: #065F46;
}

/* ===== COMPONENTES DE TABLA ===== */

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.data-table thead {
    background: var(--xp-bg-light);
    border-bottom: 2px solid var(--xp-border);
}

.data-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--xp-text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.data-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--xp-border);
    color: var(--xp-text);
    transition: background-color var(--transition-fast);
}

.data-table tr:hover td {
    background: var(--xp-orange-soft);
}

.data-table .table-actions {
    display: flex;
    gap: var(--space-xs);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.data-table tr:hover .table-actions {
    opacity: 1;
}

/* Tabla compacta para móviles */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    border: 1px solid var(--xp-border);
}

/* ===== COMPONENTES DE LISTA ===== */

.list-group {
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.list-item {
    display: flex;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--xp-border);
    transition: all var(--transition-fast);
    min-height: 80px;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background: var(--xp-bg-light);
}

.list-item .item-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xp-blue-soft);
    color: var(--xp-blue);
    border-radius: var(--radius-sm);
    margin-right: var(--space-lg);
    flex-shrink: 0;
}

.list-item .item-icon i {
    width: 22px;
    height: 22px;
}

.list-item .item-content {
    flex: 1;
}

.list-item .item-title {
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--xp-text);
    font-size: 15px;
}

.list-item .item-description {
    font-size: 14px;
    color: var(--xp-text-gray);
    line-height: 1.4;
}

.list-item .item-action {
    margin-left: var(--space-lg);
    flex-shrink: 0;
}

/* ===== COMPONENTES DE PROGRESO ===== */

.progress-bar {
    height: 10px;
    background: #F3F4F6;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--xp-orange), #FF8C42);
    border-radius: 5px;
    transition: width 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-sm);
    font-size: 15px;
}

.progress-label .progress-value {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--xp-text);
}

/* Progress steps */
.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: var(--space-xl) 0;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--xp-border);
    z-index: 1;
}

.progress-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--xp-white);
    border: 2px solid var(--xp-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    transition: all var(--transition-fast);
    font-weight: 600;
    color: var(--xp-text-gray);
}

.progress-step.active .step-circle {
    border-color: var(--xp-orange);
    background: var(--xp-orange);
    color: var(--xp-white);
}

.progress-step.completed .step-circle {
    border-color: var(--xp-orange);
    background: var(--xp-orange);
    color: var(--xp-white);
}

.progress-step.completed .step-circle i {
    width: 18px;
    height: 18px;
}

.step-label {
    font-size: 13px;
    color: var(--xp-text-gray);
    font-weight: 500;
}

.progress-step.active .step-label {
    color: var(--xp-orange);
    font-weight: 600;
}

/* ===== COMPONENTES DE MODAL ===== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 16, 33, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--xp-white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: var(--shadow-float);
}

.modal-backdrop.active .modal-container {
    transform: scale(1);
    opacity: 1;
}

.modal-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--xp-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.modal-close {
    background: none;
    border: none;
    color: var(--xp-text-gray);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--xp-bg-light);
    color: var(--xp-text);
}

.modal-close i {
    width: 22px;
    height: 22px;
}

.modal-body {
    padding: var(--space-xl);
}

.modal-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--xp-border);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-md);
}

/* Modal tamaño grande */
.modal-container.large {
    max-width: 800px;
}

/* Modal tamaño pequeño */
.modal-container.small {
    max-width: 400px;
}

/* ===== COMPONENTES DE ALERTA ===== */

.alert {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    border: 1px solid transparent;
}

.alert i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 6px;
    color: inherit;
    font-size: 15px;
}

.alert-message {
    font-size: 15px;
    line-height: 1.5;
}

.alert-close {
    background: none;
    border: none;
    color: inherit;
    opacity: 0.6;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.alert-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
}

.alert-close i {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Variantes de alerta */
.alert-info {
    background: var(--xp-blue-soft);
    color: var(--xp-blue);
    border-color: rgba(0, 102, 204, 0.2);
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border-color: rgba(5, 95, 70, 0.2);
}

.alert-warning {
    background: #FEF3C7;
    color: #92400E;
    border-color: rgba(146, 64, 14, 0.2);
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border-color: rgba(153, 27, 27, 0.2);
}

/* ===== COMPONENTES DE ACORDEÓN ===== */

.accordion {
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--xp-border);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: var(--space-xl);
    background: var(--xp-bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    background: var(--xp-orange-soft);
}

.accordion-header h3 {
    font-weight: 600;
    font-size: 17px;
    color: var(--xp-text);
}

.accordion-toggle {
    color: var(--xp-text-gray);
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
    color: var(--xp-orange);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.accordion-item.active .accordion-content {
    padding: var(--space-xl);
    max-height: 1000px;
}

/* ===== COMPONENTES DE PESTAÑAS ===== */

.tabs {
    border-bottom: 1px solid var(--xp-border);
    display: flex;
    gap: var(--space-md);
}

.tab-button {
    padding: var(--space-md) var(--space-lg);
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-weight: 500;
    color: var(--xp-text-gray);
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    top: 1px;
    font-size: 15px;
}

.tab-button:hover {
    color: var(--xp-text);
}

.tab-button.active {
    color: var(--xp-orange);
    border-bottom-color: var(--xp-orange);
}

.tab-content {
    padding: var(--space-xl) 0;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

/* Tabs verticales */
.tabs-vertical {
    flex-direction: column;
    border-bottom: none;
    border-right: 1px solid var(--xp-border);
    min-width: 220px;
}

.tabs-vertical .tab-button {
    border-bottom: none;
    border-right: 3px solid transparent;
    text-align: left;
}

.tabs-vertical .tab-button.active {
    border-right-color: var(--xp-orange);
}

/* ===== COMPONENTES DE MENSAJE ===== */

.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
}

.empty-state i {
    width: 72px;
    height: 72px;
    color: var(--xp-text-gray);
    margin-bottom: var(--space-xl);
    opacity: 0.5;
}

.empty-state h3 {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: var(--space-md);
    color: var(--xp-text);
}

.empty-state p {
    color: var(--xp-text-gray);
    max-width: 400px;
    margin: 0 auto var(--space-xl);
    font-size: 15px;
    line-height: 1.5;
}

/* Loading state */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl);
    text-align: center;
}

.loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--xp-border);
    border-top-color: var(--xp-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-xl);
}

.loading-text {
    color: var(--xp-text-gray);
    font-weight: 500;
    font-size: 15px;
}

/* ===== COMPONENTES DE MAPA ===== */

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--xp-bg-light);
    border: 1px solid var(--xp-border);
}

.map-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f0f2f5 0%, #e4e6e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background: var(--xp-border);
    top: 50%;
    left: 10%;
}

.map-placeholder::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 80%;
    background: var(--xp-border);
    left: 50%;
    top: 10%;
}

.map-marker {
    position: absolute;
    width: 28px;
    height: 28px;
    background: var(--xp-orange);
    border-radius: 50%;
    border: 4px solid var(--xp-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.map-marker::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--xp-white);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.map-origin {
    top: 30%;
    left: 30%;
}

.map-destination {
    top: 70%;
    left: 70%;
}

.map-route {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.map-route-line {
    position: absolute;
    top: 30%;
    left: 30%;
    width: 40%;
    height: 40%;
    border: 2px dashed var(--xp-orange);
    border-left: none;
    border-bottom: none;
    box-sizing: border-box;
}

.map-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--xp-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.map-distance {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--xp-text);
    font-size: 15px;
}

.map-time {
    color: var(--xp-text-gray);
    font-size: 15px;
}

/* ===== COMPONENTES DE CALENDARIO ===== */

.date-picker {
    position: relative;
}

.date-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    background: var(--xp-white);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.date-input:focus {
    outline: none;
    border-color: var(--xp-orange);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.calendar-popup {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    background: var(--xp-white);
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    z-index: 1000;
    display: none;
    width: 320px;
}

.calendar-popup.show {
    display: block;
    animation: slideUp 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--xp-border);
}

.calendar-nav {
    background: none;
    border: none;
    color: var(--xp-text-gray);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-xs);
    transition: all var(--transition-fast);
}

.calendar-nav:hover {
    background: var(--xp-bg-light);
    color: var(--xp-text);
}

.calendar-nav i {
    width: 18px;
    height: 18px;
}

.calendar-title {
    font-weight: 600;
    color: var(--xp-text);
    font-size: 15px;
}

.calendar-grid {
    padding: var(--space-lg);
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-weekday {
    text-align: center;
    font-size: 13px;
    color: var(--xp-text-gray);
    font-weight: 500;
    padding: 10px 0;
}

.calendar-day {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    cursor: pointer;
    font-size: 15px;
    transition: all var(--transition-fast);
}

.calendar-day:hover {
    background: var(--xp-orange-soft);
}

.calendar-day.selected {
    background: var(--xp-orange);
    color: var(--xp-white);
}

.calendar-day.disabled {
    color: var(--xp-text-gray);
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.disabled:hover {
    background: none;
}

/* ===== COMPONENTES DE RATING ===== */

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-star {
    width: 22px;
    height: 22px;
    color: #e5e7eb;
    transition: color var(--transition-fast);
}

.rating-star.filled {
    color: #F59E0B;
}

.rating-star.half-filled {
    color: #F59E0B;
    position: relative;
    overflow: hidden;
}

.rating-star.half-filled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: currentColor;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.rating-value {
    font-family: var(--font-mono);
    font-weight: 600;
    margin-left: var(--space-md);
    color: var(--xp-text);
    font-size: 15px;
}

.rating-count {
    font-size: 15px;
    color: var(--xp-text-gray);
    margin-left: var(--space-xs);
}

/* ===== COMPONENTES DE COMPARACIÓN ===== */

.comparison-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--xp-border);
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after {
    width: 50%;
    border-right: 2px solid var(--xp-white);
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--xp-white);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.comparison-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: var(--xp-white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.comparison-handle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    background: var(--xp-orange);
    border-radius: 50%;
}

/* ===== COMPONENTES DE TEXTO ANIMADO ===== */

.typing-animation {
    display: inline-block;
    position: relative;
}

.typing-animation::after {
    content: '|';
    position: absolute;
    right: -4px;
    animation: blink 1s infinite;
    color: var(--xp-orange);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.text-gradient {
    background: linear-gradient(135deg, var(--xp-orange), #FF8C42);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.text-shine {
    background: linear-gradient(
        90deg,
        var(--xp-text) 0%,
        var(--xp-orange) 50%,
        var(--xp-text) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ===== COMPONENTES DE EFECTO ESPECIAL ===== */

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hover-3d {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hover-3d:hover {
    transform: translateY(-4px) rotateX(5deg) rotateY(5deg);
}

.pulse-effect {
    position: relative;
}

.pulse-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(255, 105, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 105, 0, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 105, 0, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 105, 0, 0);
    }
}

/* ===== COMPONENTES DE ICONO ===== */

.icon-badge {
    position: relative;
    display: inline-block;
}

.badge-count {
    position: absolute;
    top: -10px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--xp-orange);
    color: var(--xp-white);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xp-blue-soft);
    color: var(--xp-blue);
    transition: all var(--transition-fast);
}

.icon-circle:hover {
    transform: scale(1.05);
}

.icon-circle.orange {
    background: var(--xp-orange-soft);
    color: var(--xp-orange);
}

.icon-circle.navy {
    background: var(--xp-navy);
    color: var(--xp-white);
}

/* ===== COMPONENTES DE SEPARADOR ===== */

.divider {
    height: 1px;
    background: var(--xp-border);
    margin: var(--space-xl) 0;
}

.divider-with-text {
    display: flex;
    align-items: center;
    margin: var(--space-xl) 0;
}

.divider-with-text::before,
.divider-with-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--xp-border);
}

.divider-text {
    padding: 0 var(--space-lg);
    color: var(--xp-text-gray);
    font-size: 15px;
    font-weight: 500;
}

/* ===== COMPONENTES DE TOOLTIP PERSONALIZADO ===== */

.custom-tooltip {
    position: relative;
    display: inline-block;
}

.custom-tooltip .tooltip-text {
    visibility: hidden;
    position: absolute;
    z-index: 1000;
    background: var(--xp-navy);
    color: var(--xp-white);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    max-width: 250px;
    text-align: center;
    line-height: 1.4;
}

.custom-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.custom-tooltip .tooltip-text.top {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

.custom-tooltip .tooltip-text.top::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--xp-navy) transparent transparent transparent;
}

.custom-tooltip .tooltip-text.bottom {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

.custom-tooltip .tooltip-text.bottom::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent var(--xp-navy) transparent;
}

/* ===== COMPONENTES DE SOMBRA ===== */

.shadow-xs { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05); }
.shadow-sm { box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06); }

/* ===== COMPONENTES DE BORDE ===== */

.border-light { border: 1px solid var(--xp-border); }
.border-medium { border: 1px solid rgba(0, 0, 0, 0.1); }
.border-heavy { border: 2px solid var(--xp-border); }

.border-t-light { border-top: 1px solid var(--xp-border); }
.border-b-light { border-bottom: 1px solid var(--xp-border); }
.border-l-light { border-left: 1px solid var(--xp-border); }
.border-r-light { border-right: 1px solid var(--xp-border); }

.border-orange { border-color: var(--xp-orange); }
.border-blue { border-color: var(--xp-blue); }
.border-success { border-color: var(--xp-success); }
.border-error { border-color: var(--xp-error); }

/* ===== COMPONENTES DE ESPACIADO ===== */

.spacing-xs { margin: var(--space-xs); padding: var(--space-xs); }
.spacing-sm { margin: var(--space-sm); padding: var(--space-sm); }
.spacing-md { margin: var(--space-md); padding: var(--space-md); }
.spacing-lg { margin: var(--space-lg); padding: var(--space-lg); }
.spacing-xl { margin: var(--space-xl); padding: var(--space-xl); }

/* ===== COMPONENTES DE VISIBILIDAD ===== */

.visible { visibility: visible; }
.invisible { visibility: hidden; }
.collapse { visibility: collapse; }

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ===== COMPONENTES DE CURSOR ===== */

.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-wait { cursor: wait; }
.cursor-text { cursor: text; }
.cursor-move { cursor: move; }
.cursor-not-allowed { cursor: not-allowed; }
.cursor-help { cursor: help; }

/* ===== COMPONENTES DE TRANSICIÓN ===== */

.transition-all { transition: all var(--transition-normal); }
.transition-colors { transition: color var(--transition-normal), background-color var(--transition-normal); }
.transition-transform { transition: transform var(--transition-normal); }
.transition-opacity { transition: opacity var(--transition-normal); }
.transition-shadow { transition: box-shadow var(--transition-normal); }

/* ===== COMPONENTES DE ANIMACIÓN ===== */

.animate-spin { animation: spin 1s linear infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* ===== COMPONENTES DE UTILIDAD ===== */

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.select-none {
    user-select: none;
}

.pointer-events-none {
    pointer-events: none;
}

.resize-none { resize: none; }
.resize-y { resize: vertical; }
.resize-x { resize: horizontal; }

.scroll-smooth {
    scroll-behavior: smooth;
}

.scroll-mt { scroll-margin-top: var(--space-xl); }

.list-none { list-style: none; }
.list-disc { list-style: disc; }
.list-decimal { list-style: decimal; }

.place-items-center {
    place-items: center;
}

.place-content-center {
    place-content: center;
}

.place-self-center {
    place-self: center;
}

/* ===== COMPONENTES DE GRID ESPECIAL ===== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    grid-auto-flow: dense;
}

.bento-item {
    background: var(--xp-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--xp-border);
    transition: all var(--transition-fast);
}

.bento-item:hover {
    border-color: var(--xp-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.bento-item.large {
    grid-column: span 2;
}

.bento-item.tall {
    grid-row: span 2;
}

/* ===== COMPONENTES DE BLOQUE DE CÓDIGO ===== */

.code-block {
    background: var(--xp-navy);
    color: #e5e7eb;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    font-family: var(--font-mono);
    font-size: 15px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-block .code-line {
    line-height: 1.5;
    margin-bottom: 6px;
}

.code-block .code-comment {
    color: #6B7280;
}

.code-block .code-keyword {
    color: #60A5FA;
}

.code-block .code-string {
    color: #34D399;
}

.code-block .code-number {
    color: #FBBF24;
}

.code-block .code-function {
    color: #F472B6;
}

/* ===== COMPONENTES DE TIMELINE ===== */

.timeline {
    position: relative;
    padding-left: var(--space-2xl);
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--xp-border);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-2xl);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--xp-white);
    border: 2px solid var(--xp-border);
    z-index: 2;
}

.timeline-item.active::before {
    border-color: var(--xp-orange);
    background: var(--xp-orange);
}

.timeline-item.completed::before {
    border-color: var(--xp-success);
    background: var(--xp-success);
}

.timeline-date {
    font-size: 13px;
    color: var(--xp-text-gray);
    margin-bottom: var(--space-xs);
    font-family: var(--font-mono);
}

.timeline-content {
    background: var(--xp-white);
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-fast);
}

.timeline-item:hover .timeline-content {
    border-color: var(--xp-orange);
    box-shadow: var(--shadow-card);
}

/* ===== COMPONENTES DE KPI ===== */

.kpi-card {
    background: var(--xp-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--xp-border);
    text-align: center;
    transition: all var(--transition-fast);
}

.kpi-card:hover {
    border-color: var(--xp-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.kpi-value {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--xp-text);
    margin-bottom: var(--space-xs);
    line-height: 1;
}

.kpi-label {
    font-size: 15px;
    color: var(--xp-text-gray);
    margin-bottom: var(--space-lg);
}

.kpi-trend {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-xs);
    font-family: var(--font-mono);
}

.kpi-trend.positive {
    background: #D1FAE5;
    color: #065F46;
}

.kpi-trend.negative {
    background: #FEE2E2;
    color: #991B1B;
}

/* ===== COMPONENTES DE CITA ===== */

.quote-block {
    position: relative;
    padding: var(--space-2xl);
    background: var(--xp-orange-soft);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--xp-orange);
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: var(--space-xl);
    left: var(--space-xl);
    font-size: 52px;
    color: var(--xp-orange);
    opacity: 0.2;
    font-family: serif;
    line-height: 1;
}

.quote-text {
    position: relative;
    font-size: 17px;
    font-style: italic;
    color: var(--xp-text);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.quote-author {
    font-weight: 600;
    color: var(--xp-orange);
    font-size: 15px;
}

.quote-role {
    font-size: 15px;
    color: var(--xp-text-gray);
}

/* ===== COMPONENTES DE TESTIMONIO ===== */

.testimonial-card {
    background: var(--xp-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--xp-border);
    position: relative;
    transition: all var(--transition-fast);
}

.testimonial-card:hover {
    border-color: var(--xp-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--xp-blue-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--xp-blue);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: var(--space-lg);
}

.testimonial-rating {
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.6;
    color: var(--xp-text);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--xp-text);
    margin-bottom: 4px;
    font-size: 15px;
}

.testimonial-company {
    font-size: 15px;
    color: var(--xp-text-gray);
}

/* ===== COMPONENTES DE CONTADOR ===== */

.counter-container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.counter-button {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xp-bg-light);
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-sm);
    color: var(--xp-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 18px;
}

.counter-button:hover:not(:disabled) {
    background: var(--xp-orange-soft);
    border-color: var(--xp-orange);
    color: var(--xp-orange);
}

.counter-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.counter-value {
    min-width: 70px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 600;
    color: var(--xp-text);
}

/* ===== COMPONENTES DE BÚSQUEDA ===== */

.search-box {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 14px 16px 14px 50px;
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-primary);
    font-size: 15px;
    background: var(--xp-white);
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--xp-orange);
    box-shadow: 0 0 0 3px rgba(255, 105, 0, 0.1);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--xp-text-gray);
    pointer-events: none;
    transition: color var(--transition-fast);
}

.search-input:focus + .search-icon {
    color: var(--xp-orange);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 8px;
    background: var(--xp-white);
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    z-index: 1000;
    max-height: 320px;
    overflow-y: auto;
    display: none;
}

.search-results.show {
    display: block;
    animation: slideUp 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.search-result-item {
    padding: 14px 18px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--xp-border);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--xp-orange-soft);
}

.search-result-item .result-title {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--xp-text);
    font-size: 15px;
}

.search-result-item .result-description {
    font-size: 13px;
    color: var(--xp-text-gray);
    line-height: 1.4;
}

.search-no-results {
    padding: var(--space-xl);
    text-align: center;
    color: var(--xp-text-gray);
    font-style: italic;
    font-size: 15px;
}

/* ===== COMPONENTES DE FILTRO ===== */

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 8px 16px;
    background: var(--xp-bg-light);
    border: 1px solid var(--xp-border);
    border-radius: 20px;
    font-size: 14px;
    color: var(--xp-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.filter-tag:hover {
    background: var(--xp-orange-soft);
    border-color: var(--xp-orange);
    color: var(--xp-orange);
}

.filter-tag.active {
    background: var(--xp-orange);
    border-color: var(--xp-orange);
    color: var(--xp-white);
}

.filter-tag i {
    width: 16px;
    height: 16px;
}

/* ===== COMPONENTES DE PAGINACIÓN ===== */

.pagination {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.pagination-button {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--xp-white);
    border: 1px solid var(--xp-border);
    border-radius: var(--radius-sm);
    color: var(--xp-text);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.pagination-button:hover:not(:disabled) {
    background: var(--xp-orange-soft);
    border-color: var(--xp-orange);
    color: var(--xp-orange);
}

.pagination-button.active {
    background: var(--xp-orange);
    border-color: var(--xp-orange);
    color: var(--xp-white);
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-ellipsis {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--xp-text-gray);
}

/* Badges de zona con colores */
.badge-local {
    background: var(--xp-blue-soft);
    color: var(--xp-blue);
}

.badge-urban {
    background: #E0F2FE;
    color: #0369A1;
}

.badge-primary {
    background: var(--xp-orange-soft);
    color: var(--xp-orange);
}

.badge-secondary {
    background: #D1FAE5;
    color: #065F46;
}

.badge-special {
    background: #FEF3C7;
    color: #92400E;
}

.badge-diferenciado {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-insular {
    background: #F3E8FF;
    color: #7C3AED;
}

/* ===== EFECTOS APPLE STYLE ===== */

.input-apple {
    background: #F5F5F7;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.input-apple:focus {
    background: #FFFFFF;
    border-color: #0066CC;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.15);
}

.card-apple {
    background: #FFFFFF;
    border: 1px solid #E5E5EA;
    transition: all 0.2s ease;
}

.card-apple:hover {
    border-color: #C7C7CC;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.card-apple.active {
    border-color: #0066CC;
    background: #F5F9FF;
}

/* ===== MEJORAS ESPECÍFICAS PARA EL COTIZADOR ===== */

/* Ajustes para inputs de dimensiones */
.dimension-inputs input {
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 16px;
}

.dimension-inputs input:focus {
    border-color: var(--xp-orange);
    background: var(--xp-white);
}

/* Mejora en select de ubicación */
.select-group select:focus {
    background: var(--xp-white);
}

/* Mejora en tarjetas de producto */
.product-card {
    transition: all 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Asegurar que todo se vea consistente */
*:focus {
    outline: none;
}

/* ===== RESPONSIVE PARA COMPONENTES ===== */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item.large,
    .bento-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .stats-card .stat-value {
        font-size: 32px;
    }
    
    .kpi-value {
        font-size: 28px;
    }
    
    .quote-block {
        padding: var(--space-xl);
    }
    
    .testimonial-card {
        padding: var(--space-xl);
    }
}

@media (max-width: 480px) {
    .filter-tags {
        justify-content: center;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tabs {
        flex-wrap: wrap;
    }
    
    .tabs-vertical {
        min-width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--xp-border);
    }
}