/* Write your css codes here  */

/* ===== Hero Padding Reduction ===== */
.hero__area {
    padding-top: 100px !important;
    padding-bottom: 80px !important;
}
@media screen and (max-width: 1399px) {
    .hero__area {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
}

/* ===== Hero Category Browser ===== */
.hero__categories {
    margin-top: 28px;
    padding: 20px 24px;
}

.hero__categories__title {
    font-size: 15px;
    font-weight: 600;
    color: hsl(var(--heading-color));
    margin-bottom: 14px;
}

.hero__categories__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.hero__category__pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid hsl(var(--border-color));
    color: hsl(var(--body-color));
    font-size: 13px;
    text-decoration: none;
    transition: 0.2s;
    background-color: hsl(var(--section-bg));
    white-space: nowrap;
}

.hero__category__pill:hover {
    background-color: hsl(var(--base) / 0.08);
    border-color: hsl(var(--base) / 0.4);
    color: hsl(var(--base));
}

.hero__category__pill--active {
    background-color: hsl(var(--base));
    border-color: hsl(var(--base));
    color: hsl(var(--white));
    font-weight: 600;
}

.hero__category__pill--active:hover {
    background-color: hsl(var(--base-d-100));
    border-color: hsl(var(--base-d-100));
    color: hsl(var(--white));
}

.hero__categories__all {
    display: inline-block;
    font-size: 13px;
    color: hsl(var(--base));
    font-weight: 500;
    text-decoration: none;
    border: 1px solid hsl(var(--base) / 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    transition: 0.2s;
}

.hero__categories__all:hover {
    background-color: hsl(var(--base));
    color: hsl(var(--white));
    border-color: hsl(var(--base));
}

/* ===== Hero Search Pill Bar ===== */
.hero__search__bar {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 6px 6px 6px 18px;
    gap: 0;
}

.hero__search__icon {
    color: hsl(var(--body-color) / 0.5);
    font-size: 15px;
    flex-shrink: 0;
}

.hero__search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: hsl(var(--heading-color));
    padding: 8px 10px;
}

.hero__search__divider {
    width: 1px;
    height: 24px;
    background: hsl(var(--border-color));
    flex-shrink: 0;
}

.hero__search__location-icon {
    color: hsl(var(--body-color) / 0.5);
    font-size: 15px;
    flex-shrink: 0;
    margin-inline: 10px;
}

.hero__search__location-wrap {
    flex: 1;
    position: relative;
}

.hero__search__location-input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: hsl(var(--heading-color));
    padding: 8px 0;
}

.hero__search__btn {
    flex-shrink: 0;
    background: hsl(var(--base));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    margin-inline-start: 2px;
}
