/* ============ BREADCRUMB BAR ============ */
.breadcrumb-bar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
}

.breadcrumb.light a {
    color: var(--text-muted);
}

.breadcrumb.light a:hover {
    color: var(--primary);
}

.breadcrumb.light .current {
    color: var(--primary);
}

.breadcrumb.light .separator {
    color: var(--text-muted);
}

/* ============ POST HEADER ============ */
.post-header {
    padding: 32px 0 28px;
    background: #fff;
}

.post-header-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

/* Post tags */
.post-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.post-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

.post-tag i {
    color: var(--primary);
    font-size: 11px;
}

.post-tag.main {
    background: linear-gradient(135deg, #FF4D4D, #FF7A45);
    color: #fff;
    border-color: transparent;
}

.post-tag.main i {
    color: #fff;
}

/* Post title */
.post-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Be Vietnam Pro', sans-serif;
}

/* Quick info */
.post-quick-info {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 18px 22px;
    background: linear-gradient(135deg, var(--bg-soft), #fff);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    margin-bottom: 22px;
    flex-wrap: wrap;
}

.quick-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 24px;
    border-right: 1px solid var(--border);
}

.big-rating {
    background: linear-gradient(135deg, var(--accent), #FF8C42);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    gap: 4px;
    box-shadow: 0 6px 16px rgba(244, 185, 66, 0.35);
}

.big-rating i {
    font-size: 13px;
}

.rating-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.quick-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.qs-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.qs-item i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 12px;
}

.qs-item strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Meta info */
.post-meta-info {
    margin-bottom: 22px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px dashed var(--border);
}

.meta-row:last-child {
    border-bottom: none;
}

.meta-row > i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(107, 45, 142, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.meta-row strong {
    color: var(--text-dark);
    font-weight: 700;
}

.open-now {
    background: #10B981;
    color: #fff;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.open-now::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Action buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 11px 22px;
}

.btn.icon-only {
    padding: 11px 14px;
}

/* Author card */
.post-author-card {
    background: linear-gradient(135deg, #fff, var(--bg-soft));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.author-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.author-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    object-fit: cover;
}

.author-header strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.author-header span {
    font-size: 11px;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin-bottom: 16px;
}

.author-stats > div {
    border-right: 1px solid var(--border);
}

.author-stats > div:last-child {
    border-right: none;
}

.author-stats strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
}

.author-stats span {
    font-size: 11px;
    color: var(--text-muted);
}

.post-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 14px;
    text-align: center;
}

.btn-block {
    width: 100%;
}

/* ============ GALLERY ============ */
.post-gallery {
    padding: 0 0 30px;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-main {
    position: relative;
    height: 480px;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.view-all-photos {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: none;
    color: var(--text-dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.view-all-photos:hover {
    background: var(--primary);
    color: #fff;
}

.gallery-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.gallery-item {
    position: relative;
    height: 234px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.more-photos .more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(78, 31, 107, 0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    backdrop-filter: blur(2px);
}

/* ============ SINGLE LAYOUT ============ */
.single-main {
    padding: 36px 0 60px;
    background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.single-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* ============ ARTICLE ============ */
.single-article {
    min-width: 0;
}

/* Sticky article nav */
.article-nav {
    background: #fff;
    border-radius: 999px;
    padding: 6px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    position: sticky;
    top: 132px;
    z-index: 40;
    overflow-x: auto;
    scrollbar-width: none;
}

.article-nav::-webkit-scrollbar { display: none; }

.article-nav a {
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all .2s ease;
    white-space: nowrap;
}

.article-nav a:hover {
    background: var(--bg-soft);
    color: var(--primary);
}

.article-nav a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    box-shadow: 0 4px 12px rgba(107, 45, 142, 0.3);
}

/* Article section */
.article-section {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 22px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-soft);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
}

.section-title i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(107, 45, 142, 0.3);
}

/* Article content */
.article-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

.article-content p {
    margin-bottom: 16px;
}

.article-content .lead {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    border-left: 4px solid var(--primary);
    padding-left: 18px;
    background: var(--bg-soft);
    padding: 16px 18px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 22px;
}

.article-content h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 14px 0;
}

.highlight-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px dashed var(--border);
}

.highlight-list li:last-child {
    border-bottom: none;
}

.highlight-list i {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #10B981;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    margin-top: 4px;
}

.quote {
    background: linear-gradient(135deg, rgba(107, 45, 142, 0.05), rgba(142, 79, 184, 0.05));
    border-left: 4px solid var(--primary);
    padding: 22px 26px;
    margin: 24px 0;
    border-radius: 0 12px 12px 0;
    position: relative;
}

.quote > i {
    color: var(--primary);
    font-size: 24px;
    opacity: .4;
    margin-bottom: 8px;
}

.quote p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.quote cite {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}

/* Menu grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.menu-item {
    display: flex;
    gap: 14px;
    padding: 12px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    transition: all .25s ease;
}

.menu-item:hover {
    background: #fff;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.menu-item img {
    width: 90px;
    height: 90px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.menu-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-info h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.menu-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

.menu-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rating-small {
    color: var(--star);
    font-size: 12px;
    font-weight: 700;
}

.menu-price {
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pros, .cons {
    padding: 20px;
    border-radius: var(--radius);
}

.pros {
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros h4, .cons h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pros h4 { color: #10B981; }
.cons h4 { color: #EF4444; }

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 6px 0;
    padding-left: 22px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.pros li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10B981;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 11px;
}

.cons li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #EF4444;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 11px;
}

/* Reviews summary */
.reviews-summary {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 30px;
    padding: 24px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    margin-bottom: 24px;
    align-items: center;
}

.summary-left {
    text-align: center;
    border-right: 1px solid var(--border);
}

.big-score {
    font-size: 56px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.big-score small {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 600;
}

.big-stars {
    color: var(--star);
    font-size: 18px;
    margin: 8px 0;
    letter-spacing: 2px;
}

.summary-left p {
    font-size: 13px;
    color: var(--text-muted);
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.bar-row > span {
    width: 50px;
    flex-shrink: 0;
    font-weight: 600;
}

.bar {
    flex: 1;
    height: 8px;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
}

.bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #FF8C42);
    border-radius: 999px;
}

.bar-row small {
    width: 40px;
    text-align: right;
    color: var(--text-muted);
    font-weight: 600;
}

/* Write review */
.write-review {
    background: var(--bg-soft);
    border-radius: var(--radius);
    padding: 22px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.write-review h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 16px;
}

.star-input {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.star-input > span {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

.stars-clickable {
    display: flex;
    gap: 4px;
    color: var(--star);
    font-size: 22px;
    cursor: pointer;
}

.stars-clickable i {
    transition: transform .15s ease;
}

.stars-clickable i:hover {
    transform: scale(1.2);
}

.write-review textarea {
    width: 100%;
    min-height: 90px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    transition: all .2s ease;
    background: #fff;
}

.write-review textarea:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(107, 45, 142, 0.08);
}

.review-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 14px;
}

/* Review list */
.review-item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.review-item:last-child {
    border-bottom: none;
}

.review-item > img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-body {
    flex: 1;
}

.review-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
    gap: 10px;
}

.review-head strong {
    font-size: 14px;
    font-weight: 700;
    margin-right: 8px;
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.review-head .rating {
    background: rgba(255, 180, 0, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    flex-shrink: 0;
}

.review-date {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.review-body > p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.review-photos {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
}

.review-photos img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    cursor: pointer;
    transition: transform .2s ease;
}

.review-photos img:hover {
    transform: scale(1.05);
}

.review-foot {
    display: flex;
    gap: 16px;
}

.review-foot button {
    background: none;
    border: none;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s ease;
}

.review-foot button:hover {
    color: var(--primary);
}

.load-more {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    margin-top: 14px;
    transition: all .2s ease;
}

.load-more:hover {
    background: var(--primary);
    color: #fff;
}

/* Map */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.direction-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-soft);
    border-radius: var(--radius);
}

.direction-bar > i {
    color: var(--primary);
    font-size: 18px;
}

.direction-bar > span {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
}

.btn-sm {
    padding: 7px 16px;
    font-size: 12px;
}

/* Tags cloud */
.post-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.post-tags-cloud strong {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 700;
    margin-right: 6px;
}

.post-tags-cloud a {
    padding: 6px 14px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 600;
    transition: all .2s ease;
}

.post-tags-cloud a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Share bar */
.share-bar {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    padding: 22px 28px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    margin-bottom: 22px;
}

.share-bar > span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-right: 6px;
}

.share-bar a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s ease;
}

.share-bar a:hover {
    transform: translateY(-2px);
}

.share-fb { background: #1877F2; }
.share-tw { background: #1DA1F2; }
.share-tk { background: #000; }
.share-mes { background: #006AFF; }
.share-copy {
    background: var(--bg-soft) !important;
    color: var(--text-dark) !important;
    border: 1px solid var(--border);
}

/* ============ SIDEBAR ============ */
.single-sidebar {
    position: sticky;
    top: 132px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Info card */
.info-card .info-list {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.info-list li {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(107, 45, 142, 0.1), rgba(142, 79, 184, 0.1));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.info-list div {
    flex: 1;
}

.info-list span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

.info-list strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.info-list strong a {
    color: var(--primary);
}

.info-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Hours */
.hours-list {
    list-style: none;
    padding: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    font-size: 13px;
    border-bottom: 1px dashed var(--border);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    color: var(--text-muted);
}

.hours-list li strong {
    color: var(--text-dark);
    font-weight: 700;
}

.hours-list li.today {
    background: rgba(107, 45, 142, 0.06);
    margin: 0 -10px;
    padding: 9px 10px;
    border-radius: 8px;
    border-bottom: none;
}

.hours-list li.today span {
    color: var(--primary);
    font-weight: 700;
}

.hours-list li.today em {
    font-size: 10px;
    background: var(--primary);
    color: #fff;
    padding: 2px 7px;
    border-radius: 999px;
    font-style: normal;
    margin-left: 4px;
}

/* Facilities */
.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.fac-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--bg-soft);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all .2s ease;
}

.fac-item:hover {
    background: #fff;
    box-shadow: var(--shadow);
}

.fac-item i {
    color: var(--primary);
    font-size: 14px;
}

/* Nearby */
.nearby-list {
    list-style: none;
    padding: 0;
}

.nearby-list li {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.nearby-list li:last-child {
    border-bottom: none;
}

.nearby-list img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}

.nearby-list h5 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.nearby-list h5 a {
    color: var(--text-dark);
}

.nearby-list h5 a:hover {
    color: var(--primary);
}

.nearby-list p {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.nearby-list p i {
    color: var(--primary);
    margin-right: 3px;
}

/* ============ RELATED POSTS ============ */
.related-posts {
    padding: 40px 0 60px;
    background: #fff;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 20px;
}

/* ============ FLOATING ACTIONS ============ */
.floating-actions {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 90;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    transition: all .25s ease;
    position: relative;
}

.float-btn:hover {
    transform: translateY(-3px) scale(1.08);
}

.float-btn.call { background: linear-gradient(135deg, #10B981, #059669); }
.float-btn.chat { background: linear-gradient(135deg, #1877F2, #006AFF); }
.float-btn.zalo { background: linear-gradient(135deg, #0068FF, #00A4F0); }
.float-btn.top { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }

.float-btn.call::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #10B981;
    opacity: .5;
    animation: ringPulse 1.8s infinite;
}

@keyframes ringPulse {
    0% { transform: scale(0.8); opacity: .8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .single-layout { grid-template-columns: 1fr 300px; gap: 22px; }
    .post-header-grid { grid-template-columns: 1fr 280px; }
    .post-title { font-size: 28px; }
    .gallery-main { height: 400px; }
    .gallery-item { height: 194px; }
    .related-posts-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .single-layout { grid-template-columns: 1fr; }
    .single-sidebar { position: static; }
    .post-header-grid { grid-template-columns: 1fr; }
    .post-title { font-size: 24px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-main { height: 320px; }
    .gallery-side { grid-template-columns: repeat(4, 1fr); }
    .gallery-item { height: 90px; }
    .menu-grid { grid-template-columns: 1fr; }
    .pros-cons { grid-template-columns: 1fr; }
    .reviews-summary { grid-template-columns: 1fr; }
    .summary-left { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .article-nav { top: 80px; }
}

@media (max-width: 600px) {
    .post-quick-info { flex-direction: column; align-items: stretch; gap: 16px; }
    .quick-rating { padding-right: 0; border-right: none; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
    .action-buttons .btn { flex: 1; padding: 11px 14px; font-size: 12px; }
    .article-section { padding: 18px; }
    .section-title { font-size: 17px; }
    .gallery-side { grid-template-columns: repeat(2, 1fr); }
    .gallery-item { height: 110px; }
    .related-posts-grid { grid-template-columns: 1fr; }
    .floating-actions { right: 12px; bottom: 12px; }
    .float-btn { width: 44px; height: 44px; font-size: 15px; }
    .share-bar { padding: 16px; }
    .share-bar a span { display: none; }
}
