.bp-header-grid { display: grid; grid-template-columns: 3fr 1fr; margin-top: 24px; gap: 0; }

.bp-h-left { border-right: 1px solid var(--border); position: relative; }
.bp-cover { width: 100%; aspect-ratio: 3 / 1; overflow: hidden; background: url("../img/ph/bp-cover.jpg") center/cover no-repeat; }
.bp-cover img { width: 100%; height: 100%; object-fit: cover; }

.bp-identity-row { display: flex; align-items: flex-end; padding: 0 20px 15px 20px; margin-top: -30px; gap: 20px; }
.bp-logo { 
    background: url(../img/ph/bp-avatar.jpg) center / contain no-repeat;
    width: 100px; height: 100px;; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; 
    border: 4px solid #fff; box-shadow: var(--shadow); z-index: 2;
}
.bp-logo img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
}
.bp-name-block { flex: 1; padding-bottom: 10px; display: flex; justify-content: space-between; align-items: flex-end; }
.bp-name-block h1 { font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.bp-name-block .cat { color: var(--secondary); font-size: 13px; font-weight: 600; }

.bp-rating-info { text-align: center; margin-bottom: 10px; }
.bp-stars { color: #ffb400; font-size: 16px; margin-bottom: 4px; }
.bp-rating-text { font-size: 12px; font-weight: 500; color: var(--text-dark); }

.bp-header-about { padding: 5px 20px 20px 20px; font-size: 14px; color: var(--text-sub); line-height: 1.6; }

.bp-h-right { padding: 20px; display: flex; flex-direction: column; gap: 15px; }
.bp-map-container { position: relative; height: 160px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.bp-btn-dir { 
    position: absolute; top: auto; bottom: 0; left: 50%; transform: translate(-50%, 0); 
    width: 100%; height: 30px;
    background: var(--primary); color: #fff; border: none; padding: 6px 16px; 
    font-weight: 600; font-size: 11px; cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); text-transform: uppercase;
}
.bp-btn-dir:hover {
    background: var(--secondary);
}
.bp-contact-list { display: flex; flex-direction: column; gap: 12px; }
.bp-c-item .contact-title { font-size: 13px; font-weight: 600; color: var(--primary); text-transform: uppercase; display: block;}
.bp-c-item .contact-value { font-size: 14px; color: var(--text-dark); display: block; margin-top: 5px; }
.bp-socials { display: flex; gap: 10px; justify-content: center; margin-top: auto; padding-top: 10px; }
.bp-socials .social-icon { margin: 0; }
.bp-soc { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: 0.3s; }
.bp-soc.fb { background: #1877f2; } .bp-soc.ig { background: #e4405f; } .bp-soc.wa { background: #25d366; }

.bp-mobile-nav { display: none; background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: var(--header-height); z-index: 1000; padding: 10px 0; }
.bp-nav-scroll { display: flex; overflow-x: auto; white-space: nowrap; padding: 0 15px; gap: 10px; }
.bp-nav-scroll::-webkit-scrollbar { display: none; }
.bp-nav-item { padding: 8px 18px; background: #f0f2f5; border-radius: 20px; font-size: 13px; font-weight: 600; color: var(--text-sub); }
.bp-nav-item.active { background: var(--secondary); color: #fff; }

.bp-main-grid { display: grid; grid-template-columns: 3fr 1fr; gap: 10px; }
.bp-section-title { font-size: 15px; font-weight: 600; color: var(--primary); margin-bottom: 20px; }

.bp-promo-slider { position: relative; aspect-ratio: 1200 / 480; border-radius: 8px; overflow: hidden; background: #eee; }
.bp-slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: 0.8s ease-in-out; }
.bp-slide.active { opacity: 1; position: relative; }
.bp-slide img { width: 100%; height: 100%; object-fit: cover; }

.bp-acc-item { border: 1px solid var(--border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.bp-acc-head { background: #f9f9f9; padding: 15px; display: flex; justify-content: space-between; cursor: pointer; font-weight: 600; font-size: 13px; }
.bp-acc-body { max-height: 0; overflow: hidden; background: #fff; }
.bp-acc-item.active .bp-acc-body { max-height: 600px; padding: 20px; border-top: 1px solid var(--border); }
.bp-tag-list { display: flex; flex-wrap: wrap; gap: 14px; list-style: none; }
.bp-tag-list li { font-size: 13px; color: var(--text-sub); display: flex; align-items: center; }
.bp-tag-list li::before { content: "•"; color: var(--secondary); font-weight: bold; margin-right: 10px; }

.bp-side-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed #eee; font-size: 14px; color: var(--text-dark); }
.bp-side-row span:first-child { font-weight: 500; }
.bp-side-row span:last-child { font-weight: 600; text-align: right; }
.bp-side-row.closed { color: #d93025; font-weight: 600; }

.bp-side-subtitle { font-size: 13px; font-weight: 600; color: var(--text-sub); margin-bottom: 12px; border-left: 4px solid var(--secondary); padding-left: 12px; }

.bp-comment-form { background: #f8fafc; padding: 20px; border-radius: 10px; margin-bottom: 25px; border: 1px dashed var(--border); }
.bp-comment-form h4 { font-size: 15px; margin-bottom: 12px; }
.bp-stars-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 6px; margin-bottom: 15px; }
.bp-stars-input input { display: none; }
.bp-stars-input label { font-size: 26px; color: #ddd; cursor: pointer; transition: 0.2s; }
.bp-stars-input input:checked ~ label, .bp-stars-input label:hover, .bp-stars-input label:hover ~ label { color: #ffb400; }
.bp-comment-form textarea { width: 100%; height: 90px; padding: 12px; border: 1px solid var(--border); border-radius: 6px; resize: none; font-size: 14px; font-family: inherit; margin-top:10px; }
.bp-comment-form .review-form-submit { margin-top:15px; background:var(--secondary); color:#fff; border:none; padding:10px 20px; border-radius:4px; font-weight:600; cursor:pointer; }

.bp-comment-card { border-bottom: 1px solid #eee; padding: 0 8px 16px 8px; }
.bp-comment-head { display: flex; justify-content: space-between; }
.bp-comment-name { font-weight: 600; font-size: 15px; }
.bp-reply { background: #f1f3f4; padding: 15px; border-radius: 8px; margin-top: 15px; margin-left: 20px; border-left: 4px solid var(--primary); }
.bp-reply strong { display: block; font-size: 13px; color: var(--primary);}
.bp-comment-card small { display: block; margin-bottom: 4px; }
.bp-reply p { font-size: 13px; color: var(--text-dark); line-height: 1.5; }

.bp-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bp-g-item { aspect-ratio: 16 / 9; border-radius: 8px; overflow: hidden; cursor: pointer; }
.bp-g-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.bp-g-item:hover img { transform: scale(1.08); }

.bp-lb { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.95); z-index: 10001; align-items: center; justify-content: center; }
.bp-lb img { max-width: 90%; max-height: 85%; border-radius: 4px; box-shadow: 0 0 30px rgba(0,0,0,0.5); }
.bp-lb-close { position: absolute; top: 30px; right: 40px; color: #fff; font-size: 45px; cursor: pointer; }

.bp-mobile-apps {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
    padding-top: 10px;
}

.bp-app-button {
    background-color: #000;
    color: #fff;
    width: 100%;
    max-width: 120px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 4px;
}

.bp-app-button-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 50%;
    padding: 6px;
    margin: 0 2px;
}

.bp-app-button-icon span, .bp-app-button-icon i {
    display: block;
    width: 100%;
    height: 100%;
}

.bp-app-button-label {
    display: block;
    font-size: 11px;
}

#bp-hidden-contact {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../img/ph/business-contact-bg.jpg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

@media (max-width: 992px) {
    .bp-header-grid, .bp-main-grid { grid-template-columns: 1fr; }
    .bp-h-left { border-right: none; border-bottom: 1px solid var(--border); }
    .bp-identity-row { flex-direction: column; align-items: center; text-align: center; margin-top: -10px; }
    .bp-name-block { flex-direction: column; align-items: center; gap: 15px; margin-top: 10px; width: 100%; }
    .bp-header-about { font-size: 13px; }
    .bp-mobile-nav { display: block; }
    .bp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .bp-h-right { padding-bottom: 30px; }
}