:root {
    --tp-dark-900: #2B1709;
    /* footer, headings, text on orange */
    --tp-dark-800: #3B2412;
    /* header & CTA band                */
    --tp-orange: #EE7A2D;
    /* primary brand orange — buttons, chips, icons */
    --tp-orange-700: #C75A17;
    /* links, darker accents            */
    --tp-orange-100: #FBE0CB;
    --tp-orange-050: #FCF0E4;
    --tp-cream: #FCF8F2;
    /* page background     */
    --tp-cream-2: #F7EEE2;
    --tp-ink: #2C241D;
    --tp-muted: #8B7867;
    --tp-border: #ECDFD1;
    --tp-white: #FFFFFF;
    --tp-radius: 18px;
    --tp-font-display: 'Nunito', -apple-system, 'Segoe UI', sans-serif;
    /* map to theme heading font */
    --tp-font-body: 'Nunito', -apple-system, 'Segoe UI', sans-serif;
    /* map to theme body font    */
}

.townpage img {
    display: block;
    max-width: 100%;
    height: auto
}

.townpage a {
    color: var(--tp-orange-700)
}

.townpage a:focus-visible,
.townpage button:focus-visible,
.townpage summary:focus-visible {
    outline: 3px solid var(--tp-orange);
    outline-offset: 2px;
    border-radius: 4px
}

.townpage .skip {
    position: absolute;
    left: -9999px
}

.skip:focus {
    left: 16px;
    top: 12px;
    background: var(--tp-orange);
    color: var(--tp-dark-900);
    padding: 8px 14px;
    border-radius: 999px;
    z-index: 99
}

.townpage .wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 22px
}

.townpage .prose {
    max-width: 760px
}

/* ---- Preview header (REPLACED by Pawthentic theme header) ---- */
.townpage .site-header {
    background: var(--tp-dark-800);
    color: #fff
}

.townpage .sh-in {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 0
}

.townpage .logo {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-family: var(--tp-font-display);
    font-weight: 800;
    font-size: 21px;
    letter-spacing: .2px
}

.townpage .logo svg {
    width: 24px;
    height: 24px;
    fill: var(--tp-orange)
}

.townpage .site-nav {
    margin-left: auto;
    display: flex;
    gap: 22px
}

.townpage .site-nav a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 600
}

.townpage .site-nav a:hover {
    color: #fff
}

.townpage .hdr-cta {
    margin-left: 6px
}

/* ---- Buttons (mirror the site's icon-circle pill style) ---- */
.townpage .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    padding: 8px 22px 8px 9px;
    font-weight: 800;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--tp-font-display)
}

.townpage .btn .ico {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: none
}

.townpage .btn .ico svg {
    width: 16px;
    height: 16px
}

.townpage .btn-primary {
    background: var(--tp-orange);
    color: var(--tp-dark-900)
}

.townpage .btn-primary .ico {
    background: var(--tp-dark-900)
}

.townpage .btn-primary .ico svg {
    fill: var(--tp-orange)
}

.townpage .btn-line {
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    padding: 8px 22px
}

.townpage .btn-line:hover {
    border-color: #fff
}

/* ---- Breadcrumb / eyebrow / hero ---- */
.townpage .crumbs {
    padding: 18px 0 0;
    font-size: 13.5px;
    color: var(--tp-muted)
}

.townpage .crumbs a {
    color: var(--tp-muted);
    text-decoration: none
}

.townpage .crumbs a:hover {
    color: var(--tp-orange-700);
    text-decoration: underline
}

.townpage .crumbs span[aria-current] {
    color: var(--tp-ink);
    font-weight: 700
}

.townpage .hero {
    margin: 18px 0 26px;
    border-radius: 22px;
    overflow: hidden;
    aspect-ratio: 5/2;
    background: var(--tp-orange-100)
}

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

.townpage .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tp-white);
    border: 1px solid var(--tp-border);
    border-radius: 999px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 800;
    color: var(--tp-orange-700);
    letter-spacing: .4px;
    text-transform: uppercase
}

.townpage .eyebrow svg {
    width: 15px;
    height: 15px;
    fill: var(--tp-orange)
}

.townpage h1 {
    font-weight: 600;
    color: var(--tp-dark-900);
    margin: 14px 0 14px
}

.townpage .lede {
    max-width: 760px
}

.townpage h2 {
    font-weight: 600;
    color: var(--tp-dark-900);
    margin: 0 0 14px
}

.townpage .section {
    margin: 54px 0
}

.townpage .prose p {
    margin: 0 0 16px
}

.townpage .prose p:last-child {
    margin-bottom: 0
}

/* ---- Quick-answer box (AI-Overview friendly summary) ---- */
.townpage .keyfacts {
    background: var(--tp-cream-2);
    border-left: 5px solid var(--tp-orange);
    border-radius: 0 var(--tp-radius) var(--tp-radius) 0;
    padding: 18px 22px;
    margin: 26px 0 0;
    max-width: 760px
}

.townpage .keyfacts strong {
    display: block;
    font-weight: 800;
    color: var(--tp-dark-800);
    font-size: 13px;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px
}

/* ---- Hotel cards ---- */
.townpage .hotel-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px
}

.townpage .hcard {
    background: var(--tp-white);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s ease, transform .2s ease
}

.townpage .hcard:hover {
    box-shadow: 0 10px 28px rgba(59, 36, 18, .12);
    transform: translateY(-2px)
}

.find-hotel-btnn svg,.find-hotel-btnn,.get-certified-btnn{
 transition:all 0.3s ease-in-out;
}
.find-hotel-btnn:hover svg{
    fill: #ffffff !important ;
}
.find-hotel-btnn:hover{
	background: #ffffff;
	border-color: #ffffff !important;
}
.get-certified-btnn:hover{
	background: #ffffff;
	color: var(--tp-dark-900);
}

/* Responsiveness - Start here */
@media (prefers-reduced-motion:reduce) {
    .hcard {
        transition: none
    }

    .hcard:hover {
        transform: none
    }
}

.townpage .hcard-media {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--tp-orange-050)
}

.townpage .hcard-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.townpage .chip-cert {
    position: absolute;
    left: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--tp-orange);
    color: var(--tp-dark-900);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    padding: 5px 12px
}

.townpage .chip-cert svg {
    width: 13px;
    height: 13px;
    fill: var(--tp-dark-900)
}

.townpage .hcard-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.townpage .hcard h3 {
    font-weight: 600;
    color: var(--tp-dark-900);
}

.townpage .hcard h3 a {
    color: inherit;
    text-decoration: none
}

.townpage .hcard h3 a:hover {
    text-decoration: underline
}

.townpage .hcard-loc {
    font-size: 13.5px;
    color: var(--tp-muted)
}

.townpage .hcard-meta {
    font-size: 14px;
    font-weight: 700;
    color: var(--tp-orange-700)
}

.townpage .amens {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.townpage .amens span {
    background: var(--tp-orange-050);
    color: var(--tp-dark-800);
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 11px
}

.townpage .hcard-link {
    margin-top: auto;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none
}

.townpage .hcard-link:hover {
    text-decoration: underline
}

.townpage .grid-note {
    margin-top: 14px;
    font-size: 13px;
    color: var(--tp-muted);
    font-style: italic
}

/* ---- Trust block / checklist ---- */
.townpage .trust {
    background: var(--tp-white);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    padding: 26px 28px;
    max-width: 760px
}

.townpage .checks {
    list-style: none;
    margin: 14px 0 0;
    display: grid;
    gap: 10px
}

.townpage .checks li {
    display: flex;
    gap: 11px;
    align-items: flex-start
}

.townpage .checks svg {
    width: 18px;
    height: 18px;
    fill: var(--tp-orange);
    flex: none;
    margin-top: 3px
}

/* ---- Callout & verify note ---- */
.townpage .callout {
    background: var(--tp-orange-050);
    border-left: 5px solid var(--tp-orange-700);
    border-radius: 0 var(--tp-radius) var(--tp-radius) 0;
    padding: 18px 22px;
    margin: 18px 0;
    max-width: 760px
}

.townpage .callout strong {
    display: block;
    color: var(--tp-dark-800);
    margin-bottom: 6px
}

.townpage .note-verify {
    font-size: 14px;
    font-style: italic;
    color: var(--tp-muted)
}

/* ---- FAQ ---- */
.townpage .faq {
    max-width: 760px;
    border-bottom: 1px solid var(--tp-border)
}

.townpage .faq summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 2px;
    font-family: var(--tp-font-display);
    font-weight: 800;
    font-size: 16.5px;
    color: var(--tp-dark-900)
}

.townpage .faq summary::-webkit-details-marker {
    display: none
}

.townpage .faq summary::after {
    content: "+";
    font-size: 22px;
    color: var(--tp-orange);
    font-weight: 800;
    flex: none
}

.townpage .faq[open] summary::after {
    content: "–"
}

.townpage .faq-a {
    padding: 0 2px 16px;
    color: var(--tp-ink)
}

/* ---- CTA band ---- */
.townpage .cta {
    background: var(--tp-dark-800);
    border-radius: 22px;
    padding: 40px 36px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
    color: #fff;
    margin: 64px 0 70px
}

.townpage .cta-h {
    font-weight: 800;
    font-size: clamp(1.3rem, 2.4vw, 1.6rem);
    flex: 1 1 320px
}

.townpage .cta .btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

/* ---- Preview footer (REPLACED by theme footer) ---- */
.townpage .site-footer {
    background: var(--tp-dark-900);
    color: rgba(255, 255, 255, .75);
    padding: 26px 0;
    font-size: 13.5px
}

.townpage .sf-in {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between
}

.townpage .site-footer a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    margin-right: 16px
}

.townpage .site-footer a:hover {
    color: #fff
}

/* Town cards (hub-specific) */
.parenttownpage .town-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px
}

.parenttownpage .tcard {
    background: var(--tp-white);
    border: 1px solid var(--tp-border);
    border-radius: var(--tp-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow .2s ease, transform .2s ease
}

.parenttownpage .tcard:hover {
    box-shadow: 0 10px 28px rgba(59, 36, 18, .12);
    transform: translateY(-2px)
}

@media (prefers-reduced-motion:reduce) {
    .parenttownpage .tcard {
        transition: none
    }

    .parenttownpage .tcard:hover {
        transform: none
    }
}

.parenttownpage .tcard h3 {
    color: var(--tp-dark-900);
    font-weight: 600;
}

.parenttownpage .tcard h3 a {
    color: inherit;
    text-decoration: none
}

.parenttownpage .tcard h3 a:hover {
    text-decoration: underline !important
}

.parenttownpage .tcard .tag {
    align-self: flex-start;
    background: var(--tp-orange-050);
    color: var(--tp-dark-800);
    font-size: 12px;
    font-weight: 800;
    border-radius: 999px;
    padding: 4px 12px;
    letter-spacing: .4px;
    text-transform: uppercase
}

.parenttownpage .tcard p {
    font-size: 15.5px
}

.parenttownpage .tcard .more {
    margin-top: auto;
    font-weight: 800;
    font-size: 14.5px;
    text-decoration: none
}

.parenttownpage .tcard .more:hover {
    text-decoration: underline !important
}

/*support css update 17/6/2026*/
.townpage {
    padding-top: 96px;
}

.townpage .hotel-list {
    padding-left: 0;
}

.townpage .checks {
    padding-left: 0;
}

.townpage .hcard h3 {
    margin-bottom: 8px;
}

.townpage .hcard h3 a:hover {
    text-decoration: underline !important;
}

.townpage .hcard-link {
    margin-top: 20px;
}

.townpage .hcard-link:hover {
    text-decoration: underline !important;
}

.townpage .hcard-loc,
.townpage .hcard-meta {
    margin-bottom: 8px;
}

.parenttownpage .town-list {
    padding-left: 0;
}

.townpage .btm-cta .cta-h {
    margin-bottom: 0;
}

.townpage .btm-cta .btn.btn-primary {
    border-color: var(--tp-orange);
}

/*support css update 17/6/2026*/
@media (max-width:760px) {
    .townpage .site-nav {
        display: none
    }

    .townpage .hero {
        aspect-ratio: 16/10
    }

    .townpage .cta {
        padding: 30px 24px
    }
}