
/*
* Custom variables
*/


html,
body {
    height: 100%;
	margin: 0;
}

a {
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

a:hover,
a:focus {
    color: #04AA6D;
    text-decoration: none;
}

h1 {
    margin-top: 1.5rem;
    font-size: 30px;
     color: darken(lightgrey, 20%);
}

h2 {

    font-size: 26px;
     color: darken(lightgrey, 20%);
}

h3 {

    font-size: 20px;
     color: darken(lightgrey, 20%);
}

h7 {
        text-transform: uppercase;
        letter-spacing: 0.5em;
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        padding: 15px 0;
        color: darken(lightgrey, 20%);
 }		
 
.setpadding {
   padding: 2px !important;
   margin: 0 !important;
}

.ads img {
  max-width: 100%;
  height: auto;
  display: block;
}
  max-width: 100%; /* prevent overflow on very small screens */
}

.content {
  margin: 1px; /* Adjusted margin to provide balanced spacing around the element */
  padding: 5px; /* Adds internal spacing to make the content look more structured */
  display: block; /* Ensures the element takes up the full width and starts on a new line */
  clear: both; /* Clears any floating elements above it, ensuring a new row */
 /* background-color: #f9f9f9; /* Optional: Adds a light background for better visibility */
 /* border-radius: 8px; /* Optional: Adds rounded corners for a softer appearance */
 /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow for a polished look */
}

.btn {
    border-radius: 20px !important; /* Ensures override */
    padding: 5px 10px !important;
	margin: 2px
}

.btn-margin {
    margin: 3px; /* Adjust the value as needed */
}

.form-group {
  margin-bottom: 1rem;
}

.form-check.form-group {
  margin-bottom: 1rem;
}

/* ── Profile pages ── */
.profile-page {
    padding-bottom: 28px;
}

.profile-hero {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: linear-gradient(135deg, #fff 0%, #f5fff9 100%);
    padding: 18px;
    box-shadow: var(--ht-shadow-sm);
}

.profile-hero-compact {
    margin-bottom: 18px;
}

.profile-avatar {
    display: inline-flex;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--ht-green);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.profile-kicker {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.profile-hero-copy h1 {
    margin-bottom: 6px;
    color: var(--ht-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    line-height: 1.15;
}

.profile-hero-copy p,
.profile-hero-copy small,
.profile-bio {
    margin-bottom: 0;
    color: var(--ht-gray-500);
    line-height: 1.5;
}

.profile-bio p:last-child,
.profile-bio ul:last-child,
.profile-bio ol:last-child {
    margin-bottom: 0;
}

.profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.profile-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.profile-social-row a,
.profile-social-row span {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border-radius: 999px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    padding: 8px 12px;
    font-size: .86rem;
    font-weight: 600;
}

.profile-stat {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    padding: 12px 8px;
    text-align: center;
}

.profile-stat strong,
.profile-stat span {
    display: block;
}

.profile-stat strong {
    color: var(--ht-dark);
    font-size: 1.1rem;
}

.profile-stat span {
    color: var(--ht-gray-500);
    font-size: .76rem;
}

.profile-action-row {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.profile-action-row .btn,
.profile-form-actions .btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.profile-callout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    border: 1px solid #f2d4d8;
    border-radius: 18px;
    background: #fff8f8;
    padding: 14px;
}

.profile-callout strong,
.profile-callout span {
    display: block;
}

.profile-callout span {
    color: var(--ht-gray-500);
    font-size: .86rem;
}

.profile-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -12px;
    margin-bottom: 18px;
    overflow-x: auto;
    border-bottom: 0;
    padding-inline: 12px;
    scrollbar-width: none;
}

.profile-tabs::-webkit-scrollbar {
    display: none;
}

.profile-tabs .nav-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    gap: 7px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 999px;
    background: #fff;
    color: var(--ht-gray-500);
    font-size: .86rem;
    font-weight: 600;
    white-space: nowrap;
}

.profile-tabs .nav-link.active {
    border-color: var(--ht-green);
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}

.profile-dashboard-grid,
.profile-section {
    display: grid;
    gap: 14px;
}

.profile-card,
.profile-form-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--ht-shadow-sm);
}

.profile-card-featured img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 16px;
}

.profile-section {
    margin-top: 20px;
}

.profile-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.profile-section-head h2 {
    margin-bottom: 0;
    color: var(--ht-dark);
    font-size: 1.05rem;
}

.profile-pill-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.profile-link-list {
    display: grid;
    gap: 8px;
}

.profile-link-list a,
.profile-list-card {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    background: var(--ht-gray-100);
    color: var(--ht-dark);
    padding: 10px 12px;
    font-weight: 500;
}

.profile-card > .profile-list-card + .profile-list-card,
.profile-card > .profile-recommendation-card + .profile-recommendation-card {
    margin-top: 8px;
}

.u-explore-list-card {
    gap: 10px;
}

.u-explore-place-link {
    display: flex;
    min-width: 0;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: inherit;
}

.u-explore-review-action {
    flex-shrink: 0;
}
.u-explore-review-heart {
    color: #dc3545;
}
.u-explore-review-stars {
    color: #fbbf24;
}

.profile-empty-state {
    border-radius: 16px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 14px;
    line-height: 1.45;
}

.profile-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.profile-photo-tile {
    display: block;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 14px;
    background: var(--ht-gray-100);
}

.profile-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-food-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.profile-food-card {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: 16px;
    background: #fff;
    color: var(--ht-dark);
}

.profile-food-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.profile-food-card span {
    display: block;
    padding: 10px;
    font-size: .88rem;
    font-weight: 600;
}

.profile-recommendation-card {
    border-radius: 16px;
    background: var(--ht-gray-100);
    padding: 12px;
}

.profile-recommendation-card span {
    color: var(--ht-gray-500);
}

.profile-form-card label {
    color: var(--ht-dark);
    font-weight: 600;
}

.profile-form-card .form-control {
    min-height: 46px;
    border-radius: 14px;
}

.profile-form-card textarea.form-control {
    min-height: 132px;
}

.profile-rich-editor {
    min-height: 150px;
    border-radius: 14px;
}

.profile-form-card .ql-toolbar.ql-snow {
    border-color: var(--ht-gray-200);
    border-radius: 14px 14px 0 0;
}

.profile-form-card .ql-container.ql-snow {
    border-color: var(--ht-gray-200);
    border-radius: 0 0 14px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.profile-help-text {
    display: block;
    margin-top: 6px;
    color: var(--ht-gray-500);
    font-size: .8rem;
    line-height: 1.45;
}

.profile-form-actions {
    display: grid;
    gap: 8px;
    margin-top: 18px;
}

@media (min-width: 576px) {
    .profile-action-row,
    .profile-form-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .profile-photo-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .profile-food-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .profile-hero {
        align-items: center;
        gap: 18px;
        padding: 22px;
    }

    .profile-avatar {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }

    .profile-hero-copy h1 {
        font-size: 1.7rem;
    }

    .profile-tabs {
        margin-inline: 0;
        padding-inline: 0;
    }

    .profile-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-card-featured {
        grid-row: span 2;
    }

    .profile-form-card {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .profile-dashboard-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .profile-photo-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .profile-food-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* ── Auth pages ── */
.auth-shell {
    display: flex;
    justify-content: center;
    padding: clamp(18px, 4vw, 42px) 0 clamp(32px, 5vw, 56px);
}

.auth-card {
    width: min(100%, 520px);
    background: #fff;
    border: 1px solid var(--ht-gray-200, #e5e7eb);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
    padding: clamp(22px, 4vw, 34px);
}

.auth-intro {
    margin-bottom: 24px;
}

.auth-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--ht-green, #04AA6D);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.auth-intro h1 {
    margin-bottom: 10px;
    color: var(--ht-dark, #111827);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.55rem, 3vw, 2rem);
    line-height: 1.15;
}

.auth-intro p {
    margin-bottom: 0;
    color: var(--ht-gray-500, #6b7280);
    font-size: .95rem;
    line-height: 1.6;
}

.auth-form label {
    color: var(--ht-dark, #111827);
    font-size: .88rem;
    font-weight: 600;
}

.auth-form .form-control {
    min-height: 48px;
    border-radius: 14px;
    border-color: var(--ht-gray-200, #e5e7eb);
    padding-inline: 15px;
}

.auth-form .form-control:focus {
    border-color: var(--ht-green, #04AA6D);
    box-shadow: 0 0 0 .2rem rgba(4, 170, 109, .14);
}

.auth-help-text {
    display: block;
    margin-top: 7px;
    color: var(--ht-gray-500, #6b7280);
    font-size: .78rem;
    line-height: 1.45;
}

.auth-alert {
    border-radius: 14px;
    font-size: .9rem;
}

.auth-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: .5rem;
}

.auth-label-row label {
    margin-bottom: 0;
}

.auth-label-row a,
.auth-switch a {
    color: var(--ht-green, #04AA6D);
    font-weight: 600;
}

.auth-label-row a {
    font-size: .82rem;
}

.auth-remember {
    margin: 18px 0 20px;
}

.auth-remember .form-check-label {
    color: var(--ht-gray-500, #6b7280);
    font-size: .88rem;
    font-weight: 500;
}

.auth-submit {
    width: 100%;
    min-height: 48px;
    margin: 0 !important;
    border: none !important;
    border-radius: 999px !important;
    background: var(--ht-green, #04AA6D) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(4, 170, 109, .22);
}

.auth-submit:hover,
.auth-submit:focus {
    background: var(--ht-green-dark, #038557) !important;
    color: #fff !important;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 18px;
    color: var(--ht-gray-500, #6b7280);
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--ht-gray-200, #e5e7eb);
}

.auth-social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.auth-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border: 1px solid var(--ht-gray-200, #e5e7eb);
    border-radius: 999px;
    color: var(--ht-dark, #111827);
    font-size: .92rem;
    font-weight: 600;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.auth-social-btn:hover {
    color: var(--ht-dark, #111827);
    border-color: rgba(17, 24, 39, .18);
    box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
    transform: translateY(-1px);
}

.auth-social-btn.facebook i {
    color: #1877f2;
}

.auth-social-btn.google i {
    color: #ea4335;
}

.auth-switch {
    margin: 24px 0 0;
    color: var(--ht-gray-500, #6b7280);
    font-size: .92rem;
    text-align: center;
}

@media (max-width: 575.98px) {
    .auth-shell {
        padding-top: 12px;
    }

    .auth-card {
        border-radius: 20px;
        padding: 20px;
    }

    .auth-social-grid {
        grid-template-columns: 1fr;
    }
}

	
.navbar {
    background-color: #ffffff;
    margin-bottom: 0; /* Ensure no unwanted margin */

}

.site-navbar {
    border-bottom: 1px solid #e7e7e7;
}

.site-navbar .navbar-brand img {
    height: auto;
    max-height: 44px;
}

.site-navbar .navbar-nav .nav-link {
    color: black;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.site-navbar .navbar-nav .nav-link.active,
.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-link:focus {
    color: #04AA6D;
}

.site-navbar .navbar-nav li button {
    color: black;
    padding: 0.5rem 0.75rem;
}

.rightbar {
    position: fixed;
    right: 0;
    top: 0;
    width: 60px; /* Adjust the width as needed */
    height: 100%; /* Full height of the viewport */
    background-color: #333;
    display: flex;
    flex-direction: column; /* Make it vertical */
    align-items: center; /* Center the items horizontally */
  }
  
  .rightbar a {
    display: block;
    color: white;
    text-align: center;
    padding: 16px;
    text-decoration: none;
    font-size: 17px;
    width: 100%; /* Full width of the container */
  }
  
  .rightbar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .rightbar a.active {
    background-color: #04AA6D;
    color: white;
  }


.bottombar {
    overflow: hidden;
    background-color: black;
    position: fixed;
    bottom: 0;
    width: auto;
  
  }
   
  .bottombar a {
    float: left;
  /*  display: block; */
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
  }
  
  .bottombar a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .bottombar a.active {
    background-color: #04AA6D;
    color: white;
  }

 /* Top Bar — legacy block (styles superseded by the newer .topbar block below) */

.topbar {
  overflow-x: auto;
  overflow-y: hidden;
  background-color: var(--ht-dark);
  scrollbar-width: none;
}

/* ── Admin Bar ── */
.admin-bar {
  background: #1a1a2e;
}

.admin-bar-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(255,255,255,.06);
  color: #fbbf24;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  cursor: pointer;
  text-align: left;
}
.admin-bar-toggle:hover { background: rgba(255,255,255,.04); }
.admin-bar-chevron { margin-left: auto; transition: transform .2s ease; }
.admin-bar-toggle.open .admin-bar-chevron { transform: rotate(180deg); }

.admin-bar-panel {
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 8px 12px 10px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.admin-bar-panel.open { display: flex; }

.admin-bar-group {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.admin-bar-group-label {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
  padding-right: 2px;
}
.admin-bar-group + .admin-bar-group {
  border-left: 1px solid rgba(255,255,255,.1);
  padding-left: 10px;
}

.admin-bar a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .68rem;
  font-weight: 500;
  color: #fbbf24;
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.admin-bar a:hover {
  background: rgba(251,191,36,.22);
  color: #fff;
  border-color: rgba(251,191,36,.45);
}
.admin-bar-placeholder {
  display: inline-flex;
  align-items: center;
  font-size: .68rem;
  font-weight: 500;
  color: #fbbf24;
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  opacity: .7;
}

.place-action-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  width: 100%;
}

.toolbar-form {
  display: inline-flex;
}


.container {
    padding: 10px 15px 0px 20px;
}

.wrap .container nav[aria-label="breadcrumb"] {
    padding-left: 0;
    padding-right: 0;
}

.wrap .container .breadcrumb {
    background-color: #f5f5f5;
    border-radius: 0;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 0;
    margin-top: 0;
    padding: 8px 15px;
    width: calc(100% + 10px);
}


.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 78px 0 60px;
}

.wrap .container {
    padding: 5px 20px 0px 20px;
}


.wrap .container .row {
    padding: 0px 5px 0px 5px;
}

.wrap .container-fluid {
    padding: 30px 15px 20px;
}

.hometitle{
    padding: 5px 15px 20px 0px;
    text-align: center;
}

.site-search.search-page {
    text-align: center;
}

.site-search #search-form,
.hometitle #search-form {
    display: flex;
    justify-content: center;
    width: 100%;
}

.search-input-group {
    margin-left: auto;
    margin-right: auto;
    max-width: 450px;
    width: min(100%, 450px);
}

.search-input-group .btn {
    margin-left: 0;
}

/* ─────────────────────────────────────────────
   Search discovery + results pages
───────────────────────────────────────────── */
.search-discovery-page,
.search-results-page {
    color: #2d2d2d;
}

.ss-hero,
.sr-hero {
    position: relative;
    overflow: hidden;
    padding: 42px 20px 38px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 32%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
    border-radius: 0 0 16px 16px;
}

.ss-hero::after,
.sr-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    left: -90px;
    bottom: -190px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.ss-hero-inner,
.sr-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.ss-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    color: rgba(255,255,255,.88);
    padding: 6px 12px;
    margin-bottom: 16px;
    font-size: .76rem;
    font-weight: 600;
}

.ss-hero h1,
.sr-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 46px;
    font-weight: 500;
    margin-bottom: 14px;
}

.ss-intro {
    color: rgba(255,255,255,.84);
    max-width: 610px;
    margin: 0 auto 24px;
    font-size: .98rem;
    line-height: 1.6;
}

.ss-search-wrap,
.sr-search-wrap {
    max-width: 640px;
    margin: 0 auto;
}

.ss-search-shell,
.sr-search-shell {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.ss-search-shell input,
.sr-search-shell input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #2d2d2d;
    padding: 12px 14px;
    font-size: .96rem;
}

.ss-search-shell button,
.sr-search-shell button {
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    background: var(--ht-gold);
    color: var(--ht-dark);
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    white-space: nowrap;
}

.ss-section {
    padding: 34px 0 0;
}

.ss-section-head span,
.sr-card-head span {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--ht-green);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.ss-section-head h2 {
    margin-bottom: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.24rem;
    font-weight: 700;
}

.ss-tip-grid,
.ss-shortcut-grid {
    display: grid;
    gap: 14px;
}

.ss-tip-grid {
    grid-template-columns: repeat(3, 1fr);
}

.ss-tip-card,
.ss-shortcut-card,
.sr-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}

.ss-tip-card {
    padding: 20px;
}

.ss-tip-card i {
    color: var(--ht-green);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.ss-tip-card h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.ss-tip-card p,
.ss-shortcut-card span {
    margin: 0;
    color: var(--ht-gray-500);
    font-size: .88rem;
    line-height: 1.5;
}

.ss-shortcuts {
    padding-bottom: 34px;
}

.ss-shortcut-grid {
    grid-template-columns: repeat(4, 1fr);
}

.ss-shortcut-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 18px;
    transition: border-color .18s, box-shadow .18s, transform .15s;
}

.ss-shortcut-card:hover {
    color: inherit;
    border-color: var(--ht-green);
    box-shadow: var(--ht-shadow-md);
    transform: translateY(-2px);
}

.ss-shortcut-card strong {
    font-family: 'Poppins', sans-serif;
    font-size: .98rem;
}

.sr-back-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 15px;
    color: rgba(255,255,255,.88);
    font-size: .84rem;
    font-weight: 600;
}

.sr-back-link:hover {
    color: #fff;
}

.sr-hero h1 {
    margin-bottom: 22px;
}

.sr-summary {
    margin-top: 16px;
    color: rgba(255,255,255,.84);
    font-size: .92rem;
}

.sr-summary strong {
    color: #fff;
}

.sr-overview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 24px 0 8px;
}

.sr-overview-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 999px;
    background: #fff;
    padding: 7px 12px;
    font-size: .82rem;
    box-shadow: var(--ht-shadow-sm);
}

.sr-overview-pill strong {
    color: var(--ht-green);
}

.sr-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 16px 0 34px;
}

.sr-card {
    padding: 20px;
}

.sr-card-wide {
    grid-column: span 2;
}

.sr-card-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.sr-item-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.sr-item {
    border-top: 1px solid var(--ht-gray-200);
    padding-top: 10px;
}

.sr-item:first-child {
    border-top: 0;
    padding-top: 0;
}

.sr-item a,
.sr-item strong {
    color: var(--ht-dark);
    font-weight: 600;
}

.sr-item a:hover {
    color: var(--ht-green);
}

.sr-item p {
    color: var(--ht-gray-500);
    font-size: .84rem;
    line-height: 1.45;
    margin: 4px 0 0;
}

.sr-empty-state {
    text-align: center;
    padding: 42px 18px 48px;
}

.sr-empty-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--ht-green-light);
    color: var(--ht-green);
    margin-bottom: 16px;
}

.sr-empty-state h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.sr-empty-state p {
    max-width: 520px;
    margin: 0 auto 18px;
    color: var(--ht-gray-500);
}

.sr-empty-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .ss-hero,
    .sr-hero {
        padding: 34px 20px 30px;
    }

    .ss-hero h1,
    .sr-hero h1 {
        font-size: 30px;
        line-height: 36px;
    }

    .ss-search-shell,
    .sr-search-shell {
        flex-direction: column;
    }

    .ss-search-shell button,
    .sr-search-shell button {
        min-height: 46px;
    }

    .ss-tip-grid,
    .ss-shortcut-grid,
    .sr-grid {
        grid-template-columns: 1fr;
    }

    .sr-card-wide {
        grid-column: auto;
    }
}

.hometitle2{
    padding: 0px 15px 20px 0px;
    text-align: center;
}

.footer {
    height: 200px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
     padding: 20px 15px 20px 30px;
}

@media print {
  .site-navbar,
  .topbar,
  .admin-toolbar,
  .bottombar,
  .footer,
  .breadcrumb {
    display: none !important;
  }

  .wrap {
    margin: 0;
    min-height: 0;
    padding: 0;
  }

  .wrap .container {
    padding: 0;
  }
}

.jumbotron {
    text-align: center;
    background-color: transparent;
}

.jumbotron .btn {
    font-size: 16px;
    padding: 14px 24px;
}

.searchbar {
    text-align: center;
    background-color: transparent;
}

.nobr  {  
	white-space: nowrap;  
	hyphens: none;  
}

.not-set {
    color: #c55;
    font-style: italic;
}


/* add sorting icons to gridview sort links */
a.asc:after, a.desc:after {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    padding-left: 5px;
}

a.asc:after {
    content: /*"\e113"*/ "\e151";
}

a.desc:after {
    content: /*"\e114"*/ "\e152";
}

.sort-numerical a.asc:after {
    content: "\e153";
}

.sort-numerical a.desc:after {
    content: "\e154";
}

.sort-ordinal a.asc:after {
    content: "\e155";
}

.sort-ordinal a.desc:after {
    content: "\e156";
}

.grid-view th {
    white-space: nowrap;
}

.hint-block {
    display: block;
    margin-top: 5px;
    color: #999;
}

.error-summary {
    color: #a94442;
    background: #fdf7f7;
    border-left: 3px solid #eed3d7;
    padding: 10px 20px;
    margin: 0 0 15px 0;
}

.tag {
  background: #28c222;
  color: #FFFFFF;
  display: inline-block; /* Better than float */
  font-size: 12px;
  font-weight: normal;
  margin: 0 5px 0 0;
  padding: 4px 10px;
  border-radius: 10px;
  white-space: nowrap; /* Prevents wrapping */
}

.tag:before {
  content: "\f02b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 6px;
}

.social-share {
  margin-top: 10px;
}

.share-icon {
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  margin-left: 6px;
  text-decoration: none;
  width: 34px;
}

.share-icon.whatsapp {
  background: #48b760;
  color: white;
}

.share-icon.facebook {
  background: #337ab7;
  color: white;
}

.share-icon.x-twitter {
  background: white;
  color: black;
}

.share-icon.telegram {
  background: #5bc0de;
  color: white;
}

.share-icon.copy-link {
  background: white;
  color: black;
}



.placelogo img
{
	max-width: 150px;
    max-height: 150px;
	padding: 10px 10px;
}

.media img
{
	height: auto;
	max-width: 150px;
    float: left;
	padding: 0px 20px 20px 0px;
}

.media2 img
{
	height: auto;
	max-width: 150px;
   	padding: 0px 20px 20px 0px;
}

.imgthumbnail img
{
	height: auto;
	max-width: 100px;
    float: left;
	padding: 0px 20px 20px 0px;
}

.list-group-item
{
    height: auto;

}


blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D";
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}

.google-maps {
        position: relative;
        padding-bottom: 60%;  
        height: 0;
        overflow: hidden;
}

.google-maps iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
}

.google-maps.location-map-compact {
        height: 250px;
        max-width: 520px;
        padding-bottom: 0;
}

.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  height: 260px;
  transition: 0.3s;
}

/* On mouse-over, add a deeper shadow */
.card-image:hover {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

/* Add some padding inside the card container */
.container {
  padding: 1px 8px;
}

.container-fluid {
  padding: 1px 8px;
}

.card-user {
    display: block; 
    width: 100%; 
/*	height: 50px;  */
	
}



.card-container {
    display: block; 
    width: 100%; 
/*	height: 260px;  */
	
}

.card-imagecontainer {
    display: block; 
    width: 100%; 
/*	height: 200px;  */
	
}
.card-image {
    display: block; 
    width: 100%; 
/*	height: 200px;*/
	background-color:#DCDCDC;
	overflow:hidden;
}



.card-text {
    display: block; 
    width: 100%; 
/*	background-color:#255; */
	text-align:center;
}

.instagram-wrap {
    background: lightgrey;
}
 
.instagram-content {
    h3 {
        text-transform: uppercase;
        letter-spacing: 0.5em;
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        padding: padding*5 0;
        color: darken(lightgrey, 20%);
    }
 
}

.user {
  font-weight: normal; /* Makes text bold */
  text-decoration: none !important; /* Removes underline */
  color: black;
}

.user:hover {
  text-decoration: none; /* Ensures no underline on hover */
}

 .photo-box {
	 margin: 0px 0px 10px 0px;
	 
}
 .photo-box .image-wrap img {
	 width: 100%;
	 padding: 0px 0px 0px 0px;
}

.photo-left  {
  float: left; /* Align the image to the left */
  margin-right: 15px; /* Add space between the image and the text */
  margin-bottom: 10px; /* Optional: Add space below the image */
}
	 
	 

 .photo-box .image-wrap .likes {
	 position: absolute;
	 bottom: 5px;
	 left: 10px;
	 padding: 5px;
	 background: blue;
	 background: rgba(black, 0.4);
	 color: white;
}

.photo-box .title .link a {
	 font-family: 'Montserrat', sans-serif;
	 font-size: 12px;
	 height: 30px;
	
	 text-align: center;
	 background: white;
	 
	 overflow: hidden;
	 text-overflow: ellipsis;
	 display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.photo-box .title {
	 font-size: 12px;
	 background: white;
	 color: #2a2727;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	min-height: 20px;
}

.photo-box .posttitle {
	 display: inline-block;
	 font-size: 10px;
	 background: grey;
	 color: white;
	 line-height: 1.1;
	 padding:0.4em;
	text-overflow: ellipsis;
	 overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 3.5em;
}
.photo-box .postcredit {
	 display: inline-block;
	 font-size: 12px;
	 background: white;
	 color: black;
	 line-height: 1;
	 padding:0.4em;
	text-overflow: ellipsis;
	 overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	height: 2.5em;
}

.photo-box .posttitle a{
	font-size: 14px;
	color: white;
}

.photo-box .posttitle9 a{
	 font-size: 11px;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}
    
    
.photo-box .old a {
	 font-family: 'Montserrat', sans-serif;
	 font-size: 12px;
	 height: 30px;
	
	 text-align: center;
	 background: white;
	 
	 overflow: hidden;
	 text-overflow: ellipsis;
	 display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.photo-box .description {
	 font-family: 'Montserrat', sans-serif;
	 font-size: 12px;
	 background: white;
	 color: #2a2727;
	 overflow: hidden;
	 text-overflow: ellipsis;
	 display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	min-height: 100px;
}

.place-view .place-photo-grid {
  align-items: flex-start;
  margin-left: -2px;
  margin-right: -2px;
}

.place-view .place-photo-grid h3 {
  flex: 0 0 100%;
  max-width: 100%;
}

.place-view .photo-box {
  margin: 0 0 12px 0;
  width: 100%;
}

.place-view .photo-box .image-wrap {
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
  overflow: hidden;
  width: 100%;
}

.place-view .photo-box .image-wrap a {
  display: block;
  height: 100%;
  width: 100%;
}

.place-view .photo-box .image-wrap img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.place-view .photo-box .image-wrap img[src$="camera.gif"] {
  object-fit: contain;
  padding: 18px;
}

.place-view .photo-box .title {
  min-height: 34px;
  padding: 4px 2px;
}

.place-view .place-social-links,
.place-view .place-delivery-section {
  flex: 0 0 100%;
  max-width: 100%;
}

.place-view .place-recommend-grid,
.place-view .user-recommend-list {
  margin-bottom: 8px;
  margin-left: -2px;
  margin-right: -2px;
}

.place-view .place-recommend-grid h3,
.place-view .user-recommend-list h3 {
  flex: 0 0 100%;
  margin-bottom: 2px;
  max-width: 100%;
}

.place-view .user-recommend-item {
  flex: 0 0 100%;
  font-size: 14px;
  line-height: 1;
  margin: 0;
  max-width: 100%;
}

.place-view .user-recommend-item .btn {
  line-height: 1;
  vertical-align: baseline;
}

.place-view .place-recommend-grid .setpadding {
  flex: 0 0 106px;
  max-width: 106px;
  padding-left: 2px;
  padding-right: 2px;
}

.place-view .place-recommend-grid .photo-box .image-wrap {
  aspect-ratio: 1 / 1;
  max-width: 100px;
}

.place-view .place-recommend-grid .photo-box .title {
  font-size: 13px;
  line-height: 1.25;
  max-width: 100px;
  min-height: 0;
  padding: 5px 0 0 0;
}

.place-view .photo-box .posttitle,
.place-view .photo-box .postcredit {
  width: 100%;
}

.place-view .place-tag-section {
  align-items: center;
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 0 10px 0;
}

.place-view .place-tag-section .tag {
  margin: 0;
}

.place-view .place-tag-section h3 {
  flex: 0 0 auto;
  margin: 0;
}

.place-view .place-tag-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  line-height: 1.5;
}

.place-view .place-tag-item {
  background: #f7f7f7;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
}

.place-view .tag-delete {
  color: #d9534f;
  font-size: 11px;
  line-height: 1;
}

.place-view .place-outlets {
  margin-top: 12px;
}

.place-view .place-outlets h2 {
  margin-bottom: 6px;
}

.place-view .place-outlet-item {
  background: #fff;
  border: 1px solid #d8dee4;
  border-left: 4px solid #04AA6D;
  border-radius: 6px;
  line-height: 1.45;
  margin: 8px 0;
  padding: 10px 12px;
}

.place-view .place-outlet-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.place-view .place-outlet-actions {
  display: inline-flex;
  gap: 2px;
  vertical-align: middle;
}

.place-picker {
  position: relative;
}

.place-picker-results {
  display: none;
  left: 0;
  max-height: 240px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  z-index: 20;
}

.place-picker-results.is-open {
  display: block;
}

.btn-xs {
  font-size: 12px !important;
  padding: 2px 7px !important;
}



.list-group-item.foodcourt-li {
  background-color: lightgrey !important;
  border: none !important;
}

/* General Outline Button Style */
.btn-outline {
  background-color: transparent;
  border-width: 2px;
  border-style: solid;
  padding: 6px 12px;
  transition: all 0.3s ease-in-out;
}

/* Colors for Different Buttons */
.btn-outline-primary {
  color: #337ab7;
  border-color: #337ab7;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #337ab7;
  color: white;
}

/* Outline Danger (No) */
.btn-outline-danger {
  color: #d9534f;
  border-color: #d9534f;
}

.btn-outline-danger:hover,
.btn-outline-danger:focus {
  background-color: #d9534f;
  color: white;
}

/* ============================================================
   REDESIGN 2026
============================================================ */

/* ── Design tokens ── */
:root {
    --ht-green:       #04AA6D;
    --ht-green-dark:  #038a58;
    --ht-green-light: #e6f9f1;
    --ht-cream:       #FFF8E7;
    --ht-gold:        #F5C218;
    --ht-dark:        #1C1C2E;
    --ht-gray-100:    #F8F9FA;
    --ht-gray-200:    #E9ECEF;
    --ht-gray-500:    #6C757D;
    --ht-shadow-sm:   0 2px 8px rgba(0,0,0,.07);
    --ht-shadow-md:   0 4px 18px rgba(0,0,0,.10);
    --ht-radius-sm:   8px;
    --ht-radius-md:   14px;
    --ht-radius-lg:   24px;
}

/* ── Fonts: Poppins headings, Inter body ── */
body { font-family: 'Inter', sans-serif; }
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; }

/* ── Ads: size driven by banner data (width/height inline style) ── */
.ads { text-align: center; line-height: 0; }
.ads-label {
    margin-bottom: 6px;
    color: #adb5bd;
    font-size: 10px;
    line-height: 1.2;
}
.ads img { max-width: 100%; height: auto; display: block; margin: 0 auto; }

/* ── Navbar: Login CTA button ── */
.btn-login-nav {
    background: var(--ht-green) !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 6px 18px !important;
    font-weight: 600 !important;
    margin: 0 4px !important;
    transition: background .18s;
}
.btn-login-nav:hover {
    background: var(--ht-green-dark) !important;
    color: #fff !important;
}

/* ── Topbar: icon + label layout (matches mockup quick-nav) ── */
.topbar {
    overflow-x: auto;
    overflow-y: hidden;
    background-color: var(--ht-dark);
    scrollbar-width: none;
}
.topbar .container {
    display: flex;
    align-items: stretch;
    padding-top: 0;
    padding-bottom: 0;
}

/* ── Photo discovery page ── */
.photo-discovery-page { margin-bottom: 24px; }
.pg-primary-link,
.pg-soft-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 600;
}
.pg-ad-slot {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.pg-ad-slot-bottom { margin-bottom: 24px; }
.pg-toolbar-shell {
    margin: 20px 0 18px;
}
.pg-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    padding: 16px;
}
.pg-toolbar strong,
.pg-toolbar span { display: block; }
.pg-toolbar strong { color: var(--ht-dark); }
.pg-toolbar span {
    color: var(--ht-gray-500);
    font-size: .84rem;
    margin-top: 2px;
}
.pg-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pg-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--ht-gray-100);
    padding: 5px 7px 5px 12px;
}
.pg-sort-form label {
    color: var(--ht-gray-500);
    font-size: .8rem;
}
.pg-sort-form select {
    border: 0;
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .82rem;
}
.pg-primary-link {
    background: var(--ht-green);
    color: #fff;
    padding: 10px 15px;
}
.pg-primary-link:hover { color: #fff; background: var(--ht-green-dark); }
.pg-soft-link {
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    padding: 10px 15px;
}
.pg-gallery {
    columns: 2 180px;
    column-gap: 14px;
}
.pg-card {
    display: inline-block;
    width: 100%;
    overflow: hidden;
    break-inside: avoid;
    margin-bottom: 14px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pg-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ht-shadow-md);
    border-color: var(--ht-green);
}
.pg-media {
    display: block;
    background: var(--ht-gray-100);
}
.pg-media img {
    display: block;
    width: 100%;
    height: auto;
}
.pg-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    color: var(--ht-gray-500);
}
.pg-card-copy { padding: 13px 14px 14px; }
.pg-card-copy h2 {
    font-size: .96rem;
    line-height: 1.35;
    margin-bottom: 8px;
}
.pg-card-copy h2 a { color: var(--ht-dark); }
.pg-card-copy p {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--ht-gray-500);
    font-size: .82rem;
    margin-bottom: 10px;
}
.pg-card-copy p a { color: var(--ht-green-dark); }
.pg-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pg-tags a {
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 4px 9px;
    font-size: .72rem;
}
.pg-pagination { margin-top: 10px; }
.pg-empty-state {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    padding: 34px 18px;
    text-align: center;
}
.pg-empty-icon {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 14px;
    color: var(--ht-green-dark);
    background: var(--ht-green-light);
}
.pg-empty-state h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.pg-empty-state p {
    color: var(--ht-gray-500);
    margin-bottom: 16px;
}
.pg-empty-state > div {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
@media (min-width: 768px) {
    .pg-gallery { columns: 3 220px; }
}
@media (min-width: 1100px) {
    .pg-gallery { columns: 4 240px; }
}
@media (max-width: 767px) {
    .pg-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .pg-toolbar-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .pg-sort-form,
    .pg-primary-link,
    .pg-soft-link { width: 100%; }
}
.topbar::-webkit-scrollbar { display: none; }
.topbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 1.05rem;
    font-weight: 500;
    gap: 3px;
    padding: 10px 20px;
    white-space: nowrap;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: background .15s, color .15s, border-color .15s;
    text-decoration: none;
}
.topbar a:hover {
    background-color: rgba(255,255,255,.07);
    color: #fff;
    border-bottom-color: var(--ht-green);
}
.topbar a.active {
    background-color: rgba(255,255,255,.07);
    color: #fff;
    border-bottom-color: var(--ht-green);
}
.topbar-label {
    font-size: .62rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .02em;
}

/* ── Footer: dark multi-column redesign ── */
.footer {
    background: var(--ht-dark) !important;
    color: rgba(255,255,255,.6) !important;
    border-top: none !important;
    height: auto !important;
    padding: 32px 0 0 !important;
}
.footer-inner {
    padding-left: 32px;
    padding-right: 32px;
}
.footer a { color: rgba(255,255,255,.7) !important; }
.footer a:hover { color: #fff !important; }
.footer .tag { display: none !important; }
.footer .float-start { float: none !important; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
}
@media (min-width: 576px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h6 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 12px;
}
.footer-col-links {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 7px;
}
.footer-col-links a { font-size: .8rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 20px;
    padding: 14px 0;
    text-align: center;
    font-size: .78rem;
}

/* ── Homepage hero section ── */
.ht-hero {
    background: linear-gradient(135deg, #013d27 0%, #027a4a 60%, #04AA6D 100%);
    padding: 48px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 16px 16px;
}
.ht-hero::before {
    content: '';
    position: absolute;
    width: 480px; height: 480px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    top: -180px; right: -120px;
    pointer-events: none;
}
.ht-hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    bottom: -100px; left: -60px;
    pointer-events: none;
}
.ht-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 46px;
    letter-spacing: normal;
    margin-bottom: 26px;
    position: relative;
}
.ht-hero-ad {
    text-align: center;
    margin-bottom: 22px;
    line-height: 0;
    position: relative;
}
.ht-hero-ad .ads img { max-width: 100%; height: auto; }

/* ── Hero search bar ── */
.ht-search-wrap {
    max-width: 620px;
    margin: 0 auto 22px;
    position: relative;
}
.ht-search-bar {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.ht-search-bar input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 14px;
    font-size: .96rem;
    font-family: 'Inter', sans-serif;
    background: transparent;
    color: #2D2D2D;
}
.ht-search-bar input::placeholder { color: #aaa; }
.ht-search-bar button {
    background: var(--ht-gold);
    border: none;
    border-radius: 12px;
    padding: 0 18px;
    font-family: 'Poppins', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    color: var(--ht-dark);
    cursor: pointer;
    transition: background .18s;
    white-space: nowrap;
}
.ht-search-bar button:hover { background: #e0ae0a; }

/* ── Near Me pill ── */
.ht-nearme {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff !important;
    border-radius: 50px;
    padding: 7px 20px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 22px;
    transition: background .18s;
    position: relative;
}
.ht-nearme:hover { background: rgba(255,255,255,.28); color: #fff !important; }

/* ── Auth greeting row ── */
.hero-auth-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
    flex-wrap: wrap;
    position: relative;
}
.hero-auth-row span { color: rgba(255,255,255,.85); font-size: .9rem; }
.btn-hero-login {
    background: #fff;
    color: var(--ht-green) !important;
    border-radius: 50px;
    padding: 7px 22px;
    font-weight: 700;
    font-size: .88rem;
    border: none;
    transition: box-shadow .18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-hero-login:hover { box-shadow: 0 4px 14px rgba(0,0,0,.22); color: var(--ht-green-dark) !important; }
.btn-hero-profile {
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.35);
    color: #fff !important;
    border-radius: 50px;
    padding: 7px 22px;
    font-weight: 600;
    font-size: .88rem;
    transition: background .18s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-hero-profile:hover { background: rgba(255,255,255,.28); color: #fff !important; }

/* ── Social share pills ── */
.hero-share-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    position: relative;
}
.hero-share-row span { color: rgba(255,255,255,.7); font-size: .8rem; }
.share-pill-new {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff !important;
    border-radius: 50px;
    padding: 5px 12px;
    font-size: .78rem;
    font-weight: 500;
    transition: background .15s;
}
.share-pill-new:hover { background: rgba(255,255,255,.28); color: #fff !important; }
.share-pill-new.sp-wa:hover  { background: #25d366; border-color: #25d366; }
.share-pill-new.sp-fb:hover  { background: #1877f2; border-color: #1877f2; }
.share-pill-new.sp-xt:hover  { background: #000;    border-color: #000; }
.share-pill-new.sp-tg:hover  { background: #229ed9; border-color: #229ed9; }

/* ── Homepage sections ── */
.ht-section { padding: 36px 0; }
.section-label-pill {
    display: inline-block;
    background: var(--ht-green);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 3px 11px;
    margin-bottom: 6px;
}
.section-label-pill.dark { background: var(--ht-dark); }
.section-hdr {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 18px;
}
.section-hdr h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ht-dark);
    margin: 0;
}
.link-more {
    font-size: .82rem;
    font-weight: 600;
    color: var(--ht-green);
    white-space: nowrap;
}
.link-more:hover { color: var(--ht-green-dark); }

/* ── News cards ── */
.ht-news-list {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.ht-news-item {
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-sm);
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    box-shadow: var(--ht-shadow-sm);
    transition: box-shadow .18s, border-color .18s;
}
.ht-news-item:hover { box-shadow: var(--ht-shadow-md); border-color: var(--ht-green); }
.ht-news-dot {
    width: 8px; height: 8px; min-width: 8px;
    background: var(--ht-green);
    border-radius: 50%;
    margin-top: 6px;
}
.ht-news-item a { font-size: .87rem; font-weight: 500; color: #2D2D2D; line-height: 1.45; }
.ht-news-item a:hover { color: var(--ht-green); }

/* ── Explore icon cards ── */
.ht-explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}
@media (min-width: 480px) { .ht-explore-grid { grid-template-columns: repeat(4, 1fr); } }
.ht-explore-card {
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-md);
    padding: 18px 10px 14px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    box-shadow: var(--ht-shadow-sm);
    color: #2D2D2D;
    transition: box-shadow .18s, border-color .18s, transform .15s;
}
.ht-explore-card:hover {
    box-shadow: var(--ht-shadow-md);
    border-color: var(--ht-green);
    transform: translateY(-2px);
    color: var(--ht-green);
}
.ht-explore-icon {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--ht-green-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    color: var(--ht-green);
}
.ht-explore-label { font-size: .82rem; font-weight: 600; }

/* ── Category pills ── */
.ht-cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.ht-cat-pill {
    background: var(--ht-gray-100);
    border: 1px solid var(--ht-gray-200);
    color: #2D2D2D;
    border-radius: 50px;
    padding: 5px 13px;
    font-size: .78rem;
    font-weight: 500;
    transition: background .15s, color .15s, border-color .15s;
}
.ht-cat-pill:hover { background: var(--ht-green-light); color: var(--ht-green); border-color: var(--ht-green); }

/* ── Photo cards (homepage) ── */
.ht-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media (min-width: 576px) { .ht-photo-grid { grid-template-columns: repeat(4, 1fr); } }
.ht-photo-card {
    border-radius: var(--ht-radius-sm);
    overflow: hidden;
    background: var(--ht-gray-100);
    box-shadow: var(--ht-shadow-sm);
    transition: box-shadow .18s, transform .15s;
}
.ht-photo-card:hover { box-shadow: var(--ht-shadow-md); transform: translateY(-3px); }
.ht-photo-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.ht-photo-info { padding: 7px 9px 9px; }
.ht-photo-title { font-size: .76rem; font-weight: 600; color: #2D2D2D; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ht-photo-place { font-size: .7rem; color: var(--ht-gray-500); }
.ht-photo-place a { color: var(--ht-green); }

/* ── New place cards (homepage) ── */
.ht-places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
@media (min-width: 576px) { .ht-places-grid { grid-template-columns: repeat(3, 1fr); } }
.ht-place-card {
    border-radius: var(--ht-radius-sm);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    box-shadow: var(--ht-shadow-sm);
    text-align: center;
    transition: box-shadow .18s, transform .15s;
    display: block;
    color: #2D2D2D;
}
.ht-place-card:hover { box-shadow: var(--ht-shadow-md); transform: translateY(-2px); color: var(--ht-green); }
.ht-place-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.ht-place-card-name { font-size: .76rem; font-weight: 600; padding: 7px 5px 8px; line-height: 1.3; }

/* ── Top Halal discovery page ── */
.top-halal-page { margin-bottom: 24px; }
.th-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 22px;
    padding: 34px 24px 30px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.16), transparent 30%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04AA6D 100%);
}
.th-hero::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -150px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.th-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin: 0 auto;
    padding-inline: 12px;
}
.th-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 14px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.9);
    font-size: .76rem;
    font-weight: 600;
}
.th-hero h1 {
    max-width: 720px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 1.15;
}
.th-hero p {
    max-width: 620px;
    margin-bottom: 20px;
    color: rgba(255,255,255,.86);
}
.th-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.th-section { margin-bottom: 26px; }
.th-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 16px;
}
.th-section-head.compact { align-items: center; }
.th-section-head h2 {
    margin: 8px 0 0;
    font-size: 1.35rem;
}
.th-section-head p {
    max-width: 460px;
    margin: 0;
    color: var(--ht-gray-500);
    font-size: .9rem;
}
.th-ranking-card {
    height: 100%;
    padding: 18px;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-sm);
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.th-ranking-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.th-ranking-head h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 1rem;
}
.th-ranking-head h3 i { color: var(--ht-green); }
.th-ranking-head a,
.th-ranking-list a {
    text-decoration: none;
}
.th-ranking-head a {
    color: var(--ht-green);
    font-size: .8rem;
    font-weight: 600;
}
.th-ranking-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 22px;
}
.th-ranking-list li::marker {
    color: var(--ht-gray-500);
    font-size: .82rem;
    font-weight: 600;
}
.th-ranking-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: #2D2D2D;
    font-size: .92rem;
}
.th-ranking-list a i {
    color: var(--ht-gray-400);
    font-size: .72rem;
}
.th-ranking-list a:hover { color: var(--ht-green); }
.th-view-pill {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--ht-green-light);
    color: var(--ht-green);
    padding: 3px 8px;
    font-size: .68rem;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
}
.th-food-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.th-food-card {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-sm);
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    color: #2D2D2D;
    text-decoration: none;
    transition: box-shadow .18s, transform .15s, color .15s;
}
.th-food-card:hover {
    box-shadow: var(--ht-shadow-md);
    color: var(--ht-green);
    transform: translateY(-2px);
}
.th-food-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1.1;
    object-fit: cover;
}
.th-food-card > span {
    display: block;
    padding: 10px 11px 11px;
    font-size: .86rem;
    font-weight: 600;
}
.th-food-meta {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.th-recommendation-list {
    display: grid;
    gap: 10px;
}
.th-recommendation-card {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 13px;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-sm);
    background: #fff;
    font-size: .88rem;
    line-height: 1.45;
}
.th-recommendation-card a {
    color: var(--ht-green);
    font-weight: 600;
    text-decoration: none;
}
.th-recommendation-icon {
    display: grid;
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--ht-green-light);
    color: var(--ht-green);
}
@media (min-width: 576px) {
    .th-food-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
    .th-food-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 767.98px) {
    .th-hero {
        margin-bottom: 18px;
        padding: 26px 12px 24px;
    }
    .th-section-head {
        display: block;
    }
    .th-section-head p {
        margin-top: 8px;
    }
    .th-section-head.compact .link-more {
        display: inline-block;
        margin-top: 10px;
    }
}

/* ── Cuisine discovery page ── */
.cuisine-discovery-page { margin-bottom: 20px; }
.cd-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 32%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04AA6D 100%);
    padding: 34px 0 30px;
    margin-bottom: 18px;
    border-radius: 0 0 16px 16px;
}
.cd-hero::after {
    content: '';
    position: absolute;
    width: 320px; height: 320px;
    border-radius: 50%;
    left: -120px; bottom: -210px;
    background: rgba(255,255,255,.08);
}
.cd-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin: 0 auto;
    padding-inline: 12px;
}
.cd-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem; font-weight: 600;
    margin-bottom: 16px;
}
.cd-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
    letter-spacing: normal;
    margin-bottom: 12px;
}
.cd-intro {
    color: rgba(255,255,255,.86);
    max-width: 720px;
    margin-bottom: 22px;
}
.cd-intro p:last-child { margin-bottom: 0; }
.cd-intro a { color: #fff; text-decoration: underline; }
.cd-search-shell {
    display: flex; gap: 10px;
    max-width: 620px;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.cd-search-shell input {
    flex: 1;
    border: 0; outline: 0;
    padding: 12px 14px;
    font-size: .96rem;
    background: transparent;
}
.cd-search-shell button {
    border: 0;
    border-radius: 12px;
    background: var(--ht-gold);
    color: var(--ht-dark);
    font-weight: 700;
    padding: 0 18px;
}
.cd-section { padding: 12px 0 16px; }
.cd-page-copy {
    color: var(--ht-gray-500);
    line-height: 1.7;
    padding-top: 20px;
}
.cd-page-copy p:last-child { margin-bottom: 0; }
.cd-section-kicker {
    color: var(--ht-green);
    font-size: .72rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    margin-bottom: 5px;
}
.cd-section-head {
    display: flex; justify-content: space-between; align-items: end;
    gap: 12px; margin-bottom: 16px;
}
.cd-section-head h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.18rem; font-weight: 700; margin: 0;
}
.cd-section-head span, .cd-results-count {
    color: var(--ht-gray-500);
    font-size: .84rem;
}
.cd-featured-grid, .cd-cuisine-grid { display: grid; gap: 12px; }
.cd-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cd-featured-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: var(--ht-radius-md);
    box-shadow: var(--ht-shadow-sm);
}
.cd-featured-card img {
    width: 100%; height: 100%; min-height: 150px;
    object-fit: cover; display: block;
}
.cd-featured-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 24%, rgba(0,0,0,.78));
}
.cd-featured-copy {
    position: absolute; inset: auto 14px 13px;
    z-index: 1; color: #fff;
}
.cd-featured-copy strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.cd-featured-copy span {
    font-size: .78rem;
    color: rgba(255,255,255,.82);
}
.cd-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; flex-wrap: wrap;
    margin-bottom: 16px;
}
.cd-filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.cd-filter-pill {
    border: 1px solid var(--ht-gray-200);
    background: var(--ht-gray-100);
    border-radius: 999px;
    color: var(--ht-gray-500);
    padding: 7px 12px;
    font-size: .8rem;
}
.cd-filter-pill.active {
    background: var(--ht-green-light);
    border-color: rgba(4,170,109,.22);
    color: var(--ht-green-dark);
    font-weight: 600;
}
.cd-cuisine-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cd-cuisine-card {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    background: #fff;
    border-radius: var(--ht-radius-md);
    box-shadow: var(--ht-shadow-sm);
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.cd-cuisine-card:hover {
    transform: translateY(-3px);
    border-color: rgba(4,170,109,.34);
    box-shadow: var(--ht-shadow-md);
}
.cd-cuisine-image {
    position: relative;
    aspect-ratio: 1.15 / 1;
    background: var(--ht-gray-100);
}
.cd-cuisine-image img { width: 100%; height: 100%; object-fit: cover; }
.cd-mini-tag {
    position: absolute; top: 10px; left: 10px;
    background: rgba(255,255,255,.92);
    color: var(--ht-dark);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .7rem; font-weight: 700;
}
.cd-cuisine-body { padding: 13px 13px 14px; }
.cd-cuisine-body h3 {
    font-family: 'Poppins', sans-serif;
    font-size: .96rem; font-weight: 700;
    margin: 0 0 5px;
}
.cd-meta {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--ht-gray-500);
    font-size: .78rem;
}
.cd-meta strong {
    color: var(--ht-green-dark);
    font-weight: 700;
}
@media (min-width: 768px) {
    .cd-hero { padding: 42px 28px 36px; }
    .cd-featured-grid, .cd-cuisine-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .ht-search-bar {
        display: block;
        border-radius: 16px;
    }
    .ht-search-bar input { width: 100%; }
    .ht-search-bar button {
        width: 100%;
        min-height: 44px;
        margin-top: 6px;
    }
    .cd-hero {
        padding: 28px 6px 22px;
    }
    .cd-search-shell {
        display: block;
        border-radius: 16px;
    }
    .cd-search-shell input { width: 100%; }
    .cd-search-shell button {
        width: 100%;
        min-height: 44px;
        margin-top: 6px;
    }
    .cd-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

/* ── Discover info box ── */
.ht-discover-info {
    background: var(--ht-cream);
    border-radius: var(--ht-radius-sm);
    padding: 14px 16px;
    font-size: .83rem;
    color: var(--ht-gray-500);
    margin-bottom: 14px;
    border-left: 4px solid var(--ht-gold);
    line-height: 1.5;
}

/* ── About section ── */
.ht-about {
    background: var(--ht-green-light);
    border-radius: var(--ht-radius-lg);
    padding: 32px 36px;
    margin-bottom: 32px;
}
.ht-about h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.ht-about p { font-size: .88rem; color: var(--ht-gray-500); line-height: 1.7; margin: 0; }
@media (max-width: 575px) { .ht-about { padding: 22px 18px; border-radius: var(--ht-radius-md); } }

/* ── Social follow strip ── */
.ht-social-strip {
    background: var(--ht-dark);
    border-radius: var(--ht-radius-md);
    padding: 20px 24px;
    display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px;
    margin-bottom: 32px;
}
.ht-social-strip span { color: rgba(255,255,255,.75); font-size: .88rem; font-weight: 500; }
.ht-social-btn {
    display: inline-flex; align-items: center; gap: 7px;
    border-radius: 50px; padding: 7px 16px;
    font-size: .8rem; font-weight: 600;
    color: #fff !important;
    transition: opacity .15s, transform .15s;
}
.ht-social-btn:hover { opacity: .85; transform: translateY(-1px); }
.ht-social-btn.ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ht-social-btn.fb { background: #1877f2; }
.ht-social-btn.tt { background: #111; }

/* ── Ad slot (between sections) ── */
.ht-ad-slot { text-align: center; margin: 8px 0 28px; line-height: 0; }
.ht-ad-slot .ads img { max-width: 100%; height: auto; }

/* ── Homepage divider ── */
.ht-divider { border: none; border-top: 1px solid var(--ht-gray-200); margin: 0; }

/* Outline Warning (Maybe) */
.btn-outline-warning {
  color: #f0ad4e;
  border-color: #f0ad4e;
}

.btn-outline-warning:hover,
.btn-outline-warning:focus {
  background-color: #f0ad4e;
  color: white;
}

/* Outline Secondary (Pending) */
.btn-outline-secondary {
  color: #777;
  border-color: #777;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  background-color: #777;
  color: white;
}

.highlight-box {
  padding: 10px;
  margin: 10px 0;
  border-left: 5px solid red; /* Default border */
}

.time-display {
  font-size: 0.9em; /* Slightly smaller text */
  color: #999999;   /* Light grey color */
}

.small-dot {
  font-size: 0.8em; /* Makes the circle smaller */
  color: #999999;   /* Light grey color */
}

.step-text {
  font-weight: bold; /* Makes text bold */
  color: red;        /* Makes text red */
}

    

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 1500px) {

    .btn-margin {
        margin: 2px; /* Adjust the value as needed */
    }
  
  .card-container {
    width: 100%;
/*	height: 180px; */
  }
  
  .card-imagecontainer {
    display: block; 
    width: 100%; 
/*	height: 140px;  */
	
}
  
  .card-image {
    display: block; 
    width: 100%; 
/*	height: 140px; */
	background-color:#DCDCDC;
	overflow:hidden;
  }
  
  .card-text {
    display: block; 
    width: 100%; 
/*	background-color:#255; */
	text-align:center;
   }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 900px) {
    .btn-margin {
        margin: 2px; /* Adjust the value as needed */
    }

  .card-container {
    max-width: 50%;
/*	height: 100%; */
/*	height: 260px; */
  }
  
  .card-imagecontainer {
    display: block; 
    max-width: 50%; 
/*	height: 200px;  */
	
}    
  .card-image {
    width: 50%;
/*	height: 200px; */
  }
  
  .card-text {
    display: block; 
    width: 50%; 
/*	background-color:#255; */
	text-align:center;
   }
}


/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 768px) {
    .btn-margin {
        margin: 5px; /* Adjust the value as needed */
    }

  .card-container {
    max-width: 50%;
/*	height: 100%; */
/*	height: 260px; */
  }
  
  .card-imagecontainer {
    display: block; 
    max-width: 50%; 
/*	height: 200px;  */
	
}    
  .card-image {
    width: 50%;
/*	height: 200px; */
  }
  
  .card-text {
    display: block; 
    width: 50%; 
/*	background-color:#255; */
	text-align:center;
   }

/* Flash message container styling */
.alert {
  margin: 20px 0; /* Add spacing between flash messages and other content */
}

/* Prevent flash messages from affecting navbar layout */
.flash-messages {
  clear: both; /* Ensure it doesn't interfere with floating elements like the navbar */
}

/* Responsive: ads never overflow on very small screens */
@media (max-width: 340px) {
  .ads img { width: 100% !important; height: auto !important; }
}

}

/* ============================================================
   PLACE VIEW  (pv-*)
============================================================ */

/* ── Hero ── */
.pv-hero {
    background: linear-gradient(135deg, #013d27 0%, #027a4a 55%, #04AA6D 100%);
    margin: -5px calc(50% - 50vw) 0;
    width: 100vw;
    box-sizing: border-box;
    padding: 26px max(20px, calc((100vw - 1320px) / 2 + 20px)) 22px;
    position: relative;
    overflow: hidden;
}
.pv-hero::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    top: -140px; right: -100px;
    pointer-events: none;
}
.pv-hero::after {
    content: '';
    position: absolute;
    width: 260px; height: 260px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
    bottom: -80px; left: -50px;
    pointer-events: none;
}
.pv-hero-inner {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.pv-hero-logo {
    flex-shrink: 0;
    width: 88px; height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-hero-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-hero-logo-empty { font-size: 2rem; color: rgba(255,255,255,.5); }
.pv-hero-main {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}
.pv-hero-details { flex: 1; min-width: 0; }

.pv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    font-size: .72rem;
    color: rgba(255,255,255,.6);
    flex-wrap: wrap;
}
.pv-breadcrumb a { color: rgba(255,255,255,.75); }
.pv-breadcrumb a:hover { color: #fff; }
.pv-breadcrumb i { font-size: .6rem; }

.pv-views-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,.1);
    border-radius: 50px;
    padding: 2px 10px;
    font-size: .7rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 8px;
}

.pv-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: #fff;
    line-height: 46px;
    letter-spacing: normal;
    margin: 0 0 10px;
}

.pv-halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 16px 10px 10px;
    margin-bottom: 12px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.pv-halal-badge img { height: 34px; width: auto; border-radius: 3px; }
.pv-halal-badge span {
    font-size: 1rem;
    font-weight: 700;
    color: #035b3a;
    letter-spacing: .01em;
}

.pv-hero-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pv-hero-tag {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    color: rgba(255,255,255,.85) !important;
    border-radius: 50px;
    padding: 3px 11px;
    font-size: .73rem;
    font-weight: 500;
    transition: background .15s;
}
.pv-hero-tag:hover { background: rgba(255,255,255,.22); color: #fff !important; }

.pv-hero-sidebar {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.pv-hero-actions,
.pv-hero-followup {
    width: 250px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(4px);
}
.pv-action-row { display: flex; flex-direction: column; gap: 8px; }
.pv-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.14);
    border: 1.5px solid rgba(255,255,255,.32);
    color: #fff !important;
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background .15s, border-color .15s;
}
.pv-btn:hover { background: rgba(255,255,255,.26); border-color: rgba(255,255,255,.55); color: #fff !important; }
.pv-btn.primary { background: var(--ht-gold); border-color: var(--ht-gold); color: var(--ht-dark) !important; }
.pv-btn.primary:hover { background: #e0ae0a; border-color: #e0ae0a; }

.pv-list-actions {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.16);
}
.pv-list-label {
    margin-bottom: 8px;
    color: rgba(255,255,255,.72);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.pv-list-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.pv-followup-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pv-followup-foods {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,.16);
}
.pv-followup-food-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pv-followup-food-list span {
    display: inline-flex;
    align-items: center;
    border-radius: 50px;
    padding: 4px 10px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    color: #fff;
    font-size: .76rem;
    font-weight: 500;
}
.pv-followup-foods p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: .78rem;
}
.pv-list-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50px;
    padding: 6px 11px;
    color: rgba(255,255,255,.9) !important;
    background: rgba(255,255,255,.08);
    font-size: .76rem;
    font-weight: 600;
}
.pv-list-toggle:hover {
    background: rgba(255,255,255,.16);
    color: #fff !important;
}
.pv-list-toggle.active {
    color: #035b3a !important;
    background: #fff;
    border-color: #fff;
}

.pv-share-wrap {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    box-sizing: border-box;
    padding: 12px max(20px, calc((100vw - 1320px) / 2 + 20px)) 0;
}
.pv-share-row { display: flex; align-items: center; justify-content: center; gap: 7px; flex-wrap: wrap; }
.pv-share-row span { color: var(--ht-gray-500); font-size: .76rem; }
.pv-share-wrap .share-pill-new {
    background: var(--ht-gray-100, #f3f4f6);
    border-color: var(--ht-gray-300, #d1d5db);
    color: var(--ht-gray-700, #374151) !important;
}
.pv-share-wrap .share-pill-new:hover { background: var(--ht-gray-200, #e5e7eb); color: var(--ht-gray-900, #111827) !important; }
.pv-share-wrap .share-pill-new.sp-wa:hover { background: #25d366; border-color: #25d366; color: #fff !important; }
.pv-share-wrap .share-pill-new.sp-fb:hover { background: #1877f2; border-color: #1877f2; color: #fff !important; }
.pv-share-wrap .share-pill-new.sp-xt:hover { background: #000;    border-color: #000;    color: #fff !important; }
.pv-share-wrap .share-pill-new.sp-tg:hover { background: #229ed9; border-color: #229ed9; color: #fff !important; }

/* ── Admin strip (place-specific, sits below hero) ── */
.pv-admin-strip {
    background: #1a1a2e;
    border-bottom: 1px solid rgba(255,255,255,.06);
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    box-sizing: border-box;
    padding: 6px max(20px, calc((100vw - 1320px) / 2 + 20px));
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    justify-content: center;
}
.pv-admin-label {
    color: rgba(255,255,255,.3);
    font-size: .55rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    white-space: nowrap;
}
.pv-admin-strip a,
.pv-admin-strip button {
    color: #fbbf24;
    background: rgba(251,191,36,.1);
    border: 1px solid rgba(251,191,36,.2);
    border-radius: 20px;
    padding: 3px 10px;
    font-size: .68rem;
    font-weight: 500;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s, color .15s;
    font-family: inherit;
}
.pv-admin-strip a:hover,
.pv-admin-strip button:hover { background: rgba(251,191,36,.22); color: #fff; }
.pv-admin-sep { width: 1px; height: 16px; background: rgba(255,255,255,.1); }

/* ── Sections ── */
.pv-section { padding: 16px 0; }

/* ── Info card ── */
.pv-info-card {
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-md);
    padding: 18px 20px;
    box-shadow: var(--ht-shadow-sm);
    height: 100%;
}
.pv-description { font-size: .9rem; line-height: 1.75; color: #2D2D2D; margin-bottom: 14px; }
.pv-description p:last-child { margin-bottom: 0; }
.pv-contact {
    display: flex; align-items: center; gap: 8px;
    font-size: .86rem; color: var(--ht-gray-500);
    margin-bottom: 14px;
}
.pv-contact i { color: var(--ht-green); }
.pv-social-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pv-social-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--ht-gray-500) !important;
    font-size: .8rem; font-weight: 500;
    padding: 4px 12px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 50px;
    background: var(--ht-gray-100);
    transition: background .15s, color .15s, border-color .15s;
}
.pv-social-link:hover {
    background: var(--ht-green-light);
    color: var(--ht-green) !important;
    border-color: var(--ht-green);
}

/* ── Delivery banner ── */
.pv-delivery {
    background: var(--ht-green-light);
    border: 1.5px solid var(--ht-green);
    border-radius: var(--ht-radius-sm);
    padding: 14px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    height: 100%;
}
.pv-delivery > i { color: var(--ht-green); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.pv-delivery-title { font-weight: 700; font-size: .88rem; color: var(--ht-dark); margin-bottom: 6px; }
.pv-delivery-info { font-size: .82rem; color: var(--ht-gray-500); margin-bottom: 8px; }
.pv-delivery-info p { margin-bottom: 4px; }
.pv-delivery-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ht-green); color: #fff !important;
    border-radius: 50px; padding: 5px 14px;
    font-size: .78rem; font-weight: 600;
    transition: background .15s;
}
.pv-delivery-btn:hover { background: var(--ht-green-dark); color: #fff !important; }

/* ── Photo grid ── */
.pv-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (min-width: 480px) { .pv-photo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .pv-photo-grid { grid-template-columns: repeat(4, 1fr); } }

.pv-photo-card {
    border-radius: var(--ht-radius-sm);
    overflow: hidden;
    background: var(--ht-gray-100);
    box-shadow: var(--ht-shadow-sm);
    display: block;
    transition: box-shadow .18s, transform .15s;
}
.pv-photo-card:hover { box-shadow: var(--ht-shadow-md); transform: translateY(-3px); }
.pv-photo-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pv-photo-card-info { padding: 6px 8px 8px; }
.pv-photo-card-title { font-size: .74rem; font-weight: 600; color: #2D2D2D; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pv-photo-card-credit { font-size: .67rem; color: var(--ht-gray-500); }
.pv-photo-card-credit a { color: var(--ht-green); }

.pv-photo-more {
    border-radius: var(--ht-radius-sm);
    overflow: hidden;
    background: var(--ht-dark);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 4px;
    aspect-ratio: 1;
    text-decoration: none;
    transition: opacity .15s;
}
.pv-photo-more:hover { opacity: .82; }
.pv-photo-more-count { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; }
.pv-photo-more-label { font-size: .7rem; color: rgba(255,255,255,.8); font-weight: 500; }

/* ── Food / recommend grid ── */
.pv-food-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
@media (min-width: 480px) { .pv-food-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .pv-food-grid { grid-template-columns: repeat(6, 1fr); } }

.pv-food-card {
    text-align: center;
    border-radius: var(--ht-radius-sm);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    box-shadow: var(--ht-shadow-sm);
    display: block; color: #2D2D2D;
    transition: box-shadow .15s, transform .15s;
}
.pv-food-card:hover { box-shadow: var(--ht-shadow-md); transform: translateY(-2px); color: var(--ht-green); }
.pv-food-card img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.pv-food-card-empty {
    width: 100%; aspect-ratio: 1;
    background: var(--ht-gray-100);
    display: flex; align-items: center; justify-content: center;
    color: var(--ht-gray-500); font-size: 1.4rem;
}
.pv-food-card-name {
    font-size: .71rem; font-weight: 600;
    padding: 5px 5px 6px; line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.pv-user-rec {
    background: var(--ht-gray-100);
    border-radius: var(--ht-radius-sm);
    padding: 12px 14px; margin-top: 16px;
}
.pv-user-rec-header { font-size: .82rem; color: var(--ht-gray-500); margin-bottom: 10px; }
.pv-user-rec-header strong { color: #2D2D2D; }
.pv-user-rec-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.pv-user-rec-item {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ht-green-light);
    border: 1px solid var(--ht-green);
    border-radius: 50px; padding: 4px 12px;
    font-size: .8rem; color: var(--ht-green); font-weight: 500;
}
.pv-user-rec-item button {
    background: none; border: none;
    color: var(--ht-green); padding: 0;
    cursor: pointer; font-size: .72rem; opacity: .7; line-height: 1;
    font-family: inherit;
}
.pv-user-rec-item button:hover { opacity: 1; color: #dc3545; }

/* ── Outlet cards ── */
.pv-outlet-card {
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    border-left: 4px solid var(--ht-green);
    border-radius: var(--ht-radius-sm);
    padding: 16px 18px;
    box-shadow: var(--ht-shadow-sm);
    transition: box-shadow .18s;
}
.pv-outlet-card:hover { box-shadow: var(--ht-shadow-md); }
.pv-outlet-name { font-family: 'Poppins', sans-serif; font-size: .98rem; font-weight: 700; color: var(--ht-dark); margin-bottom: 8px; }
.pv-outlet-name a { color: var(--ht-dark); }
.pv-outlet-name a:hover { color: var(--ht-green); }
.pv-outlet-pending {
    display: inline-flex; align-items: center; gap: 5px;
    background: #fff3cd; border: 1px solid #ffc107;
    border-radius: 50px; padding: 2px 10px;
    font-size: .7rem; font-weight: 600; color: #856404;
    margin-bottom: 8px;
}
.pv-outlet-announcement {
    background: #fff3cd; border-radius: var(--ht-radius-sm);
    padding: 7px 12px; font-size: .8rem; color: #856404;
    margin-bottom: 10px;
}
.pv-outlet-meta { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.pv-outlet-meta-row { display: flex; gap: 8px; font-size: .83rem; color: var(--ht-gray-500); }
.pv-outlet-meta-row i { color: var(--ht-green); width: 15px; text-align: center; flex-shrink: 0; margin-top: 2px; }
.pv-outlet-hours { font-size: .82rem; color: var(--ht-gray-500); margin-bottom: 12px; line-height: 1.6; }
.pv-outlet-hours strong { color: #2D2D2D; }
.pv-outlet-actions { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }

/* ── Review list ── */
.pv-review-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.pv-review-item {
    background: #fff; border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-sm);
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--ht-shadow-sm);
    transition: box-shadow .15s, border-color .15s;
}
.pv-review-item:hover { box-shadow: var(--ht-shadow-md); border-color: var(--ht-green); }
.pv-review-item i { color: var(--ht-green); flex-shrink: 0; }
.pv-review-item a { font-size: .86rem; font-weight: 500; color: #2D2D2D; }
.pv-review-item a:hover { color: var(--ht-green); }
.pv-own-review-link {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    color: var(--ht-green);
    text-decoration: none;
    white-space: nowrap;
}
.pv-own-review-link:hover { color: var(--ht-green-dark); }
.pv-own-review-stars {
    font-size: .9rem;
    letter-spacing: 1px;
}
.pv-own-review-heart {
    color: #dc3545;
    font-size: 1rem;
    letter-spacing: 0;
}
.pv-own-review-link small {
    color: var(--ht-gray-500);
    font-size: .72rem;
}
.pv-own-review-btn {
    gap: 6px;
}
.pv-own-review-btn span {
    color: #fbbf24;
    letter-spacing: 1px;
}
.pv-own-review-btn .pv-own-review-heart {
    color: #dc3545;
    letter-spacing: 0;
}
.pv-own-review-btn small {
    color: #fff;
    font-size: .72rem;
}
.pv-review-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}
.pv-review-indicators span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-600);
    font-size: .76rem;
    padding: 3px 8px;
}

/* ── Tag groups ── */
.pv-tag-groups { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 576px) { .pv-tag-groups { grid-template-columns: repeat(3, 1fr); } }
.pv-tag-group-label {
    font-size: .68rem; font-weight: 700;
    letter-spacing: .08em; text-transform: uppercase;
    color: var(--ht-gray-500); margin-bottom: 8px;
    display: flex; align-items: center; gap: 6px;
}
.pv-tag-group-label i { color: var(--ht-green); }
.pv-tag-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pv-tag-pill {
    background: var(--ht-gray-100); border: 1px solid var(--ht-gray-200);
    color: #2D2D2D; border-radius: 50px; padding: 4px 13px;
    font-size: .78rem; font-weight: 500;
    transition: background .15s, color .15s, border-color .15s;
}
.pv-tag-pill:hover { background: var(--ht-green-light); color: var(--ht-green); border-color: var(--ht-green); }

/* ── Shared buttons ── */
.pv-btn-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ht-gray-100); border: 1px solid var(--ht-gray-200);
    color: #2D2D2D; border-radius: 50px; padding: 5px 14px;
    font-size: .8rem; font-weight: 500;
    transition: background .15s, color .15s, border-color .15s;
}
.pv-btn-pill:hover { background: var(--ht-green-light); color: var(--ht-green); border-color: var(--ht-green); }
.pv-btn-pill.green { background: var(--ht-green); color: #fff; border-color: var(--ht-green); }
.pv-btn-pill.green:hover { background: var(--ht-green-dark); color: #fff; border-color: var(--ht-green-dark); }

.pv-btn-outline {
    display: inline-flex; align-items: center; gap: 6px;
    border: 1.5px solid var(--ht-green); color: var(--ht-green) !important;
    background: #fff; border-radius: 50px; padding: 5px 14px;
    font-size: .78rem; font-weight: 600;
    transition: background .15s, color .15s;
}
.pv-btn-outline:hover { background: var(--ht-green); color: #fff !important; }

/* ── Footer row ── */
.pv-footer-row {
    padding: 18px 0;
    display: flex; align-items: flex-start;
    justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.pv-suggest-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--ht-gray-500); font-size: .8rem;
    transition: color .15s;
}
.pv-suggest-link:hover { color: var(--ht-green); }
.pv-disclaimer { font-size: .76rem; color: var(--ht-gray-500); line-height: 1.6; margin-top: 4px; }

/* ── Mobile adjustments ── */
@media (max-width: 575px) {
    .pv-hero-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .pv-hero-logo { width: 70px; height: 70px; }
    .pv-hero-main { width: 100%; flex-direction: column; gap: 18px; }
    .pv-hero-sidebar {
        width: 100%;
        flex-basis: auto;
        flex-direction: column;
    }
    .pv-hero-actions,
    .pv-hero-followup {
        width: 100%;
    }
}

/* ── Shared form page treatment ── */
.ht-form-page {
    padding: 28px 0 36px;
}
.ht-form-shell {
    max-width: 680px;
    margin: 0 auto;
}
.ht-form-header {
    margin-bottom: 18px;
}
.ht-form-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--ht-green);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}
.ht-form-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--ht-dark);
    margin-bottom: 6px;
}
.ht-form-header p {
    color: var(--ht-gray-500);
    font-size: .92rem;
    margin-bottom: 0;
}
.ht-form-card {
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-md);
    box-shadow: var(--ht-shadow-sm);
    padding: 22px;
}
.ht-form-field {
    margin-bottom: 20px;
}
.ht-form-field label {
    display: block;
    font-weight: 600;
    color: var(--ht-dark);
    margin-bottom: 7px;
}
.ht-form-field small {
    display: block;
    margin-top: 7px;
    color: var(--ht-gray-500);
    font-size: .78rem;
    line-height: 1.45;
}
.ht-form-field small a {
    color: var(--ht-green);
    font-weight: 600;
}
.ht-form-card .form-control {
    min-height: 44px;
    border-radius: var(--ht-radius-sm);
}
.ht-form-card textarea.form-control {
    min-height: 112px;
}

/* ── Standard discovery hero ── */
.std-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 32%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
    padding: 42px max(20px, calc((100vw - 1320px) / 2 + 20px)) 36px;
}
.std-hero-with-breadcrumb {
    padding-top: 26px;
}
.std-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    left: -120px;
    bottom: -210px;
    background: rgba(255,255,255,.08);
}
.std-hero-inner { position: relative; z-index: 1; }
.std-breadcrumb {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    flex-wrap: wrap;
}
.std-breadcrumb a { color: rgba(255,255,255,.75); }
.std-breadcrumb a:hover { color: #fff; }
.std-breadcrumb i { font-size: .72rem; }
.std-breadcrumb-band {
    background: linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
}
.std-breadcrumb-page {
    margin-bottom: 0;
    padding: 8px 0 10px;
    color: rgba(255,255,255,.72);
}
.std-breadcrumb-page a {
    color: rgba(255,255,255,.92);
}
.std-breadcrumb-page a:hover {
    color: #fff;
}
.std-breadcrumb-page i {
    color: rgba(255,255,255,.58);
}
.std-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.std-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 12px;
}
.std-hero p {
    color: rgba(255,255,255,.84);
    max-width: 690px;
    margin-bottom: 22px;
}
.std-search-shell {
    display: flex;
    gap: 10px;
    max-width: 650px;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.std-search-shell input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    font-size: .96rem;
}
.std-search-shell button {
    border: 0;
    border-radius: 12px;
    background: var(--ht-gold);
    color: var(--ht-dark);
    font-weight: 700;
    padding: 0 18px;
}
.std-hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.std-hero-meta span {
    color: #fff;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .78rem;
}

/* ── Location discovery page ── */
.location-discovery-page { margin-bottom: 20px; }
.ld-admin-row { padding-top: 18px; }
.ld-section { padding: 28px 0 0; }
.ld-section-kicker {
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.ld-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}
.ld-section-head h2 { font-size: 1.18rem; margin: 0; }
.ld-section-head span { color: var(--ht-gray-500); font-size: .84rem; }
.ld-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.ld-popular-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--ht-shadow-sm);
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.ld-popular-card:hover {
    transform: translateY(-3px);
    border-color: rgba(4,170,109,.35);
    box-shadow: var(--ht-shadow-md);
}
.ld-popular-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.ld-popular-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.ld-popular-count {
    color: var(--ht-green-dark);
    background: var(--ht-green-light);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .72rem;
    font-weight: 700;
}
.ld-popular-card h3 { font-size: 1rem; margin: 0 0 4px; }
.ld-popular-card p { margin: 0; color: var(--ht-gray-500); font-size: .8rem; }
.ld-popular-empty {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 18px;
}
.ld-browse-shell {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.ld-browse-header {
    padding: 18px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    border-bottom: 1px solid var(--ht-gray-200);
}
.ld-alpha-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.ld-alpha-row::-webkit-scrollbar { display: none; }
.ld-alpha-chip {
    min-width: 38px;
    text-align: center;
    border: 1px solid var(--ht-gray-200);
    background: var(--ht-gray-100);
    border-radius: 999px;
    padding: 8px 10px;
    font-size: .8rem;
    color: var(--ht-gray-500);
}
.ld-alpha-chip.active {
    background: var(--ht-green);
    border-color: var(--ht-green);
    color: #fff;
    font-weight: 700;
}
.ld-directory-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--ht-gray-500);
    font-size: .84rem;
    margin-top: 14px;
}
.ld-directory {
    display: grid;
    grid-template-columns: 1fr;
}
.ld-location-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--ht-gray-200);
}
.ld-location-link:hover { background: var(--ht-green-light); }
.ld-location-name {
    display: flex;
    align-items: center;
    gap: 11px;
}
.ld-pin {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--ht-gray-100);
    color: var(--ht-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.ld-location-link > i {
    color: var(--ht-gray-500);
    font-size: .75rem;
}
.ld-empty-state {
    padding: 24px 18px;
    color: var(--ht-gray-500);
}
.ld-pagination {
    padding: 16px 18px;
    background: #fcfdfd;
}
.ld-pagination nav { margin: 0; }
.ld-page-copy {
    color: var(--ht-gray-500);
    line-height: 1.7;
    padding-top: 28px;
}
.ld-page-copy p:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
    .ld-popular-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .ld-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .std-search-shell { display: block; border-radius: 16px; }
    .std-search-shell input { width: 100%; }
    .std-search-shell button { width: 100%; min-height: 44px; margin-top: 6px; }
    .ld-directory-meta { display: block; }
    .ld-directory-meta span { display: block; margin-top: 6px; }
}

/* ── Near me page ── */
.nearme-page { margin-bottom: 24px; }
.nm-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--ht-gold);
    color: var(--ht-dark);
    font-weight: 700;
    padding: 0 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.nm-hero-cta:disabled { opacity: .82; }
.nm-intro {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding-top: 28px;
}
.nm-intro h2,
.nm-results-head h2 {
    font-size: 1.18rem;
    margin: 0 0 6px;
}
.nm-intro p {
    max-width: 760px;
    color: var(--ht-gray-500);
    margin-bottom: 0;
}
.nm-kicker {
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.nm-admin-card {
    min-width: 220px;
    display: grid;
    gap: 5px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    padding: 14px 16px;
    box-shadow: var(--ht-shadow-sm);
    font-size: .84rem;
}
.nm-admin-card span { color: var(--ht-gray-500); }
.nm-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-top: 24px;
    padding: 16px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.nm-toolbar-label {
    display: block;
    color: var(--ht-gray-500);
    font-size: .78rem;
    margin-bottom: 8px;
}
.nm-radius-row {
    display: flex;
    gap: 8px;
}
.nm-radius-row .radius-btn {
    border: 1px solid var(--ht-gray-200);
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    min-height: 40px;
    padding: 0 15px;
    font-weight: 600;
}
.nm-radius-row .radius-btn.active {
    background: var(--ht-green);
    border-color: var(--ht-green);
    color: #fff;
}
.nm-radius-row .radius-btn:disabled { opacity: 1; }
.nm-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 9px 12px;
    font-size: .82rem;
}
.nm-status.is-success {
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.nm-status.is-warning {
    background: #fff5df;
    color: #9a6700;
}
.nm-status.is-loading i { opacity: .8; }
.nm-results { padding-top: 20px; }
.nm-empty-state,
.nm-message-state {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 10px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    padding: 30px 18px;
    box-shadow: var(--ht-shadow-sm);
}
.nm-empty-state h2,
.nm-message-state h2 {
    font-size: 1.12rem;
    margin: 0;
}
.nm-empty-state p,
.nm-message-state p {
    max-width: 520px;
    color: var(--ht-gray-500);
    margin: 0;
}
.nm-empty-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.nm-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--ht-green);
    color: #fff;
    font-weight: 700;
    padding: 0 16px;
}
.nm-results-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}
.nm-results-head span {
    color: var(--ht-gray-500);
    font-size: .84rem;
}
.nm-result-list {
    display: grid;
    gap: 12px;
}
.nm-result-card {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.nm-result-main {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
}
.nm-result-main:hover { background: var(--ht-green-light); }
.nm-result-pin {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.nm-result-copy {
    min-width: 0;
    display: grid;
    gap: 3px;
    flex: 1;
}
.nm-result-copy strong { color: var(--ht-dark); }
.nm-result-copy span {
    color: var(--ht-gray-500);
    font-size: .84rem;
}
.nm-distance {
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-green-dark);
    font-size: .78rem;
    font-weight: 700;
    padding: 7px 10px;
}
@media (max-width: 767px) {
    .nm-intro,
    .nm-toolbar,
    .nm-results-head {
        display: block;
    }
    .nm-admin-card {
        min-width: 0;
        margin-top: 16px;
    }
    .nm-status {
        margin-top: 14px;
    }
}
@media (max-width: 575px) {
    .nm-result-main {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .nm-distance {
        margin-left: 56px;
    }
}

/* ── Area landing page ── */
.av-page { margin-bottom: 24px; }
.av-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 30%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
    padding: 42px max(20px, calc((100vw - 1320px) / 2 + 20px)) 36px;
}
.av-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -210px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.av-hero-inner { position: relative; z-index: 1; }
.av-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.av-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}
.av-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 12px;
}
.av-hero p {
    color: rgba(255,255,255,.84);
    max-width: 690px;
    margin-bottom: 0;
}
.av-hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.av-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.av-stat {
    background: var(--ht-gray-100);
    border-radius: 16px;
    padding: 13px;
}
.av-stat strong {
    display: block;
    color: var(--ht-dark);
    font-size: 1.2rem;
}
.av-stat span {
    color: var(--ht-gray-500);
    font-size: .76rem;
}
.av-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.av-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 10px 13px;
    font-size: .84rem;
    font-weight: 700;
}
.av-btn.primary { background: var(--ht-gold); color: var(--ht-dark); }
.av-btn.soft { background: var(--ht-green-light); color: var(--ht-green-dark); }
.av-ad-slot { margin-top: 22px; }
.av-overview-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 16px;
    margin-top: 24px;
}
.av-panel {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    padding: 20px;
    box-shadow: var(--ht-shadow-sm);
}
.av-section-kicker {
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.av-panel h2,
.av-section-head h2 {
    font-size: 1.18rem;
    margin: 0;
}
.av-panel h2 { margin-bottom: 12px; }
.av-copy {
    color: var(--ht-gray-500);
    line-height: 1.7;
    margin-bottom: 0;
}
.av-copy p:last-child { margin-bottom: 0; }
.av-quick-list {
    display: grid;
    gap: 10px;
}
.av-quick-list a {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-radius: 14px;
    background: var(--ht-gray-100);
    padding: 12px;
}
.av-quick-list span { font-weight: 600; }
.av-quick-list small {
    color: var(--ht-gray-500);
    white-space: nowrap;
}
.av-empty-inline {
    color: var(--ht-gray-500);
    font-size: .9rem;
}
.av-section {
    padding-top: 28px;
}
.av-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}
.av-section-head span {
    color: var(--ht-gray-500);
    font-size: .84rem;
}
.av-featured-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.av-featured-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--ht-shadow-sm);
}
.av-featured-icon,
.av-pin {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ht-green-dark);
    background: var(--ht-green-light);
}
.av-featured-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
}
.av-featured-card h3 {
    font-size: 1rem;
    margin: 0 0 4px;
}
.av-featured-card p {
    color: var(--ht-gray-500);
    font-size: .8rem;
    margin: 0;
}
.av-featured-card > i,
.av-location-meta i {
    color: var(--ht-gray-500);
    font-size: .75rem;
}
.av-directory-shell {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.av-search-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--ht-gray-200);
}
.av-search-shell i { color: var(--ht-gray-500); }
.av-search-shell input {
    width: 100%;
    border: 0;
    outline: 0;
}
.av-directory {
    display: grid;
    grid-template-columns: 1fr;
}
.av-location-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid var(--ht-gray-200);
    padding: 15px 18px;
}
.av-location-link:hover { background: var(--ht-green-light); }
.av-location-name {
    display: flex;
    align-items: center;
    gap: 11px;
}
.av-pin {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    flex: 0 0 auto;
}
.av-location-meta {
    display: flex;
    align-items: center;
    gap: 10px;
}
.av-location-meta small { color: var(--ht-gray-500); }
.av-empty-state {
    padding: 24px 18px;
    color: var(--ht-gray-500);
}
.av-area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.av-area-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--ht-shadow-sm);
}
.av-area-card strong { display: block; margin-bottom: 4px; }
.av-area-card span {
    color: var(--ht-gray-500);
    font-size: .82rem;
}
.av-ad-slot-bottom { margin-bottom: 24px; }
@media (min-width: 768px) {
    .av-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .av-area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .av-hero-grid,
    .av-overview-grid { grid-template-columns: 1fr; }
    .av-featured-grid { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .av-section-head { display: block; }
    .av-section-head span { display: block; margin-top: 8px; }
    .av-area-grid { grid-template-columns: 1fr; }
    .av-location-link {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ── Food discovery page ── */
.food-discovery-page { margin-bottom: 20px; }
.fd-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 32%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
    padding: 42px max(20px, calc((100vw - 1320px) / 2 + 20px)) 36px;
}
.fd-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    left: -120px;
    bottom: -210px;
    background: rgba(255,255,255,.08);
}
.fd-hero-inner { position: relative; z-index: 1; }
.fd-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.fd-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 12px;
}
.fd-hero p {
    color: rgba(255,255,255,.84);
    max-width: 690px;
    margin-bottom: 22px;
}
.fd-search-shell {
    display: flex;
    gap: 10px;
    max-width: 650px;
    background: #fff;
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.fd-search-shell input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    font-size: .96rem;
    background: transparent;
}
.fd-search-shell button {
    border: 0;
    border-radius: 12px;
    background: var(--ht-gold);
    color: var(--ht-dark);
    font-weight: 700;
    padding: 0 16px;
}
.fd-hero-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.fd-hero-meta span {
    color: #fff;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .82rem;
}
.fd-admin-row { padding-top: 18px; }
.fd-section { padding: 28px 0 0; }
.fd-section-kicker {
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.fd-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}
.fd-section-head h2 { font-size: 1.18rem; margin: 0; }
.fd-section-head span { color: var(--ht-gray-500); font-size: .84rem; }
.fd-popular-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.fd-popular-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    padding: 16px;
    box-shadow: var(--ht-shadow-sm);
}
.fd-popular-card:hover {
    transform: translateY(-3px);
    border-color: rgba(4,170,109,.35);
    box-shadow: var(--ht-shadow-md);
}
.fd-popular-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}
.fd-popular-image {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.fd-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.fd-popular-count {
    color: var(--ht-green-dark);
    background: var(--ht-green-light);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .72rem;
}
.fd-popular-card h3 { font-size: 1rem; margin: 0 0 4px; }
.fd-popular-card p { margin: 0; color: var(--ht-gray-500); font-size: .8rem; }
.fd-popular-empty {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 18px;
}
.fd-browse-shell {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.fd-browse-header {
    padding: 18px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    border-bottom: 1px solid var(--ht-gray-200);
}
.fd-alpha-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.fd-alpha-row::-webkit-scrollbar { display: none; }
.fd-alpha-chip {
    min-width: 38px;
    text-align: center;
    border: 1px solid var(--ht-gray-200);
    background: var(--ht-gray-100);
    border-radius: 999px;
    padding: 7px 10px;
}
.fd-alpha-chip.active {
    background: var(--ht-green);
    border-color: var(--ht-green);
    color: #fff;
    font-weight: 700;
}
.fd-directory-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--ht-gray-500);
    margin-top: 14px;
}
.fd-directory {
    display: grid;
    grid-template-columns: 1fr;
}
.fd-food-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--ht-gray-200);
}
.fd-food-link:hover { background: var(--ht-green-light); }
.fd-food-name {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}
.fd-food-name img,
.fd-food-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex: 0 0 auto;
}
.fd-food-name img { object-fit: cover; }
.fd-food-placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.fd-food-name strong,
.fd-food-name small {
    display: block;
}
.fd-food-name small {
    margin-top: 2px;
    color: var(--ht-gray-500);
}
.fd-food-link > i {
    color: var(--ht-gray-500);
    font-size: .75rem;
}
.fd-empty-state {
    padding: 24px 18px;
    color: var(--ht-gray-500);
}
.fd-pagination {
    padding: 16px 18px;
    background: #fcfdfd;
}
.fd-pagination nav { margin: 0; }
.fd-page-copy {
    color: var(--ht-gray-500);
    line-height: 1.7;
    padding-top: 28px;
}
.fd-page-copy p:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
    .fd-popular-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .fd-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .fd-search-shell { display: block; border-radius: 16px; }
    .fd-search-shell input { width: 100%; }
    .fd-search-shell button { width: 100%; min-height: 44px; margin-top: 6px; }
    .fd-directory-meta,
    .fd-section-head { display: block; }
    .fd-directory-meta span,
    .fd-section-head span { display: block; margin-top: 6px; }
}

/* ── Place discovery page ── */
.place-discovery-page { margin-bottom: 20px; }
.pd-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 32%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04AA6D 100%);
    padding: 42px max(20px, calc((100vw - 1320px) / 2 + 20px)) 36px;
    color: #fff;
}
.pd-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    left: -120px;
    bottom: -210px;
    background: rgba(255,255,255,.08);
}
.pd-hero-inner {
    position: relative;
    z-index: 1;
}
.pd-eyebrow,
.pd-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pd-eyebrow {
    color: rgba(255,255,255,.86);
    border: 1px solid rgba(255,255,255,.22);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.pd-hero h1 {
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    line-height: 1.15;
}
.pd-hero p {
    max-width: 680px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.84);
}
.pd-search-shell {
    display: flex;
    gap: 10px;
    max-width: 640px;
    padding: 8px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.pd-search-shell input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    font-size: .96rem;
    color: var(--ht-dark);
    background: transparent;
}
.pd-search-shell button {
    border: 0;
    border-radius: 12px;
    padding: 0 18px;
    font-weight: 700;
    color: var(--ht-dark);
    background: var(--ht-gold);
}
.pd-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}
.pd-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: .78rem;
}
.pd-admin-row { margin-top: 18px; }
.pd-ad-slot {
    margin-top: 28px;
}
.pd-ad-slot-bottom {
    margin-bottom: 4px;
}
.pd-section { margin-top: 34px; }
.pd-section-kicker {
    color: var(--ht-green);
    margin-bottom: 7px;
}
.pd-section-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 18px;
}
.pd-section-head h2 {
    margin: 0;
}
.pd-section-head span {
    color: var(--ht-gray-500);
    font-size: .9rem;
}
.pd-type-grid,
.pd-popular-grid {
    display: grid;
    gap: 14px;
}
.pd-type-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pd-type-card,
.pd-popular-card {
    display: block;
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.pd-type-card {
    padding: 18px;
}
.pd-type-card:hover,
.pd-popular-card:hover {
    border-color: var(--ht-green);
    transform: translateY(-2px);
    box-shadow: var(--ht-shadow-md);
}
.pd-type-icon,
.pd-popular-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 999px;
    color: var(--ht-green);
    background: var(--ht-green-light);
}
.pd-type-card h3,
.pd-popular-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
}
.pd-type-card p,
.pd-popular-card p {
    margin: 0;
    color: var(--ht-gray-500);
    font-size: .88rem;
}
.pd-popular-grid {
    grid-template-columns: 1fr;
}
.pd-popular-card {
    padding: 18px;
}
.pd-popular-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}
.pd-popular-count {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    font-size: .78rem;
    font-weight: 700;
}
.pd-popular-empty,
.pd-empty-state {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    padding: 18px;
    color: var(--ht-gray-500);
    background: #fff;
}
.pd-browse-shell {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.pd-browse-header {
    padding: 18px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    border-bottom: 1px solid var(--ht-gray-200);
}
.pd-alpha-row {
    display: flex;
    gap: 7px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.pd-alpha-row::-webkit-scrollbar { display: none; }
.pd-alpha-chip {
    min-width: 38px;
    text-align: center;
    border: 1px solid var(--ht-gray-200);
    background: var(--ht-gray-100);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--ht-gray-500);
}
.pd-alpha-chip.active {
    background: var(--ht-green);
    border-color: var(--ht-green);
    color: #fff;
    font-weight: 700;
}
.pd-directory-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    color: var(--ht-gray-500);
    margin-top: 14px;
}
.pd-directory {
    display: grid;
    grid-template-columns: 1fr;
}
.pd-place-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--ht-gray-200);
}
.pd-place-link:hover { background: var(--ht-green-light); }
.pd-place-name {
    display: flex;
    align-items: center;
    gap: 11px;
}
.pd-place-name img,
.pd-status-dot {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
}
.pd-place-name img { object-fit: contain; }
.pd-status-dot {
    display: inline-block;
    border-radius: 999px;
    background: var(--ht-green-light);
}
.pd-place-name strong,
.pd-place-name small {
    display: block;
}
.pd-place-name small {
    margin-top: 2px;
    color: var(--ht-gray-500);
}
.pd-place-link > i {
    color: var(--ht-gray-500);
    font-size: .75rem;
}
.pd-pagination {
    padding: 18px;
}
.pd-page-copy {
    padding: 22px;
    border-radius: 18px;
    background: var(--ht-gray-100);
}
@media (min-width: 576px) {
    .pd-type-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 768px) {
    .pd-popular-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .pd-directory { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 575px) {
    .pd-hero h1 {
        font-size: 31px;
        line-height: 38px;
    }
    .pd-search-shell {
        display: block;
        border-radius: 16px;
    }
    .pd-search-shell input {
        width: 100%;
        min-height: 44px;
    }
    .pd-search-shell button {
        width: 100%;
        min-height: 44px;
        margin-top: 6px;
    }
    .pd-section-head,
    .pd-directory-meta {
        display: block;
    }
    .pd-section-head span,
    .pd-directory-meta span {
        display: block;
        margin-top: 6px;
    }
}

/* ── Place type discovery page ── */
.placetype-discovery-page { margin-bottom: 20px; }
.pt-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -5px;
    padding: 34px 24px 30px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 32%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04AA6D 100%);
}
.pt-hero::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -210px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}
.pt-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1320px, 100%);
    margin: 0 auto;
    padding-inline: 12px;
}
.pt-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    color: rgba(255,255,255,.86);
    font-size: .76rem;
    font-weight: 600;
}
.pt-hero h1 {
    margin-bottom: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 46px;
}
.pt-intro {
    max-width: 720px;
    margin-bottom: 18px;
    color: rgba(255,255,255,.86);
}
.pt-intro p:last-child { margin-bottom: 0; }
.pt-intro a { color: #fff; text-decoration: underline; }
.pt-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    color: rgba(255,255,255,.86);
    font-size: .88rem;
}
.pt-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.pt-section { padding: 12px 0 16px; }
.pt-ad-slot {
    display: flex;
    justify-content: center;
    padding: 8px 0 12px;
}
.pt-ad-top {
    padding-top: 18px;
}
.pt-section-kicker {
    margin-bottom: 5px;
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.pt-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin-bottom: 16px;
}
.pt-section-head h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.18rem;
    font-weight: 700;
}
.pt-section-head span {
    color: var(--ht-gray-500);
    font-size: .84rem;
}
.pt-featured-grid,
.pt-card-grid {
    display: grid;
    gap: 12px;
}
.pt-featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pt-featured-card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border-radius: var(--ht-radius-md);
    box-shadow: var(--ht-shadow-sm);
}
.pt-featured-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 150px;
    object-fit: cover;
}
.pt-featured-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 24%, rgba(0,0,0,.78));
}
.pt-featured-tag {
    position: absolute;
    z-index: 1;
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--ht-dark);
    font-size: .7rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pt-featured-copy {
    position: absolute;
    z-index: 1;
    inset: auto 14px 13px;
    color: #fff;
}
.pt-featured-copy strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.pt-featured-copy span {
    color: rgba(255,255,255,.82);
    font-size: .78rem;
}
.pt-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pt-place-card {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-md);
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pt-place-card:hover {
    transform: translateY(-3px);
    border-color: rgba(4,170,109,.34);
    box-shadow: var(--ht-shadow-md);
}
.pt-place-image {
    position: relative;
    aspect-ratio: 1.15 / 1;
    background: var(--ht-gray-100);
}
.pt-place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pt-mini-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    max-width: calc(100% - 20px);
    overflow: hidden;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--ht-dark);
    font-size: .7rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pt-place-body {
    padding: 13px 13px 14px;
}
.pt-place-body h3 {
    margin: 0 0 5px;
    font-family: 'Poppins', sans-serif;
    font-size: .96rem;
    font-weight: 700;
}
.pt-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    color: var(--ht-gray-500);
    font-size: .78rem;
}
.pt-meta strong {
    color: var(--ht-green-dark);
    font-weight: 700;
}
.pt-pagination {
    margin-top: 18px;
}
.pt-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pt-type-pills a {
    border: 1px solid var(--ht-gray-200);
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
}
.pt-type-pills a:hover {
    border-color: rgba(4,170,109,.22);
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.pt-page-copy {
    color: var(--ht-gray-500);
    line-height: 1.7;
}
.pt-page-copy p:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
    .pt-hero {
        padding: 42px 28px 36px;
    }
    .pt-featured-grid,
    .pt-card-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
@media (max-width: 575px) {
    .pt-hero h1 {
        font-size: 31px;
        line-height: 38px;
    }
    .pt-section-head {
        display: block;
    }
    .pt-section-head span {
        display: block;
        margin-top: 6px;
    }
}

/* ── Location detail page ── */
.lv-page { margin-bottom: 24px; }
.lv-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 30%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
    padding: 28px max(20px, calc((100vw - 1320px) / 2 + 20px)) 30px;
}
.lv-hero-inner { position: relative; z-index: 1; }
.lv-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.lv-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 24px;
    align-items: end;
}
.lv-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 10px;
}
.lv-hero p,
.lv-description { color: rgba(255,255,255,.84); margin-bottom: 0; }
.lv-description p:last-child { margin-bottom: 0; }
.lv-description-toggle {
    display: none;
    align-items: center;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.2;
    margin-top: 8px;
    padding: 0;
}
.lv-description-toggle:hover,
.lv-description-toggle:focus {
    color: #fff;
    text-decoration: underline;
}
.lv-hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.lv-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.lv-stat {
    background: var(--ht-gray-100);
    border-radius: 16px;
    padding: 12px;
}
.lv-stat strong { display: block; font-size: 1.2rem; color: var(--ht-dark); }
.lv-stat span { font-size: .76rem; color: var(--ht-gray-500); }
.lv-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.lv-btn {
    display: inline-flex; align-items: center; gap: 7px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .lv-description.is-clamped:not(.is-expanded) {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .lv-description-toggle:not([hidden]) {
        display: inline-flex;
    }
}
.lv-btn.primary { background: var(--ht-gold); color: var(--ht-dark); }
.lv-btn.soft { background: var(--ht-green-light); color: var(--ht-green-dark); }
.lv-admin-toolbar { margin-top: 18px; }
.lv-ad-slot { margin-top: 22px; }
.lv-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.lv-panel {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    padding: 20px;
}
.lv-section-kicker {
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.lv-panel h2,
.lv-section-head h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.lv-detail-list { display: grid; gap: 12px; }
.lv-detail-row { display: flex; gap: 12px; align-items: flex-start; }
.lv-detail-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    display: flex; align-items: center; justify-content: center;
    flex: 0 0 auto;
}
.lv-detail-row strong {
    display: block;
    font-size: .82rem;
    color: var(--ht-gray-500);
    margin-bottom: 2px;
}
.lv-detail-row span { font-size: .93rem; }
.lv-announcement {
    border-radius: 14px;
    background: #fff3cd;
    color: #856404;
    padding: 12px;
    font-size: .88rem;
}
.lv-admin-meta { color: var(--ht-gray-500); font-size: .82rem; }
.lv-map-panel {
    overflow: hidden;
    min-height: 220px;
    border-radius: 22px;
    box-shadow: var(--ht-shadow-sm);
}
.lv-map-panel iframe { width: 100%; height: 100%; min-height: 220px; display: block; }
.lv-section { padding-top: 6px; margin-bottom: 24px; }
.lv-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin: 26px 0 16px;
}
.lv-section-head h2 { margin: 0; }
.lv-section-head span { color: var(--ht-gray-500); font-size: .84rem; }
.lv-place-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}
.av-filter-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.av-filter-links a {
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 8px 13px;
    font-size: .84rem;
    font-weight: 600;
}
.av-filter-links a.active,
.av-filter-links a:hover {
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.lv-place-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
    box-shadow: var(--ht-shadow-sm);
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
}
.lv-place-media { position: relative; background: var(--ht-gray-100); }
.lv-place-media > img:first-child {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}
.lv-place-media-empty {
    min-height: 140px;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: var(--ht-gray-500);
}
.lv-place-logo {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 34px !important;
    height: 34px !important;
    min-height: 0 !important;
    border-radius: 10px;
    background: #fff;
    padding: 3px;
    object-fit: cover;
    box-shadow: var(--ht-shadow-sm);
}
.lv-place-copy { padding: 16px; min-width: 0; }
.lv-halal-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.lv-halal-badge img { width: 18px; height: 18px; object-fit: contain; }
.lv-place-copy h3 { font-size: 1rem; margin: 0 0 4px; }
.lv-place-copy h3 a { color: var(--ht-dark); }
.lv-place-copy h3 a:hover { color: var(--ht-green); }
.lv-place-meta { color: var(--ht-gray-500); font-size: .84rem; margin-bottom: 12px; }
.lv-pending {
    display: inline-block;
    border-radius: 999px;
    background: #fff3cd;
    color: #856404;
    font-size: .72rem;
    font-weight: 600;
    padding: 4px 9px;
    margin-bottom: 10px;
}
.lv-card-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.lv-card-actions a {
    font-size: .8rem;
    font-weight: 600;
    border-radius: 999px;
    padding: 7px 11px;
    background: var(--ht-gray-100);
}
.lv-empty {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    color: var(--ht-gray-500);
    background: var(--ht-gray-100);
    padding: 18px;
}
.lv-foodcourt-grid { display: grid; gap: 16px; }
.lv-foodcourt-card {
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.lv-foodcourt-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: linear-gradient(180deg, #fff, #fbfcfc);
    border-bottom: 1px solid var(--ht-gray-200);
}
.lv-foodcourt-title { display: flex; gap: 14px; align-items: flex-start; }
.lv-foodcourt-title img,
.lv-foodcourt-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--ht-gray-100);
    object-fit: cover;
    padding: 4px;
    display: flex; align-items: center; justify-content: center;
    color: var(--ht-green-dark);
}
.lv-foodcourt-slot {
    display: inline-flex;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 8px;
}
.lv-foodcourt-title h3 { font-size: 1.05rem; margin: 0 0 4px; }
.lv-foodcourt-title p { margin: 0; color: var(--ht-gray-500); font-size: .85rem; }
.lv-stall-count { color: var(--ht-gray-500); font-size: .84rem; white-space: nowrap; }
.lv-stall-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    padding: 16px 20px;
}
.lv-stall-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--ht-gray-100);
    border-radius: 14px;
    padding: 11px 12px;
    font-size: .88rem;
    color: #2D2D2D;
}
.lv-stall-pill i { color: var(--ht-green-dark); }
.lv-stall-pill:hover { background: var(--ht-green-light); color: var(--ht-green-dark); }
.lv-ad-slot-bottom { margin-bottom: 24px; }
@media (max-width: 900px) {
    .lv-hero-grid,
    .lv-summary-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .lv-place-grid,
    .lv-stall-list { grid-template-columns: 1fr; }
    .lv-foodcourt-head,
    .lv-section-head { display: block; }
    .lv-stall-count,
    .lv-section-head span { display: block; margin-top: 8px; }
}

/* ── Food detail page ── */
.fv-page { margin-bottom: 24px; }
.fv-hero {
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 30%),
        linear-gradient(135deg, #013d27 0%, #027a4a 58%, #04aa6d 100%);
    padding: 28px max(20px, calc((100vw - 1320px) / 2 + 20px)) 30px;
}
.fv-hero-inner { position: relative; z-index: 1; }
.fv-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    color: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: .76rem;
    font-weight: 600;
    margin-bottom: 14px;
}
.fv-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 24px;
    align-items: end;
}
.fv-hero h1 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    line-height: 1.15;
    margin-bottom: 10px;
}
.fv-hero p { max-width: 760px; color: rgba(255,255,255,.84); margin-bottom: 0; }
.fv-hero-card {
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.fv-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
    margin-bottom: 14px;
}
.fv-stat {
    background: var(--ht-gray-100);
    border-radius: 16px;
    padding: 12px;
}
.fv-stat strong { display: block; font-size: 1.2rem; color: var(--ht-dark); }
.fv-stat span { font-size: .76rem; color: var(--ht-gray-500); }
.fv-actions,
.fv-card-actions,
.fv-row-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.fv-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .82rem;
    font-weight: 600;
}
.fv-btn.primary { background: var(--ht-gold); color: var(--ht-dark); }
.fv-btn.soft { background: var(--ht-green-light); color: var(--ht-green-dark); }
.fv-admin-toolbar { margin-top: 18px; }
.fv-ad-slot {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}
.fv-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 18px;
    margin: 22px 0 24px;
}
.fv-panel,
.fv-featured,
.fv-top-card,
.fv-place-card,
.fv-photo-card,
.fv-recommend-list {
    border: 1px solid var(--ht-gray-200);
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.fv-panel {
    border-radius: 22px;
    padding: 20px;
}
.fv-section-kicker {
    color: var(--ht-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.fv-panel h2,
.fv-section-head h2,
.fv-featured-copy h2 {
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.fv-description {
    color: var(--ht-gray-500);
    line-height: 1.65;
    margin-bottom: 18px;
}
.fv-description p:last-child { margin-bottom: 0; }
.fv-muted { color: var(--ht-gray-500); }
.fv-detail-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.fv-detail-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}
.fv-detail-row strong {
    display: block;
    color: var(--ht-gray-500);
    font-size: .82rem;
    margin-bottom: 2px;
}
.fv-share-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 10px;
}
.fv-share-grid a,
.fv-share-grid button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 14px;
    background: var(--ht-gray-100);
    color: var(--ht-dark);
    font-size: .86rem;
    font-weight: 600;
}
.fv-share-grid img {
    width: 16px;
    height: 16px;
}
.fv-featured {
    display: grid;
    grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 24px;
}
.fv-featured-media {
    min-height: 220px;
    background: var(--ht-gray-100);
}
.fv-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    display: block;
}
.fv-featured-copy {
    padding: 22px;
    align-self: center;
}
.fv-featured-copy p {
    color: var(--ht-gray-500);
    margin-bottom: 14px;
}
.fv-inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
}
.fv-admin-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.fv-section { padding-top: 6px; margin-bottom: 24px; }
.fv-section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 12px;
    margin: 26px 0 16px;
}
.fv-section-head h2 { margin: 0; }
.fv-section-head span {
    color: var(--ht-gray-500);
    font-size: .84rem;
}
.fv-top-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}
.fv-top-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 18px;
    padding: 16px;
}
.fv-top-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex: 0 0 auto;
}
.fv-top-card h3 {
    font-size: 1rem;
    margin: 0 0 3px;
}
.fv-top-card h3 a { color: var(--ht-dark); }
.fv-top-card span {
    color: var(--ht-gray-500);
    font-size: .82rem;
}
.fv-recommend-list {
    overflow: hidden;
    border-radius: 18px;
}
.fv-recommend-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-top: 1px solid var(--ht-gray-200);
}
.fv-recommend-row:first-child { border-top: 0; }
.fv-recommend-row > div:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}
.fv-recommend-row img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}
.fv-row-actions a {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: var(--ht-gray-100);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.fv-section-cta { margin-top: 14px; }
.fv-empty {
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    color: var(--ht-gray-500);
    background: var(--ht-gray-100);
    padding: 18px;
}
.fv-empty-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.fv-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}
.fv-photo-card {
    overflow: hidden;
    border-radius: 18px;
}
.fv-photo-media {
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--ht-gray-100);
}
.fv-photo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.fv-photo-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 12px;
    font-size: .84rem;
}
.fv-photo-copy span {
    overflow: hidden;
    color: var(--ht-gray-500);
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fv-photo-copy a {
    color: var(--ht-green-dark);
    flex: 0 0 auto;
}
.fv-photo-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}
.fv-place-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px;
}
.fv-place-card {
    border-radius: 20px;
    padding: 18px;
}
.fv-halal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    border-radius: 999px;
    padding: 5px 9px;
    font-size: .72rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.fv-halal-badge img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.fv-place-card h3 {
    font-size: 1rem;
    margin: 0 0 6px;
}
.fv-place-card h3 a { color: var(--ht-dark); }
.fv-place-card p {
    color: var(--ht-gray-500);
    font-size: .88rem;
    line-height: 1.55;
    margin-bottom: 14px;
}
.fv-card-actions a {
    border-radius: 999px;
    background: var(--ht-gray-100);
    padding: 7px 11px;
    font-size: .8rem;
    font-weight: 600;
}
.fv-ad-slot-bottom { margin-bottom: 24px; }
@media (max-width: 900px) {
    .fv-hero-grid,
    .fv-summary-grid,
    .fv-featured { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .fv-top-grid,
    .fv-photo-grid,
    .fv-place-grid { grid-template-columns: 1fr; }
    .fv-section-head,
    .fv-empty-action { display: block; }
    .fv-section-head span,
    .fv-empty-action .fv-btn {
        display: inline-flex;
        margin-top: 8px;
    }
}
.ht-place-picker {
    position: relative;
}
.ht-place-search-wrap {
    position: relative;
}
.ht-place-search-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ht-gray-500);
    font-size: .82rem;
}
.ht-place-search-wrap .form-control {
    padding-left: 38px;
}
.ht-place-results {
    position: absolute;
    z-index: 20;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--ht-gray-200);
    border-radius: var(--ht-radius-sm);
    box-shadow: var(--ht-shadow-md);
    overflow: hidden;
}
.ht-place-result,
.ht-place-empty {
    display: block;
    width: 100%;
    padding: 11px 13px;
    text-align: left;
    border: 0;
    border-bottom: 1px solid var(--ht-gray-200);
    background: #fff;
    color: #2D2D2D;
    font-size: .88rem;
}
.ht-place-result:last-child,
.ht-place-empty:last-child {
    border-bottom: 0;
}
.ht-place-result {
    cursor: pointer;
    transition: background .15s, color .15s;
}
.ht-place-result:hover {
    background: var(--ht-green-light);
    color: var(--ht-green);
}
.ht-place-empty {
    color: var(--ht-gray-500);
}
.ht-upload-box {
    min-height: 132px;
    border: 1.5px dashed var(--ht-green);
    border-radius: var(--ht-radius-md);
    background: var(--ht-green-light);
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: border-color .15s, background .15s;
}
.ht-upload-box:hover {
    background: #d8f5e8;
    border-color: var(--ht-green-dark);
}
.ht-upload-box i {
    color: var(--ht-green);
    font-size: 1.45rem;
}
.ht-upload-box span {
    color: var(--ht-dark);
    font-weight: 700;
}
.ht-upload-box small {
    margin-top: 0;
}
.ht-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.ht-admin-fields {
    background: var(--ht-gray-100);
    border-radius: var(--ht-radius-sm);
    padding: 16px;
    margin-bottom: 20px;
}
.ht-photo-preview img {
    border-radius: var(--ht-radius-sm);
}
.ht-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    padding-top: 4px;
}
@media (max-width: 575px) {
    .ht-form-page {
        padding-top: 20px;
    }
    .ht-form-card {
        padding: 18px;
    }
}

/* ── Photo detail page ── */
.photo-detail-page { margin-bottom: 24px; }
.pdv-header { margin-bottom: 14px; }
.pdv-header h1 {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1.2;
}
.pdv-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--ht-gray-500);
    font-size: .92rem;
}
.pdv-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.pdv-meta i { color: var(--ht-green); }
.pdv-halal img { width: auto; height: 20px; }
.pdv-owner-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 16px;
    align-items: center;
    margin-bottom: 16px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    padding: 14px 16px;
}
.pdv-owner-tools-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pdv-owner-tools-copy strong {
    color: var(--ht-dark);
    font-size: .92rem;
}
.pdv-owner-tools-copy span {
    color: var(--ht-gray-500);
    font-size: .86rem;
}
.pdv-owner-tools-actions,
.pdv-admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.pdv-owner-tools-actions {
    justify-content: flex-end;
}
.pdv-owner-primary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    border-radius: 999px;
    background: var(--ht-green);
    color: #fff;
    padding: 9px 15px;
    font-size: .88rem;
    font-weight: 600;
}
.pdv-owner-primary-action:hover {
    background: var(--ht-green-dark);
    color: #fff;
}
.pdv-rotate-group {
    display: inline-flex;
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: 999px;
    background: var(--ht-gray-100);
}
.pdv-rotate-group a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    color: var(--ht-gray-500);
    padding: 9px 14px;
    font-size: .86rem;
    font-weight: 600;
}
.pdv-rotate-group a + a {
    border-left: 1px solid var(--ht-gray-200);
}
.pdv-rotate-group a:hover {
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
.pdv-admin-actions {
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid var(--ht-gray-200);
}
.pdv-ad-slot { margin: 18px 0 22px; }
.pdv-ad-slot-bottom { margin-bottom: 24px; }
.pdv-viewer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}
.pdv-viewer-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 999px;
    background: #fff;
    color: var(--ht-gray-500);
    padding: 10px 14px;
    font-size: .88rem;
    font-weight: 600;
    box-shadow: var(--ht-shadow-sm);
}
.pdv-viewer-link-primary {
    border-color: transparent;
    background: var(--ht-green);
    color: #fff;
}
.pdv-viewer-link:hover {
    color: var(--ht-green-dark);
    background: var(--ht-green-light);
}
.pdv-viewer-link-primary:hover {
    color: #fff;
    background: var(--ht-green-dark);
}
.pdv-tags { margin-bottom: 18px; }
.pdv-tags h2,
.pdv-note h2 {
    margin-bottom: 10px;
    color: var(--ht-gray-500);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pdv-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pdv-tag-item {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 7px;
    align-items: center;
}
.pdv-tag-item > a:first-child {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(4,170,109,.18);
    border-radius: 999px;
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
    padding: 7px 12px;
    font-size: .86rem;
    font-weight: 600;
}
.pdv-add-tag { margin-bottom: 18px; }
.pdv-photo-shell {
    overflow: hidden;
    max-width: 760px;
    margin: 0 auto 18px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    text-align: center;
}
.pdv-photo-shell img {
    display: block;
    width: 100%;
    height: auto;
}
.pdv-admin-tools {
    margin-bottom: 18px;
    color: var(--ht-gray-500);
}
.pdv-note {
    margin-bottom: 18px;
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
    padding: 16px 18px;
}
.pdv-note p {
    margin-bottom: 0;
    line-height: 1.7;
}
.pdv-reply { background: var(--ht-gray-100); }
.pdv-footer-actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
    border-top: 1px solid var(--ht-gray-200);
    padding-top: 18px;
}
.pdv-sequence-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pdv-sequence-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.pdv-mobile-actions {
    display: none;
}
.pdv-continue-section {
    margin-top: 24px;
}
.pdv-section-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: end;
    margin-bottom: 12px;
}
.pdv-section-head span {
    display: block;
    margin-bottom: 4px;
    color: var(--ht-gray-500);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.pdv-section-head h2 {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
}
.pdv-section-head a {
    color: var(--ht-green-dark);
    font-size: .88rem;
    font-weight: 600;
}
.pdv-photo-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}
.pdv-mini-card {
    overflow: hidden;
    border: 1px solid var(--ht-gray-200);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--ht-shadow-sm);
}
.pdv-mini-card img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.pdv-mini-card span {
    display: block;
    overflow: hidden;
    padding: 10px 11px 11px;
    color: var(--ht-dark);
    font-size: .82rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pdv-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pdv-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    background: var(--ht-gray-100);
    color: var(--ht-gray-500);
    padding: 8px 13px;
    font-size: .86rem;
    font-weight: 600;
}
.pdv-links a:hover {
    background: var(--ht-green-light);
    color: var(--ht-green-dark);
}
@media (max-width: 575px) {
    .photo-detail-page {
        margin-inline: -12px;
        padding-bottom: 80px;
    }
    .pdv-header,
    .pdv-viewer-nav,
    .pdv-tags,
    .pdv-note,
    .pdv-footer-actions,
    .pdv-continue-section,
    .pdv-add-tag,
    .pdv-owner-tools,
    .pdv-admin-tools {
        margin-inline: 12px;
    }
    .pdv-owner-tools-actions {
        width: 100%;
    }
    .pdv-owner-primary-action {
        width: 100%;
    }
    .pdv-rotate-group {
        width: 100%;
    }
    .pdv-rotate-group a {
        flex: 1 1 50%;
        justify-content: center;
    }
    .pdv-header h1 {
        font-size: 1.35rem;
    }
    .pdv-meta {
        gap: 8px;
        font-size: .86rem;
    }
    .pdv-viewer-nav {
        display: none;
    }
    .pdv-ad-slot {
        margin: 14px 12px 16px;
    }
    .pdv-photo-shell {
        max-width: none;
        margin-bottom: 16px;
        border-inline: 0;
        border-radius: 0;
        background: #0f172a;
        box-shadow: none;
    }
    .pdv-photo-shell img {
        max-height: min(68vh, 720px);
        width: 100%;
        object-fit: contain;
        background: #0f172a;
    }
    .pdv-footer-actions {
        display: block;
        border-top: 0;
        padding-top: 0;
    }
    .pdv-links {
        margin-bottom: 14px;
    }
    .pdv-sequence-actions .btn {
        flex: 1 1 0;
        justify-content: center;
    }
    .pdv-continue-section {
        margin-top: 22px;
    }
    .pdv-section-head {
        align-items: center;
    }
    .pdv-section-head h2 {
        font-size: 1rem;
    }
    .pdv-photo-strip {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin-inline: -12px;
        padding-inline: 12px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .pdv-photo-strip::-webkit-scrollbar { display: none; }
    .pdv-mini-card {
        flex: 0 0 138px;
        scroll-snap-align: start;
    }
    .pdv-mobile-actions {
        position: fixed;
        z-index: 1030;
        right: 12px;
        bottom: 72px;
        left: 12px;
        display: flex;
        gap: 8px;
        border: 1px solid rgba(15,23,42,.08);
        border-radius: 20px;
        background: rgba(255,255,255,.96);
        padding: 8px;
        box-shadow: 0 18px 40px rgba(15,23,42,.18);
        backdrop-filter: blur(14px);
    }
    .pdv-mobile-actions a {
        display: flex;
        flex: 1 1 0;
        min-height: 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border-radius: 14px;
        color: var(--ht-gray-500);
        font-size: .75rem;
        font-weight: 600;
    }
    .pdv-mobile-actions a.is-primary {
        background: var(--ht-green);
        color: #fff;
    }
}
