@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@100..900&display=swap');

/* ===========================================
    Business Directory Styles
    Font: Heebo | RTL | Mobile-first
    =========================================== */

/* ---- Variables as CSS Custom Properties ---- */
:root {
    --font-Heebo: 'Heebo', sans-serif;
    --font-heebo: var(--font-Heebo);
   --navy: #0D1B4C;
    --bg: #F4F3EF;
    --bg-secondary:#D8D0C4;
    --bg-last:#FBF5E6;
    --mustard:#C9A84C;
    --yellow:#F0C222;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 25px;
    --font-size-heading-xl: 40px;
  --font-size-heading-lg: 32px;
  --font-size-heading-md: 28px;
  --font-size-heading-sm: 24px;
  --font-size-heading-xs: 18px;
  --font-size-body: 16px;
  --font-size-meta: 14px;
  --font-size-caption: 12px;
}

html,
body {
        font-family: var(--font-Heebo);
}

#main-content{
    margin-bottom: 0 !important;
}
    .biz-card,
    .cat-card {
        background: var(--white);
        border-radius: 24px;
        box-shadow: var(--shadow-card);
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }
    
    .biz-card:hover,
    .cat-card:hover {
    --transition: all 0.2s ease;
      --font-size-heading-xl: 40px;
  --font-size-heading-lg: 32px;
  --font-size-heading-md: 28px;
  --font-size-heading-sm: 24px;
  --font-size-heading-xs: 20px;
  --font-size-body: 16px;
  --font-size-meta: 14px;
  --font-size-caption: 12px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-Heebo);
    line-height: 1.5;
}
    .biz-card,
    .cat-card {
        background: var(--white);
        border-radius: 24px;
        box-shadow: var(--shadow-card);
        overflow: hidden;
        transition: var(--transition);
        display: flex;

        flex-direction: column;
    }
    .biz-card--hidden {
        display: none !important;
    }
    .biz-card:hover,
    .cat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    .biz-card__link,
    .cat-card__link {
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
        flex: 1;
    }
    .biz-card__image-wrap,
    .cat-card__image-wrap {
        position: relative;
        height: 300px;
        overflow: hidden;
        background: var(--light-gray);
    }
    @media (max-width: 767px) {
        .biz-card__image-wrap,
        .cat-card__image-wrap {
            height: 270px;
        }
    }
    .biz-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.3s ease;
    }
    .biz-card:hover .biz-card__image,
    .cat-card:hover .cat-card__image {
        transform: scale(1.05);
    }
    .biz-card__image--placeholder,
    .cat-card__image-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: var(--body-text);
        background: var(--light-gray);
    }
    .biz-card__badge,
    .cat-card__tag {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--white);
        color: #9A9080;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        z-index: 1;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    .biz-card__body,
    .cat-card__body {
        padding: 22px 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .biz-card__title,
    .cat-card__title {
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
        margin: 0 0 8px;
        line-height: 1.2;
    }
    .biz-card__desc,
    .cat-card__subtitle {
        font-size: 16px;
        color: #9A9080;
        margin: 0 0 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.6;
    }
    .biz-card__rating {
        display: flex;
        align-items: center;
        gap: 2px;
        margin-bottom: 8px;
        color: var(--yellow);
        font-size: 12.8px;
    }
    .biz-card__rating .far {
        color: var(--border-gray);
    }
    .biz-card__reviews-count {
        font-size: 12.8px;
        color: var(--body-text);
        margin-right: 4px;
    }
    .biz-card__meta,
    .cat-card__info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
        color: #9A9080;
        margin-bottom: 16px;
    }
    .biz-card__meta-item {
        display: inline-flex;
        align-items: center;
        gap: 5.6px;
    }
    .biz-card__meta-item i {
        color: var(--navy);
        width: 14px;
        flex-shrink: 0;
    }
    .cat-card__info-item {
        font-size: 14px;
        color: #9A9080;
        line-height: 1.5;
    }
    .biz-card__cta,
    .cat-card__cta {
        display: inline-flex;
        align-items: center;
        gap: 5.6px;
        background: var(--mustard);
        color: var(--navy);
        border: none;
        border-radius: 0;
        padding: 5px 20px;
        font-size: 16px;
        font-weight: 700;
        transition: var(--transition);
        text-decoration: none;
        margin-top: auto;
        justify-content: center;
    }
    .biz-card,
    .cat-card {
        background: var(--white);
        border-radius: 24px;
        box-shadow: var(--shadow-card);
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        text-decoration: none;
    }
    .biz-card--hidden {
        display: none !important;
    }
    .biz-card:hover,
    .cat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    .biz-card__link,
    .cat-card__link {
        display: flex;
        flex-direction: column;
        
        color: inherit;
        flex: 1;
    }
    .biz-card__image-wrap,
    .cat-card__image-wrap {
        position: relative;
        height: 300px;
        overflow: hidden;
        background: var(--light-gray);
    }
    @media (max-width: 767px) {
        .biz-card__image-wrap,
        .cat-card__image-wrap {
            height: 270px;
        }
    }
    .biz-card__image,
    .cat-card__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.3s ease;
    }
    .biz-card:hover .biz-card__image,
    .cat-card:hover .cat-card__image {
        transform: scale(1.05);
    }
    .biz-card__image--placeholder,
    .cat-card__image-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 40px;
        color: var(--body-text);
        background: var(--light-gray);
    }
    .biz-card__badge,
    .cat-card__tag {
        position: absolute;
        top: 12px;
        right: 12px;
        background: var(--white);
        color: #9A9080;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 999px;
        z-index: 1;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    .biz-card__body,
    .cat-card__body {
        padding: 22px 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    .biz-card__title,
    .cat-card__title {
        font-size: 20px;
        font-weight: 700;
        color: var(--navy);
        margin: 0 0 8px;
        line-height: 1.2;
    }
    .biz-card__desc,
    .cat-card__subtitle {
        font-size: 16px;
        color: #9A9080;
        margin: 0 0 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.6;
    }
    .biz-card__rating {
        display: flex;
        align-items: center;
        gap: 2px;
        margin-bottom: 8px;
        color: var(--yellow);
        font-size: 12.8px;
    }
    .biz-card__rating .far {
        color: var(--border-gray);
    }
    .biz-card__reviews-count {
        font-size: 12.8px;
        color: var(--body-text);
        margin-right: 4px;
    }
    .biz-card__meta,
    .cat-card__info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
        color: #9A9080;
        margin-bottom: 16px;
    }
    .biz-card__meta-item {
        display: inline-flex;
        align-items: center;
        gap: 5.6px;
    }
    .biz-card__meta-item i {
        color: var(--navy);
        width: 14px;
        flex-shrink: 0;
    }
    .cat-card__info-item {
        font-size: 14px;
        color: #9A9080;
        line-height: 1.5;
    }
    .biz-card__cta,
    .cat-card__cta {
        display: inline-flex;
        align-items: center;
        gap: 5.6px;
        background: var(--mustard);
        color: var(--navy);
        border: none;
        border-radius: 0;
        padding: 5px 20px;
        font-size: 16px;
        font-weight: 700;
        transition: var(--transition);
        text-decoration: none;
        margin-top: auto;
        justify-content: center;
    }
    .biz-card:hover .biz-card__cta,
    .cat-card:hover .cat-card__cta {
        background: #b08d3d;
    }
.business-card__rating .star--empty {
    color: var(--border-gray);
}
.business-card__rating .rating-count {
    font-size: 14px;
    color: var(--body-text);
    margin-right: 4px;
}
.business-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
}
.business-card__cta:hover {
    background: #009e92;
    color: var(--white);
}

/* Business grid */
.business-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 576px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1200px) {
    .business-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---- Featured Business ("עסק היום") ---- */
.featured {
    padding: 32px 16px 48px;
}
.featured__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.featured__top-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4px;
    width: fit-content;
    margin: 0 auto 24px;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: var(--radius-pill);
    padding: 8.8px 25.6px;
    font-size: 17.6px;
    font-weight: 700;
    color: var(--navy);
}
.featured__top-badge i {
    color: #F5A623;
    font-size: 16px;
}
.featured__card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(to right, #dff0f7 0%, #e8dfd0 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}
.featured__image-side {
    position: relative;
    overflow: hidden;
    min-height: 320px;
}
.featured__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}
.featured__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0e6d8, #e8dfd0);
    font-size: 64px;
    color: var(--body-text);
    width: 100%;
    height: 100%;
    min-height: 320px;
}
.featured__content {
    padding: 32px 24px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.featured__content p {margin-bottom: 5px !important;}
.featured__story-badge {
    display: inline-flex;
    align-items: center;
    gap: 6.4px;
    color: var(--navy);
    font-size: 14.4px;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.85;
}
.featured__story-badge i {
    color: #F5A623;
    font-size: 13.6px;
}
.featured__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 16px;
    line-height: 1.3;
}
.featured__desc {
    font-size: 15.6px;
    color: var(--dark-gray-text);
    line-height: 1.85;
    margin: 0 0 24px;
}
.featured__meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.featured__meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6.4px;
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid var(--border-gray);
    border-radius: var(--radius-pill);
    padding: 7.2px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    backdrop-filter: blur(4px);
}
.featured__meta-pill i {
    color: var(--navy);
    font-size: 12.8px;
}
.featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a2e;
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    padding: 14.4px 35.2px;
    font-size: 16.8px;
    font-weight: 700;
    font-family: var(--font-Heebo);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: fit-content;
}
.featured__cta:hover {
    background: #0d0d1a;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

@media (min-width: 768px) {
    .featured {
        padding: 40px 24px 64px;
    }
    .featured__card {
        flex-direction: row;
        min-height: 480px;
    }
    .featured__image-side {
        flex: 0 0 45%;
        min-height: auto;
    }
    .featured__content {
        padding: 48px;
    }
    .featured__title {
        font-size: 40px;
    }
}

/* ---- Communities Section ---- */
.communities {
    padding: 32px 0;
}
.communities__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin: 0 0 24px;
}
.communities__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.communities__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
.communities__item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.communities__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 28px;
    overflow: hidden;
}
.communities__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.communities__icon i,
.communities__icon svg {
    color: var(--navy);
}
.communities__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}
.communities__count {
    font-size: 14px;
    color: var(--body-text);
}

@media (min-width: 576px) {
    .communities__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) {
    .communities__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ---- Single Business Page ---- */
.business-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
}
.business-page__gallery {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 16 / 9;
}
.business-page__gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.business-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.business-page__main {
    min-width: 0;
}
.business-page__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 8px;
}
.business-page__category {
    display: inline-block;
    background: rgba(0, 180, 166, 0.1);
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: var(--radius-pill);
    margin-bottom: 16px;
}
.business-page__description {
    font-size: 16px;
    color: var(--body-text);
    line-height: 1.8;
    margin-bottom: 24px;
}
.business-page__sidebar {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    padding: 24px;
    height: fit-content;
}
.business-page__info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-gray);
    font-size: 14px;
    color: var(--dark-gray-text);
}
.business-page__info-item:last-child {
    border-bottom: none;
}
.business-page__info-item i,
.business-page__info-item svg {
    color: var(--navy);
    flex-shrink: 0;
    margin-top: 2px;
    width: 18px;
}
.business-page__info-item a {
    color: var(--navy);
    text-decoration: none;
}
.business-page__info-item a:hover {
    text-decoration: underline;
}
.business-page__actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

@media (min-width: 768px) {
    .business-page {
        padding: 32px 16px;
    }
    .business-page__gallery {
        aspect-ratio: 21 / 9;
    }
}
@media (min-width: 992px) {
    .business-page__layout {
        grid-template-columns: 1fr 320px;
    }
    .business-page__sidebar {
        position: sticky;
        top: 88px;
    }
}

/* Reviews */
.reviews {
    margin-top: 32px;
}
.reviews__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}
.reviews__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 16px;
}
.review-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    overflow: hidden;
    flex-shrink: 0;
}
.review-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-card__author {
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
}
.review-card__date {
    font-size: 14px;
    color: var(--body-text);
}
.review-card__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 8px;
}
.review-card__rating .star {
    color: var(--yellow);
    font-size: 14px;
}
.review-card__rating .star--empty {
    color: var(--border-gray);
}
.review-card__text {
    font-size: 14px;
    color: var(--dark-gray-text);
    line-height: 1.6;
}

/* Related businesses */
.related-businesses {
    margin-top: 32px;
}
.related-businesses__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 16px;
}
.related-businesses__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 576px) {
    .related-businesses__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .related-businesses__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Pagination ---- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 0;
}
.pagination-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}
.pagination-item:hover:not(.active):not(.disabled) {
    border-color: var(--navy);
    background: var(--light-gray);
}
.pagination-item.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.pagination-item.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.pagination-item--prev,
.pagination-item--next {
    border: none;
    background: none;
    color: var(--navy);
}
.pagination-item--prev:hover:not(.disabled),
.pagination-item--next:hover:not(.disabled) {
    color: var(--navy);
    background: none;
}

/* ===========================================
   Homepage Components - Template Classes
   =========================================== */

/* ---- Hero Container & Search ---- */
.hero__container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 ;
}
.hero{
    padding:20px 0 15px;
}
.hero__title{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: var(--font-size-heading-xl);
    font-weight: 800;
    color: var(--navy);
}
.hero__subtitle {
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-gray-text);
    margin: 0px 0 24px;
}

.hero__search-wrap {
    display: flex;
    max-width: 600px;
    margin: 0 auto 24px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}
.hero__search {
    display: block;
    max-width: none;
    margin: 0;
    background: none;
    border: none;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}
.hero__search-icon {
    position: absolute;
    left: 112px;
    right: unset;
    top: 50%;
    transform: translateY(-50%);
    color: var(--body-text);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
    width: fit-content;
}
.hero__search-input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    min-height: 50px;
    outline: none;
    background: white;
    color: #333;
    min-width: 0;
}
.hero__search-input::placeholder {
    color: #33333390;
}
.hero__search-btn {
    background: var(--navy);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-Heebo);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.hero__search-btn:hover {
    background: #162766;
    color:white;
}

/* (Featured section styles consolidated above) */

/* ---- Businesses Section ---- */
.businesses-section {
    padding: 40px 0;
}
.businesses-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.businesses-section__heading {
    font-size: 56px;
    font-weight: 700;
    text-align: center; 
    color: var(--navy);
    margin: 0 0 20px;
}
.businesses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 650px) {
    .businesses-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (min-width: 992px) {
    .businesses-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ---- Cat Card Component ---- */
.cat-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0px 1px 4px rgba(27, 43, 75, 0.08);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.cat-card .owner-hero__social-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #C9A84C;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}
.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 16px rgba(27, 43, 75, 0.14);
}
.cat-card__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    flex: 1;
}
/* Image area */
.cat-card__image-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #CCCCCC;
    flex-shrink: 0;
}
.cat-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}
.cat-card:hover .cat-card__image {
    transform: scale(1.05);
}
.cat-card__image-placeholder {
    width: 100%;
    height: 100%;
    background: #CCCCCC;
    position: relative;
    overflow: hidden;
}
.cat-card__image-placeholder::before {
    content: '';
    position: absolute;
    width: 130%;
    height: 2px;
    top: 75%;
    left: -15%;
    background: #D8D0C4;
    transform: rotate(12deg);
}
.cat-card__image-placeholder::after {
    content: '';
    position: absolute;
    width: 130%;
    height: 2px;
    top: 24%;
    left: -15%;
    background: #D8D0C4;
    transform: rotate(-12deg);
}
/* Category badge - centered on image */
.cat-card__category-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    color: #9A9080;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 8px;
    border-radius: 3px;
    z-index: 1;
    white-space: nowrap;
}
/* Relation tag - bottom right of image */
.cat-card__image-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #A88530;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 10px;
    border-radius: 13px;
    z-index: 1;
    line-height: 18px;
    white-space: nowrap;
}
/* Body */
.cat-card__body {
    padding: 14px 10px 10px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.cat-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1B2B4B;
    margin: 0 0 6px;
    line-height: 1.2;
    text-align: right;
}
.cat-card__subtitle {
    font-size: 16px;
    font-weight: 400;
    color: #9A9080;
    margin: 0;
    line-height: 1.2;
    text-align: right;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Navy tag inside body (bottom-right) */
.cat-card__body-tag {
    display: inline-block;
    background: #1B2B4B;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    padding: 2px 10px;
    border-radius: 13px;
    line-height: 18px;
    margin-top: 10px;
    align-self: flex-end;
    white-space: nowrap;
}
/* Owner credit line */
.cat-card__owner-credit {
    font-size: 16px;
    font-weight: 400;
    color: #9A9080;
    text-align: right;
    padding: 0 18px 20px;
    line-height: 1.2;
}
/* CTA button */
.cat-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C9A84C;
    color: #1B2B4B;
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-heebo);
    padding: 5px 20px;
    border-radius: 0;
    margin: 0 0 0 0;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(27, 43, 75, 0.25);
    transition: var(--transition);
    text-decoration: none;
}
.cat-card:hover .cat-card__cta {
    background: #b08d3d;
}
/* Legacy biz-card aliases (keep for any remaining usage) */
.biz-card { display: none !important; }
.biz-card--hidden { display: none !important; }

/* ---- Show More Button ---- */
.businesses-section__show-more {
    display: flex;
    justify-content: center;
    padding: 32px 0 8px;
}
.businesses-section__show-more-btn {
    gap: 8px;
    font-size: 16px;
    padding: 12px 40px;
    border-radius: var(--radius-pill);
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.businesses-section__show-more-btn:hover {
    background: var(--navy);
    color: var(--white);
}
.businesses-section__show-more-btn i {
    transition: transform 0.2s ease;
}
.businesses-section__show-more-btn:hover i {
    transform: translateY(2px);
}

/* ---- Lead Form Section ---- */
/* ---- Lead Form Section ---- */
.lead-section {
    padding: 30px 0 ;
    background: #F8F6F2;
    color: #1B2B4B;
}
.lead-section__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}
.lead-section__header {
    text-align: center;
    margin-bottom: 5px;
}
.lead-section__heading {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1B2B4B;
}
.lead-section__subtitle {
    font-size: 24px;
        line-height: 1.1;
        margin: 0;
        max-width: 750px;
        margin-left: auto;
        margin-right: auto;
        color: #1B2B4B;
        opacity: 0.92;
}
.lead-section__down-subtitle{
    font-size:18px;
    line-height:1.1;
    text-align: center;
    margin: 0 auto;
    max-width: 750px;
    color: #1B2B4B; 
    opacity: 0.92;


}
.lead-section__grid {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 32px;
    align-items: start;
}
.lead-section__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.lead-section__info-text {
    font-size: 24px;
    line-height: 1.1;
    color: #1B2B4B;
    margin: 0;
    max-width: 620px;
}
.lead-section__form-card {
    background: transparent;
    border-radius: 0;
    padding: 20px 40px;
    box-shadow: 0 ;
    max-width: 50%;
}
.lead-section .lead-section__form-card .lead-form__fields {
    gap: 18px;
}
.lead-section .lead-form__field--half {
    flex: 1 1 calc(50% - 9px);
    min-width: 0;
}
.lead-section .lead-form__field--full {
    flex: 1 1 100%;
}
.lead-section .lead-form__input {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-family: var(--font-Heebo);
    border: 1px solid #D8D0C4;
    direction: rtl;
    border-radius: 75px;
    background: #ffffff;
    color: #1B2B4B;
    outline: none;
    transition: var(--transition);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
.lead-section .lead-form__input::placeholder {
    color: #9A9080;
}
.lead-section .lead-form__input:focus {
    border-color: #C9A84C;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}
.lead-section .lead-form__textarea {
    min-height: 160px;
    border-radius: 25px;
    resize: vertical;
    padding-top: 18px;
}
.lead-section .lead-form__btn {
    background: #1B2B4B;
    color: #ffffff;
    padding: 10px 36px;
    border-radius: 27px;
    font-size: 19px;
    font-weight: 600;
    width:100%;
    height: fit-content;
}
.lead-section .lead-form__btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lead-form__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: stretch;
}
.lead-form__field {
    flex: 1 1 180px;
    min-width: 0;
}
.lead-form__field--btn {
    flex: 1;
    max-width: 50%;
    min-width:50%;
    margin: 0 auto;
    height: fit-content;
}
.lead-form__input {
    width: 100%;
    padding: 13.6px 20px;
    font-size: 16px;
    font-family: var(--font-Heebo);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}
.lead-form__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.lead-form__input:focus {
    border-color: var(--navy);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 56, 0.2);
}
.lead-form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-Heebo);
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    height: 100%;
}
.lead-form__btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 215, 56, 0.4);
}
.lead-form__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.lead-form__msg {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-size: 15.2px;
    font-weight: 500;
    text-align: center;
}
.lead-form__msg--success {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}
.lead-form__msg--error {
    background: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 600px) {
    .lead-form__fields {
        flex-direction: column;
        margin-bottom: 10px;
    }
    .lead-form__field {
        flex: 1 1 100%;
    }
    .lead-section__heading {
        font-size: 32px;
    }
    .lead-section__subtitle {
        font-size: 20px;
        line-height: 1.3;
    }
    .lead-section__grid {
        grid-template-columns: 1fr;
    }
    .lead-section__form-card {
        padding: 32px;
    }
    .lead-section__info-text {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 16px 0 10px;
    }
    .hero__container {
        max-width: 100%;
        padding: 0 14px;
    }
    .hero__title {
        font-size: 34px;
        line-height: 1.12;
        margin: 0 0 12px;
    }
    .hero__subtitle {
        font-size: 16px;
        line-height: 1.45;
        margin: 0 0 14px;
    }
    .hero__search-wrap {
        display: flex;
        
        margin: 0 auto 16px;
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(13, 27, 76, 0.12);
    }
    .hero__search-icon {
        left: auto;
        right: 14px;
        font-size: 15px;
    }
    .hero__search-input {
        width: 100%;
        padding: 13px 40px 13px 14px;
        font-size: 15px;
        border-bottom: 1px solid #ece8df;
    }
    .hero__search-btn {
        width:fit-content;
        padding: 12px 20px;
        font-size: 16px;
        border-radius: 0;
    }

    .hero .category-pills {
        margin: 0 auto 10px;
        max-width: 600px;
        width: 100%;
        gap: 0;
    }
    .hero .category-pills__swiper {
        width: 100%;
    }
    .hero .category-pills__slide {
        gap: 8px;
        padding: 0 0 6px;
    }
    .hero .category-pills__item {
        padding: 7px 12px;
        font-size: 13px;
        min-height: 34px;
        width: auto;
    }

    .hero + .banner-swiper {
        height: 180px;
        max-width: 100vw;
        margin: 0 0px;
        border-radius: 0px;
        overflow: hidden;
    }
    .hero + .banner-swiper .banner-swiper__nav {
        width: 34px;
        height: 34px;
    }
    .hero + .banner-swiper .banner-swiper__nav i {
        font-size: 26px;
    }
    .hero + .banner-swiper .banner-swiper__nav--prev {
        right: 8px;
    }
    .hero + .banner-swiper .banner-swiper__nav--next {
        left: 8px;
    }

    .community-section {
        padding: 30px 14px;
    }
    .community-section h4 {
        font-size: 28px;
        line-height: 1.2;
        text-align: center;
    }
    .community-categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 18px auto 16px;
        padding: 0;
    }
    .category-cube {
        min-height: 92px;
        border-radius: 16px;
        gap: 8px;
        padding: 12px 10px;
        box-shadow: 0 8px 18px rgba(13, 27, 76, 0.1);
    }
    .category-cube i,
    .category-cube svg {
        font-size: 30px;
    }
    .category-cube span {
        font-size: 15px;
    }
    .community-section__cta {
        width: 100%;
        max-width: 320px;
        text-align: center;
        font-size: 15px;
        padding: 12px 18px;
    }

    .hero ~ .seal-section {
        padding: 34px 0;
    }
    .hero ~ .seal-section .seal-section__container {
        padding: 0 14px;
        gap: 20px;
    }
    .hero ~ .seal-section:not(.seal-section--gold) .seal-section__image-wrap {
        order: -1;
    }
    .hero ~ .seal-section .seal-section__eyebrow {
        font-size: 14px;
        padding: 3px 16px;
    }
    .hero ~ .seal-section .seal-section__title {
        font-size: 30px;
        line-height: 1.2;
    }
    .hero ~ .seal-section .seal-section__description {
        font-size: 16px;
        line-height: 1.6;
    }
    .hero ~ .seal-section .seal-section__list {
        margin: 0;
        gap: 12px;
    }
    .hero ~ .seal-section .seal-section__item {
        font-size: 15px;
        line-height: 1.5;
        gap: 10px;
    }
    .hero ~ .seal-section .seal-section__icon {
        width: 26px;
        height: 26px;
    }
    .hero ~ .seal-section .seal-section__image {
        min-height: 240px;
        border-radius: 16px;
    }

    .hero ~ .seal-section--gold .seal-section__container {
        display: flex;
        flex-direction: column;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__media {
        order: -1;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__title {
        font-size: 30px;
        line-height: 1.2;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__description {
        font-size: 18px;
        line-height: 1.45;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__feature-text {
        font-size: 16px;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__button {
        width: 100%;
        margin-top: 20px;
        padding: 12px 20px;
        font-size: 18px;
        border-radius: 30px;
    }
    .hero ~ .seal-section--gold .sec-wrap-gold__image {
        min-height: 240px;
        border-radius: 16px;
    }

    .hero ~ .lead-section {
        padding: 36px 0;
    }
    .hero ~ .lead-section .lead-section__container {
        padding: 0 14px;
    }
    .hero ~ .lead-section .lead-section__heading {
        font-size: 34px;
        margin: 0 0 10px;
    }
    .hero ~ .lead-section .lead-section__subtitle {
        font-size: 18px;
        line-height: 1.4;
    }
    .hero ~ .lead-section .lead-section__form-card {
        max-width: 100%;
        min-width: 100%;
        padding: 8px 0 0;
    }
    .hero ~ .lead-section .lead-form__fields {
        gap: 10px;
        margin-bottom: 20px;
    }
    .hero ~ .lead-section .lead-form__input {
        font-size: 15px;
        padding: 13px 16px;
    }
    .hero ~ .lead-section .lead-form__textarea {
        min-height: 130px;
    }
    .hero ~ .lead-section .lead-form__btn {
        font-size: 17px;
        padding: 14px 20px;
    }
}

/* ---- Communities Section (template classes) ---- */
.communities-section {
    padding: 40px 0;
    background: var(--light-gray);
}
.communities-section__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
.communities-section__heading {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 20px;
    text-align: center;
}
.communities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 576px) {
    .communities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 768px) {
    .communities-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.community-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 16px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}
.community-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}
.community-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(0, 180, 166, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 24px;
    color: var(--navy);
}
.community-card__title {
    font-size: 15.2px;
    font-weight: 600;
    color: var(--navy);
    margin: 0 0 4px;
}
.community-card__desc {
    font-size: 12.8px;
    color: var(--body-text);
    margin: 0;
    line-height: 1.4;
}

/* ---- Pagination (template classes) ---- */
.pagination__link {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border-gray);
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}
.pagination__link:hover {
    border-color: var(--navy);
    background: var(--light-gray);
}
.pagination__link--active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    pointer-events: none;
}
.pagination__link--prev,
.pagination__link--next {
    border: none;
    background: none;
    color: var(--navy);
    width: auto;
    gap: 4px;
    font-size: 13.6px;
}
.pagination__link--prev:hover,
.pagination__link--next:hover {
    color: var(--navy);
    background: none;
}

/* ---- Listing Page (businesses directory) ---- */
.listing-page {
    padding-bottom: 0px;
}
.listing-page__header {
    background: linear-gradient(135deg, #0D1B4C 0%, #162766 100%);
    color: var(--white);
    padding: 40px 16px;
    margin-bottom: 32px;
    text-align: center;
}
.listing-page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 16px 30px;
}
/* Two-column layout: sidebar (right) + main (left) */
.listing-page__inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    padding:0px 0 20px;
}
/* ---- Sidebar ---- */
.listing-sidebar {
    flex: 0 0 260px;
    width: 260px;
    position: static;
    
}
.listing-page .breadcrumbs {
   margin:0;
   padding:0;
}
.listing-sidebar__title {
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin: 0 0 6px;
    line-height: 1.2;
}
.listing-sidebar__count {
    font-size: 16px;
    color: #9A9080;
    margin: 0 0 18px;
}
/* Filter blocks */
.listing-filter {
    margin-bottom: 20px;
   
    border-radius: 12px;
    overflow: hidden;
}

.listing-filter__list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: #D8D0C4;
}
.listing-filter__item {
    margin: 0;
    width:100%;
    border-bottom: 1px solid #9A9080;
}

.listing-filter__item:last-child {
    border-bottom: 0;
}

.listing-filter__link {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 16px;
    color: #3D3D3D;
    text-decoration: none;
    direction: rtl;
    transition: background 0.15s ease, color 0.15s ease;
}
.listing-filter__link:hover {
    background: var(--bg-secondary);
    color: var(--navy);
}
.listing-filter__check {
    width: 14px;
    font-size: 13px;
    color: var(--navy);
    opacity: 0;
    flex-shrink: 0;
}
.listing-filter__link--active {
    font-weight: 700;
    color: var(--navy);
}
.listing-filter__link--active .listing-filter__check {
    opacity: 1;
}
.listing-filter summary {
    display: none;
    list-style: none;
}
.listing-filter summary::-webkit-details-marker {
    display: none;
}
/* ---- Main content ---- */
.listing-main {
    flex: 1;
    min-width: 0;
}
.listing-page__search {
    max-width: 600px;
    margin: 0 auto;
}
.listing-page__search-wrap {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: var(--radius-pill);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    position: relative;
}
.listing-page__search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--body-text);
    font-size: 14px;
    pointer-events: none;
    z-index: 1;
}
.listing-page__search-input {
    flex: 1;
    border: none;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    font-family: var(--font-Heebo);
    outline: none;
    background: transparent;
    color: var(--dark-gray-text);
    min-width: 0;
}
.listing-page__search-input::placeholder {
    color: var(--body-text);
}
.listing-page__search-btn {
    background: var(--navy);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-Heebo);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.listing-page__search-btn:hover {
    background: #162766;
}
.listing-page__empty {
    text-align: center;
    padding: 64px 16px;
    color: var(--body-text);
}
.listing-page__empty-icon {
    font-size: 48px;
    color: var(--border-gray);
    margin-bottom: 16px;
    display: block;
}
.listing-page__empty p {
    font-size: 18px;
    margin: 0 0 16px;
}
.listing-page__empty-link {
    display: inline-block;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
}
.listing-page__empty-link:hover {
    text-decoration: underline;
}

/* Category pills spacing in listing page */
.listing-page .category-pills {
    max-width: none;
    margin-bottom: 32px;
}
.listing-page .category-pills__swiper {
    overflow: visible;
}

.listing-page__show-more {
    display: flex;
    justify-content: center;
    padding: 24px 0 8px;
}

.listing-page__show-more-btn {
    background: #1B2B4B;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-Heebo);
    cursor: pointer;
    transition: background 0.2s ease;
}

.listing-page__show-more-btn:hover {
    background: #162766;
}

@media (min-width: 768px) {
    .listing-page__header {
        padding: 56px 24px;
    }
    .listing-page__title {
        font-size: 40px;
    }
    .listing-main{
        margin: 0 auto !important;
    }
}

@media (max-width: 767px) {
    .listing-page__inner {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .listing-sidebar {
        flex: none;
        width: 100%;
        position: static;
    }
    .listing-filter summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        width: 100%;
        background: #D8D0C4;
        color: #1B2B4B;
        padding: 12px 18px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        border: none;
    }
    .listing-filter[open] .listing-filter__toggle i {
        transform: rotate(180deg);
    }
    .listing-filter__toggle i {
        transition: transform 0.2s ease;
    }
    .listing-filter:not([open]) .listing-filter__list {
        display: none;
    }
    .listing-filter[open] .listing-filter__list {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 10px 12px;
    }
    .listing-filter__list {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 10px 12px;
    }
    .listing-filter__link {
        padding: 6px 14px;
        border: none;
        border-radius: 20px;
        font-size: 14px;
    }
    .listing-filter__link:hover {
        background: transparent;
        color: var(--navy);
    }
    .listing-filter__check {
        display: inline-flex;
        opacity: 0;
        transition: opacity 0.15s ease;
    }
}

/* ---- Owner Hero Section (biz show page) ---- */
.owner-hero {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 0px 0 48px;
    direction: rtl;
    margin: 0 auto;
    max-width: 1000px;
}
.owner-hero__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.cat-card .owner-hero__relation-badge--desktop{
    margin-bottom: 10px;
}
.owner-hero__relation-badge {
     background: #1B2B4B;
    max-width:fit-content;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-Heebo);
    line-height: 16px;
    padding: 3px 10px;
    border-radius: 21px;
    white-space: nowrap;
}

.owner-hero__relation-badge--desktop {
    display: block;
    
}

.owner-hero__relation-badge--mobile {
    display: none;
}
.owner-hero__photo {
    width: 188px;
    height: 188px;
    border-radius: 50%;
    border: 2px solid #C9A84C;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
}
.owner-hero__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #D8D0C4;
    font-size: 64px;
    color: #9A9080;
}
.owner-hero__center {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0px;
}
.owner-hero__name {
    font-size: 46px;
    font-weight: 900;
    color: #1B2B4B;
    line-height: 1.05;
    margin: 10px 0 5px;
}
.owner-hero__description {
    font-size: 18px;
    font-weight: 400;
    color: #1A202C;
    line-height: 1;
    margin: 0;
}
.owner-hero__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    margin-bottom: 10px;
}
.owner-hero__left .owner-hero__relation-badge{
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-Heebo);
    padding: 8px 24px;
    border-radius: 28px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;

}
.owner-hero__contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #C9A84C;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: var(--font-Heebo);
    padding: 0px 24px;
    border-radius: 28px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.owner-hero__contact-btn:hover {
    background: #b08d3d;
    color: #ffffff;
}
.owner-hero__contact-btn-sml{
     display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #C9A84C;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font-Heebo);
    padding: 0px 10px;
    border-radius: 28px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}
.owner-hero__social {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    border-bottom: none !important;
    align-items: center;
}
.owner-hero__social-btn {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background: #C9A84C;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}
.owner-hero__social-btn:hover {
    background: #b08d3d;
    color: #ffffff;
}

/* ---- Mobile Responsive - Owner Hero ---- */
@media (max-width: 768px) {
    .owner-hero {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 24px 16px 32px;
        text-align: center;
    }
    
    .owner-hero__right {
        width: 100%;
        gap: 10px;
    }
    
    .owner-hero__photo {
        width: 140px;
        height: 140px;
        border-width: 2px;
    }
    
    .owner-hero__relation-badge--desktop {
        display: none;
    }
    
    .owner-hero__relation-badge--mobile {
        display: inline-block;
        font-size: 16px;
        padding: 8px 16px;
        line-height: 16px;
    }
    
    .owner-hero__center {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .owner-hero__name {
        font-size: 32px;
        font-weight: 900;
        margin: 0;
        line-height: 1.1;
    }
    
    .owner-hero__description {
        font-size: 14px;
        line-height: 1.4;
        margin: 6px 0 0;
        color: #4A5568;
    }
    
    .owner-hero__left {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
        margin-top: 12px;
    }
    
    .owner-hero__contact-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 700;
    }
    
    .owner-hero__social {
        width: 100%;
        justify-content: center;
        gap: 8px;
        margin: 0;
    }
    
    .owner-hero__social-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .owner-hero {
        padding: 16px 12px 24px;
        gap: 16px;
    }
    
    .owner-hero__photo {
        width: 110px;
        height: 110px;
    }
    
    .owner-hero__relation-badge--mobile {
        font-size: 14px;
        padding: 6px 12px;
    }
    
    .owner-hero__name {
        font-size: 24px;
        margin: 0;
    }
    
    .owner-hero__description {
        font-size: 13px;
    }
    
    .owner-hero__contact-btn {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .owner-hero__social-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
        .owner-hero__center{
            align-items: flex-start;
        }
}

/* ---- Products section under owner hero ---- */
.biz-products {
    background: var(--bpBg, #FBF5E6);
    border-radius: 0px;
    padding: 22px 20px 48px;
    margin: 20px auto 36px;
    position: relative;
    
    min-width: 100%;
    max-width: 1080px;
}

/* ---- color variants ---- */
.biz-products--color-1 { --bpBg:#F5F2ED; --bpBorder:#C9C0B3; --bpCardBg:#FAF8F5; }
.biz-products--color-2 { --bpBg:#EEEAE4; --bpBorder:#B7AE9F; --bpCardBg:#F7F4F1; }
.biz-products--color-3 { --bpBg:#E7E1D8; --bpBorder:#AFA596; --bpCardBg:#F3F0EA; }
.biz-products--color-4 { --bpBg:#E1DBD2; --bpBorder:#A79C8D; --bpCardBg:#EEE9E2; }
.biz-products--color-5 { --bpBg:#DBD4C9; --bpBorder:#9E9384; --bpCardBg:#E8E3DC; }
.biz-products--color-6 { --bpBg:#D4CCBF; --bpBorder:#948979; --bpCardBg:#E2DDD5; }

.biz-products__tabs {
    display: flex;
    position: absolute;
    top: -40px;
    right: 30%;
    left: auto;
    gap: 8px;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.biz-products__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1B2B4B;
    background: #D8D0C4;
    border-radius: 16px 16px 0 0;
    min-height: 38px;
    padding: 0 18px;
    font-size: 20px;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Tab color variants */
.biz-products__tab--color-1 { background: #E6E0D8; }
.biz-products__tab--color-1.biz-products__tab--active { background: #B7AE9F; color: #fff; }
.biz-products__tab--color-2 { background: #D8D0C4; }
.biz-products__tab--color-2.biz-products__tab--active { background: #9C9182; color: #fff; }
.biz-products__tab--color-3 { background: #CCC3B6; }
.biz-products__tab--color-3.biz-products__tab--active { background: #8E8374; color: #fff; }
.biz-products__tab--color-4 { background: #BFB5A8; }
.biz-products__tab--color-4.biz-products__tab--active { background: #807566; color: #fff; }
.biz-products__tab--color-5 { background: #B2A799; }
.biz-products__tab--color-5.biz-products__tab--active { background: #726758; color: #fff; }
.biz-products__tab--color-6 { background: #A59A8B; }
.biz-products__tab--color-6.biz-products__tab--active { background: #64594B; color: #fff; }

.biz-products__tab:hover {
    opacity: 0.85;
}

.biz-products__head {
    max-width: 1200px;
    margin:0 auto 12px;
}

.biz-products__head-main {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.biz-products__title {
    margin: 0;
    color: #1B2B4B;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 800;
}

.biz-products__subcat-menu {
    position: relative;
    width: 220px;
    background: #d8d0c4;
    border-radius: 12px;
    border: 1px solid rgba(154, 144, 128, 0.55);
}

.biz-products__subcat-summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    font-size: 17px;
    font-weight: 600;
    color: #1b2b4b;
    cursor: pointer;
}

.biz-products__subcat-summary::-webkit-details-marker {
    display: none;
}

.biz-products__subcat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #d8d0c4;
    border-top: 1px solid rgba(154, 144, 128, 0.55);
}

.biz-products__subcat-item {
    border-bottom: 1px solid rgba(154, 144, 128, 0.55);
}

.biz-products__subcat-item:last-child {
    border-bottom: 0;
}

.biz-products__subcat-link {
    display: block;
    padding: 10px 14px;
    font-size: 15px;
    color: #1b2b4b;
    text-decoration: none;
    transition: background 0.2s ease;
}

.biz-products__subcat-link:hover {
    background: rgba(255, 255, 255, 0.45);
}

.biz-products__subcat-link--active {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.55);
}

.biz-products__subcat-menu--mobile {
    display: none;
}

.biz-products__layout {
    display: grid;
    grid-template-columns: 220px minmax(0, 60vw);
    justify-content: stretch;
    margin: 0 auto;
    gap: 16px;
    align-items: start;
    max-width: 1200px;
}

.biz-products__layout--no-filters {
    grid-template-columns: 1fr;
}

.biz-products__filters {
    background: #D8D0C4;
    border-radius: 16px;
    overflow: hidden;
    align-self: start;
    width: 220px;
}

.biz-products__content {
    min-width: 0;
}

.biz-products__filter-list {
    list-style: none;
    margin: 0;
    padding:  0;
}

.biz-products__filter-item {
    border-bottom: 1px solid rgba(154, 144, 128, 0.6);
}

.biz-products__filter-item:last-child {
    border-bottom: 0;
}

.biz-products__filter-link {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    text-decoration: none;
    color: #9A9080;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    padding: 12px 16px;
    transition: background 0.2s ease, color 0.2s ease;
}

.biz-products__filter-link:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #1B2B4B;
}

.biz-products__filter-link--active {
    color: #1B2B4B;
    font-weight: 700;
}

.biz-products__filter-check {
    opacity: 0;
    color: #1B2B4B;
    font-size: 13px;
    width: 14px;
    flex-shrink: 0;
}

.biz-products__filter-link--active .biz-products__filter-check {
    opacity: 1;
}

.biz-products__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(12px, 2vw, 24px);
    width: 100%;
}

/* ---- Swiper ---- */
.biz-products__swiper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.biz-products__swiper-viewport {
    flex: 1;
    min-width: 0;
}

.biz-products__swiper-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #1B2B4B;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.biz-products__swiper-btn:hover {
    background: #C9A84C;
}

.biz-products__swiper-btn:disabled {
    opacity: 0.25;
    cursor: default;
}

.biz-product-card {
    background: var(--bpCardBg, #fff);
    width: min(60vw, 100%);
    max-width: min(60vw, 100%);
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(27, 43, 75, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    min-height: 360px;
    max-height: 500px;
}

.biz-product-card__media {
    background: #CBCBCB;
    position: relative;
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    min-height: 360px;
}

.biz-product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.biz-product-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d9d9d9, #c3c3c3);
}

.biz-product-card__body {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    box-sizing: border-box;
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    direction: rtl;
    min-width: 0;
}

.biz-product-card__subtitle {
    margin: 0;
    color: #C9A84C;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}

.biz-product-card__title {
    margin: 0;
    color: #1B2B4B;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.biz-product-card__meta {
    display: grid;
    margin-top: auto;
    gap: 2px;
    border-bottom: 1px solid rgba(27, 43, 75, 0.22);
    margin-bottom: 6px;
    padding-bottom: 8px;
}

.biz-product-card__meta-title {
    margin: 0 0 4px;
    color: #101010;
    font-size: 18px;
    font-weight: 700;
}

.biz-product-card__meta-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-inline-start: 14px;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.biz-product-card__meta-item::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 8px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-inline-start: 7px solid #F0C222;
}

.biz-product-card__description {
    margin: 4px 0 0;
    color: #111;
    font-size: 14px;
    line-height: 1.45;
}

.biz-product-card__actions {
    margin-top: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.biz-product-card__btn {
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.biz-product-card__btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.biz-product-card__btn--gold {
    background: #F0C222;
    color: #1B2B4B;
}

.biz-product-card__btn--navy {
    background: #1B2B4B;
    color: #fff;
}

.biz-products__empty {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    color: #1B2B4B;
    font-weight: 600;
}

/* ---- Business story section ---- */
.business-story {
    max-width: 1200px;
    margin: 0 auto 44px;
}

.business-story__header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 0px;
}

.business-story__title {
    margin: 0;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

.business-story__card {
    display: grid;
    grid-template-columns:1fr 553px ;
    gap: 28px;
    align-items: start;
}

.business-story__media {
    position: relative;
    width: 100%;
}

.business-story__slide {
    margin: 0;
    width: 100%;
}

.business-story__slide--hidden {
    display: none;
}

.business-story__image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    background-position: top center !important;
    display: block;
    border-radius: 24px;
}

.business-story__dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 18px;
}

.business-story__dot {
    width: 13px;
    height: 13px;
    border: 0;
    border-radius: 50%;
    background: #D9D9D9;
    padding: 0;
    cursor: pointer;
}

.business-story__dot--active {
    background: #A88530;
}

.business-story__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.55);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s ease, transform 0.2s ease;
}

.business-story__arrow:hover {
    background: rgba(17, 17, 17, 0.8);
}

.business-story__arrow:focus-visible {
    outline: 2px solid #A88530;
    outline-offset: 2px;
}

.business-story__arrow--prev {
    right: 12px;
}

.business-story__arrow--next {
    left: 12px;
}

.business-story__content {
    padding-top: 0;
}

.business-story__story-title {
    margin: 0 0 10px;
    color: #111;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    text-align: right;
}

.business-story__text {
    color: #111;
    font-size: 18px;
    line-height: 1.45;
    text-align: right;
}

.business-story__text p {
    margin: 0 0 5px;
}

.business-story__text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1100px) {
    .business-story{
        padding: 0 16px;
    }
    .business-story__card {
        grid-template-columns: 1fr;
    }

    .business-story__image {
        height: auto;
        aspect-ratio: 553 / 606;
    }
}

@media (max-width: 767px) {
    .owner-hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 20px 32px;
    }
    .owner-hero__right {
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .owner-hero__center {
        padding-top: 0;
    }
    .owner-hero__name {
        font-size: 32px;
    }
    .owner-hero__description {
        font-size: 18px;
    }
    .owner-hero__left {
        align-items: center;
    }
    .owner-hero__social {
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
    }

    .biz-products {
        padding: 20px 12px 24px;
        border-radius: 0;
        margin: 16px 0 28px;
    }

    .biz-products__tabs {
        gap: 6px;
        position: absolute;
        top:-35px;
        margin-bottom: 12px;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .biz-products__tab {
        min-height: 32px;
        padding: 0 14px;
        font-size: 16px;
        border-radius: 18px 18px 0 0;
        flex: 0 0 auto;
    }

    .biz-products__layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .biz-products__filters {
        display: none;
    }
    .biz-products__subcat-menu{
        width:100%;
    }

    .biz-products__subcat-menu--mobile {
        display: block;
        background: #D8D0C4;
        border: 1px solid rgba(154, 144, 128, 0.45);
        border-radius: 28px;
        overflow: hidden;
    }

    .biz-products__subcat-menu--mobile .biz-products__subcat-summary {
        padding: 10px 0px;
        margin-bottom: 10px;
        font-size: 18px;
        font-weight: 700;
        color: #1B2B4B;
    }

    .biz-products__subcat-menu--mobile[open] .biz-products__subcat-summary i {
        transform: rotate(180deg);
    }

    .biz-products__subcat-menu--mobile .biz-products__subcat-list {
        padding: 0;
    }

    .biz-products__subcat-menu--mobile .biz-products__subcat-link {
        font-size: 15px;
        padding: 10px 18px;
    }

    .biz-products__title {
        font-size: 32px;
        text-align: center;
    }

    .biz-products__head-main {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .biz-product-card {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 24px;
        margin-top:20px;
    }

    .biz-product-card__media {
        min-height: 327px;
        order: -1;
        max-width: none;
        width: 100%;
        flex-basis: auto;
    }

    .biz-product-card__body {
        width: 100%;
        max-width: none;
        flex-basis: auto;
        padding: 18px 16px 16px;
    }

    .biz-product-card__title {
        font-size: 32px;
    }

    .biz-product-card__subtitle {
        font-size: 24px;
    }

    .biz-product-card__description {
        font-size: 18px;
    }

    .biz-product-card__meta-title {
        font-size: 20px;
    }

    .biz-product-card__meta-item {
        font-size: 16px;
    }

    .biz-product-card__btn {
        width: auto;
        flex: 1 1 0;
        padding: 14px 16px;
        font-size: 16px;
        min-height: 56px;
    }

    .biz-product-card__actions {
        flex-wrap: nowrap;
    }

    .biz-product-card__btn--gold,
    .biz-product-card__btn--navy {
        border-radius: 28px;
    }

    .biz-products__grid {
        gap: 16px;
    }

    .business-story__title,
    .business-story__story-title {
        font-size: 32px;
        text-align: right;
    }

    .business-story__text {
        font-size: 20px;
        line-height: 1.35;
    }

    .business-story__card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .business-story__image {
        border-radius: 24px;
        height: auto;
        aspect-ratio: 419 / 459;
    }

    .business-story__dots {
        margin-top: 12px;
    }

    .business-story__arrow {
        width: 36px;
        height: 36px;
    }

    .business-story__arrow--prev {
        right: 8px;
    }

    .business-story__arrow--next {
        left: 8px;
    }
}
