/* Your custom css */

/* Dubizzle-like Hero */
.dubizzle-hero {
    background: #f7f7f7;
}
.dubizzle-hero__card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 18px;
}
.dubizzle-hero__tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}
.dubizzle-hero__tabs button {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #333;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: default;
}
.dubizzle-hero__tabs button.is-active {
    border-color: var(--base, #e00034);
    background: var(--base, #e00034);
    color: #fff;
}
.dubizzle-hero__search {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dubizzle-hero__input {
    flex: 1;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 14px;
}
.dubizzle-hero__btn {
    height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
}
.dubizzle-hero__quick {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.dubizzle-hero__quick a {
    color: #6b6b6b;
    font-size: 14px;
}

/* Header primary top nav */
.primary-top-nav {
    background: #ffffff;
}
.primary-top-nav__menu {
    display: flex;
    gap: 18px;
    align-items: center;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    overflow-x: auto;
}
.primary-top-nav__menu a {
    color: #333;
    font-weight: 600;
    white-space: nowrap;
}
.primary-top-nav__menu a:hover {
    color: var(--base, #e00034);
}

/* Super header styles */
.super-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}
.super-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 5px 0;
}
.super-header__left {
    display: flex;
    align-items: center;
    gap: 16px;
}
.super-header__location {
    font-weight: 600;
    color: #2b2b2b;
}
.super-header__icons {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.super-header__icons a {
    color: #6b6f76;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    font-weight: 600;
    text-align: center;
}
.super-header__icons a i {
    font-size: 20px;
    line-height: 1;
}
.super-header__icons a span {
    font-size: 12px;
}
.super-header__icons a:hover { color: #111; }
.super-header__icons li { padding: 0 6px; }
.super-header__auth a { color: #0d6efd; }
.super-header__cta { padding: 10px 18px; border-radius: 8px; background: #e00034; border-color: #e00034; }