/* business.css — IMDB-inspired business profile page */

/* ─── HERO ─────────────────────────────────────────────── */
.biz-hero {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 360px;
    overflow: hidden;
    background: #0a0a1a;
}
.biz-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.biz-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10,10,26,0.95) 0%, rgba(10,10,26,0.4) 50%, transparent 100%);
}
.biz-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 0 24px 0;
}
.biz-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
.biz-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    border: 3px solid rgba(255,255,255,0.9);
    object-fit: cover;
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.biz-hero-info {
    flex: 1;
    min-width: 0;
}
.biz-hero-name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.biz-hero-meta {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.biz-hero-meta span + span::before {
    content: "·";
    margin: 0 8px;
}
.biz-hero-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    align-items: flex-end;
}
.biz-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}
.biz-btn-follow {
    background: #f5c518;
    color: #000;
}
.biz-btn-follow:hover {
    background: #e0b015;
    color: #000;
    text-decoration: none;
}
.biz-btn-follow.following {
    background: transparent;
    border: 1.5px solid #f5c518;
    color: #f5c518;
}
.biz-btn-share {
    background: rgba(255,255,255,0.15);
    color: #fff;
    backdrop-filter: blur(8px);
}
.biz-btn-share:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
    text-decoration: none;
}

/* stats bar removed — followers + contact now in sidebar */

/* ─── COMMUNITY CARD ─────────────────────────────────── */
.biz-community-card {
    padding: 16px;
}
.biz-community-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.biz-community-row svg {
    color: #f5c518;
    flex-shrink: 0;
}
.biz-community-count {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
}
.biz-community-label {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.biz-community-btn {
    display: block;
    width: 100%;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: #1a1a2e;
    color: #fff;
    transition: background 0.2s;
}
.biz-community-btn:hover {
    background: #2d2d44;
    color: #fff;
    text-decoration: none;
}
.biz-community-btn-secondary {
    background: #f0f4ff;
    color: #3b82f6;
}
.biz-community-btn-secondary:hover {
    background: #dbe4ff;
    color: #3b82f6;
}
.biz-community-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 14px 0;
}

/* ─── FOLLOWERS PAGE ─────────────────────────────────── */
.biz-followers-page-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}
.biz-followers-page-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f0f0f0;
    color: #555;
    text-decoration: none;
    transition: background 0.2s;
}
.biz-followers-page-back:hover {
    background: #e0e0e0;
    color: #333;
    text-decoration: none;
}
.biz-followers-page-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.biz-followers-page-count {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}
.biz-followers-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.biz-follower-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: background 0.15s;
}
.biz-follower-item:hover {
    background: #f8f9fa;
}
.biz-follower-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e8e8e8;
    flex-shrink: 0;
}
.biz-follower-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
}
.biz-follower-info {
    flex: 1;
    min-width: 0;
}
.biz-follower-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
}
.biz-follower-since {
    font-size: 12px;
    color: #999;
    margin: 2px 0 0 0;
}
.biz-followers-empty {
    text-align: center;
    padding: 48px 20px;
    color: #999;
}
.biz-followers-empty svg {
    color: #ddd;
    margin-bottom: 12px;
}
.biz-followers-load-more {
    display: block;
    width: 100%;
    padding: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    cursor: pointer;
    text-align: center;
    margin-top: 16px;
    transition: background 0.2s;
}
.biz-followers-load-more:hover {
    background: #f0f4ff;
}

/* ─── SECTION NAV ─────────────────────────────────────── */
.biz-nav {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.2s;
}
.biz-nav.scrolled {
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.biz-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}
.biz-nav-inner::-webkit-scrollbar {
    display: none;
}
.biz-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    position: relative;
}
.biz-nav-item:hover {
    color: #1a1a2e;
    text-decoration: none;
}
.biz-nav-item.active {
    color: #1a1a2e;
    border-bottom-color: #f5c518;
}
.biz-nav-item.active svg {
    color: #f5c518;
}
.biz-nav-item svg {
    flex-shrink: 0;
    color: #999;
    transition: color 0.2s;
}
.biz-nav-item:hover svg {
    color: #666;
}

/* ─── PAGE OVERRIDE ────────────────────────────────────── */
.biz-page { min-height: 100vh; display: flex; flex-direction: column; }
.biz-page .biz-content { flex: 1; }
.biz-page .secondary-nav { display: none; }
.biz-page .navbar-overlap::after { display: none; }

/* ─── MAIN CONTENT ─────────────────────────────────────── */
.biz-content {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
}
.biz-layout {
    display: flex;
    gap: 28px;
    width: 100%;
    box-sizing: border-box;
}
.biz-sidebar {
    width: 33.333%;
    min-width: 0;
    flex-shrink: 0;
    box-sizing: border-box;
}
.biz-main {
    width: 66.667%;
    min-width: 0;
    flex-grow: 1;
    box-sizing: border-box;
}
.biz-sidebar-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}
.biz-sidebar-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin: 0 0 12px 0;
}
.biz-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}
.biz-sidebar-item:last-child { margin-bottom: 0; }
.biz-sidebar-item svg { flex-shrink: 0; color: #999; margin-top: 2px; }
.biz-sidebar-item a { color: #3b82f6; text-decoration: none; }
.biz-sidebar-item a:hover { text-decoration: underline; }
.biz-sidebar-map {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 12px;
    background: #eee;
}
.biz-sidebar-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    padding: 6px 14px;
    margin-top: 10px;
    border: 1.5px solid #d0d5dd;
    border-radius: 20px;
    transition: all 0.2s;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
}
.biz-sidebar-directions:hover { border-color: #1a1a2e; color: #1a1a2e; text-decoration: none; }
.biz-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.biz-sidebar-tag {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 10px;
    background: #f0f4ff;
    color: #3b82f6;
}
.biz-empty-state {
    text-align: center;
    padding: 48px 20px;
    background: #fafafa;
    border: 1px dashed #e0e0e0;
    border-radius: 12px;
}
.biz-empty-state svg { color: #ccc; margin-bottom: 12px; }
.biz-empty-state p {
    font-size: 15px;
    color: #999;
    margin: 0;
}
.biz-follow-cta {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 12px;
    margin-top: 20px;
}
.biz-follow-cta-icon {
    color: #f5c518;
    margin-bottom: 12px;
}
.biz-follow-cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}
.biz-follow-cta-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 20px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.biz-section {
    margin-bottom: 40px;
}
.biz-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.biz-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.biz-section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    padding: 6px 14px;
    border: 1.5px solid #d0d5dd;
    border-radius: 20px;
    transition: all 0.2s;
    white-space: nowrap;
}
.biz-section-link:hover {
    border-color: #1a1a2e;
    color: #1a1a2e;
    text-decoration: none;
}

/* ─── EVENTS CAROUSEL ──────────────────────────────────── */
.biz-events-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.biz-events-scroll::-webkit-scrollbar {
    height: 4px;
}
.biz-events-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}
.biz-events-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}
.biz-event-card {
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.biz-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}
.biz-event-poster {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}
.biz-event-info {
    padding: 12px;
}
.biz-event-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 6px 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.biz-event-date {
    font-size: 12px;
    color: #666;
    margin: 0 0 2px 0;
}
.biz-event-location {
    font-size: 12px;
    color: #999;
    margin: 0 0 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.biz-event-products {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
}
.biz-event-products-label {
    font-size: 11px;
    font-weight: 600;
    color: #555;
    width: 100%;
}
.biz-event-product-tag {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 10px;
    background: #eefbf0;
    color: #2fb344;
    font-weight: 600;
}

/* ─── TOUR CARDS (matches tour page event card style) ─── */
.biz-tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.biz-tour-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.biz-tour-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}
.biz-tour-card-img {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}
.biz-tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.biz-tour-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ccc;
}
.biz-tour-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    text-align: center;
    line-height: 1.1;
}
.biz-tour-date-badge .day {
    font-size: 20px;
    font-weight: 800;
    display: block;
}
.biz-tour-date-badge .month {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.biz-tour-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(10,10,26,0.75);
    backdrop-filter: blur(6px);
    color: #f5c518;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.biz-tour-card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.biz-tour-card-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.biz-tour-card-meta {
    font-size: 13px;
    color: #888;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.biz-tour-card-action {
    margin-top: auto;
}
.biz-tour-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #1a1a2e;
    color: #fff;
    width: 100%;
    justify-content: center;
    transition: background 0.2s;
}
.biz-tour-card:hover .biz-tour-card-btn {
    background: #2d2d44;
}

/* ─── MEMBERSHIP CARDS ─────────────────────────────────── */
.biz-membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}
.biz-member-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.biz-member-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.biz-member-card-active {
    border-color: #2fb344;
    border-width: 2px;
}
.biz-member-card-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
}
.biz-member-card-logo {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    background: rgba(255,255,255,0.1);
}
.biz-member-card-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}
.biz-member-card-header-info {
    flex: 1;
    min-width: 0;
}
.biz-member-card-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 2px 0;
    line-height: 1.3;
}
.biz-member-card-header .biz-member-price {
    font-size: 14px;
    font-weight: 600;
    color: #f5c518;
}
.biz-member-card-header .biz-member-price-free {
    color: #2fb344;
    font-style: normal;
}
.biz-member-card-body {
    padding: 16px 20px;
    flex: 1;
}
.biz-member-card-desc {
    font-size: 14px;
    color: #555;
    margin: 0 0 12px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.biz-member-card-conditions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.biz-condition-tag {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 12px;
    background: #f0f4ff;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 4px;
}
.biz-member-card-footer {
    padding: 12px 20px;
    border-top: 1px solid #f0f0f0;
}
.biz-btn-join {
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}
.biz-btn-join:hover {
    background: #2563eb;
    color: #fff;
    text-decoration: none;
}
.biz-btn-member-active {
    background: #2fb344;
    color: #fff;
    cursor: default;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}
.biz-btn-member-pending {
    background: #f59f00;
    color: #fff;
    cursor: default;
    border-radius: 8px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

/* ─── MEMBER CARD OFFCANVAS ────────────────────────────── */
.biz-mc-offcanvas {
    max-width: 420px;
}
.biz-mc-offcanvas .offcanvas-header {
    border-bottom: 1px solid #eee;
    padding: 16px 20px;
}
.biz-mc-oc-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.biz-mc-oc-logo-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #eee;
}
.biz-mc-oc-logo-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    background: #fafafa;
}
.biz-mc-oc-price {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
}
.biz-mc-oc-price-free {
    color: #2fb344;
}
.biz-mc-offcanvas .offcanvas-body {
    padding: 20px;
}
.biz-mc-oc-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
}
.biz-mc-oc-desc:empty {
    display: none;
}
.biz-mc-oc-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin: 0 0 12px 0;
}
.biz-mc-oc-conditions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}
.biz-mc-oc-cond-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
}
.biz-mc-oc-cond-item svg {
    flex-shrink: 0;
    margin-top: 1px;
}
.biz-mc-oc-cond-info {
    background: #f0f4ff;
    color: #3b82f6;
}
.biz-mc-oc-cond-warn {
    background: #fff3e0;
    color: #e65100;
}
.biz-mc-oc-cond-ok {
    background: #eefbf0;
    color: #2fb344;
}
.biz-mc-oc-field {
    margin-bottom: 16px;
}
.biz-mc-oc-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}
.biz-mc-oc-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
    font-family: inherit;
}
.biz-mc-oc-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.biz-mc-oc-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    color: #333;
    cursor: pointer;
}
.biz-mc-oc-footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fff;
}
.biz-mc-oc-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    background: #3b82f6;
    color: #fff;
    transition: background 0.2s;
}
.biz-mc-oc-submit:hover {
    background: #2563eb;
}
.biz-mc-oc-submit-disabled {
    background: #f59f00;
}
.biz-mc-oc-submit-disabled:hover {
    background: #e08e00;
}

/* ─── QUESTIONNAIRE VALIDATION ─────────────────────────── */
.biz-mc-oc-input.is-invalid {
    border-color: #d63939;
}
.biz-mc-oc-input.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(214,57,57,0.1);
}

/* ─── ABOUT ────────────────────────────────────────────── */
.biz-about-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    position: relative;
    transition: max-height 0.4s ease;
}
.biz-about-text.clamped {
    max-height: 120px;
    overflow: hidden;
}
.biz-about-text.clamped::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(to top, #fff, transparent);
}
.biz-about-text.expanded {
    max-height: none;
    overflow: visible;
}
.biz-about-text.expanded::after {
    display: none;
}
.biz-about-toggle {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    margin-top: 12px;
    padding: 6px 14px;
    border: 1.5px solid #d0d5dd;
    border-radius: 20px;
    transition: all 0.2s;
}
.biz-about-toggle:hover {
    border-color: #1a1a2e;
}

/* ─── PHOTOS GRID ──────────────────────────────────────── */
.biz-photos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    border-radius: 12px;
    overflow: hidden;
}
.biz-photo-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}
.biz-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.biz-photo-item:hover img {
    transform: scale(1.05);
}
.biz-photo-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

/* ─── LOCATION ─────────────────────────────────────────── */
.biz-location-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
}
.biz-map-container {
    flex: 1;
    min-height: 250px;
    background: #eee;
}
.biz-location-details {
    flex: 0 0 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.biz-location-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
}
.biz-location-item svg {
    flex-shrink: 0;
    color: #999;
}
.biz-btn-directions {
    margin-top: auto;
    background: #1a1a2e;
    color: #fff;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}
.biz-btn-directions:hover {
    background: #2a2a3e;
    color: #fff;
    text-decoration: none;
}

/* ─── PAST EVENTS (collapsed) ──────────────────────────── */
.biz-past-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    padding: 6px 14px;
    border: 1.5px solid #d0d5dd;
    border-radius: 20px;
    background: none;
    transition: all 0.2s;
    border: none;
    background: none;
}
.biz-past-toggle svg {
    transition: transform 0.3s;
}
.biz-past-toggle.open svg {
    transform: rotate(180deg);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 768px) {
    .biz-nav-inner {
        padding: 0 12px;
        justify-content: center;
    }
    .biz-nav-item {
        padding: 12px 14px;
        gap: 6px;
    }
    .biz-nav-text {
        display: none;
    }
    .biz-hero {
        height: 260px;
    }
    .biz-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0 16px;
    }
    .biz-logo {
        width: 72px;
        height: 72px;
    }
    .biz-hero-name {
        font-size: 24px;
    }
    .biz-hero-actions {
        width: 100%;
    }
    .biz-content {
        padding: 20px 16px;
    }
    .biz-layout {
        flex-direction: column;
    }
    .biz-main {
        width: 100%;
        order: 1;
    }
    .biz-sidebar {
        width: 100%;
        order: 2;
    }
    .biz-section-title {
        font-size: 18px;
    }
    .biz-event-card {
        flex: 0 0 85%;
    }
    .biz-event-poster {
        height: 230px;
    }
    .biz-tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .biz-membership-grid {
        grid-template-columns: 1fr;
    }
    .biz-location-card {
        flex-direction: column;
    }
    .biz-location-details {
        flex: none;
    }
    .biz-photos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .biz-tours-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Dedicated Events page: vertical grid ─── */
.biz-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.biz-events-grid .biz-event-card {
    flex: none;
    width: auto;
    min-width: 0;
}
@media (max-width: 768px) {
    .biz-events-grid {
        grid-template-columns: 1fr;
    }
}

/* ─── Dedicated Photos page: full grid ─── */
.biz-photos-grid-full {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
    .biz-photos-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ─── About page ─── */
.biz-about-text-full {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    word-wrap: break-word;
}
.biz-about-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.biz-about-contact-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.biz-about-contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}
.biz-about-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #555;
}
.biz-about-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #999;
}
.biz-about-contact-item a {
    color: #206bc4;
    text-decoration: none;
}
.biz-about-contact-item a:hover {
    text-decoration: underline;
}
.biz-about-address {
    font-size: 15px;
    color: #555;
    margin-bottom: 12px;
}
.biz-about-map {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}
