/* =========================================
   ASERHCO Selector — Frontend Styles
   Fuente: KOMET 18px (cargada desde el tema)
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Komet:wght@400;500;600&display=swap');

.aserhco-selector-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    font-family: 'Komet', 'Segoe UI', sans-serif;
    font-size: 18px;
}

.aserhco-selector-label {
    display: block;
    font-family: 'Komet', 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.aserhco-selector-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.aserhco-select-wrap {
    position: relative;
    width: 50%;
}

.aserhco-select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    font-family: 'Komet', 'Segoe UI', sans-serif;
    font-size: 18px;
    color: #1a1a2e;
    background: #ffffff;
    border: 1px solid #003E76;
    border-radius: 50px;
    padding: 10px 50px 10px 20px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.aserhco-select:focus {
    border-color: #003E76;
    box-shadow: 0 0 0 3px rgba(0, 62, 118, 0.12);
}

.aserhco-select option {
    font-size: 16px;
    color: #1a1a2e;
}

.aserhco-select-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23003E76' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    font-size: 0;
}

.aserhco-btn-wrap {
    width: 100%;
}

.aserhco-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-family: 'Komet', 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #ffffff !important;
    background-color: #003E76;
    border: none;
    border-radius: 50px;
    padding: 10px 32px;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

.aserhco-btn:hover:not(.aserhco-btn-disabled) {
    background-color: #0F0F11;
    transform: translateY(-1px);
}

.aserhco-btn:active:not(.aserhco-btn-disabled) {
    transform: translateY(0);
}

.aserhco-btn-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 480px) {
    .aserhco-select,
    .aserhco-btn {
        font-size: 16px;
    }
}
