.eb-home-v3 {
    --eb-bg: #fff;
    --eb-surface: #f7f8fa;
    --eb-ink: #171b26;
    --eb-muted: #667085;
    --eb-accent: #f5b82e;
    --eb-success: #20a464;
    --eb-border: #e8eaef;
    --eb-radius-card: 14px;
    --eb-radius-lg: 22px;
    --eb-shadow: 0 7px 24px rgba(23, 27, 38, .06);
    --eb-font-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    --eb-font-display: "PT Serif", Georgia, serif;
    --eb-lh-title: 1.3;
    --eb-lh-meta: 1.35;
    --eb-lh-body: 1.45;
    --eb-lh-price: 1.2;
    --eb-gap-tight: 5px;
    --eb-gap-related: 9px;
    margin: 0;
    background: var(--eb-bg);
    color: var(--eb-ink);
    font-family: var(--eb-font-ui);
    -webkit-font-smoothing: antialiased;
}

.eb-home-v3.eb-auth-modal-open {
    overflow: hidden;
}

.eb-home-v3 .eb-auth-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.eb-home-v3 .eb-auth-modal[hidden] {
    display: none;
}

.eb-home-v3 .eb-auth-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .44);
    backdrop-filter: blur(6px);
}

.eb-home-v3 .eb-auth-dialog {
    position: relative;
    z-index: 1;
    width: min(460px, calc(100vw - 32px));
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    border: 1px solid rgba(226, 232, 240, .95);
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .16);
}

.eb-home-v3 .eb-auth-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--eb-border);
    border-radius: 50%;
    background: #fff;
    color: #475467;
    cursor: pointer;
}

.eb-home-v3 .eb-auth-close:hover {
    background: var(--eb-surface);
    color: var(--eb-ink);
}

.eb-home-v3 .eb-auth-close span {
    margin-top: -2px;
    font-size: 24px;
    line-height: 1;
}

.eb-home-v3 .eb-auth-head {
    padding-right: 40px;
}

.eb-home-v3 .eb-auth-head p {
    margin: 0 0 4px;
    color: var(--eb-accent);
    font-size: 18px;
    font-weight: 700;
}

.eb-home-v3 .eb-auth-head h2 {
    margin: 0 0 4px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}

.eb-home-v3 .eb-auth-head span {
    display: block;
    margin-bottom: 16px;
    color: var(--eb-muted);
    font-size: 14px;
    line-height: 1.45;
}

.eb-home-v3 .eb-auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 12px;
    border-radius: 12px;
    padding: 4px;
    background: #f3f4f6;
}

.eb-home-v3 .eb-auth-tabs button {
    position: relative;
    min-height: 44px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.eb-home-v3 .eb-auth-tabs button[aria-selected="true"] {
    background: #fff;
    color: var(--eb-ink);
    box-shadow: 0 2px 6px rgba(15, 23, 42, .06);
}

.eb-home-v3 .eb-auth-tabs button[aria-selected="true"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--eb-accent);
}

.eb-home-v3 .eb-auth-type-switch {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin: 0 0 2px;
    border: 0;
    border-radius: 12px;
    padding: 4px;
    background: #f3f4f6;
}

.eb-home-v3 .eb-auth-type-switch legend {
    padding: 0;
}

.eb-home-v3 .eb-auth-type-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    border-radius: 9px;
    color: #475467;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.eb-home-v3 .eb-auth-type-option:has(input:checked) {
    background: #fff;
    color: var(--eb-ink);
    box-shadow: 0 2px 6px rgba(15, 23, 42, .06);
}

.eb-home-v3 .eb-auth-type-option:has(input:checked)::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18px;
    height: 2px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--eb-accent);
}

.eb-home-v3 .eb-auth-type-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: 0;
    opacity: 0;
    clip: rect(0, 0, 0, 0);
}

.eb-home-v3 .eb-auth-type-option:has(input:focus-visible) {
    outline: 2px solid rgba(245, 184, 46, .68);
    outline-offset: 2px;
}

.eb-home-v3 .eb-auth-type-copy {
    margin: -4px 0 0;
    color: var(--eb-muted);
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.4;
}

.eb-home-v3 .eb-auth-message {
    margin-bottom: 10px;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 11px 12px;
    background: #fff1f2;
    color: #991b1b;
    font-size: 14px;
    line-height: 1.4;
}

.eb-home-v3 .eb-auth-form {
    display: grid;
    gap: 12px;
}

.eb-home-v3 .eb-auth-form[hidden] {
    display: none;
}

.eb-home-v3 .eb-auth-form label {
    display: grid;
    gap: 6px;
    color: #344054;
    font-size: 14px;
    font-weight: 600;
}

.eb-home-v3 .eb-auth-form label[hidden] {
    display: none;
}

.eb-home-v3 .eb-auth-form input[type="text"],
.eb-home-v3 .eb-auth-form input[type="email"],
.eb-home-v3 .eb-auth-form input[type="tel"],
.eb-home-v3 .eb-auth-form input[type="password"] {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 0 14px;
    background: #fff;
    color: var(--eb-ink);
    font-size: 14px;
    font-weight: 500;
}

.eb-home-v3 .eb-auth-form input:focus-visible,
.eb-home-v3 .eb-auth-tabs button:focus-visible,
.eb-home-v3 .eb-auth-close:focus-visible,
.eb-home-v3 .eb-toast-close:focus-visible {
    outline: 2px solid rgba(245, 184, 46, .68);
    outline-offset: 3px;
}

.eb-home-v3 .eb-auth-password-wrap {
    position: relative;
    display: block;
}

.eb-home-v3 .eb-auth-password-wrap input {
    padding-right: 44px;
}

.eb-home-v3 .eb-auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 4px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--eb-muted);
    cursor: pointer;
}

.eb-home-v3 .eb-auth-password-toggle:focus-visible {
    outline: 2px solid rgba(245, 184, 46, .68);
    outline-offset: 2px;
}

.eb-home-v3 .eb-auth-password-toggle svg {
    width: 18px;
    height: 18px;
}

.eb-home-v3 .eb-auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.eb-home-v3 .eb-auth-form .eb-auth-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    line-height: 1.45;
    cursor: pointer;
}

.eb-home-v3 .eb-auth-check input {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--eb-success);
}

.eb-home-v3 .eb-auth-check span {
    display: block;
}

.eb-home-v3 .eb-auth-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    margin: 2px 0 0;
    font-size: 13px;
}

.eb-home-v3 .eb-auth-row .eb-auth-check {
    margin: 0;
}

.eb-home-v3 .eb-auth-row .eb-auth-check input {
    width: 20px;
    height: 20px;
}

.eb-home-v3 .eb-auth-forgot {
    margin-left: auto;
    color: #475467;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: default;
}

.eb-home-v3 .eb-auth-submit {
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #ffc94d, var(--eb-accent));
    color: var(--eb-ink);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(245, 184, 46, .24);
}

.eb-home-v3 .eb-auth-submit:hover {
    background: linear-gradient(135deg, #f5b82e, #e7a916);
}

.eb-home-v3 .eb-auth-submit:focus-visible {
    outline: 2px solid #b45309;
    outline-offset: 2px;
}

.eb-home-v3 .eb-auth-submit[disabled] {
    cursor: wait;
    opacity: .6;
}

.eb-home-v3 .eb-auth-standalone {
    justify-self: center;
    margin-top: 14px;
    border: 0;
    background: none;
    padding: 0;
    color: #475467;
    font: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.eb-home-v3 .eb-auth-standalone-accent {
    color: #b45309;
    font-weight: 700;
}

.eb-home-v3 .eb-auth-standalone:hover .eb-auth-standalone-accent {
    text-decoration: underline;
}

.eb-home-v3 .eb-auth-standalone:focus-visible {
    outline: 2px solid rgba(245, 184, 46, .68);
    outline-offset: 3px;
    border-radius: 4px;
}

.eb-home-v3 .eb-auth-social {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    border-top: 1px solid var(--eb-border);
    padding-top: 18px;
}

.eb-home-v3 .eb-auth-social a {
    display: grid;
    place-items: center;
    min-height: 44px;
    border: 1px solid var(--eb-border);
    border-radius: 12px;
    font-weight: 600;
}

.eb-home-v3 .eb-toast-region {
    position: fixed;
    top: 86px;
    right: max(20px, calc((100vw - 1440px) / 2 + 24px));
    z-index: 100;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 32px));
    pointer-events: none;
}

.eb-home-v3 .eb-toast {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 28px;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(22, 163, 74, .28);
    border-radius: 16px;
    padding: 12px;
    background: #ecfdf3;
    color: #06603a;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .14);
    pointer-events: auto;
}

.eb-home-v3 .eb-toast-icon {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    font-weight: 800;
}

.eb-home-v3 .eb-toast-message {
    min-width: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.eb-home-v3 .eb-toast-close {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #067647;
    cursor: pointer;
}

@media (max-width: 800px) {
    .eb-home-v3 .eb-auth-modal {
        align-items: end;
        padding: 12px;
    }

    .eb-home-v3 .eb-auth-dialog {
        width: 100%;
        max-height: calc(100vh - 24px);
        border-radius: 18px;
        padding: 18px;
    }

    .eb-home-v3 .eb-auth-head h2 {
        font-size: 26px;
    }

    .eb-home-v3 .eb-auth-head span {
        font-size: 13px;
    }

    .eb-home-v3 .eb-auth-tabs button,
    .eb-home-v3 .eb-auth-type-option {
        min-height: 42px;
    }

    .eb-home-v3 .eb-auth-form input[type="text"],
    .eb-home-v3 .eb-auth-form input[type="email"],
    .eb-home-v3 .eb-auth-form input[type="tel"],
    .eb-home-v3 .eb-auth-form input[type="password"] {
        min-height: 46px;
    }

    .eb-home-v3 .eb-auth-submit {
        min-height: 48px;
    }

    .eb-home-v3 .eb-auth-grid {
        grid-template-columns: 1fr;
    }

    .eb-home-v3 .eb-toast-region {
        top: 74px;
        right: 16px;
        left: 16px;
        width: auto;
    }
}

.eb-home-v3 * {
    box-sizing: border-box;
}

.eb-home-v3 a {
    color: inherit;
    text-decoration: none;
}

.eb-home-v3 img {
    display: block;
    max-width: 100%;
}

.eb-home-v3 .eb-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.eb-home-v3 .eb-header {
    position: sticky;
    top: 0;
    z-index: 20;
    height: 72px;
    border-bottom: 1px solid rgba(232, 234, 239, .75);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(16px);
}

.eb-home-v3 .eb-header-inner {
    display: flex;
    align-items: center;
    gap: 56px;
    max-width: 1440px;
    height: 100%;
    margin: auto;
    padding: 0 28px;
}

.eb-home-v3 .eb-logo {
    white-space: nowrap;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1.6px;
}

.eb-home-v3 .eb-logo span {
    color: var(--eb-accent);
}

.eb-home-v3 .eb-desktop-nav {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 40px;
    font-size: 14px;
    font-weight: 600;
}

.eb-home-v3 .eb-desktop-nav a:hover,
.eb-home-v3 .eb-section-heading a:hover {
    color: #bb7900;
}

.eb-home-v3 .eb-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.eb-home-v3 .eb-icon-button,
.eb-home-v3 .eb-menu-button {
    display: grid;
    position: relative;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--eb-ink);
    font-size: 25px;
    line-height: 1;
}

.eb-home-v3 .eb-icon-button:hover,
.eb-home-v3 .eb-menu-button:hover {
    background: var(--eb-surface);
}

.eb-home-v3 .eb-icon-button b[data-header-badge] {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    padding: 0 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e5484d;
    color: #fff;
    font-size: 9.5px;
    font-weight: 800;
    font-style: normal;
    line-height: 1;
    border: 2px solid #fff;
}

.eb-home-v3 .eb-profile-menu {
    position: relative;
    flex: 0 1 auto;
}

.eb-home-v3 .eb-profile {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    max-width: 174px;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 3px 8px 3px 3px;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
}

.eb-home-v3 .eb-profile:hover,
.eb-home-v3 .eb-login-link:hover {
    border-color: var(--eb-border);
    background: var(--eb-surface);
}

.eb-home-v3 .eb-profile .eb-avatar {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border-radius: 50%;
    background: #202735;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    flex: 0 0 auto;
}

.eb-home-v3 .eb-profile .eb-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-home-v3 .eb-profile .eb-avatar b {
    font-weight: 600;
}

.eb-home-v3 .eb-profile em {
    min-width: 0;
    overflow: hidden;
    color: var(--eb-ink);
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.eb-home-v3 .eb-profile i {
    color: var(--eb-muted);
    font-style: normal;
}

.eb-home-v3 .eb-profile[aria-expanded="true"] {
    border-color: var(--eb-border);
    background: var(--eb-surface);
}

.eb-home-v3 .eb-profile[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.eb-home-v3 .eb-profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    display: grid;
    width: 210px;
    border: 1px solid var(--eb-border);
    border-radius: 14px;
    padding: 7px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .13);
}

.eb-home-v3 .eb-profile-dropdown[hidden] {
    display: none;
}

.eb-home-v3 .eb-profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 10px;
    color: #252b36;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.eb-home-v3 .eb-profile-dropdown a:hover,
.eb-home-v3 .eb-profile-dropdown a:focus-visible {
    background: #fff8e6;
    color: #8a5b00;
}

.eb-home-v3 .eb-profile-dropdown svg {
    width: 17px;
    height: 17px;
}

.eb-home-v3 .eb-help-menu {
    position: relative;
}

.eb-home-v3 .eb-help-trigger {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 0;
    color: inherit;
    font: inherit;
    cursor: pointer;
}

.eb-home-v3 .eb-help-trigger svg {
    width: 14px;
    height: 14px;
    transition: transform .15s ease;
}

.eb-home-v3 .eb-help-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.eb-home-v3 .eb-help-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 40;
    display: grid;
    width: 220px;
    border: 1px solid var(--eb-border);
    border-radius: 14px;
    padding: 7px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(16, 24, 40, .13);
}

.eb-home-v3 .eb-help-dropdown[hidden] {
    display: none;
}

.eb-home-v3 .eb-help-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 10px;
    color: #252b36;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.eb-home-v3 .eb-help-dropdown a:hover,
.eb-home-v3 .eb-help-dropdown a:focus-visible {
    background: #fff8e6;
    color: #8a5b00;
}

.eb-home-v3 .eb-help-dropdown svg {
    width: 16px;
    height: 16px;
}

.eb-home-v3 .eb-profile-divider {
    height: 1px;
    margin: 6px 4px;
    background: var(--eb-border);
}

.eb-home-v3 .eb-profile-logout {
    color: #9f3a3a;
}

.eb-home-v3 .eb-login-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    border: 1px solid var(--eb-border);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--eb-ink);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
}

.eb-home-v3 .eb-add-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    margin-left: 7px;
    border-radius: 12px;
    padding: 0 18px;
    background: var(--eb-accent);
    font-weight: 600;
    box-shadow: 0 5px 14px rgba(245, 184, 46, .22);
}

.eb-home-v3 .eb-add-button:hover {
    transform: translateY(-1px);
    background: #e9aa19;
}

.eb-home-v3 .eb-menu-button,
.eb-home-v3 .eb-mobile-nav {
    display: none;
}

.eb-home-v3 .eb-page-shell {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px 32px;
}

.eb-home-v3 .eb-hero {
    position: relative;
    overflow: hidden;
    min-height: 322px;
    border-radius: var(--eb-radius-lg);
    background: #f8f7f3;
}

.eb-home-v3 .eb-hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.eb-home-v3 .eb-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .7s ease;
}

.eb-home-v3 .eb-hero-slide.is-active {
    opacity: 1;
}

.eb-home-v3 .eb-hero-slide picture,
.eb-home-v3 .eb-hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.eb-home-v3 .eb-hero-slide-overlay {
    position: absolute;
    inset: 0;
}

.eb-home-v3 .eb-hero-overlay-0 { background-image: linear-gradient(90deg, rgba(248, 247, 243, 0) 0%, rgba(248, 247, 243, 0) 36%, rgba(248, 247, 243, 0) 64%); }
.eb-home-v3 .eb-hero-overlay-25 { background-image: linear-gradient(90deg, rgba(248, 247, 243, .245) 0%, rgba(248, 247, 243, .215) 36%, rgba(248, 247, 243, .03) 64%); }
.eb-home-v3 .eb-hero-overlay-50 { background-image: linear-gradient(90deg, rgba(248, 247, 243, .49) 0%, rgba(248, 247, 243, .43) 36%, rgba(248, 247, 243, .06) 64%); }
.eb-home-v3 .eb-hero-overlay-75 { background-image: linear-gradient(90deg, rgba(248, 247, 243, .735) 0%, rgba(248, 247, 243, .645) 36%, rgba(248, 247, 243, .09) 64%); }
.eb-home-v3 .eb-hero-overlay-100 { background-image: linear-gradient(90deg, rgba(248, 247, 243, .98) 0%, rgba(248, 247, 243, .86) 36%, rgba(248, 247, 243, .12) 64%); }

.eb-home-v3 .eb-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 38px 42px;
}

.eb-home-v3 .eb-hero-content--center {
    margin: 0 auto;
    text-align: center;
}

.eb-home-v3 .eb-hero-content--right {
    margin-left: auto;
    text-align: right;
}

.eb-home-v3 .eb-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 0 0 20px;
    padding: 9px 16px;
    border-radius: 10px;
    background: #202735;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.eb-home-v3 .eb-hero-cta:hover {
    background: #323b4c;
}

.eb-home-v3 .eb-hero-dots {
    position: absolute;
    z-index: 2;
    left: 42px;
    bottom: 18px;
    display: flex;
    gap: 8px;
}

.eb-home-v3 .eb-hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: rgba(32, 39, 53, .25);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.eb-home-v3 .eb-hero-dot.is-active {
    width: 20px;
    border-radius: 5px;
    background: #202735;
}

.eb-home-v3 .eb-hero h1 {
    margin: 0 0 12px;
    font-family: var(--eb-font-ui);
    font-size: clamp(15px, 1.55vw, 22px);
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: 0;
    color: #202735;
    white-space: nowrap;
}

.eb-home-v3 .eb-hero p {
    margin: 0 0 24px;
    color: #3e4655;
    font-size: 15px;
}

.eb-home-v3 .eb-hero-search {
    display: flex;
    align-items: center;
    width: 650px;
    max-width: 100%;
    height: 60px;
    border-radius: 14px;
    padding: 7px 8px 7px 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23, 27, 38, .10);
}

.eb-home-v3 .eb-hero-search span {
    font-size: 23px;
}

.eb-home-v3 .eb-hero-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 0 14px;
    color: var(--eb-ink);
    font: 500 14px/1 var(--eb-font-ui);
}

.eb-home-v3 .eb-hero-search button {
    height: 46px;
    border: 0;
    border-radius: 10px;
    padding: 0 28px;
    background: var(--eb-accent);
    font-weight: 600;
    cursor: pointer;
}

.eb-home-v3 .eb-hero-search:focus-within {
    outline: 3px solid rgba(245, 184, 46, .30);
}

.eb-home-v3 .eb-trust-row {
    display: flex;
    gap: 25px;
    margin-top: 18px;
    color: #46505e;
    font-size: 12px;
    font-weight: 500;
}

.eb-home-v3 .eb-trust-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.eb-home-v3 .eb-trust-row b {
    display: grid;
    place-items: center;
    width: 19px;
    height: 19px;
    border: 1px solid #9ea5af;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
}

.eb-home-v3 .eb-content-panel {
    position: relative;
    margin-top: -1px;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-lg);
    padding: 24px 30px 0;
    background: #fff;
}

.eb-home-v3 .eb-category-grid {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 16px;
}

.eb-home-v3 .eb-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    height: 88px;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-card);
    color: #353b47;
}

.eb-home-v3 .eb-category-card:hover {
    border-color: var(--eb-accent);
    background: #fffaf0;
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(245, 184, 46, .12);
}

.eb-home-v3 .eb-category-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(37, 99, 235, .08);
}

.eb-home-v3 .eb-category-icon img {
    width: 24px;
    height: 24px;
}

.eb-home-v3 .eb-category-card b {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 500;
}

.eb-home-v3 .eb-section-block {
    margin-top: 28px;
}

.eb-home-v3 .eb-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.eb-home-v3 .eb-section-heading h2 {
    margin: 0;
    font-size: 20px;
    line-height: 1.25;
}

.eb-home-v3 .eb-section-heading p {
    margin: 0 0 3px;
    color: var(--eb-muted);
    font-size: 11px;
    font-weight: 500;
}

.eb-home-v3 .eb-section-heading a {
    font-size: 13px;
    font-weight: 500;
}

.eb-home-v3 .eb-listing-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.eb-home-v3 .owner-type-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 2px;
    margin: 0 0 18px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.eb-home-v3 .owner-type-tabs::-webkit-scrollbar {
    display: none;
}

.eb-home-v3 .owner-type-tab {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    height: 38px;
    white-space: nowrap;
    border: 1px solid var(--eb-border);
    border-radius: 999px;
    padding: 0 16px;
    background: #fff;
    color: var(--eb-muted);
    font-size: 13px;
    font-weight: 600;
}

.eb-home-v3 .owner-type-tab span {
    color: inherit;
    opacity: .75;
    font-weight: 500;
}

.eb-home-v3 .owner-type-tab:hover {
    border-color: #ffe2b2;
    background: #fffaf0;
    color: var(--eb-ink);
}

.eb-home-v3 .owner-type-tab.is-active {
    border-color: #ffe2b2;
    background: #fff6e8;
    color: #af6f00;
}

.eb-home-v3 .eb-listing-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-card);
    background: #fff;
    box-shadow: 0 2px 10px rgba(23, 27, 38, .04);
}

.eb-home-v3 .eb-listing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--eb-shadow);
}

.eb-home-v3 .eb-listing-media {
    display: block;
    position: relative;
    height: 132px;
    overflow: hidden;
    background: var(--eb-surface);
}

.eb-home-v3 .eb-listing-card-featured {
    border-color: var(--eb-accent, #f5b82e);
    box-shadow: 0 0 0 1px var(--eb-accent, #f5b82e);
}

.eb-home-v3 .eb-listing-featured-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--eb-accent, #f5b82e);
    color: #171b26;
    font-size: 10.5px;
    font-weight: 700;
}

.eb-home-v3 .eb-listing-featured-badge svg {
    width: 11px;
    height: 11px;
}

.eb-home-v3 .eb-listing-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s;
}

.eb-home-v3 .eb-listing-card:hover .eb-listing-media img {
    transform: scale(1.035);
}

.eb-home-v3 .home-v3-image-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--eb-muted);
    font-size: 12px;
    font-weight: 400;
}

.eb-home-v3 .eb-card-favorite {
    position: absolute;
    top: 9px;
    right: 9px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .90);
    font-size: 20px;
    line-height: 1;
    color: #98a2b3;
    border: 0;
    cursor: pointer;
    transition: color .15s ease, transform .15s ease;
}

.eb-home-v3 .eb-card-favorite:hover {
    color: #e54358;
    transform: scale(1.07);
}

.eb-home-v3 .eb-card-favorite.is-active {
    color: #e54358;
}

.eb-home-v3 .eb-card-favorite.is-active svg {
    fill: currentColor;
}

.eb-home-v3 .eb-card-favorite.is-active:hover {
    color: #c81e34;
}

.eb-home-v3 .eb-card-favorite.is-toggling {
    animation: eb-favorite-pop .32s ease;
}

@keyframes eb-favorite-pop {
    0% { transform: scale(1); }
    40% { transform: scale(1.28); }
    100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
    .eb-home-v3 .eb-card-favorite.is-toggling {
        animation: none;
    }
}

.eb-home-v3 .eb-listing-body {
    display: grid;
    gap: var(--eb-gap-tight);
    grid-template-rows: auto minmax(36px, auto) auto 1fr;
    padding: 9px 11px 10px;
}

.eb-home-v3 .eb-listing-location,
.eb-home-v3 .eb-listing-category {
    margin: 0;
    overflow: hidden;
    color: var(--eb-muted);
    font-size: 11px;
    line-height: var(--eb-lh-meta);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.eb-home-v3 .eb-listing-card h3 {
    display: -webkit-box;
    min-height: 36px;
    margin: 0;
    overflow: hidden;
    font-size: 14px;
    font-weight: 600;
    line-height: var(--eb-lh-title);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.eb-home-v3 .eb-listing-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--eb-gap-related);
    min-width: 0;
    align-self: end;
    margin-top: var(--eb-gap-tight);
}

.eb-home-v3 .eb-listing-footer span {
    border: 1px solid #d8f2e3;
    border-radius: 999px;
    padding: 4px 8px;
    background: #eefaf3;
    color: var(--eb-success);
    font-size: 10px;
    font-weight: 500;
    line-height: var(--eb-lh-meta);
    white-space: nowrap;
}

.eb-home-v3 .eb-listing-footer strong {
    overflow: hidden;
    font-size: 12px;
    font-weight: 600;
    line-height: var(--eb-lh-price);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.eb-home-v3 .eb-ordinary-section {
    margin-top: 30px;
}

.eb-home-v3 .eb-match-section {
    margin-top: 20px;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-card);
    padding: 20px;
}

.eb-home-v3 .eb-match-heading {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 16px;
}

.eb-home-v3 .eb-match-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.eb-home-v3 .eb-match-heading h2 {
    margin: 0;
    font-size: 20px;
}

.eb-home-v3 .eb-match-heading p,
.eb-home-v3 .eb-match-empty p,
.eb-home-v3 .eb-match-note p {
    margin: 0;
    color: var(--eb-muted);
    font-size: 12px;
    line-height: var(--eb-lh-body);
}

.eb-home-v3 .eb-match-empty,
.eb-home-v3 .eb-match-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid #f0f1f4;
    border-radius: 12px;
    background: #fafbfc;
}

.eb-home-v3 .eb-match-empty {
    min-height: 92px;
    padding: 18px;
}

.eb-home-v3 .eb-match-note {
    margin-top: 12px;
    padding: 12px 14px;
}

.eb-home-v3 .eb-match-empty a,
.eb-home-v3 .eb-match-note a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border-radius: 10px;
    padding: 0 16px;
    background: var(--eb-accent);
    font-size: 13px;
    font-weight: 600;
}

.eb-home-v3 .eb-match-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 34px minmax(0, 1fr);
    align-items: center;
    min-height: 112px;
    border: 1px solid #eef0f4;
    border-radius: 18px;
    padding: 16px 16px 22px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(16, 24, 40, .06);
}

.eb-home-v3 .eb-match-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 0;
    border-radius: 14px;
    color: inherit;
}

.eb-home-v3 .eb-match-item:focus-visible {
    outline: 3px solid rgba(245, 184, 46, .45);
    outline-offset: 4px;
}

.eb-home-v3 .eb-match-thumb {
    display: block;
    width: 64px;
    height: 56px;
    overflow: hidden;
    border-radius: 10px;
    background: #f4f6f8;
}

.eb-home-v3 .eb-match-thumb img,
.eb-home-v3 .eb-match-thumb .home-v3-image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eb-home-v3 .eb-match-thumb .home-v3-image-placeholder {
    display: grid;
    place-items: center;
    padding: 6px;
    font-size: 10px;
    text-align: center;
}

.eb-home-v3 .eb-match-copy {
    min-width: 0;
}

.eb-home-v3 .eb-match-copy small {
    display: block;
    margin-bottom: 5px;
    color: var(--eb-muted);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

.eb-home-v3 .eb-match-copy strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--eb-ink);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.eb-home-v3 .eb-match-swap {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f7faf9;
    color: #1f9b57;
}

.eb-home-v3 .eb-match-swap svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.eb-home-v3 .eb-match-badge {
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    max-width: calc(100% - 40px);
    border: 1px solid #c8f1d7;
    border-radius: 999px;
    padding: 5px 12px;
    background: #f1fff6;
    color: #159447;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(21, 148, 71, .12);
}

.eb-home-v3 .eb-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 26px -30px 0;
    border-radius: 0 0 var(--eb-radius-lg) var(--eb-radius-lg);
    padding: 18px 42px;
    background: linear-gradient(90deg, #fffdf9, #fafdff);
}

.eb-home-v3 .eb-stats article {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.eb-home-v3 .eb-stats span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 21px;
}

.eb-home-v3 .eb-stats .yellow { background: #fff3ce; color: #d79300; }
.eb-home-v3 .eb-stats .green { background: #e7f8ee; color: #1e9c5d; }
.eb-home-v3 .eb-stats .blue { background: #eaf3ff; color: #327dce; }
.eb-home-v3 .eb-stats .purple { background: #f0ebff; color: #7056d9; }

.eb-home-v3 .eb-stats strong {
    display: block;
    font-size: 18px;
}

.eb-home-v3 .eb-stats small {
    display: block;
    margin-top: 2px;
    color: var(--eb-muted);
    font-size: 10px;
}

.eb-home-v3 .eb-empty-card {
    grid-column: 1 / -1;
    border: 1px dashed var(--eb-border);
    border-radius: var(--eb-radius-card);
    padding: 24px;
    color: var(--eb-muted);
    text-align: center;
    font-weight: 500;
}

.eb-home-v3 .eb-footer {
    border-top: 1px solid var(--eb-border);
    background: #fbfcfe;
}

.eb-home-v3 .eb-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 28px;
    color: #3e4655;
}

.eb-home-v3 .eb-footer-brand {
    min-width: 0;
}

.eb-home-v3 .eb-footer p {
    margin: 5px 0 0;
    color: var(--eb-muted);
    font-size: 12px;
    line-height: var(--eb-lh-body);
}

.eb-home-v3 .eb-footer-copy {
    flex: 0 0 auto;
    margin: 0;
    text-align: right;
}

.eb-home-v3 a:focus-visible,
.eb-home-v3 button:focus-visible,
.eb-home-v3 input:focus-visible {
    outline: 3px solid rgba(245, 184, 46, .45);
    outline-offset: 2px;
}

@media (max-width: 1100px) {
    .eb-home-v3 .eb-desktop-nav {
        gap: 18px;
    }

    .eb-home-v3 .eb-optional {
        display: none;
    }

    .eb-home-v3 .eb-category-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .eb-home-v3 .eb-listing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .eb-home-v3 .eb-match-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .eb-home-v3 .eb-featured-grid .eb-listing-card:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 800px) {
    .eb-home-v3 .eb-header {
        height: 64px;
    }

    .eb-home-v3 .eb-header-inner {
        gap: 16px;
        padding: 0 18px;
    }

    .eb-home-v3 .eb-desktop-nav,
    .eb-home-v3 .eb-header-actions > .eb-icon-button,
    .eb-home-v3 .eb-add-button {
        display: none;
    }

    .eb-home-v3 .eb-header-actions {
        margin-left: auto;
    }

    .eb-home-v3 .eb-menu-button {
        display: grid;
    }

    .eb-home-v3 .eb-profile {
        max-width: 44px;
        min-width: 40px;
        padding: 2px;
    }

    .eb-home-v3 .eb-profile-dropdown {
        right: 0;
        width: min(210px, calc(100vw - 32px));
    }

    .eb-home-v3 .eb-profile em,
    .eb-home-v3 .eb-profile i,
    .eb-home-v3 .eb-login-link span {
        display: none;
    }

    .eb-home-v3 .eb-login-link {
        width: 40px;
        min-width: 40px;
        justify-content: center;
        padding: 0;
    }

    .eb-home-v3 .eb-mobile-nav {
        display: grid;
        gap: 4px;
        width: calc(100% - 32px);
        margin: 0 auto 12px;
        border: 1px solid var(--eb-border);
        border-radius: 14px;
        padding: 8px;
        background: #fff;
        box-shadow: var(--eb-shadow);
    }

    .eb-home-v3 .eb-mobile-nav[hidden] {
        display: none;
    }

    .eb-home-v3 .eb-mobile-nav a {
        border-radius: 10px;
        padding: 11px 12px;
        font-weight: 500;
    }

    .eb-home-v3 .eb-page-shell {
        padding: 0 16px 20px;
    }

    .eb-home-v3 .eb-hero {
        min-height: 420px;
        border-radius: 0 0 20px 20px;
    }

    .eb-home-v3 .eb-hero-slide img {
        object-position: 64% center;
    }

    .eb-home-v3 .eb-hero-overlay-0 { background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)); }
    .eb-home-v3 .eb-hero-overlay-25 { background-image: linear-gradient(rgba(255, 255, 255, .125), rgba(255, 255, 255, .22)); }
    .eb-home-v3 .eb-hero-overlay-50 { background-image: linear-gradient(rgba(255, 255, 255, .25), rgba(255, 255, 255, .44)); }
    .eb-home-v3 .eb-hero-overlay-75 { background-image: linear-gradient(rgba(255, 255, 255, .375), rgba(255, 255, 255, .66)); }
    .eb-home-v3 .eb-hero-overlay-100 { background-image: linear-gradient(rgba(255, 255, 255, .50), rgba(255, 255, 255, .88)); }

    .eb-home-v3 .eb-hero-content {
        padding: 38px 22px;
        max-width: 100%;
    }

    .eb-home-v3 .eb-hero-dots {
        left: 22px;
        bottom: 14px;
    }

    .eb-home-v3 .eb-hero h1 {
        font-size: clamp(12px, 3.9vw, 17px);
        line-height: 1.35;
        white-space: nowrap;
    }

    .eb-home-v3 .eb-hero-search {
        flex-wrap: wrap;
        height: auto;
        min-height: 58px;
        margin-top: 32px;
    }

    .eb-home-v3 .eb-hero-search input {
        font-size: 12px;
    }

    .eb-home-v3 .eb-hero-search button {
        padding: 0 18px;
    }

    .eb-home-v3 .eb-trust-row {
        flex-direction: column;
        gap: 9px;
    }

    .eb-home-v3 .eb-content-panel {
        border: 0;
        padding: 22px 0 0;
    }

    .eb-home-v3 .eb-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .eb-home-v3 .eb-section-block {
        margin-top: 36px;
    }

    .eb-home-v3 .eb-listing-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .eb-home-v3 .eb-listing-card {
        display: block;
        min-width: 78vw;
        scroll-snap-align: start;
    }

    .eb-home-v3 .eb-listing-media {
        height: 190px;
    }

    .eb-home-v3 .eb-listing-card h3 {
        min-height: auto;
    }

    .eb-home-v3 .eb-match-heading,
    .eb-home-v3 .eb-match-empty,
    .eb-home-v3 .eb-match-note {
        flex-direction: column;
        align-items: flex-start;
    }

    .eb-home-v3 .eb-match-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .eb-home-v3 .eb-match-card {
        min-height: 106px;
        padding: 14px 14px 22px;
    }

    .eb-home-v3 .eb-match-item {
        grid-template-columns: 56px minmax(0, 1fr);
        gap: 10px;
    }

    .eb-home-v3 .eb-match-thumb {
        width: 56px;
        height: 52px;
    }

    .eb-home-v3 .eb-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 8px;
        margin: 28px 0 0;
        padding: 18px 10px;
    }

    .eb-home-v3 .eb-stats article {
        justify-content: flex-start;
    }

    .eb-home-v3 .eb-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 16px 18px;
    }

    .eb-home-v3 .eb-footer-copy {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eb-home-v3 * {
        scroll-behavior: auto;
        transition: none;
    }
}

/* UI/UX typography and motion refinement */
.eb-home-v3 {
    --eb-icon-size: 19px;
    --eb-transition: 180ms ease;
}

.eb-home-v3 .eb-icon-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.eb-home-v3 svg {
    width: var(--eb-icon-size);
    height: var(--eb-icon-size);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

.eb-home-v3 a,
.eb-home-v3 button {
    transition: color var(--eb-transition), background-color var(--eb-transition), border-color var(--eb-transition), box-shadow var(--eb-transition), transform var(--eb-transition);
}

.eb-home-v3 .eb-desktop-nav,
.eb-home-v3 .eb-category-card b,
.eb-home-v3 .eb-section-heading a,
.eb-home-v3 .eb-listing-footer span,
.eb-home-v3 .eb-empty-card {
    font-weight: 500;
}

.eb-home-v3 .eb-add-button,
.eb-home-v3 .eb-hero-search button,
.eb-home-v3 .eb-match-empty a {
    font-weight: 600;
}

.eb-home-v3 .eb-section-heading h2,
.eb-home-v3 .eb-match-heading h2,
.eb-home-v3 .eb-stats strong {
    font-weight: 600;
}

.eb-home-v3 .eb-listing-card h3,
.eb-home-v3 .eb-listing-footer strong {
    font-weight: 600;
}

.eb-home-v3 .eb-trust-row {
    font-weight: 500;
}

.eb-home-v3 .eb-icon-button,
.eb-home-v3 .eb-menu-button,
.eb-home-v3 .eb-trust-row b,
.eb-home-v3 .eb-stats span {
    display: grid;
    place-items: center;
}

.eb-home-v3 .eb-icon-button,
.eb-home-v3 .eb-menu-button {
    font-size: 0;
}

.eb-home-v3 .eb-menu-button {
    display: none;
}

.eb-home-v3 .eb-profile i {
    display: grid;
    place-items: center;
}

.eb-home-v3 .eb-add-button {
    border: 1px solid transparent;
}

.eb-home-v3 .eb-add-button:hover {
    border-color: #c98204;
    background: var(--eb-accent);
    color: #111827;
    box-shadow: 0 8px 20px rgba(245, 184, 46, .30);
}

.eb-home-v3 .eb-add-button:focus-visible {
    outline: 2px solid rgba(245, 184, 46, .62);
    outline-offset: 4px;
}

.eb-home-v3 .eb-hero-search {
    height: 56px;
    padding: 6px 7px 6px 18px;
}

.eb-home-v3 .eb-hero-search span {
    display: grid;
    place-items: center;
    color: #1f2937;
}

.eb-home-v3 .eb-hero-search input {
    font-weight: 400;
}

.eb-home-v3 .eb-hero-search button {
    height: 44px;
}

.eb-home-v3 .eb-hero-search:focus-within {
    outline: 2px solid rgba(245, 184, 46, .46);
    outline-offset: 2px;
}

.eb-home-v3 .eb-hero-search input:focus-visible,
.eb-home-v3 .eb-hero-search button:focus-visible {
    outline: 0;
}

.eb-home-v3 .eb-content-panel {
    padding-top: 22px;
}

.eb-home-v3 .eb-category-grid,
.eb-home-v3 .eb-listing-grid {
    gap: 12px;
}

.eb-home-v3 .eb-category-card {
    height: 84px;
}

.eb-home-v3 .eb-section-block {
    margin-top: 24px;
}

.eb-home-v3 .eb-listing-location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.eb-home-v3 .eb-card-favorite {
    font-size: 0;
}

.eb-home-v3 .eb-card-favorite svg {
    width: 18px;
    height: 18px;
}

.eb-home-v3 .eb-featured-carousel {
    position: relative;
    overflow: hidden;
}

.eb-home-v3 .eb-featured-carousel::before,
.eb-home-v3 .eb-featured-carousel::after {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 42px;
    content: "";
    pointer-events: none;
}

.eb-home-v3 .eb-featured-carousel::before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.eb-home-v3 .eb-featured-carousel::after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.eb-home-v3 .eb-featured-carousel .eb-featured-grid {
    display: flex;
    gap: 12px;
    width: max-content;
    will-change: transform;
}

.eb-home-v3 .eb-featured-carousel .eb-listing-card {
    width: clamp(224px, 18.2vw, 250px);
    flex: 0 0 auto;
}

.eb-home-v3 .eb-featured-carousel.is-moving .eb-featured-grid {
    animation: eb-featured-marquee var(--eb-carousel-duration, 30s) linear infinite;
}

.eb-home-v3 .eb-featured-carousel.is-paused .eb-featured-grid,
.eb-home-v3 .eb-featured-carousel:hover .eb-featured-grid,
.eb-home-v3 .eb-featured-carousel:focus-within .eb-featured-grid {
    animation-play-state: paused;
}

@keyframes eb-featured-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-1 * var(--eb-carousel-distance, 0px)));
    }
}

.eb-home-v3 a:focus-visible,
.eb-home-v3 button:focus-visible,
.eb-home-v3 input:focus-visible {
    outline: 2px solid rgba(245, 184, 46, .58);
    outline-offset: 3px;
}

@media (max-width: 1100px) {
    .eb-home-v3 .eb-featured-carousel .eb-listing-card {
        width: clamp(214px, 30vw, 250px);
    }
}

@media (max-width: 800px) {
    .eb-home-v3 .eb-menu-button {
        display: grid;
    }

    .eb-home-v3 .eb-featured-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .eb-home-v3 .eb-featured-carousel::before,
    .eb-home-v3 .eb-featured-carousel::after {
        display: none;
    }

    .eb-home-v3 .eb-featured-carousel .eb-featured-grid {
        width: auto;
        animation: none;
    }

    .eb-home-v3 .eb-featured-carousel .eb-listing-card {
        width: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eb-home-v3 .eb-featured-carousel .eb-featured-grid {
        animation: none;
        transform: none;
    }
}

/* ===== Account sidebar (Dashboard/Profile/My Listings/Offers/Favorites/Notifications/Settings) ===== */

.eb-home-v3 .eb-account-shell {
    display: grid;
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px 32px;
}

.eb-home-v3 .eb-account-shell .eb-account-main {
    max-width: none;
    margin: 0;
    padding: 0;
}

.eb-home-v3 .eb-account-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    width: min(100% - 56px, 1440px);
    margin: 16px auto 0;
    padding: 10px 16px;
    border: 1px solid var(--eb-border);
    border-radius: 12px;
    background: #fff;
    color: var(--eb-ink);
    font: inherit;
    font-weight: 600;
    cursor: pointer;
}

.eb-home-v3 .eb-account-toggle svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eb-home-v3 .eb-account-sidebar {
    align-self: start;
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid var(--eb-border);
    border-radius: var(--eb-radius-card);
    box-shadow: var(--eb-shadow);
    padding: 16px 12px;
}

.eb-home-v3 .eb-account-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eb-home-v3 .eb-account-sidebar a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--eb-ink);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
    transition: background-color .15s ease, color .15s ease;
}

.eb-home-v3 .eb-account-sidebar a svg {
    width: 18px;
    height: 18px;
    flex: none;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.eb-home-v3 .eb-account-sidebar a:hover {
    background: var(--eb-surface);
}

.eb-home-v3 .eb-account-sidebar a.is-active {
    background: rgba(245, 184, 46, .16);
    color: #8a5300;
}

.eb-home-v3 .eb-account-sidebar a.eb-account-logout {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--eb-border);
    color: #c0362c;
}

.eb-home-v3 .eb-account-sidebar a.eb-account-logout:hover {
    background: rgba(192, 54, 44, .08);
}

@media (max-width: 1100px) {
    .eb-home-v3 .eb-account-shell {
        grid-template-columns: 208px minmax(0, 1fr);
        gap: 18px;
    }
}

@media (max-width: 800px) {
    .eb-home-v3 .eb-account-toggle {
        display: inline-flex;
    }

    .eb-home-v3 .eb-account-shell {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 16px 20px;
        gap: 0;
    }

    .eb-home-v3 .eb-account-sidebar {
        position: static;
        margin: 12px 0 16px;
        display: none;
    }

    .eb-home-v3 .eb-account-sidebar.is-open {
        display: block;
    }
}
