/* ===== Horse Search widget ===== */

.uha-search {
    box-sizing: border-box;
    position: relative;
}
.uha-search * {
    box-sizing: border-box;
}
.uha-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.uha-search-title {
    margin: 0;
    line-height: 1.3;
}
.uha-advanced-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
}
.uha-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 18px;
}
.uha-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.uha-field-label {
    font-size: 13px;
    line-height: 1.2;
}
.uha-fields select,
.uha-fields input[type="number"] {
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #fff;
    font-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: border-color 0.15s ease;
}
.uha-fields select {
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1.5L7 7.5L13 1.5' stroke='%236b7280' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px 8px;
    cursor: pointer;
}
.uha-fields input[type="number"]::-webkit-outer-spin-button,
.uha-fields input[type="number"]::-webkit-inner-spin-button {
    margin: 0;
}
.uha-price-inputs {
    display: flex;
    align-items: center;
    gap: 6px;
}
.uha-price-inputs input {
    min-width: 0;
}
.uha-price-sep {
    flex: none;
    opacity: 0.5;
}
.uha-search-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.uha-checks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.uha-check {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: #eef1f6;
    transition: background-color 0.15s ease;
}
.uha-check:has(input:checked) {
    background-color: #c7d2fe;
}
.uha-check input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
.uha-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    margin-left: auto;
}
.uha-search-btn svg,
.uha-search-btn i {
    font-size: 16px;
    line-height: 1;
    flex: none;
}
.uha-search-btn svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    display: block;
    fill: currentColor;
}
.uha-search-btn.is-loading {
    opacity: .7;
    cursor: progress;
}

@media (max-width: 767px) {
    .uha-search-footer {
        flex-direction: column;
        align-items: stretch;
    }
    .uha-search-btn {
        margin-left: 0;
        width: 100%;
    }
}

/* ===== Horse Search: live results dropdown ===== */

.uha-live-results {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 40;
    margin-top: 8px;
    background-color: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
}
.uha-live-results-list {
    max-height: 360px;
    overflow-y: auto;
}
.uha-live-status {
    padding: 22px 16px;
    text-align: center;
    font-size: 14px;
    color: #6b7280;
}
.uha-live-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.15s ease;
}
.uha-live-item:last-of-type {
    border-bottom: 0;
}
.uha-live-item:hover,
.uha-live-item:focus {
    background-color: #f8fafc;
}
.uha-live-thumb {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f3f4f6;
}
.uha-live-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uha-live-info {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.uha-live-title {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uha-live-meta {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.uha-live-price {
    flex: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}
.uha-live-view-all {
    display: block;
    text-align: center;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

/* ===== Featured Horses widget ===== */

.uha-featured {
    box-sizing: border-box;
}
.uha-featured * {
    box-sizing: border-box;
}
.uha-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}
.uha-grid-header-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.uha-grid-eyebrow {
    display: block;
    line-height: 1.2;
}
.uha-grid-title {
    margin: 0;
    line-height: 1.2;
}
.uha-grid-subtitle {
    margin: 2px 0 0;
    line-height: 1.5;
}
.uha-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    flex: none;
}
.uha-view-all svg {
    flex: none;
}
.uha-empty {
    padding: 32px;
    text-align: center;
    color: #6b7280;
    border: 1px dashed #d1d5db;
    border-radius: 12px;
}
.uha-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
@media (max-width: 1024px) {
    .uha-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .uha-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
.uha-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uha-card-image-link {
    display: block;
    text-decoration: none;
}
.uha-card-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.uha-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uha-card-placeholder {
    font-size: 42px;
    color: #cbd5e1;
}
.uha-badge {
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 5px 12px;
    border-radius: 999px;
    line-height: 1.4;
}
.uha-badge-featured {
    top: 12px;
    left: 12px;
    background-color: #f97316;
    color: #fff;
}
.uha-badge-new {
    top: 12px;
    left: 12px;
    background-color: #2563eb;
    color: #fff;
}
.uha-badge-verified {
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    background-color: #2563eb;
    color: #fff;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    z-index: 1;
}
.uha-favorite {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0;
    background-color: #fff;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12);
}
.uha-favorite.is-active {
    color: #ef4444;
}
.uha-favorite.is-active svg path {
    fill: currentColor;
}
.uha-card-body {
    padding: 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.uha-card-title-link {
    text-decoration: none;
}
.uha-card-title {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}
.uha-card-meta {
    margin: 0;
    font-size: 13px;
}
.uha-card-price-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}
.uha-card-price {
    font-size: 20px;
    line-height: 1.2;
    white-space: nowrap;
}
.uha-card-location {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
}
.uha-card-location span {
    overflow: hidden;
    text-overflow: ellipsis;
}
.uha-card-location svg {
    flex: none;
}
.uha-card-btn {
    margin-top: 14px;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* ===== Shared panel widgets: Upcoming Auctions / Top Verified Sellers / Meet Our Experts ===== */

.uha-panel {
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.05);
}
.uha-panel * {
    box-sizing: border-box;
}
.uha-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}
.uha-panel-title {
    margin: 0;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.3;
}

/* ----- Upcoming Auctions ----- */

.uha-auction-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.uha-auction-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.uha-auction-thumb {
    flex: none;
    display: block;
    width: 76px;
    height: 76px;
    border-radius: 14px;
    overflow: hidden;
    background-color: #f3f4f6;
}
.uha-auction-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uha-auction-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.uha-auction-title-link {
    text-decoration: none;
}
.uha-auction-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.uha-auction-bid {
    margin: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}
.uha-auction-bid-amount {
    font-weight: 700;
}
.uha-countdown {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}
.uha-countdown-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 5px 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    border-radius: 6px;
}
.uha-auction-btn {
    flex: none;
    align-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color 0.15s ease;
}

@media (max-width: 480px) {
    .uha-auction-row {
        flex-wrap: wrap;
    }
    .uha-auction-btn {
        margin-left: 92px;
    }
}

/* ----- Shared avatar (Top Verified Sellers / Meet Our Experts) ----- */

.uha-avatar {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    overflow: hidden;
}
.uha-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----- Top Verified Sellers ----- */

.uha-seller-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.uha-seller-row {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
    padding: 6px;
    margin: -6px;
    transition: background-color 0.15s ease;
}
.uha-seller-row.is-highlighted {
    background-color: #f8fafc;
}
.uha-seller-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.uha-seller-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.uha-seller-verified {
    display: inline-flex;
    line-height: 1;
}
.uha-seller-location,
.uha-seller-rating {
    margin: 0;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.uha-seller-location svg,
.uha-seller-rating svg {
    flex: none;
}
.uha-seller-rating svg {
    fill: #f59e0b;
}
.uha-follow-btn {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 22px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    white-space: nowrap;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* ----- Meet Our Experts ----- */

.uha-expert-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.uha-expert-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.uha-expert-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.uha-expert-name-link {
    text-decoration: none;
    color: inherit;
}
.uha-expert-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.uha-expert-role {
    margin: 0;
    font-size: 13px;
}
.uha-expert-rating {
    flex: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
}
.uha-expert-rating svg {
    flex: none;
    fill: #f59e0b;
}

/* ===== Dashboard Categories widget ===== */

.uha-cat-panel {
    box-sizing: border-box;
}
.uha-cat-panel * {
    box-sizing: border-box;
}
.uha-cat-heading {
    margin: 0 0 20px;
    line-height: 1.3;
}
.uha-cat-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}
.uha-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
}
.uha-cat-card-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.uha-cat-card-lift:hover {
    transform: translateY(-4px);
}
.uha-cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: #e9edfb;
    transition: background-color 0.2s ease;
    flex: none;
}
.uha-cat-icon i {
    line-height: 1;
    font-size: 22px;
    color: #3b5bdb;
}
.uha-cat-icon svg {
    width: 22px;
    height: 22px;
    fill: #3b5bdb;
    display: block;
}
.uha-cat-label {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

/* ===== Full Service widget ===== */

.uha-fs-panel {
    box-sizing: border-box;
}
.uha-fs-panel * {
    box-sizing: border-box;
}
.uha-fs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.uha-fs-eyebrow {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.uha-fs-heading {
    margin: 0 0 8px;
    line-height: 1.15;
}
.uha-fs-subtitle {
    margin: 0;
    line-height: 1.4;
}
.uha-fs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex: none;
}
.uha-fs-view-all svg {
    flex: none;
}
.uha-fs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.uha-fs-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.uha-fs-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e9edfb;
    transition: background-color 0.2s ease;
    flex: none;
    margin-bottom: 16px;
}
.uha-fs-icon i {
    line-height: 1;
    font-size: 20px;
    color: #3b5bdb;
}
.uha-fs-icon svg {
    width: 20px;
    height: 20px;
    fill: #3b5bdb;
    display: block;
}
.uha-fs-title {
    display: block;
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.uha-fs-desc {
    display: block;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
}

@media (max-width: 1024px) {
    .uha-fs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .uha-fs-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .uha-fs-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Breed Explorer widget ===== */

.uha-breed-explorer {
    box-sizing: border-box;
}
.uha-breed-explorer * {
    box-sizing: border-box;
}
.uha-breed-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}
.uha-breed-card {
    position: relative;
    display: block;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #334155;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    isolation: isolate;
}
.uha-breed-card-noimage {
    background-image: linear-gradient(#334155, #0f172a);
}
.uha-breed-card-zoom {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.uha-breed-card-zoom:hover {
    transform: translateY(-4px);
}
.uha-breed-card-zoom:hover .uha-breed-photo {
    transform: scale(1.06);
}
.uha-breed-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.35s ease;
}
.uha-breed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0) 80%);
    opacity: 0.7;
    z-index: 1;
}
.uha-breed-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.uha-breed-name {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}
.uha-breed-count {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}
@media (max-width: 1024px) {
    .uha-breed-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .uha-breed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== Community Testimonials widget ===== */

.uha-testimonials {
    box-sizing: border-box;
}
.uha-testimonials * {
    box-sizing: border-box;
}
.uha-testimonials-layout {
    display: flex;
    align-items: stretch;
    gap: 24px;
}
.uha-testimonials-main {
    flex: 1 1 0%;
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.uha-testimonial-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}
.uha-testimonial-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #eef0f3;
    border-radius: 18px;
    padding: 28px 24px;
}
.uha-testimonial-stars {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 14px;
}
.uha-testimonial-stars svg.is-empty {
    fill: #e5e7eb;
}
.uha-testimonial-quote {
    flex: 1;
    margin: 0 0 20px;
    font-size: 15.5px;
    font-style: italic;
    line-height: 1.55;
    color: #4b5563;
}
.uha-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.uha-testimonial-author-body {
    min-width: 0;
}
.uha-testimonial-name {
    margin: 0;
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
}
.uha-testimonial-location {
    margin: 2px 0 0;
    font-size: 13px;
    line-height: 1.3;
    color: #6b7280;
}
.uha-testimonial-promo {
    position: relative;
    flex: 0 0 340px;
    width: 340px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #1e2a8a;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.uha-promo-overlay {
    position: absolute;
    inset: 0;
    background-color: #1e2a8a;
    opacity: 0.72;
}
.uha-promo-content {
    position: relative;
    z-index: 1;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.uha-promo-heading {
    margin: 0;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.25;
    color: #ffffff;
}
.uha-promo-text {
    margin: 0 0 12px;
    font-size: 14.5px;
    line-height: 1.55;
    color: #dbe4ff;
}
.uha-promo-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.uha-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    background-color: #ffffff;
    color: #1e2a8a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}
.uha-store-btn svg {
    flex: none;
}
@media (max-width: 1024px) {
    .uha-testimonials-layout {
        flex-direction: column;
    }
    .uha-testimonial-promo {
        width: 100%;
        flex-basis: auto;
    }
    .uha-testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .uha-testimonial-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ===== Newsletter Signup Bar widget ===== */

.uha-newsletter {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    background-color: #eef4fb;
    border-radius: 20px;
    padding: 36px 48px;
}
.uha-newsletter * {
    box-sizing: border-box;
}
.uha-newsletter-intro {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}
.uha-newsletter-icon {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #1d3ec1;
    color: #ffffff;
    font-size: 22px;
}
.uha-newsletter-icon i,
.uha-newsletter-icon svg {
    color: #ffffff;
    fill: #ffffff;
    width: 1em;
    height: 1em;
}
.uha-newsletter-text {
    min-width: 0;
}
.uha-newsletter-heading {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
}
.uha-newsletter-subtitle {
    margin: 4px 0 0;
    font-size: 15px;
    line-height: 1.4;
    color: #6b7280;
}
.uha-newsletter-form {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.uha-newsletter-input {
    width: 260px;
    max-width: 100%;
    padding: 14px 22px;
    border: none;
    border-radius: 999px;
    background-color: #ffffff;
    color: #0f172a;
    font-size: 15px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.uha-newsletter-input::placeholder {
    color: #9ca3af;
}
.uha-newsletter-input:focus {
    outline: 2px solid #1d3ec1;
    outline-offset: 2px;
}
.uha-newsletter-btn {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border: none;
    border-radius: 999px;
    background-color: #1d3ec1;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.15s ease;
}
.uha-newsletter-btn:hover {
    background-color: #16309a;
}
@media (max-width: 767px) {
    .uha-newsletter {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 28px 24px;
    }
    .uha-newsletter-intro {
        flex-direction: column;
        text-align: center;
    }
    .uha-newsletter-form {
        justify-content: center;
    }
    .uha-newsletter-input {
        width: 100%;
    }
    .uha-newsletter-btn {
        width: 100%;
    }
}

/* ===== Site Header widget ===== */
.uha-header {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e6eaf1;
    z-index: 40;
}
.uha-header * {
    box-sizing: border-box;
}
.uha-header-sticky {
    position: sticky;
    top: 0;
}
.uha-header-inner {
    max-width: 1200px;
    margin-inline: auto;
    min-height: 76px;
    padding-inline: 20px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.uha-header-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
}
.uha-logo-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #1657ea;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    flex: 0 0 auto;
}
.uha-logo-image {
    display: block;
    height: 44px;
    width: auto;
}
.uha-logo-text {
    font-weight: 800;
    font-size: 20px;
    color: #0f172a;
    white-space: nowrap;
}
.uha-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
    flex: 0 0 auto;
    margin-inline-start: auto;
}
.uha-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background-color: #0f172a;
    transition: transform 160ms ease, opacity 160ms ease;
}
.uha-header.is-menu-open .uha-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.uha-header.is-menu-open .uha-menu-toggle span:nth-child(2) {
    opacity: 0;
}
.uha-header.is-menu-open .uha-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.uha-header-nav {
    flex: 1 1 auto;
    min-width: 0;
}
.uha-menu-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 16px;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    z-index: 1;
}
.uha-menu-close:hover {
    background-color: rgba(15, 23, 42, 0.06);
}
.uha-menu-close svg {
    width: 18px;
    height: 18px;
    pointer-events: none;
}
.uha-menu {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}
.uha-menu-item {
    position: relative;
}
.uha-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    background: none;
    padding: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
}
.uha-menu-item:hover .uha-menu-link,
.uha-menu-item.is-active .uha-menu-link {
    color: #1657ea;
}
.uha-menu-item.is-active .uha-menu-link {
    position: relative;
}
.uha-menu-item.is-active .uha-menu-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -26px;
    height: 2px;
    background-color: #1657ea;
    border-radius: 2px;
}
.uha-menu-caret {
    transition: transform 160ms ease;
    flex: 0 0 auto;
}
.uha-menu-item.has-dropdown:hover .uha-menu-caret,
.uha-menu-item.is-dropdown-open .uha-menu-caret {
    transform: rotate(180deg);
}
.uha-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 320px;
    /* Padding (not a top offset) keeps the gap to the parent item part of
       this element's own hit area, so moving the pointer from the menu
       link down into the panel never crosses "dead" space that isn't
       covered by either box — which is what was closing the dropdown
       before the cursor reached it. */
    padding-top: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
    z-index: 55;
}
.uha-menu-item.has-dropdown:hover .uha-dropdown,
.uha-menu-item.has-dropdown:focus-within .uha-dropdown,
.uha-menu-item.is-dropdown-open .uha-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.uha-dropdown-inner {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
    padding: 10px;
    display: flex;
    flex-direction: column;
}
.uha-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
}
.uha-dropdown-item:hover {
    background-color: #f3f6fb;
}
.uha-dropdown-item-icon {
    display: inline-flex;
    color: #1657ea;
    flex: 0 0 auto;
    margin-top: 2px;
}
.uha-dropdown-item-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.uha-dropdown-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}
.uha-dropdown-item-desc {
    font-size: 13px;
    color: #6b7280;
}
.uha-header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.uha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}
.uha-btn-login {
    font-size: 14px;
    font-weight: 700;
    color: #374151;
    padding: 10px 6px;
}
.uha-btn-primary {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background-color: #1657ea;
    border-radius: 999px;
    padding: 11px 22px;
}
.uha-btn-primary:hover {
    background-color: #0d47c7;
}
.uha-mobile-cta {
    display: none;
}

/* ===== Site Footer widget ===== */

.uha-footer {
    box-sizing: border-box;
}
.uha-footer * {
    box-sizing: border-box;
}
.uha-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 20px 32px;
}
.uha-footer-top {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 36px;
}
.uha-footer-brand {
    flex: 1 1 320px;
    flex-basis: 320px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.uha-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: fit-content;
}
.uha-footer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 800;
    line-height: 1;
    flex: 0 0 auto;
}
.uha-footer-logo-image {
    display: block;
    width: auto;
}
.uha-footer-logo-text {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}
.uha-footer-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
}
.uha-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}
.uha-footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 160ms ease;
}
.uha-footer-social-link svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.uha-footer-col {
    flex: 1 1 160px;
    min-width: 140px;
    display: flex;
    flex-direction: column;
}
.uha-footer-col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}
.uha-footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.uha-footer-col-link {
    font-size: 14px;
    text-decoration: none;
    line-height: 1.3;
    width: fit-content;
    transition: color 140ms ease;
}
.uha-footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.uha-footer-copyright {
    font-size: 13px;
    margin: 0;
}
.uha-footer-payments {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.uha-footer-payments-label {
    font-size: 13px;
    margin-right: 2px;
}
.uha-footer-payment-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    line-height: 1.2;
    white-space: nowrap;
}
@media (max-width: 767px) {
    .uha-footer-inner {
        padding-top: 44px;
    }
    .uha-footer-brand {
        flex-basis: 100%;
    }
    .uha-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}
