/*
Theme Name: SHA Thailand
Theme URI: https://shathailand.com/
Author: Enola Revenu
Author URI: https://enolarevenu.com
Description: Hotel reviews, SHA certification guides, and travel affiliate content for English-speaking travelers in Thailand.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: Private
Text Domain: shathailand
*/

/* ═══════════════════════════════════════════════════════════════
   BRAND TOKENS
═══════════════════════════════════════════════════════════════ */
:root {
    --sha-primary:        #0284c7;
    --sha-primary-dark:   #0369a1;
    --sha-primary-light:  #e0f2fe;
    --sha-primary-border: #7dd3fc;
    --sha-text:           #0f172a;
    --sha-text-mid:       #334155;
    --sha-text-muted:     #64748b;
    --sha-border:         #e2e8f0;
    --sha-bg:             #f8fafc;
    --sha-white:          #ffffff;
    --sha-shadow:         0 2px 12px rgba(2, 132, 199, 0.10);
    --sha-shadow-card:    0 4px 24px rgba(15, 23, 42, 0.08);

    --sha-font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --sha-font-heading:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --sha-radius:         10px;
    --sha-radius-sm:      6px;
    --sha-radius-pill:    50px;

    --sha-max-width:      1200px;
    --sha-content-width:  780px;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
    font-family: var(--sha-font);
    color: var(--sha-text);
    background: var(--sha-white);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--sha-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--sha-primary-dark); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════════ */
.sha-container {
    max-width: var(--sha-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.sha-container--narrow {
    max-width: var(--sha-content-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER — liquid glass
═══════════════════════════════════════════════════════════════ */
.sha-header {
    background: rgba(240, 249, 255, 0.72);
    -webkit-backdrop-filter: blur(18px) saturate(1.6);
    backdrop-filter: blur(18px) saturate(1.6);
    border-bottom: 1px solid rgba(2, 132, 199, 0.18);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 24px rgba(2, 132, 199, 0.08), 0 1px 0 rgba(255,255,255,0.6) inset;
}

.sha-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.sha-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}

.sha-logo svg {
    display: block;
    width: 240px;
    height: auto;
}
@media (min-width: 560px) { .sha-logo svg { width: 290px; } }
@media (min-width: 900px) { .sha-logo svg { width: 320px; } }

/* Logo is static — no animations on header mark */

/* header.php overrides handle responsive sizing; legacy rule kept no-op */

/* Nav — hidden on mobile, shown on desktop */
.sha-nav { display: none; align-items: center; gap: 4px; }

.sha-nav a {
    color: var(--sha-text-mid);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--sha-radius-sm);
    transition: background 0.2s, color 0.2s;
}

.sha-nav a:hover,
.sha-nav .current-menu-item > a {
    background: var(--sha-primary-light);
    color: var(--sha-primary);
}

/* Mobile nav toggle — visible by default, hidden on desktop */
.sha-nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--sha-radius-sm);
}

.sha-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--sha-text);
    border-radius: 2px;
    transition: all 0.3s;
}

.sha-nav-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.sha-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.sha-nav-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.sha-mobile-menu {
    display: none;
    background: var(--sha-white);
    border-top: 1px solid var(--sha-border);
    padding: 16px 0;
}

.sha-mobile-menu.is-open { display: block; }

.sha-mobile-menu .sha-container a {
    display: block;
    color: var(--sha-text-mid);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid var(--sha-border);
    font-size: 0.95rem;
}

.sha-mobile-menu .sha-container a:hover { color: var(--sha-primary); }

/* ═══════════════════════════════════════════════════════════════
   PAGE TITLE BANNER
═══════════════════════════════════════════════════════════════ */
.sha-page-banner {
    background: linear-gradient(135deg, var(--sha-primary-light) 0%, #bae6fd 100%);
    border-bottom: 1px solid var(--sha-border);
    padding: 24px 0 20px;
}

.sha-page-banner h1 {
    font-family: var(--sha-font-heading);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--sha-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.sha-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--sha-text-muted);
    flex-wrap: wrap;
}

.sha-breadcrumb a { color: var(--sha-primary); }
.sha-breadcrumb a:hover { color: var(--sha-primary-dark); }
.sha-breadcrumb__sep { color: var(--sha-border); }

/* ═══════════════════════════════════════════════════════════════
   POST CARDS (archive / index)
═══════════════════════════════════════════════════════════════ */
.sha-archive {
    padding: 32px 0 48px;
}

.sha-archive__header {
    margin-bottom: 40px;
}

.sha-archive__title {
    font-family: var(--sha-font-heading);
    font-size: 1.8rem;
    color: var(--sha-text);
}

.sha-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sha-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    overflow: hidden;
    box-shadow: var(--sha-shadow-card);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, border-color 0.25s;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Gradient top accent bar — reveals on hover */
.sha-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #38bdf8, #0284c7, #075985);
    opacity: 0;
    transition: opacity 0.25s;
    z-index: 1;
}

.sha-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(2, 132, 199, 0.18), 0 4px 12px rgba(15,23,42,0.06);
    border-color: var(--sha-primary-border);
}

.sha-card:hover::before { opacity: 1; }

.sha-card__image {
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.sha-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.sha-card:hover .sha-card__image img { transform: scale(1.04); }

.sha-card__image--placeholder {
    background: var(--sha-primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
}

.sha-card__image--placeholder span {
    font-size: 2.5rem;
    opacity: 0.4;
}

.sha-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.sha-card__category {
    display: inline-block;
    background: var(--sha-primary-light);
    color: var(--sha-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: var(--sha-radius-pill);
    margin-bottom: 10px;
    text-decoration: none;
}

.sha-card__category:hover {
    background: var(--sha-primary);
    color: var(--sha-white);
}

.sha-card__title {
    font-family: var(--sha-font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sha-text);
    margin-bottom: 10px;
    line-height: 1.4;
    flex: 1;
}

.sha-card__title a { color: inherit; }
.sha-card__title a:hover { color: var(--sha-primary); }

.sha-card__excerpt {
    font-size: 0.875rem;
    color: var(--sha-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sha-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--sha-text-muted);
    padding-top: 14px;
    border-top: 1px solid var(--sha-border);
    margin-top: auto;
}

.sha-card__meta-item { display: flex; align-items: center; gap: 4px; }

/* ═══════════════════════════════════════════════════════════════
   SINGLE POST (review layout)
═══════════════════════════════════════════════════════════════ */
.sha-post-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 0 48px;
    align-items: start;
}

/* Hero image */
.sha-post-hero {
    border-radius: var(--sha-radius);
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16 / 7;
}

.sha-post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Post meta row */
.sha-post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sha-post-meta__cat {
    display: inline-block;
    background: var(--sha-primary);
    color: var(--sha-white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: var(--sha-radius-pill);
}

.sha-post-meta__cat:hover { background: var(--sha-primary-dark); color: var(--sha-white); }

.sha-post-meta__date,
.sha-post-meta__author {
    font-size: 0.85rem;
    color: var(--sha-text-muted);
}

.sha-post-meta__sep { color: var(--sha-border); }

/* Post title */
.sha-post-title {
    font-family: var(--sha-font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--sha-text);
    line-height: 1.25;
    margin-bottom: 28px;
}

/* Post content */
.sha-post-content { color: var(--sha-text-mid); font-size: 1rem; line-height: 1.8; }

.sha-post-content h2 {
    font-family: var(--sha-font-heading);
    font-size: 1.5rem;
    color: var(--sha-text);
    margin: 36px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--sha-border);
}

.sha-post-content h3 {
    font-family: var(--sha-font-heading);
    font-size: 1.2rem;
    color: var(--sha-text);
    margin: 28px 0 10px;
}

.sha-post-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sha-text);
    margin: 20px 0 8px;
}

.sha-post-content p { margin-bottom: 20px; }

.sha-post-content ul,
.sha-post-content ol {
    padding-left: 24px;
    margin-bottom: 20px;
    list-style: revert;
}

.sha-post-content li { margin-bottom: 6px; }

.sha-post-content strong { color: var(--sha-text); font-weight: 700; }

.sha-post-content a {
    color: var(--sha-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sha-post-content a:hover { color: var(--sha-primary-dark); }

.sha-post-content img {
    border-radius: var(--sha-radius);
    margin: 24px 0;
}

.sha-post-content blockquote {
    border-left: 3px solid var(--sha-primary);
    margin: 28px 0;
    padding: 16px 24px;
    background: var(--sha-primary-light);
    border-radius: 0 var(--sha-radius) var(--sha-radius) 0;
    font-style: italic;
    color: var(--sha-text-mid);
}

/* Affiliate CTA box */
.sha-affiliate-cta {
    background: linear-gradient(135deg, var(--sha-primary-light) 0%, #bae6fd 100%);
    border: 1px solid var(--sha-primary-border);
    border-radius: var(--sha-radius);
    padding: 28px;
    margin: 32px 0;
    text-align: center;
}

.sha-affiliate-cta__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sha-text-muted);
    margin-bottom: 8px;
}

.sha-affiliate-cta__title {
    font-family: var(--sha-font-heading);
    font-size: 1.25rem;
    color: var(--sha-text);
    margin-bottom: 18px;
    font-weight: 700;
}

.sha-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--sha-primary);
    color: var(--sha-white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 28px;
    border-radius: var(--sha-radius-pill);
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
}

.sha-btn:hover {
    background: var(--sha-primary-dark);
    color: var(--sha-white);
    transform: translateY(-1px);
}

.sha-btn--outline {
    background: transparent;
    color: var(--sha-primary);
    border: 2px solid var(--sha-primary);
}

.sha-btn--outline:hover {
    background: var(--sha-primary);
    color: var(--sha-white);
}

/* Disclosure notice */
.sha-disclosure {
    background: var(--sha-bg);
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius-sm);
    padding: 14px 18px;
    font-size: 0.8rem;
    color: var(--sha-text-muted);
    line-height: 1.6;
    margin: 24px 0;
}

.sha-disclosure strong { color: var(--sha-text-mid); }

/* Tags */
.sha-post-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin: 32px 0;
    padding-top: 24px;
    border-top: 1px solid var(--sha-border);
}

.sha-post-tags__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sha-text-muted);
}

.sha-tag {
    background: var(--sha-bg);
    color: var(--sha-text-mid);
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: var(--sha-radius-pill);
    border: 1px solid var(--sha-border);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.sha-tag:hover {
    background: var(--sha-primary-light);
    color: var(--sha-primary);
    border-color: var(--sha-primary-border);
}

/* ═══════════════════════════════════════════════════════════════
   SIDEBAR
═══════════════════════════════════════════════════════════════ */
.sha-sidebar { position: sticky; top: 80px; }

.sha-widget {
    background: var(--sha-white);
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sha-widget__title {
    font-family: var(--sha-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sha-text);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sha-primary);
    display: inline-block;
}

/* Sidebar buy CTA */
.sha-widget--cta {
    background: linear-gradient(160deg, var(--sha-primary) 0%, var(--sha-primary-dark) 100%);
    border-color: transparent;
    text-align: center;
}

.sha-widget--cta .sha-widget__title { color: var(--sha-white); border-color: rgba(255,255,255,0.4); }

.sha-widget--cta p {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.sha-widget--cta .sha-btn {
    background: var(--sha-white);
    color: var(--sha-primary);
    width: 100%;
    justify-content: center;
}

.sha-widget--cta .sha-btn:hover {
    background: rgba(255,255,255,0.9);
    color: var(--sha-primary-dark);
    transform: none;
}

/* Recent posts in sidebar */
.sha-sidebar-posts { display: flex; flex-direction: column; gap: 16px; }

.sha-sidebar-post { display: flex; gap: 12px; }

.sha-sidebar-post__img {
    width: 68px;
    height: 68px;
    border-radius: var(--sha-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sha-sidebar-post__img img { width: 100%; height: 100%; object-fit: cover; }

.sha-sidebar-post__title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--sha-text);
    line-height: 1.4;
    margin-bottom: 4px;
}

.sha-sidebar-post__title a { color: inherit; }
.sha-sidebar-post__title a:hover { color: var(--sha-primary); }

.sha-sidebar-post__date { font-size: 0.75rem; color: var(--sha-text-muted); }

/* Category list in sidebar */
.sha-sidebar-cats { display: flex; flex-direction: column; gap: 4px; }

.sha-sidebar-cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    border-radius: var(--sha-radius-sm);
    color: var(--sha-text-mid);
    font-size: 0.875rem;
    transition: background 0.2s, color 0.2s;
}

.sha-sidebar-cats a:hover {
    background: var(--sha-primary-light);
    color: var(--sha-primary);
}

.sha-sidebar-cats .count {
    background: var(--sha-bg);
    color: var(--sha-text-muted);
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: var(--sha-radius-pill);
}

/* ═══════════════════════════════════════════════════════════════
   PAGINATION
═══════════════════════════════════════════════════════════════ */
.sha-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
    flex-wrap: wrap;
}

.sha-pagination a,
.sha-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--sha-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--sha-border);
    color: var(--sha-text-mid);
    transition: all 0.2s;
}

.sha-pagination a:hover {
    background: var(--sha-primary-light);
    color: var(--sha-primary);
    border-color: var(--sha-primary-border);
}

.sha-pagination .current {
    background: var(--sha-primary);
    color: var(--sha-white);
    border-color: var(--sha-primary);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.sha-footer {
    background: var(--sha-text);
    color: rgba(255,255,255,0.7);
    padding: 40px 0 0;
}

.sha-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sha-footer__logo {
    font-family: var(--sha-font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sha-white);
    margin-bottom: 12px;
    display: block;
}

.sha-footer__logo:hover { color: var(--sha-primary); }

.sha-footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 280px;
}

.sha-footer__heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sha-white);
    margin-bottom: 16px;
}

.sha-footer__links { display: flex; flex-direction: column; gap: 8px; }

.sha-footer__links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.sha-footer__links a:hover { color: var(--sha-primary); }

.sha-footer__bottom {
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    flex-wrap: wrap;
    gap: 8px;
}

.sha-footer__bottom a { color: rgba(255,255,255,0.5); }
.sha-footer__bottom a:hover { color: var(--sha-primary); }

/* ═══════════════════════════════════════════════════════════════
   NO RESULTS / 404
═══════════════════════════════════════════════════════════════ */
.sha-empty {
    text-align: center;
    padding: 80px 24px;
}

.sha-empty__icon { font-size: 3rem; margin-bottom: 16px; }

.sha-empty__img {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: var(--sha-radius);
    margin: 0 auto 24px;
    display: block;
    box-shadow: var(--sha-shadow-card);
}

.sha-empty h2 {
    font-family: var(--sha-font-heading);
    font-size: 1.5rem;
    color: var(--sha-text);
    margin-bottom: 10px;
}

.sha-empty p { color: var(--sha-text-muted); margin-bottom: 24px; }

/* ═══════════════════════════════════════════════════════════════
   WORDPRESS ALIGNMENT CLASSES
═══════════════════════════════════════════════════════════════ */
/* Alignment — block on mobile, float on desktop */
.alignleft, .alignright { display: block; margin: 16px auto; }
.aligncenter { display: block; margin: 24px auto; }
.alignwide { margin-left: 0; margin-right: 0; max-width: none; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: none; }

@media (min-width: 640px) {
    .alignleft  { float: left; margin: 0 24px 16px 0; }
    .alignright { float: right; margin: 0 0 16px 24px; }
    .alignwide { margin-left: -40px; margin-right: -40px; }
    .alignfull { margin-left: calc(50% - 50vw + 12px); margin-right: calc(50% - 50vw + 12px); }
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER (EN / TH)
═══════════════════════════════════════════════════════════════ */
.sha-lang {
    display: inline-flex;
    gap: 2px;
    background: rgba(255,255,255,0.7);
    border: 1px solid var(--sha-primary-border);
    border-radius: var(--sha-radius-pill);
    padding: 3px;
    margin-left: 10px;
    box-shadow: 0 1px 3px rgba(2,132,199,0.08);
}

.sha-lang__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 26px;
    padding: 0 10px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--sha-text-mid);
    border-radius: var(--sha-radius-pill);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.sha-lang__item:hover { color: var(--sha-primary); }

.sha-lang__item.is-active {
    background: var(--sha-primary);
    color: var(--sha-white);
    box-shadow: 0 1px 4px rgba(2,132,199,0.35);
}

.sha-lang__item.is-active:hover { color: var(--sha-white); }

/* Mobile menu version */
.sha-mobile-lang {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0 4px;
    margin-top: 8px;
    border-top: 1px solid var(--sha-border);
}

.sha-mobile-lang__label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--sha-text-muted);
}

.sha-mobile-lang .sha-lang { margin-left: 0; }

/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE — hero, collage, categories, ingredients, trust
═══════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.sha-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 0%, #e0f2fe 0%, transparent 55%),
        radial-gradient(ellipse at 95% 95%, #bae6fd 0%, transparent 55%),
        linear-gradient(180deg, var(--sha-primary-light) 0%, #ffffff 100%);
    padding: 40px 0 48px;
    border-bottom: 1px solid var(--sha-border);
}

.sha-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.sha-hero__copy { position: relative; z-index: 2; }

.sha-hero__eyebrow {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sha-primary);
    background: rgba(255,255,255,0.75);
    padding: 6px 14px;
    border-radius: var(--sha-radius-pill);
    border: 1px solid var(--sha-primary-border);
    margin-bottom: 18px;
}

.sha-hero__title {
    font-family: var(--sha-font-heading);
    font-size: clamp(2rem, 5.2vw, 3.2rem);
    line-height: 1.12;
    color: var(--sha-text);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
}

.sha-hero__sub {
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: var(--sha-text-mid);
    max-width: 560px;
    margin-bottom: 24px;
}

.sha-hero__cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.sha-hero__bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    font-size: 0.88rem;
    color: var(--sha-text-mid);
}

.sha-hero__bullets li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sha-hero__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--sha-primary-light);
    color: var(--sha-primary);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

.sha-hero__disclosure {
    max-width: var(--sha-max-width);
    margin: 20px auto 0;
    padding: 0 24px;
    font-size: 0.76rem;
    color: var(--sha-text-muted);
    text-align: center;
}

/* ── HERO COLLAGE ── */
.sha-hero__collage {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}

.sha-collage__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sha-collage__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.6;
}

.sha-collage__blob--1 { width: 48%; height: 48%; top: 4%;  left: 10%; background: #7dd3fc; }
.sha-collage__blob--2 { width: 42%; height: 42%; bottom: 8%; right: 12%; background: #bae6fd; }
.sha-collage__blob--3 { width: 30%; height: 30%; top: 42%; right: 38%; background: #e0f2fe; }

.sha-collage__stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.sha-collage__tile {
    position: absolute;
    border-radius: var(--sha-radius);
    overflow: hidden;
    background: var(--sha-white);
    border: 1px solid var(--sha-border);
    box-shadow: 0 8px 32px rgba(2,132,199,0.18), 0 2px 8px rgba(15,23,42,0.06);
    transition: transform 0.3s ease;
}

.sha-collage__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sha-collage__tile:hover { transform: translateY(-4px) rotate(0deg) !important; }

.sha-collage__tile--1 { top: 6%;  left: 4%;  width: 48%; height: 52%; transform: rotate(-6deg); z-index: 3; }
.sha-collage__tile--2 { top: 2%;  right: 4%; width: 42%; height: 42%; transform: rotate(4deg);  z-index: 2; }
.sha-collage__tile--3 { bottom: 4%; left: 12%; width: 42%; height: 38%; transform: rotate(3deg);  z-index: 2; }
.sha-collage__tile--4 { bottom: 8%; right: 2%; width: 46%; height: 46%; transform: rotate(-4deg); z-index: 3; }

.sha-collage__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #e0f2fe 0%, #e0f2fe 100%);
}

.sha-collage__placeholder svg {
    width: 50%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(2,132,199,0.22));
}

/* ── TRUSTED BRANDS STRIP ── */
.sha-brands {
    padding: 24px 0;
    background: var(--sha-white);
    border-bottom: 1px solid var(--sha-border);
}

.sha-brands__label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sha-text-muted);
    text-align: center;
    margin-bottom: 14px;
}

.sha-brands__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px 28px;
}

.sha-brands__item {
    font-family: var(--sha-font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sha-text-muted);
    letter-spacing: 0.01em;
    transition: color 0.2s;
    opacity: 0.7;
}

.sha-brands__item:hover { color: var(--sha-primary); opacity: 1; }

/* ── HOME SECTIONS ── */
.sha-home-section { padding: 56px 0; }

.sha-home-section--alt {
    background: var(--sha-bg);
    border-top: 1px solid var(--sha-border);
    border-bottom: 1px solid var(--sha-border);
}

.sha-home-section__head { margin-bottom: 32px; }

.sha-home-section__head--center {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.sha-home-section__head--split {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.sha-home-section__head h2 {
    font-family: var(--sha-font-heading);
    font-size: clamp(1.7rem, 3.2vw, 2.2rem);
    color: var(--sha-text);
    line-height: 1.25;
    margin-bottom: 8px;
}

.sha-home-section__head p {
    font-size: 1rem;
    color: var(--sha-text-muted);
}

.sha-home-section__more { text-align: center; margin-top: 40px; }

.sha-link-arrow {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--sha-primary);
    white-space: nowrap;
}

/* ── CATEGORY GRID with product images ── */
.sha-cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.sha-cat-card {
    display: flex;
    flex-direction: column;
    background: var(--sha-white);
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, border-color 0.2s;
    position: relative;
}

.sha-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(2,132,199,0.16);
    border-color: var(--sha-primary-border);
}

.sha-cat-card__media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(160deg, #e0f2fe 0%, #bae6fd 100%);
}

.sha-cat-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.sha-cat-card:hover .sha-cat-card__media img { transform: scale(1.05); }

.sha-cat-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #e0f2fe 0%, #bae6fd 100%);
}

.sha-cat-card__icon {
    font-size: 2.6rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(2,132,199,0.2));
}

.sha-cat-card__body { padding: 20px; }

.sha-cat-card__label {
    font-family: var(--sha-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--sha-text);
    margin-bottom: 6px;
}

.sha-cat-card__blurb {
    font-size: 0.88rem;
    color: var(--sha-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.sha-cat-card__count {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--sha-primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sha-cat-card__count--soon {
    color: var(--sha-text-muted);
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    font-style: italic;
}

/* ── MAGAZINE-STYLE LATEST GRID ── */
.sha-posts-grid--mag { grid-template-columns: 1fr; }

.sha-latest-placeholder {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.sha-card--soon { opacity: 0.92; border-style: dashed; }
.sha-card--soon:hover { transform: none; }

.sha-card--soon .sha-card__image--placeholder { aspect-ratio: 16/9; font-size: 3rem; }

.sha-card__soon-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sha-primary);
    background: var(--sha-primary-light);
    padding: 4px 10px;
    border-radius: var(--sha-radius-pill);
}

/* ── INGREDIENT SPOTLIGHT ── */
.sha-ingredients { background: var(--sha-white); }

.sha-ing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.sha-ing-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--sha-white);
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.sha-ing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--ing-color, var(--sha-primary));
    opacity: 0.8;
}

.sha-ing-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--sha-shadow-card);
    border-color: var(--sha-primary-border);
}

.sha-ing-card__dot {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ing-color, var(--sha-primary));
    opacity: 0.85;
    box-shadow: inset 0 -6px 16px rgba(255,255,255,0.4), 0 4px 10px rgba(15,23,42,0.08);
}

.sha-ing-card__content { flex: 1; }

.sha-ing-card__role {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sha-text-muted);
    margin-bottom: 4px;
}

.sha-ing-card__name {
    font-family: var(--sha-font-heading);
    font-size: 1.15rem;
    color: var(--sha-text);
    margin-bottom: 6px;
}

.sha-ing-card__desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--sha-text-muted);
}

/* ── TRUST BLOCK ── */
.sha-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
}

.sha-trust-card {
    background: var(--sha-white);
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    padding: 24px;
    text-align: center;
}

.sha-trust-card__icon { font-size: 2rem; margin-bottom: 10px; line-height: 1; color: var(--sha-primary); }
.sha-trust-card__icon .sha-icon { width: 40px; height: 40px; }

.sha-trust-card h3 {
    font-family: var(--sha-font-heading);
    font-size: 1.1rem;
    color: var(--sha-text);
    margin-bottom: 8px;
}

.sha-trust-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--sha-text-muted);
}

.sha-trust__cta { text-align: center; }

.sha-empty--compact { padding: 48px 24px; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — mobile-first (min-width breakpoints)
═══════════════════════════════════════════════════════════════ */

/* ── Tablet 640px+ ── */
@media (min-width: 640px) {
    .sha-posts-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .sha-posts-grid--mag { grid-template-columns: repeat(2, 1fr); }
    .sha-latest-placeholder { grid-template-columns: repeat(2, 1fr); }
    .sha-archive { padding: 40px 0 64px; }
    .sha-post-wrap { padding: 40px 0 64px; }
    .sha-page-banner { padding: 32px 0 28px; }
    .sha-footer { padding: 48px 0 0; }
    .sha-footer__grid { gap: 40px; }
    .sha-trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .sha-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .sha-ing-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .sha-hero { padding: 56px 0 64px; }
    .sha-hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); }
}

/* ── Desktop 900px+ ── */
@media (min-width: 900px) {
    .sha-trust-grid { grid-template-columns: repeat(4, 1fr); }
    .sha-cat-grid { grid-template-columns: repeat(3, 1fr); }
    .sha-ing-grid { grid-template-columns: repeat(3, 1fr); }
    .sha-hero { padding: 72px 0 88px; }
    .sha-hero__grid { grid-template-columns: 1.15fr 1fr; gap: 48px; }
    .sha-hero__copy { text-align: left; }
    .sha-hero__eyebrow { display: inline-block; }
    .sha-hero__cta { justify-content: flex-start; }
    .sha-hero__bullets { justify-content: flex-start; }
    .sha-hero__disclosure { text-align: left; }
    .sha-posts-grid--mag { grid-template-columns: repeat(3, 1fr); }
    .sha-latest-placeholder { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}

/* ── Wide 1100px+ ── */
@media (min-width: 1100px) {
    .sha-cat-grid { grid-template-columns: repeat(5, 1fr); gap: 18px; }
}

/* ── Desktop 768px+ ── */
@media (min-width: 768px) {
    .sha-nav { display: flex; }
    .sha-nav-toggle { display: none; }
    .sha-footer__grid { grid-template-columns: 1fr 1fr; padding-bottom: 48px; }
    .sha-footer__desc { max-width: 280px; }
}

/* ── Wide 1024px+ ── */
@media (min-width: 1024px) {
    .sha-posts-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .sha-post-wrap { grid-template-columns: 1fr 300px; gap: 48px; padding: 56px 0 80px; }
    .sha-sidebar { position: sticky; top: 80px; }
    .sha-footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
    .sha-archive { padding: 56px 0 80px; }
    .sha-page-banner { padding: 40px 0 36px; }
    .sha-footer { padding: 56px 0 0; }
}

/* ═══════════════════════════════════════════════════════════════
   V1.1 — SHA long-form home page (single-image hero, quicknav,
   content sections, comparison table, timeline, hotel grid, FAQ,
   floating CTA, broader-view, disclaimer box)
═══════════════════════════════════════════════════════════════ */

/* ── Shared section head ── */
.sha-section-head { margin-bottom: 32px; }
.sha-section-head h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.015em;
    color: var(--sha-text);
    line-height: 1.2;
    margin-bottom: 8px;
}
.sha-section-head p { color: var(--sha-text-muted); font-size: 1rem; }
.sha-section-head--center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }
.sha-section-cta { text-align: center; margin-top: 40px; }

/* Larger buttons for long-form page */
.sha-btn--lg { padding: 14px 28px; font-size: 1rem; }
.sha-btn--ghost {
    background: transparent;
    color: var(--sha-text-mid);
    font-weight: 600;
}
.sha-btn--ghost:hover { background: transparent; color: var(--sha-primary); transform: none; }
.sha-btn--white {
    background: #ffffff;
    color: var(--sha-text);
}
.sha-btn--white:hover { background: #f1f5f9; color: var(--sha-text); }

/* ═══════════ HERO — single image ═══════════ */
.sha-hero-solo {
    position: relative;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 80px 0 96px;
    border-bottom: 1px solid var(--sha-border);
}
.sha-hero-solo__inner { width: 100%; position: relative; z-index: 2; }
.sha-hero-solo__copy { max-width: 680px; }

.sha-hero-solo__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.sha-hero-solo__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--sha-radius-pill);
    background: rgba(255,255,255,0.85);
    border: 1px solid var(--sha-border);
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--sha-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    backdrop-filter: blur(6px);
}
.sha-hero-solo__badge .sha-icon { color: inherit; }
.sha-hero-solo__badge--primary {
    background: #e0f2fe;
    color: #0369a1;
    border-color: #7dd3fc;
}

.sha-hero-solo__title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--sha-text);
    margin-bottom: 24px;
}

.sha-hero-solo__sub {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.65;
    color: var(--sha-text-mid);
    max-width: 580px;
    margin-bottom: 32px;
    font-weight: 500;
}

.sha-hero-solo__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

@media (max-width: 700px) {
    .sha-hero-solo { min-height: 460px; padding: 56px 0 64px; }
    .sha-hero-solo__title { font-size: 2.1rem; }
}

/* ═══════════ QUICK NAV ═══════════ */
.sha-quicknav {
    background: var(--sha-bg);
    padding: 48px 0;
    border-top: 1px solid var(--sha-border);
    border-bottom: 1px solid var(--sha-border);
}
.sha-quicknav__heading {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sha-text);
    margin-bottom: 32px;
}
.sha-quicknav__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sha-quicknav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 22px 12px;
    background: #ffffff;
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    height: 100%;
    text-align: center;
}
.sha-quicknav__item:hover {
    border-color: var(--sha-primary);
    box-shadow: var(--sha-shadow-card);
    transform: translateY(-2px);
}
.sha-quicknav__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sha-primary);
    line-height: 1;
}
.sha-quicknav__icon .sha-icon { width: 28px; height: 28px; }
.sha-quicknav__item:hover .sha-quicknav__icon { color: var(--sha-primary-dark); transform: scale(1.08); transition: transform 0.2s, color 0.2s; }
.sha-quicknav__label { font-size: 0.875rem; font-weight: 600; color: var(--sha-text-mid); }
.sha-quicknav__item:hover .sha-quicknav__label { color: var(--sha-primary-dark); }

@media (min-width: 640px) { .sha-quicknav__grid { grid-template-columns: repeat(5, 1fr); } }
@media (min-width: 1024px) { .sha-quicknav__grid { grid-template-columns: repeat(10, 1fr); } .sha-quicknav__icon .sha-icon { width: 24px; height: 24px; } }

/* Generic inline-SVG icon alignment */
.sha-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}
/* Icons inside badge-style chips get a small gap baked in */
.sha-hero-solo__badge .sha-icon,
.sha-hotel-card__badge .sha-icon,
.sha-hotel-card__star .sha-icon,
.sha-hotel-card__city .sha-icon,
.sha-compare__pill .sha-icon { margin-right: 2px; }

/* ═══════════ CONTENT SECTIONS ═══════════ */
.sha-content-section {
    padding: 56px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--sha-border);
}
.sha-content-section__wrap { max-width: 960px; }
.sha-content-section__head { margin-bottom: 40px; }
.sha-content-section__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sha-primary);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}
.sha-content-section__title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--sha-text);
    line-height: 1.15;
}
.sha-content-section__blocks { display: grid; gap: 32px; }
.sha-content-block__heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--sha-text);
    margin-bottom: 14px;
    padding-left: 16px;
    border-left: 4px solid var(--sha-primary);
    line-height: 1.35;
}
.sha-content-block__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--sha-text-mid);
}
.sha-content-block__text strong { color: var(--sha-text); font-weight: 700; }
.sha-content-block__text a {
    color: var(--sha-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sha-content-block__text a:hover { color: var(--sha-primary-dark); }

@media (min-width: 900px) { .sha-content-section { padding: 72px 0; } }

/* ═══════════ COMPARISON TABLE ═══════════ */
.sha-comparison {
    padding: 64px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--sha-border);
}
.sha-compare-wrap {
    overflow-x: auto;
    border-radius: var(--sha-radius);
    border: 1px solid var(--sha-border);
    box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}
.sha-compare {
    width: 100%;
    min-width: 780px;
    border-collapse: collapse;
    background: #ffffff;
    text-align: left;
}
.sha-compare thead th {
    background: var(--sha-text);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 20px 22px;
}
.sha-compare tbody td {
    padding: 22px;
    border-top: 1px solid var(--sha-border);
    color: var(--sha-text-mid);
    font-size: 0.95rem;
    vertical-align: middle;
}
.sha-compare tbody tr:hover td { background: var(--sha-bg); }
.sha-compare__label { font-weight: 700; color: var(--sha-text) !important; font-size: 0.88rem !important; }
.sha-compare__accent { color: var(--sha-primary-dark) !important; font-weight: 600; }
.sha-compare__muted { color: var(--sha-text-muted); }
.sha-compare__x { color: #cbd5e1; font-size: 1.1rem; }
.sha-compare__th-icon { display: inline-flex; vertical-align: middle; color: #38bdf8; margin-right: 6px; }
.sha-compare__pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--sha-radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
}
.sha-compare__pill--ok { background: #dcfce7; color: #166534; }
.sha-compare__pill--sky { background: #e0f2fe; color: #0369a1; }

/* ═══════════ TIMELINE — horizontal rail (v2) ═══════════ */
.sha-timeline {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--sha-bg) 100%);
    border-bottom: 1px solid var(--sha-border);
    overflow: hidden;
}
.sha-rail {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative;
}
.sha-rail__step {
    position: relative;
    padding-left: 40px;
    max-width: 680px;
}
/* Mobile left rail line */
.sha-rail::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 14px;
    bottom: 14px;
    width: 2px;
    background: linear-gradient(to bottom,
        var(--sha-primary-border) 0%,
        var(--sha-border) 50%,
        var(--sha-primary-border) 100%);
}
.sha-rail__year {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--sha-primary-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: #e0f2fe;
    padding: 4px 10px;
    border-radius: var(--sha-radius-pill);
    margin-bottom: 10px;
}
.sha-rail__node {
    position: absolute;
    left: 2px;
    top: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--sha-primary-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(2,132,199,0.12);
}
.sha-rail__node-core {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sha-primary);
    transition: transform 0.2s;
}
.sha-rail__step--current .sha-rail__node {
    border-color: var(--sha-primary);
    background: var(--sha-primary);
    box-shadow: 0 0 0 6px rgba(2,132,199,0.14), 0 2px 10px rgba(2,132,199,0.25);
}
.sha-rail__step--current .sha-rail__node-core {
    background: #ffffff;
    transform: scale(1.1);
}
.sha-rail__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--sha-text);
    line-height: 1.3;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.sha-rail__desc {
    color: var(--sha-text-mid);
    line-height: 1.6;
    font-size: 0.92rem;
    max-width: 520px;
    margin: 0;
}

/* Desktop: 5 equal columns, horizontal rail */
@media (min-width: 900px) {
    .sha-rail {
        flex-direction: row;
        gap: 0;
        margin-top: 56px;
        align-items: stretch;
    }
    .sha-rail::before {
        left: 6%;
        right: 6%;
        top: 44px;
        bottom: auto;
        height: 2px;
        width: auto;
        background: linear-gradient(to right,
            var(--sha-primary-border) 0%,
            var(--sha-primary) 50%,
            var(--sha-primary-border) 100%);
    }
    .sha-rail__step {
        flex: 1 1 0;
        padding: 0 14px;
        max-width: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sha-rail__year {
        order: 1;
        margin-bottom: 14px;
    }
    .sha-rail__node {
        position: static;
        order: 2;
        margin: 0 auto 22px;
        width: 26px;
        height: 26px;
    }
    .sha-rail__node-core { width: 10px; height: 10px; }
    .sha-rail__body { order: 3; }
    .sha-rail__title { font-size: 1rem; margin-bottom: 8px; }
    .sha-rail__desc { font-size: 0.88rem; line-height: 1.55; max-width: 220px; margin: 0 auto; }
}

@media (min-width: 1100px) {
    .sha-rail__step { padding: 0 20px; }
    .sha-rail__title { font-size: 1.1rem; }
    .sha-rail__desc { max-width: 240px; }
}

/* ═══════════ HOTEL GRID ═══════════ */
.sha-hotel-grid {
    padding: 72px 0;
    background: var(--sha-bg);
    border-top: 1px solid var(--sha-border);
    border-bottom: 1px solid var(--sha-border);
}
.sha-hotel-grid__city { margin-bottom: 64px; scroll-margin-top: 80px; }
.sha-hotel-grid__city:last-of-type { margin-bottom: 32px; }
.sha-hotel-grid__head {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sha-border);
    margin-bottom: 32px;
}
.sha-hotel-grid__head h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--sha-text);
    line-height: 1.2;
    margin-bottom: 4px;
}
.sha-hotel-grid__head h2 span { color: var(--sha-primary-dark); }
.sha-hotel-grid__head p {
    color: var(--sha-text-muted);
    font-size: 0.92rem;
}
.sha-hotel-grid__more {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--sha-primary-dark);
    white-space: nowrap;
}
.sha-hotel-grid__more:hover { color: var(--sha-primary); }

.sha-hotel-grid__live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 6px;
    white-space: nowrap;
}
.sha-hotel-card__badge--live {
    background: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(15,23,42,0.25);
}
.sha-hotel-grid__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

.sha-hotel-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--sha-radius);
    border: 1px solid var(--sha-border);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.2s;
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.sha-hotel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15,23,42,0.1);
    border-color: var(--sha-primary-border);
}
.sha-hotel-card__media {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f1f5f9;
}
.sha-hotel-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.sha-hotel-card:hover .sha-hotel-card__media img { transform: scale(1.05); }
.sha-hotel-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 10px;
    border-radius: var(--sha-radius-pill);
    background: var(--sha-primary);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(2,132,199,0.3);
}
.sha-hotel-card__star {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 9px;
    border-radius: 6px;
    background: rgba(255,255,255,0.95);
    color: #d97706;
    font-size: 0.78rem;
    font-weight: 700;
    backdrop-filter: blur(6px);
    border: 1px solid var(--sha-border);
}
.sha-hotel-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.sha-hotel-card__city {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--sha-primary-dark);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.sha-hotel-card__name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sha-text);
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sha-hotel-card:hover .sha-hotel-card__name { color: var(--sha-primary-dark); }
.sha-hotel-card__desc {
    font-size: 0.92rem;
    color: var(--sha-text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.sha-hotel-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.sha-hotel-card__tag {
    padding: 3px 9px;
    border-radius: 5px;
    background: var(--sha-bg);
    border: 1px solid var(--sha-border);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--sha-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.sha-hotel-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--sha-border);
    margin-top: auto;
}
.sha-hotel-card__price { display: flex; flex-direction: column; }
.sha-hotel-card__price-label { font-size: 0.68rem; font-weight: 700; color: var(--sha-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.sha-hotel-card__price-amount { font-size: 1.2rem; font-weight: 800; color: var(--sha-text); }
.sha-hotel-card__cta { font-size: 0.85rem; font-weight: 700; color: var(--sha-primary-dark); white-space: nowrap; }
.sha-hotel-card:hover .sha-hotel-card__cta { color: var(--sha-primary); }

@media (min-width: 640px) { .sha-hotel-grid__cards { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .sha-hotel-grid__cards { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.sha-disclaimer-box {
    margin-top: 48px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.88rem;
    color: var(--sha-text-muted);
    line-height: 1.6;
}
.sha-disclaimer-box__icon { flex-shrink: 0; color: #d97706; display: inline-flex; align-items: center; }
.sha-disclaimer-box strong { color: var(--sha-text); font-weight: 700; }

/* ═══════════ BROADER VIEW ═══════════ */
.sha-broader {
    padding: 72px 0;
    background: var(--sha-bg);
    border-bottom: 1px solid var(--sha-border);
}
.sha-broader__wrap { max-width: 880px; }
.sha-broader h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.2rem);
    font-weight: 800;
    color: var(--sha-text);
    margin-bottom: 24px;
    letter-spacing: -0.015em;
}
.sha-broader p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--sha-text-mid);
    margin-bottom: 24px;
}
.sha-broader p strong { color: var(--sha-text); font-weight: 700; }
.sha-broader p a { color: var(--sha-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.sha-broader p a:hover { color: var(--sha-primary-dark); }
.sha-broader__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0;
}
@media (min-width: 768px) { .sha-broader__grid { grid-template-columns: 1fr 1fr; gap: 20px; } }
.sha-broader__card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.sha-broader__card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sha-text);
    margin-bottom: 8px;
}
.sha-broader__card p {
    font-size: 0.92rem;
    color: var(--sha-text-muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* ═══════════ FAQ ═══════════ */
.sha-faq {
    padding: 80px 0;
    background: var(--sha-bg);
    border-top: 1px solid var(--sha-border);
}
.sha-faq__wrap { max-width: 880px; }
.sha-faq__categories { display: flex; flex-direction: column; gap: 56px; }
.sha-faq__cat-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--sha-primary-dark);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.sha-faq__cat-title span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--sha-primary-border);
}
.sha-faq__items { display: flex; flex-direction: column; gap: 14px; }
.sha-faq__item {
    background: #ffffff;
    border: 1px solid var(--sha-border);
    border-radius: var(--sha-radius);
    box-shadow: 0 2px 6px rgba(15,23,42,0.04);
    transition: box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
}
.sha-faq__item[open] {
    border-color: var(--sha-primary-border);
    box-shadow: 0 6px 18px rgba(2,132,199,0.08);
}
.sha-faq__q {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: var(--sha-text);
    font-size: 1rem;
    line-height: 1.45;
    user-select: none;
}
.sha-faq__q::-webkit-details-marker { display: none; }
.sha-faq__q-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--sha-bg);
    color: var(--sha-text-muted);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}
.sha-faq__item:hover .sha-faq__q-icon,
.sha-faq__item[open] .sha-faq__q-icon {
    background: #e0f2fe;
    color: var(--sha-primary);
}
.sha-faq__q-text { flex: 1; }
.sha-faq__q-chev {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sha-text-muted);
    transition: transform 0.2s, color 0.2s;
}
.sha-faq__item[open] .sha-faq__q-chev { transform: rotate(180deg); color: var(--sha-primary); }
.sha-faq__a {
    padding: 0 22px 22px 64px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--sha-text-mid);
}
.sha-faq__a strong { color: var(--sha-text); font-weight: 700; }
.sha-faq__a a { color: var(--sha-primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.sha-faq__a a:hover { color: var(--sha-primary-dark); }

.sha-faq__cta {
    margin-top: 72px;
    padding: 48px 32px;
    background: var(--sha-text);
    border-radius: 18px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(15,23,42,0.2);
}
.sha-faq__cta h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #ffffff;
}
.sha-faq__cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.65;
}

/* ═══════════ FLOATING CTA ═══════════ */
.sha-floating-cta {
    position: fixed;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 998;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    background: var(--sha-primary);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--sha-radius-pill);
    text-decoration: none;
    box-shadow: 0 14px 36px rgba(2,132,199,0.4);
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    ring: 4px solid rgba(255,255,255,0.3);
    border: 4px solid rgba(255,255,255,0.4);
    white-space: nowrap;
}
.sha-floating-cta:hover {
    background: var(--sha-primary-dark);
    color: #ffffff;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 20px 48px rgba(2,132,199,0.5);
}
.sha-floating-cta span:last-child { font-size: 1.1rem; }

/* Bottom padding on body so floating CTA doesn't cover footer content */
body.home { padding-bottom: 80px; }

/* ═══════════════════════════════════════════════════════════════
   SHA Thailand — Mobile responsiveness (2026-04-24, updated)
   Scoped to single posts. Zero impact on desktop or homepage.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {

  /* All images stay within viewport */
  .single-post img,
  .single-post .wp-post-image,
  .single-post .sha-post-hero img,
  .single-post figure img {
    max-width: 100% !important;
    height: auto !important;
    box-sizing: border-box;
  }

  /* Contain all layout layers — prevents inline min-width from overflowing */
  .single-post,
  .single-post main,
  .single-post article,
  .single-post .sha-post-wrap,
  .single-post .sha-post-content,
  .single-post .sha-container {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box;
  }

  /* Every direct child of post content stays within bounds */
  .single-post .sha-post-content > * {
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Tables — capped; scroll wrapper handles horizontal scroll within */
  .single-post .sha-post-content table {
    max-width: 100% !important;
  }

  /* Wrappers with overflow-x:auto stay scrollable (comparison tables etc) */
  .single-post .sha-post-content > div[style*="overflow-x:auto"],
  .single-post .sha-post-content > div[style*="overflow-x: auto"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  /* Post title size on mobile */
  .sha-post-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  /* Hero image aspect ratio — taller on mobile for better framing */
  .sha-post-hero {
    aspect-ratio: 16 / 9;
  }

  /* Reduce post content padding on mobile */
  .sha-post-wrap {
    padding: 20px 0 40px;
    gap: 24px;
  }

  /* Image service cards — force single column on small screens */
  .single-post .sha-post-content div[style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  /* 12go widget — prevent it from causing overflow */
  .sha-12go-wrap,
  .sha-12go-wrap iframe,
  .sha-12go-wrap > * {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Pros/cons grid — stack vertically on mobile */
  .single-post .sha-post-content div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* Extra small screens — phones under 400px */
@media (max-width: 400px) {
  .sha-post-title { font-size: 1.4rem; }
  .sha-container { padding: 0 16px; }
  .sha-post-hero { aspect-ratio: 4 / 3; }
}

/* ═══════════════════════════════════════════════════════════════
   POST HERO OVERLAY (full-bleed image + gradient + overlaid title)
   Used in single.php when post has a featured image.
═══════════════════════════════════════════════════════════════ */

.sha-post-hero-overlay {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #0f172a;
}

.sha-post-hero-overlay__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    display: block;
}

.sha-post-hero-overlay__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.35) 45%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

.sha-post-hero-overlay__body {
    position: relative;
    z-index: 2;
    padding-top: 48px;
    padding-bottom: 44px;
    width: 100%;
}

/* Breadcrumb inside overlay — white links */
.sha-post-hero-overlay .sha-breadcrumb {
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
}
.sha-post-hero-overlay .sha-breadcrumb a { color: rgba(255,255,255,0.75); }
.sha-post-hero-overlay .sha-breadcrumb a:hover { color: #fff; }
.sha-post-hero-overlay .sha-breadcrumb__sep { color: rgba(255,255,255,0.35); }

/* Category badge */
.sha-post-hero-overlay__cat {
    display: inline-block;
    background: var(--sha-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    text-decoration: none;
    margin-bottom: 14px;
}
.sha-post-hero-overlay__cat:hover { background: var(--sha-primary-dark); color: #fff; }

/* Title */
.sha-post-hero-overlay__title {
    color: #fff;
    font-family: var(--sha-font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.7rem);
    font-weight: 900;
    line-height: 1.18;
    margin: 0 0 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
    max-width: 820px;
}

/* Meta line */
.sha-post-hero-overlay__meta {
    color: rgba(255,255,255,0.65);
    font-size: 0.87rem;
    margin: 0;
}

/* Remove top padding from post-wrap when overlay hero is present */
.sha-post-hero-overlay + main .sha-post-wrap {
    padding-top: 36px;
}

/* Wide page template */
.sha-wide-content {
    padding-top: 0;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 700px) {
    .sha-post-hero-overlay {
        min-height: 320px;
    }
    .sha-post-hero-overlay__title {
        font-size: 1.55rem;
    }
    .sha-post-hero-overlay__body {
        padding-top: 32px;
        padding-bottom: 32px;
    }
}

@media (max-width: 400px) {
    .sha-post-hero-overlay {
        min-height: 260px;
    }
    .sha-post-hero-overlay__title {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   SHA Thailand — CTA / Affiliate Action System (2026-04-25)
   Brand blue (#0284c7) = navigation, info, links
   CTA orange (#ea580c) = booking actions — must always pop
   ═══════════════════════════════════════════════════════════════ */

:root {
    --sha-cta:        #ea580c;
    --sha-cta-dark:   #c2410c;
    --sha-cta-glow:   rgba(234, 88, 12, 0.28);
}

/* ── Block booking button (ferry articles: "Check live schedules") ── */
.sha-btn-book {
    display: inline-block;
    background: var(--sha-cta);
    color: #fff !important;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.18s ease, transform 0.14s ease, box-shadow 0.18s ease;
    box-shadow: 0 2px 14px var(--sha-cta-glow);
}
.sha-btn-book:hover {
    background: var(--sha-cta-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px var(--sha-cta-glow);
}

/* ── Compare prices button (hotel articles) ── */
.sha-btn-compare {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--sha-cta);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    transition: background 0.18s ease, transform 0.14s ease;
    box-shadow: 0 2px 10px var(--sha-cta-glow);
}
.sha-btn-compare:hover {
    background: var(--sha-cta-dark);
    color: #fff !important;
    transform: translateY(-1px);
}

/* ── Table check link → orange pill (hotel comparison table) ── */
.sha-link-check {
    display: inline-block;
    background: var(--sha-cta);
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.18s ease;
}
.sha-link-check:hover {
    background: var(--sha-cta-dark);
    color: #fff !important;
}

/* ── Route card (ferries hub: Surat Thani → Koh Samui etc) ── */
.sha-route-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
}
.sha-route-card:hover {
    border-color: var(--sha-cta);
    box-shadow: 0 4px 18px var(--sha-cta-glow);
    transform: translateY(-2px);
}
.sha-route-card:hover .sha-route-card__arrow {
    color: var(--sha-cta);
}
