@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ============================================================
   SF PRO DISPLAY — LOCAL FONT IMPORTS
============================================================ */
@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYTHINITALIC.OTF') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProDisplay';
    src: url('../fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
    /* --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif; */
    --font-primary: 'SFProDisplay', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: "Inter", sans-serif;

    --primary: #386FDE;
    --primary-dark: #012B6A;
    --primary-hover: #2E4BC0;
    --accent-peach: #FCE6CA;
    --accent-peach-dark: #EFD9C4;

    --bg-primary: #ffffff;
    --bg-secondary: #F7F8FC;
    --bg-card: #ffffff;

    --text-primary: #012B6A;
    --text-secondary: #5B6478;
    --text-muted: #8891A3;
    --text-light: #ffffff;

    --border-color: rgba(11, 27, 63, 0.445);

    --navbar-bg: rgba(255, 255, 255, 0.95);
    --shadow-soft: 0 10px 30px rgba(11, 27, 63, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
}

/* ============================================================
   BASE RESET
============================================================ */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ============================================================
   COMMON TYPOGRAPHY
============================================================ */
.main-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(32px, 4.5vw, 52px);
    color: var(--text-primary);
}

.common-heading {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.3;
    color: var(--text-primary);
}

.common-sub-heading {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.4;
    color: var(--text-primary);
}

.small-heading {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: clamp(16px, 1.6vw, 18px);
    line-height: 1.4;
    color: var(--text-primary);
}

.body-text {
    font-family: var(--font-secondary);
    font-size: clamp(14px, 2vw, 16px);
    line-height: 1.65;
    color: var(--text-secondary);
}

.section-label {
    display: inline-block;
    width: 136px;
    height: 2px;
    background-color: var(--primary);
    margin-bottom: 14px;
    border-radius: 2px;
}

.text-primary-brand {
    color: var(--primary) !important;
}

.bg-soft-blue {
    background-color: var(--bg-secondary) !important;
}

.bg-soft-peach {
    background-color: var(--accent-peach) !important;
}

/* ============================================================
   COMMON SECTION SPACING
============================================================ */

.common-margin-top {
    margin-top: clamp(50px, 7vw, 100px);
}

.section-py {
    padding-top: clamp(50px, 7vw, 100px);
    padding-bottom: clamp(50px, 7vw, 100px);
}

/* ============================================================
   COMMON BUTTONS
============================================================ */
.btn-brand-primary,
.btn-brand-outline {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: clamp(14px, 1.6vw, 16px);
    padding: 8px 20px 10px;
    border-radius: 50px;
    border: 1.5px solid var(--primary);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-brand-primary {
    background-color: var(--primary-hover);
    color: #fff;
}

.btn-brand-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary-hover);
    color: #fff;
}

.btn-brand-outline {
    background-color: transparent;
    color: var(--primary);
}

.btn-brand-outline:hover {
    background-color: var(--primary);
    color: #fff;
}

/* ============================================================
   COMMON CARD / ROUNDED HELPERS
============================================================ */
.radius-lg {
    border-radius: var(--radius-lg) !important;
}

.radius-md {
    border-radius: var(--radius-md) !important;
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-logo {
    max-height: 56px;
    filter: invert(1) brightness(5);
}
.nav-offcanvas-logo{
    max-width: 50px;
    width: 100%;
}

.navbar-scrolled .nav-logo {
    filter: none;
}

#navbar.navbar-transparent {
    background-color: #0000003d;
}

#navbar.navbar-transparent .navbar-brand-icon,
#navbar.navbar-transparent .navbar-brand-text,
#navbar.navbar-transparent .nav-link {
    color: #ffffff;
    transition: color 0.3s ease;
}

#navbar .nav-link {
    position: relative;
    color: var(--text-primary);
}

#navbar .nav-link::after {
    content: '';
    display: block;
    height: 2px;
    width: 0%;
    background-color: var(--primary);
    transition: all .3s ease-in-out;
}

.navbar-toggler {
    background-color: white;
    padding: 2px 4px;
}

#navbar .nav-link:hover::after {
    width: 100%;
}

#navbar .nav-link:hover,
#navbar .nav-link.active {
    color: var(--primary);
}

.btn-brand-outline-nav {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-brand-outline-nav:hover {
    background-color: #ffffff;
    color: var(--text-primary);
}

/* Scrolled state: solid white navbar, dark text (overrides transparent state via higher specificity) */
#navbar.navbar-transparent.navbar-scrolled {
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
}

#navbar.navbar-transparent.navbar-scrolled .navbar-brand-icon,
#navbar.navbar-transparent.navbar-scrolled .navbar-brand-text,
#navbar.navbar-transparent.navbar-scrolled .nav-link {
    color: var(--text-primary);
}

#navbar.navbar-transparent.navbar-scrolled .nav-link:hover,
#navbar.navbar-transparent.navbar-scrolled .nav-link.active {
    color: var(--primary);
}

#navbar.navbar-transparent.navbar-scrolled .btn-brand-outline-nav {
    border-color: var(--primary);
    color: var(--primary);
}

#navbar.navbar-transparent.navbar-scrolled .btn-brand-outline-nav:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Dropdown (desktop) - opens on hover, with a soft fade + slide reveal */
#navbar .nav-dropdown {
    position: relative;
}

#navbar .nav-dropdown>.dropdown-toggle::after {
    vertical-align: 2px;
    transition: transform 0.2s ease;
}

#navbar .nav-dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
}

#navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-md);
    padding: 10px;
    min-width: 220px;
    margin-top: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    display: block;
}

/* Invisible bridge so the hover chain doesn't break in the gap between link and menu */
#navbar .nav-dropdown>.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}

#navbar .nav-dropdown:hover>.dropdown-menu,
#navbar .dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#navbar .dropdown-item {
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    padding: 9px 14px;
}

#navbar .dropdown-item:hover {
    background-color: var(--bg-secondary);
    color: var(--primary);
}

#navbar .dropdown-divider {
    margin: 6px 4px;
    border-color: var(--border-color);
}

/* Nested submenu (desktop) - opens to the side on hover */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: -10px;
    left: 100%;
    margin-left: 10px;
    margin-top: 0;
}

.dropdown-submenu>.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-submenu>.dropdown-item::after {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 12px;
    color: var(--text-muted);
}

/* Mobile collapsible dropdown chevron rotation */
.offcanvas-body [data-bs-toggle="collapse"] .bi-chevron-down {
    transition: transform 0.25s ease;
}

.offcanvas-body [data-bs-toggle="collapse"][aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-section-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-section-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(180deg, rgba(8, 10, 20, 0.55) 0%, rgba(8, 10, 20, 0.4) 45%, rgba(8, 10, 20, 0.75) 100%); */
    background-color: #000000bf;
}

.hero-section-content {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 90px;
}

.hero-section-badge {
    background-color: #ffffff;
    color: var(--primary);
}

.hero-section-heading {
    color: #ffffff;
}

.hero-section-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Scoped override: outline button needs white text/border on the dark video hero
   (shared .btn-brand-outline elsewhere stays blue, this only applies inside hero-section) */
.hero-section .btn-brand-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.hero-section .btn-brand-outline:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--text-primary);
}

/* Trust strip marquee
   --marquee-duration : animation time per loop, e.g. 28s (set via CSS or data-speed)
   --marquee-direction: normal (left) or reverse (right) (set via CSS or data-direction)
   --marquee-distance : % the track travels per loop = 100 / repeat-count (auto-set by JS) */
.trust-strip-marquee {
    overflow: hidden;
    width: 100%;
    --marquee-duration: 28s;
    --marquee-direction: normal;
    --marquee-distance: 50%;
}

.trust-strip-track {
    display: flex;
    width: max-content;
    gap: 40px;
    animation-name: trust-strip-scroll;
    animation-duration: var(--marquee-duration);
    animation-direction: var(--marquee-direction);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.trust-strip-item {
    font-family: var(--font-primary);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    position: relative;
    padding-right: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-strip-item::after {
    content: "•";
    position: absolute;
    right: -24px;
    color: var(--primary);
}

/* Trust strip overlaid on the hero image (dark scrim, white text/icons) */
.trust-strip-overlay {
    position: absolute;
    z-index: 1;
    background: linear-gradient(359deg, rgba(8, 10, 20, 0) 0%, rgba(8, 10, 20, 0.55) 100%);
    bottom: 0;
}

.trust-strip-overlay .trust-strip-item {
    color: #ffffff;
    font-weight: 500;
}

.trust-strip-overlay .trust-strip-item i {
    color: #ffffff;
    font-size: 15px;
}

@keyframes trust-strip-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-1 * var(--marquee-distance)));
    }
}

@media (prefers-reduced-motion: reduce) {
    .trust-strip-track {
        animation: none;
    }
}

/* ============================================================
   VIDEO SECTION
============================================================ */
.video-section-play {
    width: 64px;
    height: 64px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease;
}

.video-section-play:hover {
    transform: translate(-50%, -50%) scale(1.08);
}

.video-section-play .bi-play-fill {
    font-size: 26px;
    color: var(--primary);
}

.video-section-badge {
    width: 48px;
    height: 48px;
    background-color: #E0218A;
    color: #fff;
    position: absolute;
    bottom: 16px;
    right: 16px;
    border: 3px solid #fff;
}

/* Logo strip variant of the trust strip (press logos instead of text) */
.trust-strip-logo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 20px;
    color: var(--text-muted);
    padding-right: 40px;
}

.trust-strip-logo::after {
    content: none;
}

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-section-map {
    max-width: 100%;
}

/* ============================================================
   MISSION & VISION SECTION
============================================================ */
.mission-section {
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); */
    background-image: url(../img/Section_bg_img.webp);
    background-size: cover;
}

/* ============================================================
   BENEFITS FOR SHOPPERS SECTION
============================================================ */
.benefits-section-icon {
    width: clamp(40px, 4vw, 60px);
    height: clamp(40px, 4vw, 60px);
}

.benefits-section-content {
    width: calc(100% - clamp(60px, 10vw, 120px));
}

.benefits-section-title {
    position: relative;
    padding-bottom: 8px;
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.4;
    color: var(--text-primary);
}

.benefits-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 58px;
    height: 1px;
    background-color: var(--primary);
}

.benefits-section-pill {
    background-color: var(--primary);
    padding: 10px 20px;
    font-family: var(--font-secondary);
}

.benefits-section-pill .bi-heart-fill {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 6px 10px 4px;
}

/* ============================================================
   WHY CHOOSE LOCALHEARTS SECTION
============================================================ */
.bg-soft-lavender {
    background-color: #EDEAFB !important;
}

.why-choose-section {
    background-image: url(../img/phone-bg-img.webp);
    background-size: cover;
    background-position: right;
}

.why-choose-section-icon {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: var(--shadow-soft);
}

.why-choose-section-title {
    position: relative;
    padding-bottom: 8px;
    font-size: clamp(15px, 3vw, 18px);
}

.why-choose-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

.phone-ui-image {
    position: absolute;
    bottom: 5%;
    right: 0px;
    max-width: 650px;
    width: 50%;
    object-fit: contain;
    height: 44vw;
    z-index: 0;
}

@media (min-width: 576px) {
    .why-choose-section-title::after {
        left: 0;
        transform: none;
    }
}

/* ============================================================
   HOW IT WORKS SECTION
============================================================ */
.how-it-works-card {
    aspect-ratio: 4 / 3.1;
}

.how-it-works-card .object-fit-cover {
    object-fit: cover;
}

.how-it-works-overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(31, 30, 30, 0) 0%, rgba(31, 30, 30, 0.75) 80%);
    backdrop-filter: blur(22.6734561920166px);
    width: 100%;
}

.how-it-works-title {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 400;
    font-family: var(--font-primary);

}

/* ============================================================
   WHAT YOU CAN FIND SECTION
============================================================ */
.what-you-find-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 28px 24px;
}

.what-you-find-icon {
    display: block;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 18px;
}






/* ============================================================
   SHOPS NEAR YOU SECTION
============================================================ */
.shops-near-panel,
.shops-near-filters {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
}

.shops-near-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.shops-near-search,
.shops-near-sort {
    border-radius: 50px;
    border: 1px solid var(--border-color);
    padding-top: 11px;
    padding-bottom: 11px;
}

.shops-near-sort {
    flex: 0 0 auto;
    width: auto;
}

.shops-near-live-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #1ABC6E;
    margin-left: 4px;
}

.shops-near-view-toggle button {
    width: 38px;
    height: 38px;
    border: 1px solid var(--border-color);
    background-color: #fff;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shops-near-view-toggle button:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.shops-near-view-toggle button:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    border-left: none;
}

.shops-near-view-toggle button.active {
    background-color: var(--bg-secondary);
    color: var(--primary);
}

.shop-card {
    border: 1px solid var(--border-color);
}

.shop-card-media {
    height: 140px;
}

.shop-card-media .object-fit-cover {
    object-fit: cover;
}

.shop-card-avatar {
    position: absolute;
    left: 14px;
    bottom: -22px;
    width: 48px;
    height: 48px;
    background-color: #fff;
    color: var(--primary);
    font-size: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid #fff;
}

.shop-card .p-3 {
    padding-top: 30px !important;
}

.shop-card-badge {
    background-color: #E3F7EB;
    color: #1ABC6E;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
}

.shop-card-wishlist {
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.shop-card-wishlist.active,
.shop-card-wishlist:hover {
    color: #E0218A;
}

.shops-near-filters-reset {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.shops-near-filters-viewall {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
}

.shops-near-filters-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.shops-near-filter-chip {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.shops-near-filter-chip.active {
    background-color: rgba(59, 95, 224, 0.08);
    border-color: var(--primary);
    color: var(--primary);
}

.shops-near-filters .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}



/* Mobile App Coming Soon css */

.testimonial-section-quote-icon {
    font-size: 40px;
    color: var(--primary);
}

.testimonial-section-quote {
    font-family: var(--font-secondary);
    font-size: clamp(14px, 2.4vw, 24px);
    line-height: 1.6;
    color: var(--text-primary);
}

.testimonial-section-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
}

.testimonial-section-role {
    font-size: 14px;
    color: var(--primary);
}

.testimonial-swiper {
    padding-bottom: 50px;
}

.testimonial-swiper-pagination {
    bottom: 0 !important;
}

.testimonial-swiper-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background-color: var(--border-color);
    opacity: 1;
}

.testimonial-swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary);
}


.app-promo-card {
    background-image: url(../img/footer_bg.webp);
    background-size: cover;
    min-height: 380px;
    margin-top: 40px;
}

.app-promo-list {
    list-style: none;
    padding-left: 0;
}

.app-promo-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.app-promo-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
}

.app-promo-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 4px;
}

.app-promo-phone {
    position: absolute;
    right: 6%;
    bottom: 0;
    height: auto;
    width: auto;
    max-height: 125%;
    max-width: 46%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}


/* contact us card css */
.contact-card {
    background-color: #9898983b;
    border: 1px solid var(--border-color);
    padding: 10px;
}

.contact-input {
    border-radius: 6px;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 14px;
}

.contact-page-info-card .form-check-input {
    border-color: var(--border-color);
}

.contact-info-wrap {
    min-height: 320px;
}

.contact-info-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background-color: #ffffff;
    box-shadow: var(--shadow-soft);
    padding: 20px;
}

.contact-info-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-info-link {
    font-size: 14px;
    color: var(--primary);
    line-height: 1.5;
}

.contact-info-social {
    width: 32px;
    height: 32px;
    background-color: #0d0d0d;
    color: #ffffff;
    font-size: 14px;
}

.tagline-strip-icon {
    font-size: 28px;
    color: var(--primary);
    display: block;
}

.tagline-strip-text {
    /* font-family: var(--font-secondary);  */
    font-family: var(--font-primary);
    letter-spacing: 1.1px;
    font-size: clamp(18px, 3.5vw, 32px);
    color: var(--text-primary);
}


/* ============================
   FOOTER
============================ */
.site-footer {
    /* background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); */
    background: linear-gradient(to right, #00000057 0%, rgba(0, 0, 0, 0.542) 100%),
        url("../img/footer_bg.webp");
    background-size: cover;
    background-position: left;
}

.footer-logo {
    max-width: 26%;
}

.site-footer-social-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    font-size: 14px;
}

.site-footer-social-link {
    font-size: clamp(12px, 3vw, 12px);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-social-link:hover {
    color: #ffffff !important;
}

.site-footer-link {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer-link:hover {
    color: #ffffff;
}

.site-footer-label {
    font-size: 13px;
    color: #fff;
    border-bottom: 1px dashed;
    width: fit-content;
}

.site-footer-bright {
    font-size: clamp(14px, 2.5vw, 15px);
    color: #ffffff;
    text-decoration: none;
    line-height: 1.5;
}

.site-footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
    margin: 0;
}






/* ============================================================
   CONTACT US PAGE - AGENCY STYLE REDESIGN
============================================================ */
.contact-page-card {
    /* background-color: var(--bg-secondary); */
    background-color: #02409d1a;
    border: 1px solid var(--border-color);
}

/* Diagonal stripe decoration (corner motif) - real repeating diagonal pattern, not an icon */
.contact-page-stripe {
    position: absolute;
    width: 46px;
    height: 30px;
    background-image: repeating-linear-gradient(-45deg,
            var(--primary) 0px,
            var(--primary) 5px,
            transparent 5px,
            transparent 10px);
    opacity: 0.4;
}

.contact-page-stripe-tl {
    top: 24px;
    left: 24px;
}

.contact-page-stripe-corner {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    z-index: 0;
    background-image: repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.55) 0px,
            rgba(255, 255, 255, 0.55) 6px,
            transparent 6px,
            transparent 14px);
    -webkit-mask-image: linear-gradient(135deg, transparent 35%, #000 70%);
    mask-image: linear-gradient(135deg, transparent 35%, #000 70%);
}

@media (max-width: 575.98px) {

    .contact-page-stripe,
    .contact-page-stripe-corner {
        display: none;
    }
}

/* Hero block */
.contact-page-hero {
    background-color: #ffffff;
}

.contact-page-highlight {
    background-color: var(--primary-tint);
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 2px 14px;
}

.contact-page-social {
    width: 40px;
    height: 40px;
    background-color: var(--primary-tint);
    color: var(--primary);
    font-size: 16px;
    transition: all 0.2s ease;
}

.contact-page-social:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Shared white info card */
.contact-page-info-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
}

.contact-page-info-label {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-page-arrow {
    width: 38px;
    height: 38px;
    background-color: var(--dark);
    color: #ffffff;
    font-size: 16px;
}

.contact-page-image {
    height: 220px;
}

.contact-page-image .object-fit-cover {
    object-fit: cover;
}

/* Black pill button (reusable agency-style CTA) */
.btn-pill-dark {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--dark);
    color: #ffffff;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 11px 22px;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

.btn-pill-dark:hover {
    background-color: var(--primary);
    color: #ffffff;
}

/* Bottom CTA band */
.contact-page-cta {
    background-color: var(--primary);
}

.contact-page-cta .common-heading,
.contact-page-cta .body-text {
    color: #ffffff;
}

.contact-page-cta .body-text {
    opacity: 0.85;
}

.contact-page-cta-bar {
    background-color: #ffffff;
    border-radius: 50px;
    padding: clamp(8px, 3vw, 12px) clamp(10px, 3vw, 16px);
}

@media (max-width: 575.98px) {
    .contact-page-cta-bar {
        border-radius: var(--radius-md);
        text-align: center;
        padding: 20px;
    }
}

.contact-page-cta-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 991.98px) {
    .app-promo-phone {
        display: none;
    }

    .mission-section {
        background-position: center;
    }

    .contact-card .rounded-end-4 {
        border-radius: 0px 0px 12px 12px !important;
    }

    .contact-card .rounded-start-4 {
        border-radius: 12px 12px 0px 0px !important;
    }

    .why-choose-section {
        background-image: none;
    }

}





/* =========================
    vendor page css
========================= */

.vendor-hero-float-img{
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    width: 60%;
}

/* ── WHY LOCALHEARTS ── */
.why-icon-box {
    width: 52px;
    height: 52px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
} 

.why-dashboard-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-dashboard-wrap img.why-shop-photo {
    width: 100%;
    height: clamp(340px,40vw,440px);
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

/* tagline banner */
.why-tagline-banner {
    background-color: var(--primary);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 14px;
}

.why-heart-circle {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── CTA BANNER ── */
.cta-grow-section {
    /* background-color: var(--primary); */
    background-size: cover;
}

.cta-grow-section .common-heading {
    color: #fff;
}

.cta-grow-section .body-text {
    color: rgba(255, 255, 255, 0.82);
}

/* On blue bg: primary btn = white bg / blue text */
.btn-cta-solid {
    background: #fff;
    color: var(--primary);
    border: none;
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 11px 26px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-cta-solid:hover {
    background: rgba(255, 255, 255, 0.88);
    color: var(--primary);
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 11px 26px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ── fade-up animation ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ══════════════════════════════════════
     WHAT YOU GET
  ══════════════════════════════════════ */

.wyg-card {
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--bg-card);
    padding: clamp(16px, 2vw, 28px) clamp(16px, 2vw, 28px);
    height: 100%;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wyg-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

.wyg-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    object-fit: contain;
}

.wyg-icon-wrap {
    width: 64px;
    height: 64px;
    margin-bottom: 18px;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}


.onb-section {
    background: var(--bg-secondary);
}

.onb-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    max-width: 1111px;
    margin: auto;
}

.onb-node {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    margin: 0px 12px;
}

.onb-node svg {
    width: 22px;
    height: 22px;
}

.onb-connector {
    flex: 1;
    height: 2px;
    border-top: 2px dashed var(--primary);
    opacity: 0.35;
    max-width: 120px;
}

.onb-connector-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    max-width: 15%;
}

.onb-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.5;
}

/* Step card */
.onb-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px 20px 24px;
    text-align: center;
    height: 100%;
    border: 1.5px solid var(--border-color);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.onb-card:hover {
    box-shadow: var(--shadow-soft);
    transform: translateY(-3px);
}

/* 3D illustration area */
.onb-illus {
    height: 110px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
}

.onb-illus img {
    max-height: 110px;
    object-fit: contain;
}

.onb-step-badge {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.onb-tutorial-link {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 500;
    color: #E8691A;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    margin-top: 10px;
    transition: gap 0.2s ease;
}

.onb-tutorial-link:hover {
    gap: 8px;
    color: #E8691A;
}

.onb-tutorial-link svg {
    width: 13px;
    height: 13px;
}

.onb-cta-wrap {
    margin-top: 48px;
    text-align: center;
}

.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up.delay-1 {
    transition-delay: 0.1s;
}

.fade-up.delay-2 {
    transition-delay: 0.2s;
}

.fade-up.delay-3 {
    transition-delay: 0.3s;
}




/* ============================================================
   LOCALHEARTS ABOUT PAGE FINAL 
============================================================ */
.lh-about-final-page {
    background: #fff;
    color: var(--text-secondary);
}

.lh-about-final-page .container-xxl {
    padding-left: clamp(18px, 3vw, 36px);
    padding-right: clamp(18px, 3vw, 36px);
}


.lh-about-final-label {
    margin: 0 0 8px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.lh-about-final-main-title {
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -0.04em;
}

.lh-about-final-para {
    max-width: 560px;
}

.lh-about-final-head {
    max-width: 790px;
}

/* Reveal */
.lh-about-final-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.lh-about-final-reveal.lh-about-final-visible {
    opacity: 1;
    transform: translateY(0);
}

/* What Makes Us Different */
.lh-about-final-different {
    background: #fff;
}

.lh-about-final-content {
    max-width: 690px;
}

.lh-about-final-feature-grid {
    max-width: 680px;
}

.lh-about-final-feature {
    gap: 16px;
    min-height: 86px;
}

.lh-about-final-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--primary);
    background: rgba(59, 95, 224, 0.08);
    font-size: 26px;
}

.lh-about-final-feature-title {
    margin: 0 0 5px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.lh-about-final-feature p {
    margin: 0;
    max-width: 225px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-secondary);
}

.lh-about-final-hero-img-box {
    position: relative;
    max-width: 650px;
    margin-left: auto;
    padding: 34px 34px 42px 0;
}

.lh-about-final-soft-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 73%;
    height: 100%;
    border-radius: 28px;
    /* background: linear-gradient(135deg, rgba(59, 95, 224, 0.10), rgba(59, 95, 224, 0.035)); */
    background: #02409d1a;
    z-index: 1;
}

.lh-about-final-dot-shape {
    position: absolute;
    right: -8px;
    bottom: 16px;
    z-index: 3;
    width: 120px;
    height: 120px;
    opacity: 0.34;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 14px 14px;
}

.lh-about-final-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    aspect-ratio: 1.36 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
}

/* Works */
.lh-about-final-works {
    background: #fff;
}

.lh-about-final-step-line {
    position: relative;
    margin-top: clamp(24px, 3.5vw, 36px);
}

.lh-about-final-step-line::before {
    content: "";
    position: absolute;
    top: 33px;
    left: 13%;
    right: 13%;
    height: 2px;
    border-top: 2px dashed rgba(59, 95, 224, 0.25);
}

.lh-about-final-step {
    position: relative;
    z-index: 2;
    padding: 0 12px;
}

.lh-about-final-step-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto clamp(8px, 2.1vw, 24px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: rgb(19, 31, 76);
    font-size: 18px;
    border: 10px solid white;
}

.lh-about-final-step-title {
    margin: 0 0 9px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.lh-about-final-step p {
    max-width: 196px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.58;
    color: var(--text-secondary);
}

/* Benefits */
.lh-about-final-benefits {
    background: #fff;
}

.lh-about-final-benefit-card {
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(11, 27, 63, 0.075);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(59, 95, 224, 0.07), rgba(255, 255, 255, 0.95));
    box-shadow: 0 14px 35px rgba(11, 27, 63, 0.055);
}

.lh-about-final-benefit-img {
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    object-position: center;
}

.lh-about-final-benefit-content {
    height: 100%;
    padding: clamp(26px, 3vw, 40px);
}

.lh-about-final-circle-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary);
    font-size: 22px;
}

.lh-about-final-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.lh-about-final-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.lh-about-final-list li:last-child {
    margin-bottom: 0;
}

.lh-about-final-list li::before {
    content: "\F26A";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "bootstrap-icons";
    color: var(--primary);
    font-size: 16px;
}

/* Find */
.lh-about-final-find {
    background: #fff;
}

.lh-about-final-category {
    position: relative;
    height: 100%;
    text-align: center;
}

.lh-about-final-category::after {
    content: "";
    position: absolute;
    top: 16%;
    right: -12px;
    width: 1px;
    height: 66%;
    background: rgba(11, 27, 63, 0.12);
}

.lh-about-final-category-last::after {
    display: none;
}

.lh-about-final-category span {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(59, 95, 224, 0.229);
    font-size: 18px;
}

.lh-about-final-category h3 {
    margin: 0 0 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--text-primary);
}

.lh-about-final-category p {
    margin: 0;
    font-size: 13px;
    line-height: 1.56;
    color: var(--text-secondary);
}

/* Community */
.lh-about-final-community {
    position: relative;
    overflow: hidden;
    background: linear-gradient(320deg, #ecf3ff00 17%, #9dc6ff 100%);
}

.lh-about-final-map-pattern {
    position: absolute;
    top: 17%;
    left: 42%;
    width: 300px;
    height: 238px;
    opacity: 0.16;
    border-radius: 45%;
    transform: rotate(-8deg);
    background-image: radial-gradient(var(--primary) 1.8px, transparent 1.8px);
    background-size: 10px 10px;
}

.lh-about-final-stat {
    min-height: 120px;
    padding-right: 14px;
    border-right: 1px solid rgba(11, 27, 63, 0.12);
}

.lh-about-final-stat i {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 28px;
}

.lh-about-final-stat strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-primary);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
}

.lh-about-final-stat span {
    display: block;
    max-width: 115px;
    font-size: 13px;
    line-height: 1.42;
    color: var(--text-secondary);
}

.lh-about-final-community-img {
    width: 100%;
    display: block;
    aspect-ratio: 1.55 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 22px;
}

/* CTA */
.lh-about-final-cta-section {
    padding-bottom: clamp(64px, 7vw, 104px);
    background: #fff;
}

.lh-about-final-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(30px, 4.5vw, 54px);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.lh-about-final-cta::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 32px;
    width: 116px;
    height: 116px;
    opacity: 0.22;
    background-image: radial-gradient(#fff 2px, transparent 2px);
    background-size: 13px 13px;
}

.lh-about-final-cta .row {
    position: relative;
    z-index: 2;
}

.lh-about-final-cta p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.82);
}

.lh-about-final-cta-btn {
    min-width: 150px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
}

.lh-about-final-cta-img {
    width: 100%;
    height: 236px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (min-width: 1400px) {
    .lh-about-final-page .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1920px) {
    .lh-about-final-page .container-xxl {
        max-width: 1480px;
    }

    .lh-about-final-feature p,
    .lh-about-final-step p,
    .lh-about-final-list li,
    .lh-about-final-category p {
        font-size: 15px;
    }
}

@media (max-width: 1199.98px) {
    .lh-about-final-step-line::before {
        left: 10%;
        right: 10%;
    }

}

@media (max-width: 991.98px) {
    .section-py {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .lh-about-final-hero-img-box {
        margin-inline: auto;
        padding-left: 0;
    }

    .lh-about-final-step-line::before {
        display: none;
    }

    .lh-about-final-step {
        height: 100%;
        padding: 26px 18px;
        border: 1px solid rgba(11, 27, 63, 0.075);
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(11, 27, 63, 0.05);
    }

    .lh-about-final-category::after {
        display: none;
    }

    .lh-about-final-map-pattern {
        display: none;
    }

    .lh-about-final-stat {
        border-right: 0;
    }

    .lh-about-final-cta-img {
        height: 300px;
    }

    .lh-about-final-cta::before {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .section-py {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .lh-about-final-feature {
        min-height: auto;
    }

    .lh-about-final-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
        font-size: 23px;
    }

    .lh-about-final-hero-img-box::after,
    .lh-about-final-dot-shape {
        width: 86px;
        height: 86px;
    }

    .lh-about-final-benefit-img {
        min-height: 260px;
        aspect-ratio: 1.22 / 1;
    }

    .lh-about-final-category h3 {
        min-height: auto;
    }

    .lh-about-final-community-img {
        aspect-ratio: 1.25 / 1;
    }

    .lh-about-final-stat {
        text-align: center;
    }

    .lh-about-final-stat span {
        margin-inline: auto;
    }

    .lh-about-final-cta {
        padding: 20px 12px;
    }

    .lh-about-final-cta-img {
        height: 230px;
    }
}

@media (max-width: 575.98px) {
    .lh-about-final-label {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .lh-about-final-main-title {
        font-size: clamp(30px, 10vw, 40px);
    }

    .lh-about-final-hero-img-box {
        padding: 12px 10px 12px 0;
    }

    .lh-about-final-soft-shape {
        width: 84%;
    }

    .lh-about-final-main-img {
        aspect-ratio: 1.1 / 1;
    }

    .lh-about-final-benefit-content {
        padding: 24px 20px;
    }


    .lh-about-final-cta-btn {
        width: 100%;
    }
}






/* ============================================================
   LOCALHEARTS BLOG LISTING PAGE
   Unique prefix: lh-blog-listing-
============================================================ */
.lh-blog-listing-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    color: var(--text-secondary);
}

.lh-blog-listing-kicker {
    margin: 0;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hero */
.lh-blog-listing-hero {
    position: relative;
    min-height: clamp(350px, 39vw, 470px);
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.min-vh-hero {
    min-height: clamp(370px, 41vw, 470px);
}

.lh-blog-listing-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 15, 36, 0.94) 0%, rgba(3, 15, 36, 0.76) 34%, rgba(3, 15, 36, 0.42) 66%, rgba(3, 15, 36, 0.24) 100%),
        linear-gradient(180deg, rgba(3, 15, 36, 0.22), rgba(3, 15, 36, 0.46));
}

.lh-blog-listing-hero-content {
    position: relative;
    z-index: 2;
}

.lh-blog-listing-hero-title {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(42px, 6.4vw, 70px);
    line-height: 1.08;
    color: #ffffff;
}

.lh-blog-listing-hero-text {
    max-width: 650px;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.lh-blog-listing-dot-grid {
    position: absolute;
    left: -80px;
    top: -8px;
    width: 66px;
    height: 66px;
    opacity: 0.9;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 18px 18px;
}

/* Main panel */
.lh-blog-listing-main {
    position: relative;
    z-index: 3;
    padding-bottom: clamp(60px, 7vw, 105px);
    margin-top: -18px;
}

.lh-blog-listing-panel {
    padding: clamp(18px, 3vw, 34px) clamp(18px, 3vw, 34px) 0;
    border-radius: 22px 22px 0 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.lh-blog-listing-filters {
    row-gap: 14px !important;
}

.lh-blog-listing-filter {
    min-width: 132px;
    padding: 8px 16px;
    border: 1px solid rgba(59, 95, 224, 0.28);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    font-family: var(--font-secondary);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.1;
    transition: 0.25s ease;
    box-shadow: 0 8px 22px rgba(11, 27, 63, 0.03);
}

.lh-blog-listing-filter:hover,
.lh-blog-listing-filter.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(59, 95, 224, 0.2);
}

/* Card */
.lh-blog-listing-card {
    overflow: hidden;
    border: 1px solid rgba(11, 27, 63, 0.1);
    border-radius: 12px;
    background: var(--bg-card);
    box-shadow: 0 12px 30px rgba(11, 27, 63, 0.055);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lh-blog-listing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(59, 95, 224, 0.22);
    box-shadow: 0 18px 38px rgba(11, 27, 63, 0.11);
}

.lh-blog-listing-img-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.lh-blog-listing-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 1.84 / 1;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.lh-blog-listing-card:hover .lh-blog-listing-card-img {
    transform: scale(1.04);
}

.lh-blog-listing-card-body {
    padding: clamp(14px, 2vw, 18px);
}

.lh-blog-listing-card-title {
    margin: 0 0 12px;
    font-family: var(--font-primary);
    font-size: clamp(19px, 2vw, 24px);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -0.35px;
    color: var(--text-primary);
}

.lh-blog-listing-card-title a {
    color: inherit;
    transition: color 0.22s ease;
}

.lh-blog-listing-card-title a:hover {
    color: var(--primary);
}

.lh-blog-listing-card-text {
    min-height: 74px;
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-secondary);
}

.lh-blog-listing-meta {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.2;
}

.lh-blog-listing-meta i {
    margin-right: 7px;
    color: var(--primary);
    font-size: 15px;
}

.lh-blog-listing-badge-wrap {
    position: relative;
}

.lh-blog-listing-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 7px 12px;
    border-radius: 8px;
    background: var(--primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(11, 27, 63, 0.18);
}

/* Load More */
.lh-blog-listing-load-wrap {
    min-height: 58px;
}

.lh-blog-listing-load-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 250px;
    padding: 15px 30px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 14px 28px rgba(59, 95, 224, 0.23);
    transition: 0.25s ease;
}

.lh-blog-listing-load-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(59, 95, 224, 0.28);
}

.lh-blog-listing-load-btn i {
    font-size: 20px;
    line-height: 1;
}

/* Reveal */
.lh-blog-listing-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lh-blog-listing-reveal.lh-blog-listing-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (min-width: 1400px) {
    .lh-blog-listing-page .container-xxl {
        max-width: 1320px;
    }
}

@media (min-width: 1920px) {
    .lh-blog-listing-page .container-xxl {
        max-width: 1500px;
    }

    .lh-blog-listing-card-text {
        font-size: 16px;
    }
}

@media (max-width: 1199.98px) {
    .lh-blog-listing-filter {
        min-width: 124px;
        padding-inline: 18px;
    }
}

@media (max-width: 991.98px) {
    .lh-blog-listing-hero {
        min-height: 420px;
        background-position: center center;
    }

    .min-vh-hero {
        min-height: 420px;
    }

    .lh-blog-listing-hero-overlay {
        background: linear-gradient(90deg, rgba(3, 15, 36, 0.94) 0%, rgba(3, 15, 36, 0.78) 60%, rgba(3, 15, 36, 0.5) 100%);
    }

    .lh-blog-listing-card-text {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .lh-blog-listing-panel {
        padding-inline: 0px;
    }

    .lh-blog-listing-filter {
        min-width: auto;
        flex: 1 1 auto;
        padding: 11px 15px;
        font-size: 14px;
    }

    .lh-blog-listing-card-body {
        padding: 18px;
    }
}

@media (max-width: 575.98px) {
 

    .lh-blog-listing-hero-title {
        letter-spacing: -1px;
    }

    .lh-blog-listing-hero-text {
        line-height: 1.7;
    }

    .lh-blog-listing-kicker {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .lh-blog-listing-main {
        margin-top: -14px;
    }

    .lh-blog-listing-filters {
        gap: 10px !important;
    }

    .lh-blog-listing-card-img {
        aspect-ratio: 1.72 / 1;
    }

    .lh-blog-listing-load-btn {
        width: 100%;
        min-width: 0;
    }
}




/* Mobile Filter trigger button */
.shops-near-filter-btn {
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.shops-near-filter-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}



.vh-section {
    background-color: var(--accent-peach);
    min-height: 85vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    padding: clamp(60px, 8vw, 10px) 0 clamp(60px, 8vw, 80px);
}

.vh-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    padding: 7px 16px;
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.vh-badge-dot {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 

/* Right col: just holds the image you'll drop in */
.vh-img-col img {
    width: 100%;
    display: block;
    object-fit: contain;
}

/* fade-up */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}








/* ============================================================
   LOCALHEARTS BLOG DETAIL PAGE
   Minimal custom CSS + Bootstrap based layout
============================================================ */


/* Hero */
.lh-blog-detail-hero {
    min-height: 530px;
    display: flex;
    align-items: flex-end;
    padding: 90px 0 70px;
    background:
        linear-gradient(90deg, rgba(5, 12, 28, 0.92), rgba(5, 12, 28, 0.55)),
        url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
}

.lh-blog-detail-breadcrumb,
.lh-blog-detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 600;
}

.lh-blog-detail-breadcrumb a:hover {
    color: #fff;
}

.lh-blog-detail-badge {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

.lh-blog-detail-title {
    max-width: 760px;
    font-family: var(--font-primary);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
}

.lh-blog-detail-desc {
    max-width: 660px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.86);
}

.lh-blog-detail-meta {
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
    font-weight: 500;
}

/* Article */
.lh-blog-detail-article {
    background: var(--bg-card);
}

.lh-blog-detail-cover {
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
}

/* Dynamic editor content */
.lh-blog-detail-content {
    max-width: 820px;
}

.lh-blog-detail-content p {
    margin-bottom: 22px;
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.8;
}

.lh-blog-detail-content h2 {
    margin: 38px 0 14px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 500;
    line-height: 1.35;
}

.lh-blog-detail-content h3 {
    margin: 28px 0 12px;
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-size: 22px;
    font-weight: 700;
}

.lh-blog-detail-content ul,
.lh-blog-detail-content ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.lh-blog-detail-content li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
}

.lh-blog-detail-content li::marker {
    color: var(--primary);
}

.lh-blog-detail-content figure {
    margin: 32px 0;
}

.lh-blog-detail-content img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
}

.lh-blog-detail-content figcaption {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
}

.lh-blog-detail-content blockquote {
    margin: 32px 0;
    padding: 24px 26px;
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    background: rgba(59, 95, 224, 0.08);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.55;
}

/* Sidebar */
.lh-blog-detail-sidebar {
    position: sticky;
    top: 24px;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .lh-blog-detail-sidebar {
        position: static;
        top: auto;
    }
}

.lh-blog-detail-sidebar {
    position: sticky;
    top: 90px;
}

.lh-blog-detail-side-card {
    padding: 22px;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-card);
    box-shadow: var(--shadow-soft);
}

.lh-blog-detail-side-title {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 700;
}

/* Table of contents */
.lh-blog-detail-toc {
    display: grid;
    gap: 8px;
}

.lh-blog-detail-toc a {
    display: block;
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.lh-blog-detail-toc a:hover,
.lh-blog-detail-toc a.active {
    color: var(--primary);
    background: rgba(59, 95, 224, 0.08);
}

/* Recent posts */
.lh-blog-detail-recent-item {
    color: var(--text-primary);
}

.lh-blog-detail-recent-item img {
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border-radius: 10px;
    object-fit: cover;
}

.lh-blog-detail-recent-item h4 {
    margin: 0 0 5px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.lh-blog-detail-recent-item small {
    color: var(--text-muted);
    font-size: 13px;
}

.lh-blog-detail-recent-item:hover h4 {
    color: var(--primary);
}

/* Previous next */
.lh-blog-detail-post-link small {
    color: var(--primary);
    font-weight: 700;
}

.lh-blog-detail-post-link span {
    color: var(--text-primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.45;
}

.lh-blog-detail-post-link:hover span {
    color: var(--primary);
}

/* Reveal */
.lh-blog-detail-reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.lh-blog-detail-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .lh-blog-detail-hero {
        min-height: 380px;
        padding: 70px 0 50px;
    }

    .lh-blog-detail-sidebar {
        position: static;
    }

    .lh-blog-detail-cover {
        height: 340px;
    }
}

@media (max-width: 767.98px) {
    html {
        scroll-padding-top: 80px;
    }

    .lh-blog-detail-hero {
        min-height: 360px;
        padding: 60px 0 42px;
    }

    .lh-blog-detail-title {
        font-size: 30px;
    }

    .lh-blog-detail-cover {
        height: 260px;
        border-radius: 12px;
    }

    .lh-blog-detail-content p {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .lh-blog-detail-content blockquote {
        padding: 20px;
        font-size: 17px;
    }

    .lh-blog-detail-side-card {
        padding: 18px;
    }
}

@media (max-width: 575.98px) {
    .lh-blog-detail-meta {
        font-size: 13px;
    }

    .lh-blog-detail-recent-item img {
        width: 68px;
        height: 68px;
        flex-basis: 68px;
    }
}