/* zolosearch.com - Bento Mauve theme */

.animate-this {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-this.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Category pills used inside bento tile */
.category-pill-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.category-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(109,90,121,.2);
    background: #fff;
    font-weight: 700;
    font-size: 12px;
    color: #6D5A79;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.category-pill:hover, .category-pill.active {
    border-color: #E76B6E;
    background: #E76B6E;
    color: #fff;
}

/* preloader */
.preloader-inline { display:flex; justify-content:center; padding:30px 0; }
.spin {
    width: 32px; height: 32px;
    border: 3px solid rgba(109,90,121,.15);
    border-top-color: #E76B6E;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Scroll rail for "Trending near you" */
.trend-rail {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 8px 4px 20px;
    scroll-snap-type: x mandatory;
}
.trend-rail::-webkit-scrollbar { height: 6px; }
.trend-rail::-webkit-scrollbar-thumb { background: rgba(109,90,121,.25); border-radius: 6px; }
.trend-rail .businesscard {
    scroll-snap-align: start;
    flex: 0 0 300px;
}

/* Business cards (matches ajaxList markup: .businesscard > img + h3 + .p-3.pb-2) */
.businesscard {
    display: block;
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -18px rgba(43,34,51,.25);
    transition: transform .25s ease, box-shadow .25s ease;
}
.businesscard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px -16px rgba(43,34,51,.3);
}
.businesscard img.img-fluid {
    width: 100%;
    height: 170px;
    object-fit: cover;
    background: #FCF8FF;
    color: transparent;
    font-size: 0;
}
.businesscard h3 {
    font-family: "Familjen Grotesk", sans-serif;
    font-size: 19px;
    padding: 0 16px;
    margin-top: 12px !important;
    color: #2B2233;
}
.businesscard .p-3.pb-2 {
    padding: 8px 16px 16px !important;
}
.businesscard p {
    font-size: 13px;
    color: #847A8E;
}
.businesscard .open {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: #E76B6E;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .03em;
    padding: 4px 10px;
    border-radius: 999px;
}
.businesscard .btn {
    background: #2B2233;
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}
.businesscard .btn-sec {
    border-radius: 999px;
}

/* Step row (how it works, non-tab layout) */
.step-row { counter-reset: step; }
.step-item {
    position: relative;
    padding-left: 56px;
}
.step-item::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6D5A79;
    color: #fff;
    font-family: "Familjen Grotesk", sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blog content prose */
.blog-content { font-size: 15px; line-height: 1.8; color: #2B2233; }
.blog-content p { margin-bottom: 1em; }
.blog-content img { max-width: 100%; border-radius: 12px; margin: 1em 0; }
.blog-content h2, .blog-content h3 { font-family: "Familjen Grotesk", sans-serif; margin: 1.2em 0 .5em; }
.blog-content ul, .blog-content ol { margin: 0 0 1em 1.4em; }
