/* ============================================
   ESTILOS GENERALES DEL ADMIN DE ESHIP
   ============================================ */

/* Reset y base */
.eship-admin-wrap {
    margin: 20px 0;
}

.eship-admin-wrap h1 {
    color: #1d2327;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
}

/* Tarjetas base */
.eship-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    transition: all 0.2s ease;
}

.eship-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    transform: translateY(-1px);
}

/* Grid de estadísticas */
.eship-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.eship-stat-card {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.eship-stat-card:hover {
    background: #fff;
    border-color: #2271b1;
    transform: translateY(-2px);
}

.eship-stat-card h3 {
    margin-top: 0;
    font-size: 14px;
    color: #50575e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eship-stat-value {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
    color: #1d2327;
}

.eship-stat-desc {
    color: #646970;
    font-size: 13px;
    margin: 0;
}

/* Tarjeta de bienvenida */
.eship-welcome-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 25px;
    margin: 20px 0;
    border-left: 4px solid #2271b1;
}

.eship-welcome-card h2 {
    margin-top: 0;
    color: #1d2327;
    margin-bottom: 10px;
}

.eship-welcome-card p {
    color: #646970;
    margin-bottom: 20px;
}

/* ============================================
   VERIFICACIÓN DE DIRECCIÓN DE TIENDA
   ============================================ */

.eship-address-check {
    margin: 25px 0;
}

.eship-address-check h3,
.eship-shipping-check h3,
.eship-api-check h3 {
    margin-top: 0;
    color: #1d2327;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.eship-address-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.eship-address-valid {
    border-left: 4px solid #46b450;
}

.eship-address-missing {
    border-left: 4px solid #dc3232;
}

.eship-address-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.eship-address-header h4 {
    margin: 0 0 0 10px;
    color: #1d2327;
}

.eship-address-details {
    margin-bottom: 20px;
}

.eship-address-details p {
    margin: 8px 0;
    line-height: 1.5;
}

.eship-missing-fields ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.eship-missing-fields li {
    padding: 5px 0;
    color: #dc3232;
    display: flex;
    align-items: center;
}

.eship-missing-fields li .dashicons {
    margin-right: 8px;
}

.eship-address-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.eship-address-actions .button-large {
    padding: 8px 20px;
    font-size: 14px;
}

.eship-address-actions .dashicons {
    margin-right: 5px;
    vertical-align: middle;
}

.eship-note {
    color: #646970;
    font-size: 13px;
    margin: 5px 0 0 0;
    font-style: italic;
}

/* ============================================
   VERIFICACIÓN DE ZONAS DE ENVÍO
   ============================================ */

.eship-shipping-check {
    margin: 25px 0;
}

.eship-shipping-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.eship-shipping-valid {
    border-left: 4px solid #46b450;
}

.eship-shipping-missing {
    border-left: 4px solid #f0ad4e;
}

.eship-shipping-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.eship-shipping-header h4 {
    margin: 0 0 0 10px;
    color: #1d2327;
}

.eship-shipping-details {
    margin-bottom: 20px;
}

.eship-zones-list {
    margin: 15px 0;
}

.eship-zone-item {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 10px;
}

.eship-zone-name {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.eship-zone-name .dashicons {
    margin-right: 8px;
    color: #2271b1;
}

.eship-zone-name strong {
    flex: 1;
    color: #1d2327;
}

.eship-zone-status {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
}

.eship-zone-active {
    background: #c5e6cd;
    color: #18592c;
}

.eship-zone-inactive {
    background: #f0d6a1;
    color: #8a4f00;
}

.eship-zone-info {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 13px;
    color: #646970;
}

.eship-zone-countries,
.eship-zone-methods {
    display: flex;
    align-items: center;
}

.eship-zone-countries .dashicons,
.eship-zone-methods .dashicons {
    margin-right: 5px;
    font-size: 16px;
}

.eship-zone-methods-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.eship-method-tag {
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 3px;
    background: #f0f0f0;
    color: #50575e;
}

.eship-method-active {
    background: #c5d9ed;
    color: #135e96;
}

.eship-method-inactive {
    background: #f0f0f0;
    color: #8a8a8a;
    text-decoration: line-through;
}

.eship-warning-note {
    background: #fff8e5;
    border: 1px solid #ffb900;
    border-radius: 3px;
    padding: 10px;
    margin: 15px 0;
}

.eship-warning-note p {
    margin: 5px 0;
}

.eship-missing-info {
    background: #fcf0f1;
    border: 1px solid #d63638;
    border-radius: 3px;
    padding: 10px;
    margin: 15px 0;
}

.eship-shipping-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* ============================================
   VERIFICACIÓN DE API ESHIP
   ============================================ */

.eship-api-check {
    margin: 25px 0;
}

.eship-api-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.eship-api-valid {
    border-left: 4px solid #46b450;
}

.eship-api-missing {
    border-left: 4px solid #f0ad4e;
}

.eship-api-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.eship-api-header h4 {
    margin: 0 0 0 10px;
    color: #1d2327;
}

.eship-api-info {
    margin-bottom: 15px;
}

.eship-api-info p {
    margin: 5px 0;
}

.eship-api-info code {
    background: #f6f7f7;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: monospace;
}

.eship-api-connection {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 3px;
    padding: 10px;
    margin: 15px 0;
}

.eship-connection-success {
    background: #f0f6fc;
    border-color: #c5d9ed;
}

.eship-api-connection p {
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.eship-api-connection .dashicons {
    margin-right: 8px;
    color: #46b450;
}

.eship-api-note {
    background: #fff8e5;
    border: 1px solid #ffb900;
    border-radius: 3px;
    padding: 10px;
    margin: 15px 0;
}

.eship-api-note ol {
    margin: 5px 0;
    padding-left: 20px;
}

.eship-api-note li {
    margin: 3px 0;
}

.eship-api-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

/* Botón de prueba de conexión */
.eship-test-connection {
    position: relative;
}

.eship-test-connection .dashicons.spin {
    animation: eship-spin 1s linear infinite;
    margin-right: 5px;
}

@keyframes eship-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   ACCIONES RÁPIDAS
   ============================================ */

.eship-quick-actions {
    margin-top: 30px;
}

.eship-quick-actions h3 {
    margin-top: 0;
    color: #1d2327;
    margin-bottom: 15px;
}

.eship-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.eship-action-card {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    padding: 20px;
    text-decoration: none;
    color: #1d2327;
    transition: all 0.2s ease;
    display: block;
    position: relative;
}

.eship-action-card:hover {
    background: #fff;
    border-color: #2271b1;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: #1d2327;
}

.eship-action-card.eship-action-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.eship-action-card.eship-action-disabled:hover {
    transform: none;
    border-color: #dcdcde;
    box-shadow: none;
}

.eship-action-card .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: #2271b1;
}

.eship-action-card h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: #1d2327;
}

.eship-action-card p {
    margin: 0;
    color: #646970;
    font-size: 13px;
    line-height: 1.4;
}

.eship-action-requirement {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f0ad4e;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
}

/* ============================================
   BARRA DE PROGRESO
   ============================================ */

.eship-config-progress {
    text-align: center;
}

.eship-progress-bar {
    background: #f0f0f0;
    border-radius: 10px;
    height: 10px;
    margin: 10px 0;
    overflow: hidden;
    position: relative;
}

.eship-progress-fill {
    background: #2271b1;
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.eship-progress-text {
    font-size: 12px;
    color: #646970;
    margin-top: 5px;
}

/* ============================================
   ESTADOS DE PEDIDOS
   ============================================ */

.eship-order-status {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.eship-status-processing {
    background: #c5d9ed;
    color: #135e96;
}

.eship-status-completed {
    background: #c5e6cd;
    color: #18592c;
}

.eship-status-pending {
    background: #f0d6a1;
    color: #8a4f00;
}

.eship-status-cancelled {
    background: #f1aeb5;
    color: #842029;
}

.eship-status-on-hold {
    background: #f8e1b4;
    color: #856404;
}

.eship-status-failed {
    background: #f5c6cb;
    color: #721c24;
}

/* ============================================
   TARJETA DE ADVERTENCIA
   ============================================ */

.eship-warning-card {
    background: #fcf0f1;
    border: 1px solid #d63638;
    border-radius: 4px;
    padding: 20px;
    margin: 20px 0;
}

.eship-warning-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.eship-warning-header h3 {
    margin: 0 0 0 15px;
    color: #d63638;
}

.eship-warning-content p {
    margin: 0 0 15px 0;
    color: #1d2327;
    line-height: 1.5;
}

.eship-warning-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ============================================
   PESTAÑAS DE CONFIGURACIÓN
   ============================================ */

.eship-settings-tabs {
    margin: 20px 0;
}

.eship-tab-content {
    display: none;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-top: none;
    padding: 20px;
    border-radius: 0 0 4px 4px;
}

.eship-tab-content.active {
    display: block;
}

/* Navegación de pestañas personalizada */
.eship-settings-tabs .nav-tab-wrapper {
    margin-bottom: 0;
    border-bottom: 1px solid #ccd0d4;
}

.eship-settings-tabs .nav-tab {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    margin: 0 5px -1px 0;
    background: #f1f1f1;
    border: 1px solid #ccd0d4;
    border-bottom: none;
    color: #50575e;
    text-decoration: none;
    border-radius: 4px 4px 0 0;
    transition: all 0.2s ease;
}

.eship-settings-tabs .nav-tab:hover {
    background: #e5e5e5;
    color: #1d2327;
}

.eship-settings-tabs .nav-tab-active {
    background: #fff;
    border-bottom: 1px solid #fff;
    color: #1d2327;
}

/* Formularios de configuración */
.eship-settings-tabs table.form-table {
    margin-top: 0;
}

.eship-settings-tabs .form-table th {
    width: 200px;
    padding: 15px 10px 15px 0;
}

.eship-settings-tabs .form-table td {
    padding: 15px 10px;
}

.eship-settings-tabs .description {
    color: #646970;
    font-style: italic;
    margin-top: 5px;
}

.eship-settings-tabs input[type="text"],
.eship-settings-tabs input[type="number"],
.eship-settings-tabs input[type="email"],
.eship-settings-tabs input[type="password"],
.eship-settings-tabs input[type="url"],
.eship-settings-tabs select,
.eship-settings-tabs textarea {
    width: 100%;
    max-width: 400px;
}

.eship-settings-tabs input.small-text {
    width: 70px;
}

.eship-settings-tabs input.regular-text {
    width: 250px;
}

.eship-settings-tabs input.large-text {
    width: 100%;
    max-width: 600px;
}

.eship-settings-tabs textarea.large-text {
    width: 100%;
    max-width: 600px;
    min-height: 100px;
}

/* Select múltiple */
.eship-multiselect {
    min-height: 150px;
}

.eship-multiselect option {
    padding: 5px;
}

/* Grupos de radio/checkbox */
.eship-radio-group,
.eship-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.eship-radio-group label,
.eship-checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eship-radio-group input[type="radio"],
.eship-checkbox-group input[type="checkbox"] {
    margin: 0;
}

/* ============================================
   BOTONES PERSONALIZADOS
   ============================================ */

.eship-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: #2271b1;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.4;
}

.eship-button:hover {
    background: #135e96;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.eship-button-primary {
    background: #2271b1;
    border-color: #2271b1;
}

.eship-button-primary:hover {
    background: #135e96;
    border-color: #135e96;
}

.eship-button-secondary {
    background: #f6f7f7;
    border-color: #dcdcde;
    color: #1d2327;
}

.eship-button-secondary:hover {
    background: #fff;
    border-color: #2271b1;
    color: #1d2327;
}

.eship-button-large {
    padding: 12px 24px;
    font-size: 16px;
}

.eship-button-icon {
    font-size: 16px;
    line-height: 1;
}

/* ============================================
   LOADING Y SPINNERS
   ============================================ */

.eship-loading {
    text-align: center;
    padding: 30px;
}

.eship-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2271b1;
    border-radius: 50%;
    animation: eship-spin 1s linear infinite;
    margin-bottom: 15px;
}

.eship-loading p {
    color: #646970;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 782px) {
    /* Grids */
    .eship-stats-grid,
    .eship-actions-grid {
        grid-template-columns: 1fr;
    }

    /* Acciones */
    .eship-address-actions,
    .eship-shipping-actions,
    .eship-api-actions,
    .eship-warning-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .eship-address-actions .button,
    .eship-shipping-actions .button,
    .eship-api-actions .button,
    .eship-warning-actions .button {
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }

    /* Configuración */
    .eship-settings-tabs .form-table th,
    .eship-settings-tabs .form-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .eship-settings-tabs .form-table th {
        padding-bottom: 5px;
    }

    /* Pestañas */
    .eship-settings-tabs .nav-tab {
        display: block;
        width: 100%;
        margin: 0 0 5px 0;
        text-align: center;
    }

    /* Zonas */
    .eship-zone-info {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .eship-card,
    .eship-welcome-card,
    .eship-address-card,
    .eship-shipping-card,
    .eship-api-card {
        padding: 15px;
    }

    .eship-stat-value {
        font-size: 24px;
    }

    .eship-welcome-card h2 {
        font-size: 20px;
    }
}

/* ============================================
   ANIMACIONES
   ============================================ */

@keyframes eship-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.eship-fade-in {
    animation: eship-fadeIn 0.3s ease forwards;
}

@keyframes eship-slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        max-height: 500px;
    }
}

.eship-slide-in {
    animation: eship-slideIn 0.4s ease forwards;
    overflow: hidden;
}

/* ============================================
   UTILIDADES
   ============================================ */

.eship-text-success {
    color: #46b450;
}

.eship-text-warning {
    color: #f0ad4e;
}

.eship-text-error {
    color: #dc3232;
}

.eship-text-info {
    color: #2271b1;
}

.eship-mb-0 { margin-bottom: 0 !important; }
.eship-mt-20 { margin-top: 20px !important; }
.eship-mb-20 { margin-bottom: 20px !important; }
.eship-p-0 { padding: 0 !important; }

.eship-hidden {
    display: none !important;
}

.eship-visible {
    display: block !important;
}

/* Clearfix */
.eship-clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================
   NOTIFICACIONES Y ALERTAS
   ============================================ */

.eship-notice {
    padding: 12px 15px;
    margin: 15px 0;
    border-left: 4px solid;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.eship-notice-success {
    border-left-color: #46b450;
    background: #f0f6f0;
}

.eship-notice-warning {
    border-left-color: #f0ad4e;
    background: #fff8e5;
}

.eship-notice-error {
    border-left-color: #dc3232;
    background: #fcf0f1;
}

.eship-notice-info {
    border-left-color: #2271b1;
    background: #f0f6fc;
}

.eship-notice p {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eship-notice .dashicons {
    font-size: 20px;
}

/* ============================================
   TABLAS PERSONALIZADAS
   ============================================ */

.eship-table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
    background: #fff;
    border: 1px solid #ccd0d4;
    border-radius: 4px;
    overflow: hidden;
}

.eship-table th,
.eship-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
}

.eship-table th {
    background: #f6f7f7;
    font-weight: 600;
    color: #1d2327;
    border-bottom: 2px solid #e1e1e1;
}

.eship-table tr:last-child td {
    border-bottom: none;
}

.eship-table tr:hover td {
    background: #f9f9f9;
}

.eship-table-striped tr:nth-child(even) {
    background: #f9f9f9;
}

.eship-table-bordered {
    border: 1px solid #ccd0d4;
}

.eship-table-bordered th,
.eship-table-bordered td {
    border: 1px solid #e1e1e1;
}

/* ============================================
   COTIZADOR DE GUIAS (FRONTEND)
   ============================================ */

.eship-quoter {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.eship-quoter-header h3 {
    margin-top: 0;
    color: #1d2327;
    margin-bottom: 10px;
}

.eship-quoter-desc {
    color: #646970;
    margin-bottom: 20px;
    font-size: 14px;
}

.eship-form-group {
    margin-bottom: 20px;
}

.eship-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1d2327;
}

.eship-zipcode,
.eship-country,
.eship-input,
.eship-select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.eship-zipcode:focus,
.eship-country:focus,
.eship-input:focus,
.eship-select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.eship-weight-info {
    background: #f0f6fc;
    border: 1px solid #c5d9ed;
    border-radius: 4px;
    padding: 10px 15px;
    margin: 15px 0;
    color: #135e96;
}

.eship-weight-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eship-quoter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.eship-quoter-actions .button {
    flex: 1;
}

.eship-results {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.eship-results .eship-loading {
    text-align: center;
    color: #646970;
}

.eship-results-list {
    display: grid;
    gap: 15px;
}

.eship-service-item {
    background: #f6f7f7;
    border: 1px solid #dcdcde;
    border-radius: 6px;
    padding: 15px;
    transition: all 0.2s ease;
}

.eship-service-item:hover {
    background: #fff;
    border-color: #2271b1;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.eship-service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.eship-service-name {
    font-weight: 600;
    color: #1d2327;
    font-size: 16px;
}

.eship-service-price {
    font-weight: bold;
    color: #2271b1;
    font-size: 18px;
}

.eship-service-desc {
    color: #646970;
    font-size: 14px;
    margin-bottom: 10px;
}

.eship-service-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #8a8a8a;
}

.eship-service-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.eship-no-results {
    text-align: center;
    padding: 30px;
    color: #646970;
    font-style: italic;
}

.eship-disclaimer {
    text-align: center;
    color: #8a8a8a;
    font-size: 12px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

/* ============================================
   TEMAS DEL COTIZADOR
   ============================================ */

.eship-theme-light {
    --eship-primary: #2271b1;
    --eship-secondary: #f6f7f7;
    --eship-radius: 8px;
}

.eship-theme-dark {
    --eship-primary: #1d2327;
    --eship-secondary: #2c3338;
    --eship-radius: 8px;
    background: #1d2327;
    color: #f0f0f1;
    border-color: #2c3338;
}

.eship-theme-dark .eship-quoter-header h3,
.eship-theme-dark .eship-quoter-desc,
.eship-theme-dark .eship-form-group label {
    color: #f0f0f1;
}

.eship-theme-dark .eship-zipcode,
.eship-theme-dark .eship-country,
.eship-theme-dark .eship-input,
.eship-theme-dark .eship-select {
    background: #2c3338;
    border-color: #3c434a;
    color: #f0f0f1;
}

.eship-theme-blue {
    --eship-primary: #2271b1;
    --eship-secondary: #f0f6fc;
    --eship-radius: 8px;
    background: #f0f6fc;
    border-color: #c5d9ed;
}

.eship-theme-green {
    --eship-primary: #46b450;
    --eship-secondary: #f0f6f0;
    --eship-radius: 8px;
    background: #f0f6f0;
    border-color: #c5e6cd;
}

/* ============================================
   FIN DEL ARCHIVO
   ============================================ */