:root {
    --hb-primary: #5D85B6;
    --hb-secondary: #2E4F86;
    --hb-accent: #111111;
    --hb-surface: #ffffff;
    --hb-surface-soft: #f4f6f8;
    --hb-surface-alt: #edf2f7;
    --hb-border: rgba(17, 17, 17, 0.08);
    --hb-text: #111827;
    --hb-muted: #5f6b7a;
    --hb-light: #f8fafc;
    --hb-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
    --hb-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.06);
    --hb-radius-sm: 10px;
    --hb-radius-md: 16px;
    --hb-radius-lg: 24px;
    --hb-shell: 1280px;
}

body.home {
    background: #fff;
    color: var(--hb-text);
}

.hb-shell {
    width: min(var(--hb-shell), calc(100% - 40px));
    margin-inline: auto;
}

.hb-homepage-premium {
    padding-bottom: 80px;
}

.hb-announcement-bar {
    background: #0c1320;
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hb-announcement-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hb-announcement-bar strong {
    color: #ffffff;
    font-weight: 700;
}

.hb-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(17,17,17,0.06);
}

.hb-header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 20px;
    display: grid;
    grid-template-columns: 200px minmax(0,1fr) auto;
    align-items: center;
    gap: 20px;
}

.hb-logo img {
    max-height: 56px;
    width: auto;
}

.hb-primary-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.hb-primary-nav a {
    color: #1f2937;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.hb-primary-nav a:hover {
    color: var(--hb-secondary);
}

.hb-header-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hb-header-search form,
.hb-header-search .search-form,
.hb-header-search .woocommerce-product-search {
    display: flex;
    align-items: stretch;
    min-width: 320px;
    height: 46px;
    background: linear-gradient(180deg, #e7f0fb 0%, #dce6f3 100%);
    border: 1px solid rgba(46, 79, 134, 0.20);
    border-radius: 999px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 -1px 0 rgba(46,79,134,0.05) inset,
        0 8px 18px rgba(39, 66, 102, 0.10);
    overflow: hidden;
}

.hb-header-search input[type="search"],
.hb-header-search .search-field {
    flex: 1;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0 16px 0 18px;
    font-size: 14px;
    color: #274266;
    outline: none;
    box-shadow: none;
}

.hb-header-search input[type="search"]::placeholder,
.hb-header-search .search-field::placeholder {
    color: rgba(39, 66, 102, 0.72);
}

.hb-header-search button,
.hb-header-search .search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 100%;
    border: 0;
    border-left: 1px solid rgba(46, 79, 134, 0.16);
    background: linear-gradient(180deg, #dce6f3 0%, #cfdced 100%);
    color: #274266;
    border-radius: 0 999px 999px 0;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.hb-header-search button:hover,
.hb-header-search .search-submit:hover {
    background: linear-gradient(180deg, #d4e1f0 0%, #c6d6ea 100%);
    color: #1f3552;
}

.hb-header-search form:focus-within,
.hb-header-search .search-form:focus-within,
.hb-header-search .woocommerce-product-search:focus-within {
    border-color: rgba(46, 79, 134, 0.34);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 -1px 0 rgba(46,79,134,0.05) inset,
        0 10px 24px rgba(39, 66, 102, 0.14);
}

.hb-header-icons a {
    text-decoration: none;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
}

.hb-whatsapp-pill {
    background: #0b7f52;
    color: #fff;
    border-radius: 999px;
    padding: 11px 16px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.hb-premium-hero {
    position: relative;
    background: #0a111c;
    overflow: hidden;
}

.hb-premium-slider {
    position: relative;
}

.hb-slide {
    position: relative;
    min-height: 680px;
    display: none;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center center;
}

.hb-slide.is-active {
    display: block;
}

.hb-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4,10,20,0.82) 0%, rgba(4,10,20,0.62) 40%, rgba(4,10,20,0.38) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.35) 100%);
}

.hb-slide-inner {
    position: relative;
    z-index: 2;
    min-height: 680px;
    display: flex;
    align-items: center;
}

.hb-slide-copy {
    max-width: 680px;
    color: #fff;
    padding: 80px 0 110px;
}

.hb-slide-kicker,
.hb-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.76);
    margin-bottom: 16px;
}

.hb-section-kicker {
    color: var(--hb-secondary);
}

.hb-slide h1,
.hb-slide h2 {
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
    color: #fff;
    max-width: 12ch;
}

.hb-slide p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    max-width: 58ch;
    margin: 0 0 28px;
}

.hb-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hb-premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: all .24s ease;
    border: 1px solid transparent;
}

.hb-premium-btn-primary {
    background: #fff;
    color: #0f172a;
}

.hb-premium-btn-primary:hover {
    background: #eef2f7;
    transform: translateY(-1px);
}

.hb-premium-btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.18);
}

.hb-premium-btn-secondary:hover,
.hb-premium-btn-ghost:hover {
    background: rgba(255,255,255,0.14);
}

.hb-premium-btn-ghost {
    background: transparent;
    color: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.18);
}

.hb-slide-meta {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hb-slide-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.88);
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hb-slider-controls {
    position: absolute;
    inset-inline: 0;
    bottom: 34px;
    z-index: 3;
}

.hb-slider-dots {
    display: flex;
    gap: 10px;
}

.hb-slider-dots button {
    width: 44px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.28);
    cursor: pointer;
}

.hb-slider-dots button.is-active {
    background: #fff;
}

.hb-premium-quickstrip {
    margin-top: 0;
    position: relative;
    z-index: 4;
    padding: 26px 0 34px;
    background: linear-gradient(180deg, #f3f4f6 0%, #eceff3 100%);
}

.hb-quickstrip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hb-quickstrip-card {
    display: block;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(17, 17, 17, 0.10);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.88) inset,
        0 -1px 0 rgba(17,17,17,0.03) inset,
        0 10px 24px rgba(15, 23, 42, 0.08),
        0 24px 50px rgba(15, 23, 42, 0.07);
    padding: 22px 24px;
    text-decoration: none;
    color: var(--hb-text);
}

.hb-quickstrip-card:hover {
    transform: translateY(-4px);
    border-color: rgba(46, 79, 134, 0.24);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.92) inset,
        0 -1px 0 rgba(17,17,17,0.04) inset,
        0 16px 32px rgba(15, 23, 42, 0.10),
        0 30px 60px rgba(15, 23, 42, 0.10);
}

.hb-quickstrip-card strong {
    display: block;
    font-size: 20px;
    margin: 6px 0 5px;
    color: #111827;
}

.hb-quickstrip-card small,
.hb-quickstrip-label {
    color: var(--hb-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hb-section,
.hb-premium-trustband,
.hb-premium-storeblock,
.hb-premium-helpband {
    padding: 88px 0;
}

.hb-premium-trustband {
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
}

.hb-premium-trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 38px;
    align-items: start;
}

.hb-premium-trust-grid h2,
.hb-premium-store-copy h2,
.hb-premium-help-grid h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin: 0;
    color: #0f172a;
    max-width: 13ch;
}

.hb-premium-trust-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
}

.hb-premium-trust-points article {
    background: #fff;
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-md);
    padding: 24px;
    box-shadow: var(--hb-shadow-soft);
}

.hb-premium-trust-points strong {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
}

.hb-premium-trust-points p,
.hb-premium-store-copy p,
.hb-premium-help-grid p {
    margin: 0;
    color: var(--hb-muted);
    line-height: 1.75;
    font-size: 16px;
}

.hb-premium-storeblock {
    background: #fff;
}

.hb-premium-store-grid,
.hb-premium-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 36px;
    align-items: center;
}

.hb-store-details {
    margin: 22px 0 28px;
}

.hb-store-details p {
    margin-bottom: 8px;
}

.hb-premium-store-media {
    min-height: 430px;
}

.hb-media-placeholder {
    height: 100%;
    min-height: 430px;
    border-radius: var(--hb-radius-lg);
    background:
        linear-gradient(135deg, rgba(93,133,182,0.16) 0%, rgba(46,79,134,0.22) 100%),
        #dce6f3;
    border: 1px dashed rgba(46,79,134,0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #274266;
    font-weight: 700;
    box-shadow: var(--hb-shadow-soft);
}

.hb-premium-helpband {
    background: #0c1320;
}

.hb-premium-help-grid h2,
.hb-premium-help-grid p,
.hb-premium-help-grid .hb-section-kicker {
    color: #fff;
}

.hb-premium-help-grid p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 22px;
}

.hb-category-grid,
ul.products.columns-4,
ul.products.columns-3 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}

.hb-category-card,
ul.products li.product {
    border: 1px solid var(--hb-border);
    border-radius: var(--hb-radius-md);
    background: #fff;
    box-shadow: var(--hb-shadow-soft);
}

.hb-category-card {
    min-height: 190px;
    padding: 24px;
}

ul.products li.product {
    padding: 16px;
}

ul.products li.product img {
    border-radius: 12px;
}

ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    line-height: 1.45;
}

ul.products li.product .price {
    color: var(--hb-secondary);
    font-weight: 700;
}

ul.products li.product .button {
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
}

@media (max-width: 1180px) {
    .hb-header-inner {
        grid-template-columns: 1fr;
    }

    .hb-primary-nav {
        justify-self: start;
        overflow-x: auto;
    }

    .hb-header-right {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hb-quickstrip-grid,
    .hb-category-grid,
    ul.products.columns-4,
    ul.products.columns-3,
    .hb-premium-trust-points {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .hb-premium-trust-grid,
    .hb-premium-store-grid,
    .hb-premium-help-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hb-shell {
        width: min(100% - 24px, 1280px);
    }

    .hb-slide,
    .hb-slide-inner {
        min-height: 620px;
    }

    .hb-slide-copy {
        padding: 72px 0 104px;
    }

    .hb-slide h1,
    .hb-slide h2 {
        max-width: none;
        font-size: clamp(32px, 10vw, 48px);
    }

    .hb-slide p {
        font-size: 16px;
    }

    .hb-quickstrip-grid,
    .hb-category-grid,
    ul.products.columns-4,
    ul.products.columns-3,
    .hb-premium-trust-points {
        grid-template-columns: 1fr;
    }

   .hb-premium-quickstrip {
    margin-top: 0;
    position: relative;
    z-index: 4;
    padding: 26px 0 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
    
    
}

    .hb-header-search input[type="search"] {
        min-width: 100%;
    }

    .hb-whatsapp-pill {
        width: 100%;
        justify-content: center;
    }

    .hb-section,
    .hb-premium-trustband,
    .hb-premium-storeblock,
    .hb-premium-helpband {
        padding: 64px 0;
    }
}

/* Shop by Category section */
.hb-home-categories,
.hb-featured-categories,
section.hb-category-section {
    background: linear-gradient(180deg, #e7f0fb 0%, #dce6f3 100%);
    padding: 22px 0 24px;
}

/* Constrain inner content so it aligns with hero + quick cards */
.hb-home-categories .hb-shell,
.hb-featured-categories .hb-shell,
section.hb-category-section .hb-shell,
.hb-home-categories .section-inner,
.hb-featured-categories .section-inner,
section.hb-category-section .section-inner {
    width: min(var(--hb-shell), calc(100% - 40px));
    margin-inline: auto;
}

/* Optional: tighten the heading area */
.hb-home-categories .hb-section-header,
.hb-featured-categories .hb-section-header,
section.hb-category-section .hb-section-header {
    max-width: 760px;
    margin-bottom: 28px;
}

/* Make category cards stand out against the blue background */
.hb-category-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(46, 79, 134, 0.14);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.92) inset,
        0 -1px 0 rgba(46,79,134,0.04) inset,
        0 12px 28px rgba(39, 66, 102, 0.10);
}

.hb-quickstrip-main {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    margin: 6px 0 5px;
    color: #111827;
    line-height: 1.2;
}

.hb-quickstrip-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #274266;
    flex: 0 0 22px;
}

.hb-quickstrip-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.hb-quickstrip-card strong {
    display: block;
    font-size: inherit;
    margin: 0;
    color: inherit;
}

/* Hide Astra store summary on homepage only */
body.home .astra-shop-summary-wrap {
    display: none !important;
}


/* Footer */

.hb-footer {
    background: #050812;
    color: rgba(249, 250, 251, 0.88);
    margin-top: 72px;
    border-top: 1px solid rgba(148, 163, 184, 0.22);
}

.hb-footer-main {
    padding: 52px 0 40px;
    background:
        radial-gradient(circle at top left, rgba(46,79,134,0.40) 0, transparent 55%),
        radial-gradient(circle at bottom right, rgba(15,23,42,0.55) 0, transparent 60%),
        #050812;
}

.hb-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.8fr));
    gap: 34px;
    align-items: flex-start;
}

.hb-footer-logo {
    font-size: 20px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 0 0 10px;
    color: #e5e7eb;
}

.hb-footer-tagline {
    margin: 0 0 16px;
    font-size: 14px;
    color: rgba(209, 213, 219, 0.85);
}

.hb-footer-contact p {
    margin: 0 0 6px;
    font-size: 13px;
    color: rgba(209, 213, 219, 0.82);
}

.hb-footer-contact strong {
    font-weight: 600;
    color: #f9fafb;
}

/* Columns */

.hb-footer-column h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 14px;
    color: #e5e7eb;
}

.hb-footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hb-footer-column li + li {
    margin-top: 6px;
}

.hb-footer-column a {
    color: rgba(209, 213, 219, 0.85);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.18s ease;
}

.hb-footer-column a:hover {
    color: #ffffff;
}

.hb-footer-help {
    margin: 0 0 12px;
    font-size: 13px;
    color: rgba(209,213,219,0.85);
}

/* WhatsApp button */

.hb-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #16a34a;
    color: #f9fafb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.3) inset,
        0 10px 24px rgba(15, 118, 110, 0.35);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.hb-footer-btn:hover {
    background: #15803d;
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.25) inset,
        0 14px 30px rgba(15, 118, 110, 0.45);
}

.hb-footer-btn-icon {
    display: inline-flex;
    width: 16px;
    height: 16px;
}

.hb-footer-btn-icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.hb-footer-disclaimer {
    margin: 0;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.9);
}

/* Bottom bar */

.hb-footer-bottom {
    border-top: 1px solid rgba(15, 23, 42, 0.9);
    background: #020617;
}

.hb-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0 16px;
    font-size: 12px;
    color: rgba(148, 163, 184, 0.9);
}

.hb-footer-copy {
    margin: 0;
}

.hb-footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hb-footer-legal a {
    color: rgba(148, 163, 184, 0.95);
    text-decoration: none;
    transition: color 0.18s ease;
}

.hb-footer-legal a:hover {
    color: #e5e7eb;
}

/* Footer responsive */

@media (max-width: 1024px) {
    .hb-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 32px;
    }
}

@media (max-width: 767px) {
    .hb-footer-main {
        padding: 38px 0 28px;
    }

    .hb-footer-grid {
        grid-template-columns: 1fr;
    }

    .hb-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Visit Store page */

.hb-visit-store {
    padding-bottom: 80px;
}

.hb-visit-hero {
    padding: 72px 0 64px;
    background: radial-gradient(circle at top left, rgba(46,79,134,0.45) 0, transparent 55%),
                radial-gradient(circle at bottom right, rgba(15,23,42,0.75) 0, transparent 60%),
                #050815;
    color: #f9fafb;
}

.hb-visit-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 38px;
    align-items: center;
}

.hb-visit-hero-copy h1 {
    font-size: clamp(34px, 4.3vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0 0 14px;
    color: #f9fafb;
}

.hb-visit-hero-copy > p {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(226,232,240,0.9);
}

.hb-visit-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
    margin-bottom: 22px;
    font-size: 14px;
}

.hb-visit-hero-meta h3 {
    margin: 0 0 4px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.95);
}

.hb-visit-hero-meta p {
    margin: 0;
    color: rgba(226,232,240,0.95);
}

.hb-visit-hero-map {
    min-height: 460px;
    height: 100%;
}

.hb-map-card {
    min-height: 460px;
    height: 100%;
    display: flex;
    overflow: hidden;
    border-radius: 26px;
}

.hb-map-card iframe {
    display: block;
    width: 100%;
    min-height: 460px;
    height: 100%;
    flex: 1 1 auto;
    border: 0;
}

/* Details section */

.hb-visit-details {
    padding: 60px 0 56px;
    background: #f3f4f6;
}

.hb-visit-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 36px;
    align-items: flex-start;
}

.hb-visit-details h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin: 6px 0 14px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hb-visit-details p {
    margin: 0 0 14px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.hb-visit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hb-visit-list li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
    line-height: 1.7;
}

.hb-visit-list li + li {
    margin-top: 6px;
}

.hb-visit-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 0.75em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #2563eb;
}

/* FAQ band */

.hb-visit-faq {
    padding: 60px 0 70px;
    background: #ffffff;
}

.hb-visit-faq-inner > h2 {
    font-size: clamp(26px, 3vw, 34px);
    margin: 6px 0 24px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.hb-visit-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
}

.hb-visit-faq-grid article {
    background: #f9fafb;
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.35);
    padding: 18px 20px;
}

.hb-visit-faq-grid h3 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #111827;
}

.hb-visit-faq-grid p {
    margin: 0;
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 1024px) {
    .hb-visit-hero-grid,
    .hb-visit-details-grid,
    .hb-visit-faq-grid {
        grid-template-columns: 1fr;
    }

    .hb-visit-hero {
        padding-top: 58px;
    }

    .hb-map-card {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hb-visit-hero {
        padding: 46px 0 40px;
    }

    .hb-visit-hero-meta {
        grid-template-columns: 1fr;
    }

    .hb-visit-details,
    .hb-visit-faq {
        padding-inline: 0;
    }
}