@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --ocp-green: #07833a;
  --ocp-green-2: #0aa24b;
  --ocp-blue: #1769d1;
  --ocp-orange: #f59e0b;
  --ocp-red: #d92d20;
  --ocp-text: #1d2433;
  --ocp-muted: #6b7280;
  --ocp-line: #e5e7eb;
  --ocp-bg: #f7f8fb;
  --ocp-card: #fff;
  --ocp-shadow: 0 10px 28px rgba(15, 23, 42, .08);
}

* { box-sizing: border-box; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { margin: 0; background: var(--ocp-bg); color: var(--ocp-text); font-family: Inter, Arial, Helvetica, sans-serif; line-height: 1.45; font-weight: 400; }
body, input, button, select, textarea, label, a, h1, h2, h3, h4, h5, h6, p, span, b, small { font-family: Inter, Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }
.muted { color: var(--ocp-muted); }
.small { font-size: 13px; }
.text-green { color: var(--ocp-green); }
.text-blue { color: var(--ocp-blue); }
.text-orange { color: var(--ocp-orange); }
.stars { color: #f5b301; letter-spacing: 1px; white-space: nowrap; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 999px; background: #eef8f0; color: #087b36; font-weight: 650; font-size: 13px; }
.pill.gray { background: #f3f4f6; color: #4b5563; }
.pill.blue { background: #eaf3ff; color: #1457bd; }
.pill.red { background: #ffe8e5; color: var(--ocp-red); }
.btn { border: 0; border-radius: 10px; padding: 12px 18px; background: var(--ocp-green); color: #fff; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; box-shadow: 0 8px 16px rgba(7, 131, 58, .18); }
.nav-cta, .nav-cta.active, .account-actions .nav-cta, .account-actions .nav-cta.active { color: #fff !important; background: var(--ocp-green) !important; border-color: var(--ocp-green) !important; }
.account-actions .btn-outline.active { background: #eef8f0; color: var(--ocp-green); }
.btn-outline { background: #fff; color: var(--ocp-green); border: 1px solid var(--ocp-green); box-shadow: none; }
.btn-light { background: #fff; color: #1f2937; border: 1px solid var(--ocp-line); box-shadow: none; }
.btn-blue { background: var(--ocp-blue); }

.public-header { background: #fff; border-bottom: 1px solid var(--ocp-line); position: sticky; top: 0; z-index: 20; }
.mobile-menu-toggle, .mobile-topbar, .mobile-backdrop, .mobile-drawer { display: none; }
.header-shell { padding: 10px 0; }
.header-top-row { display: flex; align-items: center; gap: 14px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--ocp-green); font-size: 21px; min-width: 210px; }
.brand small { display: block; color: #263342; font-weight: 600; font-size: 12px; margin-top: -2px; }
.brand-logo-img { width: 46px; height: 46px; object-fit: contain; flex: 0 0 auto; }
.logo { width: 42px; height: 42px; border-radius: 50%; background: conic-gradient(#55c4f0, #0aa24b, #f8d24a, #50b6ff, #55c4f0); position: relative; }
.logo:after { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: white; }
.top-search { height: 44px; flex: 1; display: flex; gap: 10px; align-items: center; }
.top-search select, .top-search input { height: 44px; border: 1px solid var(--ocp-line); border-radius: 10px; background: #fff; padding: 0 14px; min-width: 150px; }
.top-search input { flex: 1; }
.account-actions { display: flex; align-items: center; gap: 8px; }
.account-menu { position: relative; }
.account-menu summary { list-style: none; cursor: pointer; border: 1px solid var(--ocp-line); border-radius: 10px; padding: 10px 14px; font-weight: 700; color: var(--ocp-green); background: #fff; max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.account-menu summary::-webkit-details-marker { display: none; }
.account-dropdown { position: absolute; right: 0; top: calc(100% + 8px); width: 240px; background: #fff; border: 1px solid var(--ocp-line); border-radius: 12px; box-shadow: var(--ocp-shadow); padding: 8px; z-index: 30; }
.account-dropdown a { display: block; padding: 10px 12px; border-radius: 8px; font-weight: 650; color: #1f2937; }
.account-dropdown a:hover { background: #eef7ff; color: #0c4eb5; }
.header-nav-row { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.hamburger { height: 42px; border-radius: 10px; background: var(--ocp-green); color: #fff; font-weight: 700; padding: 10px 16px; }
.nav { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.nav a { padding: 10px 12px; border-radius: 10px; color: #1f2937; font-weight: 650; font-size: 14px; }
.nav a:hover, .nav a.active { background: #eef7ff; color: #0c4eb5; }
.ocp-layout-header { box-shadow: 0 8px 28px rgba(15, 23, 42, .05); }
.ocp-layout-header-row { justify-content: space-between; }
.ocp-layout-nav { margin-left: auto; }
.ocp-layout-nav a { font-size: 16px; padding: 12px 14px; }
.ocp-layout-header .account-actions .btn { min-height: 44px; padding: 0 18px; }
.ocp-layout-header .account-actions .btn-outline.active { background: #eef8f0; color: var(--ocp-green); }
.ocp-footer {
  margin-top: 42px;
  color: #dbe7e2;
  background:
    radial-gradient(circle at 12% 10%, rgba(0, 148, 68, .18), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(23, 105, 209, .12), transparent 28%),
    linear-gradient(180deg, #04130d 0%, #020807 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.ocp-footer-shell { max-width: 1440px; margin: 0 auto; padding: 64px 40px 28px; }
.ocp-footer-main { display: grid; grid-template-columns: 1.45fr 1fr 1.15fr 1.1fr 1.35fr; gap: 48px; align-items: start; }
.ocp-footer a { color: inherit; }
.ocp-footer-logo { display: grid; grid-template-columns: 58px minmax(0, 1fr); column-gap: 14px; align-items: center; margin-bottom: 24px; }
.ocp-footer-logo-mark { width: 56px; height: 56px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, #22c55e, #07833a); box-shadow: 0 16px 34px rgba(0,148,68,.24); }
.ocp-footer-logo svg,
.ocp-footer-contact-list svg,
.ocp-footer-highlight-card svg,
.ocp-footer-secure svg,
.ocp-footer-socials svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ocp-footer-logo-mark svg { width: 38px; height: 38px; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; }
.ocp-footer-title { display: block; color: #fff; font-size: 28px; line-height: 1.05; font-weight: 800; letter-spacing: -0.01em; }
.ocp-footer-title em { color: #22c55e; font-style: normal; }
.ocp-footer-logo small { grid-column: 2; display: block; margin-top: -18px; color: #d8e6df; font-size: 14px; font-weight: 500; }
.ocp-footer-desc { margin: 0; color: #d8e6df; font-size: 15px; line-height: 1.75; }
.ocp-footer-badges { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 30px; }
.ocp-footer-badges span { display: inline-flex; align-items: center; min-height: 36px; padding: 0 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.06); color: #eefbf3; font-size: 14px; font-weight: 700; }
.ocp-footer-heading { margin: 0 0 22px; color: #55e08a; font-size: 15px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.ocp-footer-heading:after { content: ""; display: block; width: 38px; height: 2px; margin-top: 10px; border-radius: 999px; background: #22c55e; }
.ocp-footer-socials { display: flex; gap: 12px; }
.ocp-footer-socials a { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; font-size: 14px; font-weight: 800; }
.ocp-footer-socials a:hover { background: #07833a; transform: translateY(-2px); }
.ocp-footer-links { display: grid; gap: 10px; }
.ocp-footer-link { display: flex; align-items: center; gap: 12px; min-height: 34px; color: #dbe7e2; font-size: 15px; font-weight: 500; line-height: 1.5; transition: color .18s ease, transform .18s ease; }
.ocp-footer-link:hover { color: #fff; transform: translateX(3px); }
.ocp-footer-link span { width: 22px; height: 22px; display: inline-grid; place-items: center; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; background: rgba(255,255,255,.035); }
.ocp-footer-link span:before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 3px rgba(34,197,94,.12); }
.ocp-footer-contact-list { display: grid; gap: 16px; margin-bottom: 20px; }
.ocp-footer-contact-list a,
.ocp-footer-contact-list div { display: grid; grid-template-columns: 26px minmax(0, 1fr); column-gap: 12px; color: #fff; }
.ocp-footer-contact-list span { grid-row: span 2; color: #c9d8d1; }
.ocp-footer-contact-list b { color: #fff; font-size: 16px; line-height: 1.25; font-weight: 700; }
.ocp-footer-contact-list small { color: #b6c2bd; font-size: 13px; }
.ocp-footer-newsletter-card { display: grid; gap: 12px; padding: 18px; border: 1px solid rgba(255,255,255,.10); border-radius: 16px; background: linear-gradient(180deg, rgba(0, 148, 68, .12), rgba(255,255,255,.04)); box-shadow: inset 0 1px 0 rgba(255,255,255,.04); }
.ocp-footer-newsletter-card strong { color: #baf7cf; font-size: 15px; font-weight: 800; text-transform: uppercase; }
.ocp-footer-newsletter-card p { margin: 0; color: #d8e6df; font-size: 14px; line-height: 1.6; }
.ocp-footer-newsletter-card input { height: 46px; border: 1px solid rgba(255,255,255,.14); border-radius: 10px; background: rgba(255,255,255,.06); color: #fff; padding: 0 14px; outline: none; }
.ocp-footer-newsletter-card input::placeholder { color: rgba(255,255,255,.56); }
.ocp-footer-newsletter-card button { height: 48px; border: 0; border-radius: 10px; background: linear-gradient(135deg, #22c55e, #07833a); color: #fff; font-weight: 800; cursor: pointer; box-shadow: 0 14px 28px rgba(0,148,68,.22); }
.ocp-footer-highlights { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; margin-top: 54px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,.08); }
.ocp-footer-highlight-card { display: grid; grid-template-columns: 64px 1fr; gap: 18px; align-items: center; min-height: 132px; padding: 24px; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.035); }
.ocp-footer-highlight-card > span { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(34,197,94,.42); border-radius: 50%; background: rgba(34,197,94,.12); color: #22c55e; }
.ocp-footer-highlight-card h4 { margin: 0 0 8px; color: #fff; font-size: 16px; font-weight: 800; }
.ocp-footer-highlight-card p { margin: 0; color: #d8e6df; font-size: 14px; line-height: 1.65; }
.ocp-footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; margin-top: 36px; padding: 28px 0 0; border-top: 1px solid rgba(255,255,255,.10); color: #fff; }
.ocp-footer-bottom p { margin: 0; color: #fff; }
.ocp-footer-bottom nav { display: flex; align-items: center; gap: 28px; }
.ocp-footer-bottom nav a { color: #fff; font-weight: 500; }
.ocp-footer-secure { justify-self: end; display: flex; align-items: center; gap: 12px; color: #fff; }
.ocp-footer-secure > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: #07833a; color: #fff; }
.ocp-footer-secure b,
.ocp-footer-secure small { display: block; }
.ocp-footer-secure small { color: #b6c2bd; }
.social-fixed-left {
  position: fixed;
  left: max(12px, calc((100vw - 1440px) / 2 + 12px));
  bottom: 12px;
  z-index: 60;
  display: grid;
  gap: 10px;
}
.social-fixed-left .items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-fixed-left .item,
.floating-open-btn {
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .18);
}
.social-fixed-left .item {
  position: relative;
  display: inline-flex;
  overflow: visible;
  border: 0;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
  animation: ocpSocialShake 3.8s ease-in-out infinite;
}
.social-fixed-left .item::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: inherit;
  opacity: .3;
  animation: ocpSocialBubble 2.9s ease-in-out infinite;
  pointer-events: none;
}
.social-fixed-left .item.fb {
  background: #1877f2;
}
.social-fixed-left .item.fb::before {
  background: rgba(24, 119, 242, .24);
}
.social-fixed-left .item.zalo {
  background: #1da1f2;
}
.social-fixed-left .item.zalo::before {
  background: rgba(29, 161, 242, .3);
}
.social-fixed-left .item.whatsapp {
  background: #25d366;
}
.social-fixed-left .item.whatsapp::before {
  background: rgba(37, 211, 102, .24);
}
.social-fixed-left .item.call {
  background: #ea3323;
}
.social-fixed-left .item.call::before {
  background: rgba(234, 51, 35, .26);
}
.social-fixed-left .item:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 32px rgba(15, 23, 42, .24);
  animation-play-state: paused;
}
.social-fixed-left .item:hover::before {
  animation-play-state: paused;
}
.social-fixed-left .item img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, .16));
}
.social-fixed-left .item.d-none {
  display: none !important;
}
.social-fixed-left .toggle-btn {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  justify-self: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: #334155;
  cursor: pointer;
  opacity: 0;
  transition: opacity .18s ease, background .18s ease;
}
.social-fixed-left:hover .toggle-btn,
.social-fixed-left .toggle-btn:focus-visible {
  opacity: 1;
}
.social-fixed-left .items.hide {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity .22s ease, transform .22s ease;
}
.social-fixed-left .items.show {
  opacity: 1;
  transform: translateX(0);
  transition: opacity .22s ease, transform .22s ease;
}
.floating-open-btn {
  display: none;
  position: fixed;
  left: max(12px, calc((100vw - 1440px) / 2 + 12px));
  bottom: 12px;
  z-index: 61;
  background: rgba(255,255,255,.96);
  color: #07833a;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}
@keyframes ocpSocialBubble {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    70% {
        transform: scale(1.9);
        opacity: 0;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}
@keyframes ocpSocialShake {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-12deg);
    }

    30% {
        transform: rotate(12deg);
    }

    45% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}
@media (prefers-reduced-motion: reduce) {
  .social-fixed-left .item,
  .social-fixed-left .item::before {
    animation: none !important;
  }
}
.breadcrumb { display: flex; gap: 8px; align-items: center; color: #697386; font-size: 14px; margin: 14px 0; }
.breadcrumb a { color: #536172; }

.hero { min-height: 300px; border-radius: 18px; overflow: hidden; color: #fff; position: relative; padding: 48px 70px; background: linear-gradient(120deg, rgba(10, 31, 68, .75), rgba(4, 81, 71, .56)), url('/images/ocp-public/hero-ocp-city.jpg') center/cover; }
.hero h1 { margin: 0 0 18px; font-size: 46px; line-height: 1.08; font-weight: 700; }
.hero mark { background: none; color: #facc15; }
.hero-tags { display: flex; gap: 16px; flex-wrap: wrap; font-weight: 650; }
.hero-search { margin-top: 28px; background: #fff; border-radius: 16px; padding: 12px; display: grid; grid-template-columns: 1fr 220px 190px 130px; gap: 8px; box-shadow: 0 18px 35px rgba(0, 0, 0, .22); }
.hero-search input, .hero-search select, .search-form input, .search-form select { border: 1px solid var(--ocp-line); border-radius: 10px; padding: 0 14px; height: 48px; background: #fff; }
.cat-strip { display: grid; grid-template-columns: repeat(9, 1fr); gap: 10px; background: #fff; border-radius: 16px; box-shadow: var(--ocp-shadow); padding: 18px; margin-top: -32px; position: relative; z-index: 2; }
.cat-item { text-align: center; font-weight: 650; font-size: 13px; color: #334155; }
.cat-icon { width: 48px; height: 48px; margin: 0 auto 8px; border-radius: 15px; display: grid; place-items: center; background: #eef7ff; font-size: 23px; }

.home-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 22px; margin-top: 22px; }
.widget-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; font-weight: 700; }
.widget-title h2 { margin: 0; font-size: 24px; }
.store-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.store-card { background: #fff; border: 1px solid var(--ocp-line); border-radius: 14px; overflow: hidden; position: relative; }
.store-card .thumb { height: 126px; width: 100%; object-fit: cover; }
.store-card .body { padding: 12px; }
.store-card h3 { font-size: 16px; margin: 0 0 6px; }
.tick { position: absolute; right: 10px; top: 108px; width: 23px; height: 23px; border-radius: 50%; background: var(--ocp-blue); color: #fff; display: grid; place-items: center; font-size: 13px; font-weight: 700; }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.stat-tile { background: #fff; border-radius: 14px; padding: 16px; display: flex; align-items: center; gap: 12px; border: 1px solid var(--ocp-line); }
.stat-tile b { font-size: 24px; }
.right-widget { background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; padding: 16px; margin-bottom: 16px; }
.mini-list { display: grid; gap: 12px; }
.mini-store { display: grid; grid-template-columns: 70px 1fr; gap: 10px; align-items: center; }
.mini-store .thumb { width: 70px; height: 56px; border-radius: 12px; object-fit: cover; }

.banner { position: relative; overflow: hidden; border-radius: 14px; min-height: 104px; border: 1px solid rgba(0,0,0,.06); display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 30px; margin: 18px 0 22px; }
.banner h1, .banner h2 { margin: 0; font-weight: 700; letter-spacing: .01em; }
.banner h1 { font-size: 36px; }
.banner h2 { font-size: 28px; }
.banner p { margin: 4px 0 0; font-size: 17px; font-weight: 600; }
.banner .eyebrow { font-weight: 700; text-transform: uppercase; font-size: 12px; opacity: .82; }
.banner-yellow { background: linear-gradient(100deg, #fff1b8, #ffd978); color: #7c2d12; }
.banner-green { background: linear-gradient(100deg, #e8f8df, #cbedc3); color: #076c2f; }
.banner-blue { background: linear-gradient(100deg, #eaf3ff, #d6e9ff); color: #0f4ca5; }
.banner-purple { background: linear-gradient(100deg, #f0e6ff, #dfccff); color: #4c1d95; }
.banner-mint { background: linear-gradient(100deg, #d6fbf1, #b9ebe5); color: #0f766e; }
.ocp-public-banner img { max-height: 180px; object-fit: cover; border-radius: 12px; }

.layout-with-sidebar, .search-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr) 390px; gap: 24px; }
.filters { background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; padding: 16px; align-self: start; }
.filters h3 { margin: 16px 0 10px; }
.check, .radio { display: flex; align-items: center; gap: 10px; margin: 10px 0; color: #273241; }
.box, .circle { width: 18px; height: 18px; border: 2px solid #9ca3af; background: #fff; }
.box { border-radius: 3px; }
.circle { border-radius: 50%; }
.listing-head { display: flex; align-items: start; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.sort, .search-form { background: #fff; border: 1px solid var(--ocp-line); border-radius: 12px; padding: 12px 18px; }
.search-form { display: grid; grid-template-columns: 1fr 220px 180px 130px; gap: 12px; align-items: center; margin-top: 24px; }
.service-list { display: grid; gap: 12px; }
.service-card { background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; padding: 12px; display: grid; grid-template-columns: 180px 1fr 38px; gap: 18px; align-items: center; }
.service-card .thumb { width: 180px; height: 106px; object-fit: cover; border-radius: 12px; }
.service-card h3 { margin: 0 0 6px; font-size: 21px; }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.bookmark { font-size: 24px; color: #333; text-align: center; }
.map { height: 558px; border-radius: 16px; border: 1px solid var(--ocp-line); background-color: #eef4f8; background-image: linear-gradient(27deg, transparent 0 43%, rgba(65,160,220,.35) 44% 46%, transparent 47%), repeating-linear-gradient(0deg, #e5edf5 0 2px, transparent 2px 46px), repeating-linear-gradient(90deg, #d9e4ef 0 1px, transparent 1px 54px); position: sticky; top: 112px; overflow: hidden; }
.pin { position: absolute; width: 32px; height: 32px; background: #ef4444; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); box-shadow: 0 5px 15px rgba(239,68,68,.35); }
.pin:after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: #fff; }
.pin label { position: absolute; top: 32px; left: -6px; transform: rotate(45deg); font-weight: 700; color: #ef4444; font-size: 13px; }
.pin.p1 { left: 53%; top: 15%; } .pin.p2 { left: 77%; top: 34%; } .pin.p3 { left: 13%; top: 40%; } .pin.p4 { left: 78%; top: 68%; }

.detail-hero { display: grid; grid-template-columns: minmax(0, 1fr) 620px; gap: 24px; align-items: start; }
.store-info h1 { font-size: 34px; margin: 0 0 8px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 18px 0; }
.gallery { display: grid; grid-template-rows: 260px 92px; gap: 10px; }
.gallery-main { width: 100%; height: 260px; object-fit: cover; border-radius: 14px; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-thumbs img { height: 92px; width: 100%; object-fit: cover; border-radius: 12px; }
.tabs { display: flex; gap: 34px; border-bottom: 1px solid var(--ocp-line); margin: 26px 0 18px; overflow-x: auto; }
.tabs a { padding: 14px 0; font-weight: 700; }
.tabs a.active { color: #0f4ca5; border-bottom: 3px solid #0f4ca5; }
.detail-main { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 28px; }
.detail-content, .info-box, .review-card, .price-table, .side-ad { background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; padding: 18px; margin-bottom: 16px; }
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.price-table th, .price-table td { padding: 12px 14px; border-bottom: 1px solid var(--ocp-line); text-align: left; }
.rating-break { display: grid; grid-template-columns: 120px 1fr; gap: 24px; align-items: start; }
.rating-number { font-size: 56px; font-weight: 700; }
.bar-row { display: grid; grid-template-columns: 34px 1fr 45px; gap: 8px; align-items: center; margin: 8px 0; }
.bar { height: 9px; background: #f3f4f6; border-radius: 999px; overflow: hidden; }
.bar span { display: block; height: 100%; background: #f5b301; }
.review-card { display: grid; grid-template-columns: 50px 1fr; gap: 14px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(#ffcc9a, #8b5e3c); }
.split-title { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.btn-sm { padding: 8px 12px; min-height: 0; font-size: 13px; }
.ocp-alert { border-radius: 12px; padding: 12px 16px; margin: 14px 0; font-weight: 700; }
.ocp-alert.success { background: #e8f8df; color: #087333; border: 1px solid #bfe7b9; }
.ocp-alert.error { background: #fff1f2; color: #b91c1c; border: 1px solid #fecdd3; }
.review-page { padding-bottom: 30px; }
.review-layout { display: grid; grid-template-columns: 360px minmax(0, 1fr); gap: 24px; align-items: start; }
.review-store-card, .review-form-card { background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; padding: 18px; }
.review-store-card img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; margin-bottom: 14px; }
.review-store-card h1 { font-size: 24px; margin: 0 0 8px; }
.review-form-card h2 { margin-top: 0; }
.review-form-card label { display: grid; gap: 7px; font-weight: 700; margin: 14px 0; }
.review-form-card input, .review-form-card select, .review-form-card textarea,
.report-form input, .report-form select { width: 100%; border: 1px solid var(--ocp-line); border-radius: 10px; padding: 11px 12px; font: inherit; background: #fff; }
.review-form-card textarea { resize: vertical; min-height: 150px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.checkbox-line { display: flex !important; grid-template-columns: auto 1fr; align-items: center; gap: 10px !important; }
.checkbox-line input { width: auto; }
.field-validation-error { color: #b91c1c; font-size: 13px; font-weight: 600; }
.review-body { min-width: 0; }
.review-images { display: flex; gap: 8px; flex-wrap: wrap; margin: 10px 0; }
.review-images img { width: 92px; height: 72px; object-fit: cover; border-radius: 10px; border: 1px solid var(--ocp-line); }
.report-form { display: grid; grid-template-columns: 180px minmax(0, 1fr) auto; gap: 8px; align-items: center; margin-top: 12px; }
.inline-form { display: inline-flex; margin: 0; }
.compact-actions { margin: 12px 0 0; }
.category-index-page { display: grid; grid-template-columns: 250px minmax(0, 1fr) 390px; gap: 24px; padding-top: 18px; }
.category-index-page > .banner,
.category-index-page > .category-breadcrumb,
.category-index-page > .category-bottom-banner { grid-column: 1 / -1; }
.category-fallback-banner { min-height: 120px; align-items: center; }
.category-breadcrumb { display: flex; align-items: center; gap: 9px; color: var(--ocp-muted); font-weight: 600; }
.category-breadcrumb a { color: var(--ocp-muted); }
.category-filter-panel { position: sticky; top: 112px; }
.filter-field { display: grid; gap: 7px; margin: 12px 0; font-weight: 700; }
.filter-field input,
.filter-field select,
.category-listing-head select { width: 100%; height: 42px; border: 1px solid var(--ocp-line); border-radius: 10px; padding: 0 12px; background: #fff; font: inherit; }
.category-filter-panel .btn { width: 100%; margin-top: 10px; }
.category-listing-head h1 { margin: 0 0 4px; font-size: 29px; }
.category-listing-head .sort { display: flex; align-items: center; gap: 12px; white-space: nowrap; }
.category-service-list { gap: 13px; }
.category-store-card { grid-template-columns: 180px minmax(0, 1fr) 36px; }
.category-store-card h3 a { color: var(--ocp-text); }
.store-badges { display: flex; flex-wrap: wrap; gap: 8px; min-height: 25px; margin-bottom: 3px; }
.badge-sponsored,
.badge-verified { display: inline-flex; align-items: center; border-radius: 999px; padding: 4px 9px; font-size: 12px; font-weight: 700; text-transform: uppercase; }
.badge-sponsored { background: #fee2e2; color: #dc2626; }
.badge-verified { background: #e7f3ff; color: #1769d1; }
.rating-line { margin: 0 0 6px; color: #374151; font-weight: 650; }
.rating-line::first-letter { color: var(--ocp-orange); }
.empty-state,
.map-empty { background: #fff; border: 1px dashed #cbd5e1; border-radius: 14px; padding: 24px; color: var(--ocp-muted); font-weight: 700; text-align: center; }
.ocp-leaflet-map { background: #eef4f8; min-height: 320px; }
.ocp-store-map-canvas { width: 100%; height: 100%; min-height: 360px; border-radius: inherit; z-index: 1; }
.store-detail-map { height: 320px; border: 1px solid var(--ocp-line); border-radius: 16px; overflow: hidden; margin-top: 16px; }
.ocp-map-message { margin-top: 10px; color: var(--ocp-muted); font-weight: 700; }
.ocp-map-popup { display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 10px; width: 245px; }
.ocp-map-popup img { width: 76px; height: 76px; object-fit: cover; border-radius: 8px; background: #eef2f7; }
.ocp-map-popup b { display: block; color: #0f172a; line-height: 1.25; margin-bottom: 4px; }
.ocp-map-popup p { margin: 0 0 5px; color: #475569; font-size: 12px; line-height: 1.35; }
.ocp-map-popup small { display: block; color: #64748b; margin-bottom: 7px; }
.ocp-map-popup a { color: var(--ocp-primary); font-weight: 700; text-decoration: none; }
.ocp-map-verified { color: #0ea5e9; font-weight: 700; }
.shop-map-picker { display: grid; gap: 12px; }
.shop-map-picker-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.shop-map-canvas { width: 100%; min-height: 320px; border: 1px solid var(--ocp-line); border-radius: 12px; overflow: hidden; background: #eef4f8; }
.shop-map-message { min-height: 20px; color: var(--ocp-muted); font-size: 13px; font-weight: 700; }
.category-map-panel { align-self: start; }
.category-map { height: 594px; }
.category-pin { display: block; }
.category-pin label { min-width: 34px; text-align: center; }
.category-pagination { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.category-pagination a { min-width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--ocp-line); border-radius: 10px; background: #fff; font-weight: 700; color: var(--ocp-text); padding: 0 12px; }
.category-pagination a.active { background: var(--ocp-green); border-color: var(--ocp-green); color: #fff; }
.category-bottom-banner .ocp-public-banner { margin-top: 8px; }
.section-card { background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; padding: 18px; margin: 18px 0; }
.auth-page { min-height: calc(100vh - 160px); display: grid; place-items: start center; padding: 36px 0; }
.auth-card, .profile-card { width: min(760px, 100%); background: #fff; border: 1px solid var(--ocp-line); border-radius: 16px; box-shadow: var(--ocp-shadow); padding: 24px; }
.auth-card h1, .profile-card h1 { margin: 0 0 18px; font-size: 28px; }
.auth-form { display: grid; gap: 14px; }
.auth-form label { display: grid; gap: 7px; font-weight: 700; }
.auth-form input, .auth-form select, .auth-form textarea { width: 100%; border: 1px solid var(--ocp-line); border-radius: 10px; padding: 11px 12px; background: #fff; }
.auth-form textarea { min-height: 110px; resize: vertical; }
.store-register-fields { border-top: 1px solid var(--ocp-line); margin-top: 8px; padding-top: 16px; }
.profile-grid { display: grid; grid-template-columns: 180px 1fr; gap: 12px; }
.profile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.footer { text-align: center; color: #6b7280; padding: 30px 0 40px; font-size: 14px; }

@media (max-width: 1180px) {
  .home-grid, .layout-with-sidebar, .search-layout, .detail-hero, .detail-main, .category-index-page { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .store-cards, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .hero-search, .search-form { grid-template-columns: 1fr; }
  .cat-strip { grid-template-columns: repeat(3, 1fr); }
  .map, .category-filter-panel { position: relative; top: auto; }
  .map { height: 360px; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 1440px); }
  .header-top-row, .header-nav-row { display: block; }
  .ocp-layout-header-row { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; }
  .ocp-layout-nav { width: 100%; margin-left: 0; }
  .ocp-layout-header .account-actions { margin-top: 0; }
  .ocp-footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ocp-footer-highlights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ocp-footer-bottom { grid-template-columns: 1fr; }
  .ocp-footer-secure { justify-self: start; }
  .top-search { margin-top: 10px; display: grid; grid-template-columns: 1fr; height: auto; }
  .account-actions { margin-top: 10px; }
  .account-dropdown { left: 0; right: auto; }
  .nav { margin-top: 10px; }
  .hero { padding: 32px 24px; }
  .hero h1, .store-info h1 { font-size: 30px; }
  .store-cards, .stat-row { grid-template-columns: 1fr; }
  .service-card, .category-store-card { grid-template-columns: 1fr; }
  .service-card .thumb { width: 100%; height: 160px; }
  .banner { display: block; }
  .form-grid, .report-form { grid-template-columns: 1fr; }
  .social-fixed-left,
  .floating-open-btn {
    left: 12px;
    bottom: 76px;
  }
  .social-fixed-left .item,
  .floating-open-btn {
    width: 46px;
    height: 46px;
  }
  .social-fixed-left .item::before {
    inset: -13px;
  }
  .social-fixed-left .item img {
    width: 27px;
    height: 27px;
  }
  .social-fixed-left .toggle-btn {
    opacity: 1;
  }
}

@media (max-width: 560px) {
  .ocp-footer-shell { padding: 42px 20px 24px; }
  .ocp-footer-main,
  .ocp-footer-highlights { grid-template-columns: 1fr; }
}
.ocp-notification-bell {
    position: relative;
    flex: 0 0 auto;
}

.ocp-notification-bell summary {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.ocp-notification-bell summary::-webkit-details-marker {
    display: none;
}

.ocp-bell-icon {
    font-size: 18px;
    line-height: 1;
}

.ocp-notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.ocp-notification-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 50;
    width: min(360px, calc(100vw - 28px));
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .12);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .16);
    border-radius: 8px;
    overflow: hidden;
}

.ocp-notification-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.ocp-notification-dropdown-head a,
.ocp-notification-action {
    color: #0f766e;
    font-weight: 700;
    text-decoration: none;
}

.ocp-notification-item {
    display: grid;
    grid-template-columns: 10px 1fr;
    gap: 10px;
    padding: 12px 14px;
    color: #0f172a;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.ocp-notification-item:hover {
    background: #f8fafc;
}

.ocp-notification-item small {
    display: block;
    color: #64748b;
    margin-top: 3px;
    line-height: 1.35;
}

.ocp-notification-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #cbd5e1;
    margin-top: 7px;
}

.ocp-notification-unread .ocp-notification-dot {
    background: #0f766e;
}

.ocp-notification-empty,
.ocp-notification-empty-page {
    padding: 18px;
    color: #64748b;
    text-align: center;
}

.ocp-notification-page {
    width: min(980px, calc(100% - 32px));
    margin: 32px auto 56px;
}

.ocp-notification-page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.ocp-notification-page-head h1 {
    margin: 0;
    font-size: 32px;
}

.ocp-notification-page-head p {
    margin: 6px 0 0;
    color: #64748b;
}

.ocp-notification-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.ocp-notification-filters a,
.ocp-notification-action {
    border: 1px solid rgba(15, 23, 42, .12);
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    text-decoration: none;
    color: #0f172a;
    cursor: pointer;
}

.ocp-notification-filters a.active,
.ocp-notification-action:not(.light) {
    background: #0f766e;
    border-color: #0f766e;
    color: #fff;
}

.ocp-notification-list {
    display: grid;
    gap: 10px;
}

.ocp-notification-row {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    gap: 14px;
    align-items: start;
    padding: 16px;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 8px;
    background: #fff;
}

.ocp-notification-row.ocp-notification-unread {
    border-color: rgba(15, 118, 110, .35);
    background: #f0fdfa;
}

.ocp-notification-row-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #dbeafe;
}

.ocp-notification-row-icon.success { background: #dcfce7; }
.ocp-notification-row-icon.warning { background: #fef3c7; }
.ocp-notification-row-icon.danger { background: #fee2e2; }

.ocp-notification-row-title {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.ocp-notification-row-title h2 {
    margin: 0;
    font-size: 17px;
}

.ocp-notification-row-title span {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
}

.ocp-notification-row-body p {
    margin: 6px 0;
    color: #334155;
}

.ocp-notification-row-body small {
    color: #64748b;
}

.ocp-notification-row-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

@media (max-width: 720px) {
    .ocp-notification-page-head,
    .ocp-notification-row-actions,
    .ocp-notification-row-title {
        align-items: stretch;
        flex-direction: column;
    }

    .ocp-notification-row {
        grid-template-columns: 32px 1fr;
    }

    .ocp-notification-row-actions {
        grid-column: 2;
    }
}

/* OCP public marketplace refresh */
:root {
  --ocp-yellow: #facc15;
  --ocp-text: #0f172a;
  --ocp-muted: #64748b;
}

.public-header {
  box-shadow: 0 1px 0 rgba(15, 23, 42, .04);
}

.header-shell {
  padding: 0;
}

.header-top-row {
  min-height: 68px;
  gap: 12px;
}

.brand {
  min-width: 230px;
  gap: 12px;
  color: var(--ocp-green);
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-copy small {
  color: #0f172a;
  font-size: 12px;
  font-weight: 700;
}

.logo {
  width: 46px;
  height: 46px;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 34%, transparent 35%),
    conic-gradient(from 25deg, #38bdf8 0 24%, #07833a 24% 49%, #facc15 49% 70%, #1769d1 70% 100%);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .08), 0 6px 16px rgba(23, 105, 209, .15);
}

.logo:after {
  display: none;
}

.top-search {
  height: 44px;
  min-width: 360px;
  gap: 10px;
}

.top-search select {
  width: 170px;
  flex: 0 0 170px;
  font-weight: 500;
  color: #0f172a;
}

.top-search-box {
  position: relative;
  flex: 1 1 auto;
  min-width: 180px;
}

.top-search-box input {
  width: 100%;
  padding-right: 48px;
}

.header-search-submit {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: #fff;
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
}

.header-search-submit:hover {
  background: #eef7ff;
  color: var(--ocp-blue);
}

.header-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.header-cta-group .btn,
.account-actions .btn {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  white-space: nowrap;
}

.header-post-btn {
  background: linear-gradient(180deg, #10ad52, var(--ocp-green));
}

.header-upgrade-btn {
  background: #fff1bf;
  color: #8a4b00;
  border: 1px solid #ffe08a;
}

.header-upgrade-btn:hover {
  background: #ffe8a3;
}

.ocp-notification-bell summary {
  width: 42px;
  height: 42px;
  border-color: var(--ocp-line);
}

.account-menu summary {
  min-height: 44px;
  max-width: 210px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 8px;
  color: #0f172a;
}

.account-menu summary span:last-child {
  min-width: 0;
  display: grid;
  font-size: 11px;
  line-height: 1.1;
  color: #64748b;
}

.account-menu summary b {
  max-width: 135px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #0f172a;
  font-size: 13px;
}

.account-avatar-img,
.account-avatar-fallback {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.account-avatar-img {
  object-fit: cover;
}

.account-avatar-fallback {
  display: grid;
  place-items: center;
  background: #e8f8df;
  color: var(--ocp-green);
  font-weight: 700;
}

.header-nav-row {
  height: 50px;
  margin-top: 0;
  border-top: 1px solid #f1f5f9;
  gap: 16px;
}

.hamburger {
  height: 36px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav {
  gap: 18px;
}

.nav a {
  padding: 9px 2px;
  border-radius: 0;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  background: transparent;
  color: var(--ocp-blue);
  box-shadow: inset 0 -3px 0 #b9dcff;
}

.ocp-home-page {
  padding-top: 22px;
}

.ocp-home-page .home-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  margin-top: 0;
  align-items: start;
}

.home-main,
.home-sidebar {
  min-width: 0;
}

.home-sidebar {
  position: sticky;
  top: 128px;
}

.ocp-home-page .hero {
  min-height: 306px;
  padding: 46px 70px 34px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(8, 24, 55, .72) 0%, rgba(8, 55, 72, .45) 48%, rgba(255, 255, 255, .08) 100%),
    url('/images/ocp-public/hero-ocp-city.jpg') center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.ocp-home-page .hero h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .24);
}

.ocp-home-page .hero mark {
  color: #ffc928;
}

.ocp-home-page .hero-tags {
  gap: 18px;
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
}

.ocp-home-page .hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  font-style: normal;
  font-size: 12px;
  line-height: 1;
}

.benefit-icon.shield { background: #dcfce7; color: #07833a; }
.benefit-icon.star { background: #fef3c7; color: #b77900; }
.benefit-icon.people { background: #dbeafe; color: #1769d1; }

.ocp-home-page .hero-search {
  width: min(820px, 100%);
  margin-top: 30px;
  grid-template-columns: minmax(260px, 1fr) 184px 164px 122px;
  padding: 10px;
  border-radius: 16px;
}

.hero-search-input {
  position: relative;
}

.hero-search-input span {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #475569;
  font-size: 21px;
  font-weight: 700;
  z-index: 1;
}

.hero-search-input input {
  width: 100%;
  padding-left: 44px;
}

.ocp-home-page .hero-search input,
.ocp-home-page .hero-search select {
  height: 46px;
  border-radius: 10px;
  color: #0f172a;
}

.ocp-home-page .hero-search .btn {
  min-height: 46px;
  border-radius: 10px;
  font-weight: 700;
}

.hero-map-markers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.map-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .18);
}

.map-badge:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, .92);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 3px;
}

.map-badge i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .55);
}

.map-badge-ocp2 {
  right: 28%;
  top: 66px;
}

.map-badge-ocp2 i {
  background: #22c55e;
}

.map-badge-ocp3 {
  right: 10%;
  top: 134px;
}

.map-badge-ocp3 i {
  background: #1769d1;
}

.ocp-home-page .cat-strip {
  grid-template-columns: repeat(9, minmax(80px, 1fr));
  gap: 10px;
  padding: 16px 18px;
  margin-top: -28px;
  border-radius: 17px;
}

.ocp-home-page .cat-item {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
}

.ocp-home-page .cat-icon {
  width: 48px;
  height: 48px;
  margin: 0;
  border-radius: 14px;
  font-size: 23px;
  line-height: 1;
}

.cat-icon-laundry { background: #e0f2fe; color: #1769d1; }
.cat-icon-cafe { background: #fff1df; color: #c46a12; }
.cat-icon-pharmacy { background: #dcfce7; color: #07833a; }
.cat-icon-spa { background: #ffe4f0; color: #db2777; }
.cat-icon-repair { background: #dff7fb; color: #0891b2; }
.cat-icon-dental { background: #efe7ff; color: #7c3aed; }
.cat-icon-mart { background: #e0f7ea; color: #0f9f58; }
.cat-icon-food { background: #fff0d7; color: #ea580c; }
.cat-icon-other { background: #e8eef7; color: #475569; }

.home-promo-banner {
  min-height: 86px;
  margin: 16px 0 18px;
  padding: 12px 24px;
  border-radius: 14px;
  background: linear-gradient(100deg, #ffe8a3 0%, #ffc857 62%, #ffe9b8 100%);
  color: #8a2d0d;
}

.home-promo-banner .promo-badge {
  flex: 0 0 auto;
  min-width: 78px;
  padding: 10px 11px;
  border-radius: 10px;
  background: #f97316;
  color: #fff;
  font-size: 12px;
  line-height: 1.05;
  font-weight: 750;
  text-align: center;
}

.home-promo-banner .banner-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.home-promo-banner h2 {
  margin: 0;
  color: #8a2d0d;
  font-size: 25px;
  line-height: 1.12;
  font-weight: 750;
}

.home-promo-banner p {
  margin: 4px 0 0;
  color: #8a4b00;
  font-size: 15px;
  font-weight: 500;
}

.promo-illustration {
  position: relative;
  width: 132px;
  height: 60px;
  flex: 0 0 132px;
}

.promo-rider,
.promo-basket,
.promo-spark {
  position: absolute;
  line-height: 1;
}

.promo-rider { left: 4px; bottom: 2px; font-size: 44px; }
.promo-basket { right: 18px; bottom: 4px; font-size: 34px; }
.promo-spark { right: 0; top: 0; color: #fff; font-size: 22px; }

.banner-cta {
  min-width: 104px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #fff;
  color: #8a2d0d;
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 10px 20px rgba(124, 45, 18, .12);
}

.banner-media img {
  max-height: 64px;
  width: 132px;
  object-fit: cover;
  border-radius: 10px;
}

.home-section {
  margin-top: 18px;
}

.ocp-home-page .widget-title {
  margin-bottom: 10px;
}

.ocp-home-page .widget-title h2 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ocp-home-page .widget-title h3 {
  margin: 0;
  color: #0f172a;
  font-size: 16px;
  font-weight: 700;
}

.ocp-home-page .widget-title a {
  font-size: 13px;
  font-weight: 700;
}

.ocp-home-page .store-cards {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ocp-home-page .store-card {
  min-height: 204px;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
  transition: transform .16s ease, box-shadow .16s ease;
}

.ocp-home-page .store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .11);
}

.store-thumb-wrap {
  position: relative;
}

.ocp-home-page .store-card .thumb {
  height: 108px;
}

.ocp-home-page .store-card .body {
  padding: 10px 11px 12px;
}

.ocp-home-page .store-card h3 {
  min-height: 36px;
  margin-bottom: 4px;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.22;
  font-weight: 700;
}

.ocp-home-page .store-card .small {
  margin: 3px 0 0;
  color: #475569;
  font-size: 12px;
}

.ocp-home-page .rating-line {
  margin: 0;
  font-size: 12px;
}

.verified-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #07833a;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.ocp-home-page .tick {
  top: auto;
  right: 8px;
  bottom: -12px;
  width: 24px;
  height: 24px;
  box-shadow: 0 0 0 3px #fff;
}

.ocp-home-page .stat-row {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.ocp-home-page .stat-tile {
  min-height: 78px;
  padding: 12px 14px;
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.ocp-home-page .stat-tile b {
  color: #111827;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 700;
}

.ocp-home-page .stat-tile span {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.stat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
}

.stat-store { background: #e0e7ff; color: #4f46e5; }
.stat-review { background: #fff7d6; color: #f59e0b; }
.stat-user { background: #ccfbf1; color: #0f9f8f; }
.stat-view { background: #ede9fe; color: #7c3aed; }
.stat-service { background: #dcfce7; color: #07833a; }

.home-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .9fr);
  gap: 18px;
  align-items: start;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.post-card {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: #0f172a;
}

.post-card img {
  width: 100%;
  aspect-ratio: 1.42;
  object-fit: cover;
  border-radius: 10px;
}

.post-card span {
  width: max-content;
  max-width: 100%;
  margin-top: -28px;
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: #7c3aed;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  z-index: 1;
}

.post-card h3 {
  margin: 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
}

.post-card p {
  margin: 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-card {
  position: relative;
  min-height: 154px;
  overflow: hidden;
  border-radius: 13px;
  color: #fff;
  background: #0f172a;
}

.area-card img {
  width: 100%;
  height: 100%;
  min-height: 154px;
  object-fit: cover;
  opacity: .74;
}

.area-card span {
  position: absolute;
  inset: auto 14px 12px;
  display: grid;
  gap: 4px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .34);
}

.area-card b {
  font-size: 17px;
  line-height: 1.12;
  font-weight: 750;
}

.area-card small {
  font-weight: 700;
}

.area-card em {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(7, 131, 58, .92);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
}

.ocp-home-page .right-widget {
  margin-bottom: 14px;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}

.popular-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.popular-tags .pill {
  min-height: 30px;
  justify-content: flex-start;
  padding: 6px 9px;
  background: #eef7ff;
  color: #0c4eb5;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.ocp-home-page .mini-list {
  gap: 10px;
}

.ocp-home-page .mini-store {
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
}

.ocp-home-page .mini-store .thumb {
  width: 72px;
  height: 54px;
  border-radius: 10px;
}

.mini-store b {
  display: block;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.mini-store b i {
  color: var(--ocp-blue);
  font-style: normal;
}

.mini-store small {
  display: block;
  margin-top: 3px;
  color: #475569;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.side-promo {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 4px;
  margin-bottom: 14px;
  padding: 16px;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  position: relative;
}

.side-promo strong {
  font-size: 18px;
  line-height: 1.05;
  font-weight: 700;
}

.side-promo span {
  font-size: 13px;
  font-weight: 700;
}

.side-promo em {
  width: max-content;
  margin-top: 3px;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  color: #15306c;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.side-promo-blue {
  background:
    linear-gradient(105deg, rgba(31, 64, 186, .96), rgba(111, 76, 255, .78)),
    url('/images/ocp-public/hero-services-collage.jpg') center/cover;
}

.side-promo-offer {
  background:
    linear-gradient(105deg, rgba(220, 38, 38, .9), rgba(255, 157, 92, .82)),
    url('/images/ocp-public/thumb-laundry-3.jpg') center/cover;
}

.why-widget {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  gap: 10px;
  align-items: center;
  background: #effdf8;
}

.why-widget h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.why-widget p {
  margin: 5px 0;
  color: #334155;
  font-size: 12px;
  font-weight: 700;
}

.why-widget p b {
  color: var(--ocp-green);
}

.shield-illustration {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(145deg, #dbeafe, #7dd3fc);
  color: #1769d1;
  font-size: 42px;
  font-weight: 750;
  box-shadow: inset 0 0 0 7px rgba(255, 255, 255, .45);
}

.review-line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.review-line p {
  margin: 1px 0 2px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

.review-line small {
  color: #475569;
  font-size: 12px;
  font-weight: 500;
}

.sidebar-footer-link {
  display: block;
  margin-top: 12px;
  color: var(--ocp-blue);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1320px) {
  .header-upgrade-btn {
    display: none;
  }

  .nav {
    gap: 13px;
  }

  .ocp-home-page .hero-search {
    grid-template-columns: minmax(240px, 1fr) 170px 150px 116px;
  }
}

@media (max-width: 1180px) {
  .header-top-row {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .top-search {
    order: 3;
    flex: 1 1 100%;
    min-width: 0;
  }

  .header-cta-group {
    margin-left: auto;
  }

  .header-nav-row {
    overflow-x: auto;
  }

  .nav {
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .ocp-home-page .home-grid {
    grid-template-columns: 1fr;
  }

  .home-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ocp-home-page .home-sidebar > * {
    margin-bottom: 0;
  }

  .ocp-home-page .store-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ocp-home-page .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ocp-home-page .cat-strip {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .home-bottom-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .header-top-row,
  .header-nav-row {
    display: flex;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .header-cta-group {
    display: none;
  }

  .account-menu summary {
    max-width: 170px;
  }

  .ocp-home-page .hero {
    min-height: 0;
    padding: 34px 24px 30px;
  }

  .ocp-home-page .hero h1 {
    font-size: 32px;
  }

  .hero-map-markers {
    display: none;
  }

  .ocp-home-page .hero-search {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .ocp-home-page .cat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: -18px;
  }

  .home-promo-banner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .promo-illustration {
    display: none;
  }

  .ocp-home-page .store-cards,
  .ocp-home-page .stat-row,
  .home-sidebar,
  .post-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .header-top-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand {
    grid-column: 1 / -1;
  }

  .top-search {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .top-search select {
    width: 100%;
    flex-basis: auto;
  }

  .account-actions {
    grid-column: 1 / -1;
  }

  .header-nav-row {
    display: flex;
  }

  .hamburger {
    flex: 0 0 auto;
  }

  .ocp-home-page {
    padding-top: 14px;
  }

  .ocp-home-page .hero h1 {
    font-size: 29px;
  }

  .ocp-home-page .hero-tags {
    gap: 10px;
    font-size: 13px;
  }

  .ocp-home-page .cat-strip,
  .ocp-home-page .store-cards,
  .ocp-home-page .stat-row,
  .home-sidebar,
  .post-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .home-promo-banner h2 {
    font-size: 20px;
  }

  .banner-cta {
    width: 100%;
  }
}

/* OCP static pages and news */
.ocp-static-page {
  padding-top: 22px;
  padding-bottom: 42px;
}

.ocp-page-hero,
.ocp-about-card,
.ocp-contact-info-card,
.ocp-contact-form-card,
.ocp-news-card,
.ocp-news-detail,
.ocp-empty-state,
.ocp-stat-panel,
.ocp-article-cta {
  background: #fff;
  border: 1px solid var(--ocp-line);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.ocp-page-hero {
  padding: 30px 34px;
  margin-bottom: 20px;
  background:
    linear-gradient(120deg, rgba(232, 248, 223, .95), rgba(238, 247, 255, .98)),
    #fff;
}

.ocp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.ocp-breadcrumb a {
  color: var(--ocp-blue);
  font-weight: 600;
}

.ocp-page-kicker {
  margin: 0 0 8px;
  color: var(--ocp-green);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .06em;
}

.ocp-page-title,
.ocp-news-detail h1 {
  margin: 0;
  color: var(--ocp-text);
  font-size: 34px;
  line-height: 1.12;
  font-weight: 750;
  letter-spacing: 0;
}

.ocp-page-subtitle {
  max-width: 760px;
  margin: 12px 0 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 650;
}

.ocp-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  margin-bottom: 18px;
}

.ocp-about-card {
  padding: 22px;
}

.ocp-about-card h2,
.ocp-contact-form-card h2,
.ocp-article-cta h2 {
  margin: 0 0 12px;
  color: var(--ocp-text);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 750;
}

.ocp-about-card h3 {
  margin: 10px 0 8px;
  color: var(--ocp-text);
  font-size: 17px;
  font-weight: 750;
}

.ocp-about-card p,
.ocp-contact-info-card p,
.ocp-news-card p,
.ocp-empty-state p,
.ocp-article-cta p {
  margin: 0 0 10px;
  color: #475569;
  line-height: 1.6;
  font-weight: 600;
}

.ocp-owner-cta {
  display: grid;
  align-content: center;
  gap: 8px;
  background: linear-gradient(145deg, #effdf8, #eef7ff);
}

.ocp-owner-cta span {
  color: var(--ocp-green);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.ocp-owner-cta .btn {
  width: max-content;
  margin-top: 6px;
}

.ocp-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.ocp-value-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #e8f8df;
  color: var(--ocp-green);
  font-size: 22px;
  font-weight: 750;
}

.ocp-stat-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
}

.ocp-stat-panel div {
  min-height: 78px;
  display: grid;
  align-content: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
}

.ocp-stat-panel b {
  color: #111827;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 750;
}

.ocp-stat-panel span {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.ocp-contact-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.ocp-contact-info-list {
  display: grid;
  gap: 12px;
}

.ocp-contact-info-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
}

.ocp-contact-info-card > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #eef7ff;
  color: var(--ocp-blue);
  font-size: 22px;
  font-weight: 750;
}

.ocp-contact-info-card h3 {
  margin: 0 0 5px;
  color: var(--ocp-text);
  font-size: 16px;
  font-weight: 750;
}

.ocp-contact-info-card p {
  margin: 0;
}

.ocp-contact-info-card a {
  color: var(--ocp-blue);
  font-weight: 600;
}

.ocp-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ocp-contact-links a,
.ocp-contact-links span {
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0c4eb5;
  font-size: 12px;
  font-weight: 600;
}

.ocp-contact-form-card {
  padding: 22px;
}

.ocp-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ocp-contact-form label {
  display: grid;
  gap: 7px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 600;
}

.ocp-contact-form input,
.ocp-contact-form select,
.ocp-contact-form textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 12px;
  background: #fff;
  color: #0f172a;
  padding: 0 13px;
  outline: none;
}

.ocp-contact-form input,
.ocp-contact-form select {
  height: 48px;
}

.ocp-contact-form textarea {
  min-height: 142px;
  padding-top: 12px;
  resize: vertical;
}

.ocp-contact-form input:focus,
.ocp-contact-form select:focus,
.ocp-contact-form textarea:focus {
  border-color: rgba(23, 105, 209, .55);
  box-shadow: 0 0 0 4px rgba(23, 105, 209, .10);
}

.ocp-contact-form span.field-validation-error,
.ocp-contact-form .field-validation-error,
.ocp-contact-form [data-valmsg-for] {
  color: #b91c1c;
  font-size: 12px;
  font-weight: 500;
}

.ocp-form-full,
.ocp-form-submit,
.ocp-contact-form > .field-validation-error {
  grid-column: 1 / -1;
}

.ocp-form-submit {
  min-height: 48px;
  width: max-content;
  min-width: 160px;
  border-radius: 12px;
}

.ocp-news-layout,
.ocp-news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 22px;
  align-items: start;
}

.ocp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ocp-news-card {
  overflow: hidden;
}

.ocp-news-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.ocp-news-card > div {
  padding: 14px;
}

.ocp-news-meta {
  margin: 0 0 8px !important;
  color: var(--ocp-blue) !important;
  font-size: 12px;
  font-weight: 600 !important;
}

.ocp-news-card h2 {
  margin: 0 0 8px;
  color: var(--ocp-text);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 750;
}

.ocp-news-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--ocp-green);
  font-weight: 750;
}

.ocp-news-sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 128px;
}

.ocp-sidebar-news-list {
  display: grid;
  gap: 10px;
}

.ocp-sidebar-news-list a {
  display: grid;
  gap: 3px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eef2f7;
}

.ocp-sidebar-news-list a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ocp-sidebar-news-list b {
  color: var(--ocp-text);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.ocp-sidebar-news-list span {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.ocp-empty-state {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 32px;
  text-align: center;
}

.ocp-empty-state h2 {
  margin: 0 0 8px;
  color: var(--ocp-text);
  font-size: 24px;
  font-weight: 750;
}

.ocp-news-detail {
  padding: 26px;
}

.ocp-news-detail-image {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  border-radius: 16px;
  margin: 18px 0;
}

.ocp-news-content {
  color: #1f2937;
  font-size: 16px;
  line-height: 1.75;
}

.ocp-news-content h2,
.ocp-news-content h3 {
  color: var(--ocp-text);
}

.ocp-news-content img {
  height: auto;
  border-radius: 12px;
  margin: 14px 0;
}

.ocp-article-cta {
  margin-top: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #effdf8, #eef7ff);
}

@media (max-width: 1180px) {
  .ocp-about-grid,
  .ocp-contact-layout,
  .ocp-news-layout,
  .ocp-news-detail-layout {
    grid-template-columns: 1fr;
  }

  .ocp-news-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ocp-value-grid,
  .ocp-stat-panel,
  .ocp-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .ocp-static-page {
    padding-top: 14px;
  }

  .ocp-page-hero,
  .ocp-about-card,
  .ocp-contact-form-card,
  .ocp-news-detail {
    padding: 18px;
  }

  .ocp-page-title,
  .ocp-news-detail h1 {
    font-size: 28px;
  }

  .ocp-contact-form,
  .ocp-value-grid,
  .ocp-stat-panel,
  .ocp-news-grid,
  .ocp-news-sidebar {
    grid-template-columns: 1fr;
  }

  .ocp-form-submit {
    width: 100%;
  }
}

/* OCP category directory */
.ocp-category-page {
  padding-top: 36px;
}

.ocp-category-top-banner {
  min-height: 135px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid #f8d46f;
  border-radius: 12px;
  padding: 24px 32px;
  background: linear-gradient(100deg, #fff1b8 0%, #ffd978 58%, #ffeeb8 100%);
  color: #111827;
}

.ocp-category-top-banner:before {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -54px;
  width: 42%;
  height: 115px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .36);
}

.ocp-category-banner-label {
  position: absolute;
  left: 30px;
  top: 22px;
  color: #8a2d0d;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: 0;
}

.ocp-category-banner-copy {
  flex: 1 1 auto;
  min-width: 0;
  padding-left: 30%;
  z-index: 1;
}

.ocp-category-banner-copy h1 {
  margin: 10px 0 2px;
  color: #050814;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ocp-category-banner-copy p {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}

.ocp-category-banner-img {
  width: 260px;
  max-height: 100px;
  object-fit: contain;
  z-index: 1;
}

.ocp-category-banner-products {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 1;
}

.ocp-category-banner-products span {
  width: 66px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(146, 64, 14, .12);
  font-size: 42px;
  box-shadow: 0 12px 22px rgba(124, 45, 18, .12);
}

.ocp-category-banner-cta {
  min-width: 150px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 2px solid #f97316;
  border-radius: 10px;
  background: #fff;
  color: #9a3412;
  font-size: 16px;
  font-weight: 750;
  z-index: 1;
}

.ocp-category-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 18px;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
}

.ocp-category-breadcrumb a {
  color: #4b5563;
}

.ocp-category-breadcrumb b {
  color: #111827;
}

.ocp-category-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.ocp-category-filter {
  padding-right: 24px;
  border-right: 1px solid #e5e7eb;
}

.ocp-category-filter h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 750;
}

.ocp-category-filter .filter-field {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: #0f172a;
  font-weight: 600;
}

.ocp-category-filter input[type="search"],
.ocp-category-filter select,
.ocp-sort-box select {
  width: 100%;
  height: 42px;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  background: #fff;
  color: #111827;
  padding: 0 12px;
  font: inherit;
  font-weight: 500;
}

.filter-section {
  margin-top: 18px;
}

.filter-section h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.ocp-check,
.ocp-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin: 8px 0;
  color: #111827;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.ocp-check input,
.ocp-radio input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--ocp-green);
}

.filter-stars {
  color: #f59e0b;
  letter-spacing: 0;
}

.ocp-filter-submit {
  width: 100%;
  margin-top: 16px;
}

.ocp-category-list-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.ocp-category-list-head h1 {
  margin: 0;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 750;
}

.ocp-category-list-head p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 15px;
  font-weight: 700;
}

.ocp-sort-box {
  min-width: 274px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px 14px;
  color: #111827;
  font-weight: 600;
}

.ocp-sort-box select {
  height: 36px;
  border: 0;
  padding: 0 28px 0 8px;
  font-weight: 600;
}

.ocp-category-store-list {
  display: grid;
  gap: 0;
}

.ocp-store-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 42px;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  transition: box-shadow .2s, transform .2s;
}

.ocp-store-card + .ocp-store-card {
  margin-top: -1px;
}

.ocp-store-card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
  transform: translateY(-1px);
  z-index: 1;
}

.ocp-store-image img {
  width: 170px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  background: #eef2f7;
}

.ocp-store-card-body {
  min-width: 0;
}

.ocp-store-card h2 {
  margin: 4px 0 4px;
  font-size: 20px;
  line-height: 1.18;
  font-weight: 750;
}

.ocp-store-card h2 a {
  color: #0f172a;
}

.ocp-store-rating,
.ocp-store-zone,
.ocp-store-address {
  margin: 0 0 5px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

.ocp-store-rating span {
  color: #f59e0b;
  font-size: 20px;
  line-height: 1;
  vertical-align: -1px;
}

.ocp-store-zone {
  color: #475569;
}

.ocp-store-address {
  color: #64748b;
  font-size: 14px;
}

.ocp-store-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 7px;
}

.ocp-store-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border: 1px solid #b7e7c2;
  border-radius: 999px;
  background: #e8f7ec;
  color: #07833a;
  font-size: 13px;
  font-weight: 700;
}

.ocp-store-action {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #111827;
}

.ocp-store-action:hover {
  background: #eef7ff;
  color: var(--ocp-blue);
}

.ocp-store-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ocp-category-page .badge-sponsored {
  background: #ef2b2d;
  color: #fff;
  border-radius: 5px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 750;
}

.ocp-category-page .badge-verified {
  background: #e7f3ff;
  color: #1769d1;
  border-radius: 999px;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: 750;
}

.ocp-category-map-panel {
  position: sticky;
  top: 96px;
}

.ocp-category-map {
  width: 100%;
  height: 620px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background-color: #eef4f8;
  background-image:
    linear-gradient(28deg, transparent 0 42%, rgba(79, 164, 220, .32) 43% 46%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(203, 213, 225, .55) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(203, 213, 225, .5) 0 1px, transparent 1px 58px);
  position: relative;
}

.ocp-category-map .ocp-store-map-canvas {
  min-height: 620px;
  border-radius: 14px;
  background-color: transparent;
}

.ocp-category-map .leaflet-container {
  background-color: transparent;
  background-image:
    linear-gradient(28deg, transparent 0 42%, rgba(79, 164, 220, .32) 43% 46%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(203, 213, 225, .55) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(203, 213, 225, .5) 0 1px, transparent 1px 58px);
}

.ocp-category-pin {
  position: relative;
  display: grid;
  justify-items: center;
  pointer-events: auto;
}

.ocp-category-pin span {
  width: 34px;
  height: 34px;
  display: block;
  position: relative;
  border-radius: 50% 50% 50% 0;
  background: #ef2b2d;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(239, 43, 45, .32);
}

.ocp-category-pin span:after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.ocp-category-pin b {
  margin-top: 3px;
  color: #ef2b2d;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  text-shadow: 0 1px 0 #fff;
}

.ocp-map-static-pins {
  position: absolute;
  inset: 0;
  z-index: 410;
  pointer-events: none;
}

.ocp-map-static-pins span {
  position: absolute;
  display: grid;
  justify-items: center;
}

.ocp-map-static-pins i {
  width: 36px;
  height: 36px;
  display: block;
  position: relative;
  border-radius: 50% 50% 50% 0;
  background: #ef2b2d;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgba(239, 43, 45, .32);
}

.ocp-map-static-pins i:after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.ocp-map-static-pins b {
  margin-top: 3px;
  color: #ef2b2d;
  font-size: 14px;
  font-weight: 750;
  text-shadow: 0 1px 0 #fff;
}

.pin-sa3 { left: 14%; top: 39%; }
.pin-sa2-a { left: 47%; top: 24%; }
.pin-sa1 { right: 19%; top: 34%; }
.pin-sa2-b { right: 16%; bottom: 22%; }

.ocp-category-bottom-banner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 22px 28px;
  border-radius: 12px;
  background: linear-gradient(100deg, #dbeafe, #eff6ff 55%, #bfdbfe);
  border: 1px solid #bfdbfe;
  color: #0b2470;
}

.ocp-category-bottom-banner strong {
  font-size: 18px;
  font-weight: 750;
}

.ocp-category-bottom-banner h2 {
  margin: 4px 0;
  font-size: 27px;
  line-height: 1.1;
  font-weight: 750;
}

.ocp-category-bottom-banner p {
  margin: 0;
  color: #334155;
  font-weight: 500;
}

.ocp-category-bottom-banner > span {
  font-size: 64px;
}

.ocp-category-bottom-banner a {
  min-width: 164px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1d4ed8;
  border-radius: 10px;
  background: #fff;
  color: #0b2470;
  font-weight: 750;
}

@media (max-width: 1199px) {
  .ocp-category-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .ocp-category-map-panel {
    grid-column: 1 / -1;
    position: static;
  }

  .ocp-category-map,
  .ocp-category-map .ocp-store-map-canvas {
    height: 460px;
    min-height: 460px;
  }

  .ocp-category-banner-copy {
    padding-left: 0;
    padding-top: 34px;
  }
}

@media (max-width: 768px) {
  .ocp-category-page {
    padding-top: 18px;
  }

  .ocp-category-top-banner,
  .ocp-category-bottom-banner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
  }

  .ocp-category-banner-label {
    position: static;
    font-size: 16px;
  }

  .ocp-category-banner-copy {
    padding-top: 0;
  }

  .ocp-category-banner-copy h1 {
    font-size: 26px;
  }

  .ocp-category-banner-copy p {
    font-size: 18px;
  }

  .ocp-category-banner-products,
  .ocp-category-banner-img,
  .ocp-category-bottom-banner > span {
    display: none;
  }

  .ocp-category-banner-cta,
  .ocp-category-bottom-banner a {
    width: 100%;
  }

  .ocp-category-layout {
    display: block;
  }

  .ocp-category-filter {
    margin-bottom: 20px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    background: #fff;
  }

  .ocp-category-list-head {
    display: grid;
  }

  .ocp-sort-box {
    min-width: 0;
    width: 100%;
  }

  .ocp-store-card {
    grid-template-columns: 1fr 42px;
    align-items: start;
  }

  .ocp-store-image {
    grid-column: 1 / -1;
  }

  .ocp-store-image img {
    width: 100%;
    height: 180px;
  }

  .ocp-category-map {
    margin-top: 20px;
  }
}

@media (max-width: 430px) {
  .ocp-category-list-head h1 {
    font-size: 27px;
  }

  .ocp-store-card {
    grid-template-columns: 1fr;
  }

  .ocp-store-action {
    justify-self: end;
  }
}

/* OCP store/search directory */
.ocp-store-search-page {
  padding-top: 24px;
}

.ocp-search-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 180px 130px;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--ocp-line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.ocp-search-toolbar input,
.ocp-search-toolbar select,
.ocp-filter-panel select {
  width: 100%;
  height: 44px;
  border: 1px solid var(--ocp-line);
  border-radius: 10px;
  background: #fff;
  color: #111827;
  padding: 0 13px;
  font: inherit;
  font-weight: 500;
  outline: none;
}

.ocp-search-toolbar input:focus,
.ocp-search-toolbar select:focus,
.ocp-filter-panel select:focus {
  border-color: rgba(7, 131, 58, .55);
  box-shadow: 0 0 0 3px rgba(7, 131, 58, .1);
}

.ocp-search-toolbar .btn {
  min-height: 44px;
  padding: 0 16px;
}

.ocp-store-search-banner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 16px 0 22px;
  padding: 16px 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid #f8d46f;
  border-radius: 14px;
  background: linear-gradient(100deg, #fff1b8 0%, #ffd978 62%, #ffeeb8 100%);
  color: #7c2d12;
}

.ocp-store-search-banner:before {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -52px;
  width: 36%;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.ocp-store-search-banner .promo-badge {
  width: 78px;
  min-height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 10px;
  background: #ff6b21;
  color: #fff;
  font-size: 12px;
  line-height: 1.08;
  font-weight: 700;
  text-align: center;
  z-index: 1;
}

.ocp-store-search-banner h2 {
  margin: 0;
  color: #8a2d0d;
  font-size: 26px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ocp-store-search-banner p {
  margin: 3px 0 0;
  color: #8a2d0d;
  font-size: 15px;
  font-weight: 600;
}

.ocp-store-search-banner .promo-art {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9a3412;
  font-size: 30px;
  z-index: 1;
}

.ocp-store-search-banner a {
  min-width: 104px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #fff;
  color: #8a2d0d;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.ocp-store-search-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 390px;
  gap: 24px;
  align-items: start;
}

.ocp-filter-panel {
  position: sticky;
  top: 112px;
  background: #fff;
  border: 1px solid var(--ocp-line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}

.ocp-filter-panel h2 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
}

.ocp-filter-panel .filter-field {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: #0f172a;
  font-weight: 600;
}

.ocp-filter-panel .filter-section {
  margin: 16px 0;
}

.ocp-filter-panel h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
}

.ocp-filter-panel .ocp-check {
  font-weight: 600;
}

.ocp-store-search-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.ocp-store-search-head h1 {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ocp-store-search-head p {
  margin: 4px 0 0;
  color: #6b7280;
  font-size: 15px;
  font-weight: 500;
}

.ocp-store-result-list {
  display: grid;
  gap: 0;
}

.ocp-store-result-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--ocp-line);
  border-radius: 16px;
  transition: box-shadow .2s ease, transform .2s ease;
}

.ocp-store-result-card + .ocp-store-result-card {
  margin-top: -1px;
}

.ocp-store-result-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  z-index: 1;
}

.ocp-store-result-image img {
  width: 170px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  background: #eef2f7;
}

.ocp-store-result-body {
  min-width: 0;
}

.ocp-store-result-body h2 {
  margin: 4px 0 4px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.ocp-store-result-body h2 a {
  display: -webkit-box;
  overflow: hidden;
  color: #0f172a;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ocp-store-category,
.ocp-store-result-body .ocp-store-rating,
.ocp-store-result-body .ocp-store-address {
  margin: 0 0 5px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
}

.ocp-store-result-body .ocp-store-rating span {
  color: #f59e0b;
  font-size: 18px;
  vertical-align: -1px;
}

.ocp-store-result-body .ocp-store-address {
  max-width: 100%;
  overflow: hidden;
  color: #64748b;
  font-size: 14px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ocp-store-result-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0;
}

.ocp-store-result-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

.ocp-store-result-action {
  min-width: 118px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #cce8d4;
  border-radius: 10px;
  background: #f0fbf3;
  color: var(--ocp-green);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.ocp-store-result-action:hover {
  background: var(--ocp-green);
  color: #fff;
}

.ocp-store-result-action svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ocp-result-map-panel {
  position: sticky;
  top: 112px;
}

.ocp-result-map {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--ocp-line);
  border-radius: 16px;
  background-color: #eef4f8;
  background-image:
    linear-gradient(28deg, transparent 0 42%, rgba(79, 164, 220, .32) 43% 46%, transparent 47%),
    repeating-linear-gradient(0deg, rgba(203, 213, 225, .55) 0 1px, transparent 1px 52px),
    repeating-linear-gradient(90deg, rgba(203, 213, 225, .5) 0 1px, transparent 1px 58px);
}

.ocp-result-map .ocp-store-map-canvas {
  min-height: 600px;
  border-radius: 16px;
  background: transparent;
}

.ocp-result-map .leaflet-container {
  background-color: transparent;
}

@media (max-width: 1199px) {
  .ocp-store-search-layout {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .ocp-result-map-panel {
    grid-column: 1 / -1;
    position: static;
  }

  .ocp-result-map,
  .ocp-result-map .ocp-store-map-canvas {
    height: 460px;
    min-height: 460px;
  }
}

@media (max-width: 768px) {
  .ocp-store-search-page {
    padding-top: 18px;
  }

  .ocp-search-toolbar,
  .ocp-store-search-layout {
    grid-template-columns: 1fr;
  }

  .ocp-store-search-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px;
  }

  .ocp-store-search-banner .promo-art {
    display: none;
  }

  .ocp-store-search-banner a,
  .ocp-search-toolbar .btn {
    width: 100%;
  }

  .ocp-filter-panel {
    position: static;
  }

  .ocp-store-result-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .ocp-store-result-image img {
    width: 100%;
    height: 180px;
  }

  .ocp-store-result-action {
    width: 100%;
  }

  .ocp-result-map,
  .ocp-result-map .ocp-store-map-canvas {
    height: 340px;
    min-height: 340px;
  }
}

@media (max-width: 430px) {
  .ocp-store-search-head h1 {
    font-size: 26px;
  }

  .ocp-store-search-banner h2 {
    font-size: 22px;
  }
}

/* OCP account dashboard */
.ocp-account-page {
  min-height: 70vh;
  padding: 28px 0 56px;
  background:
    radial-gradient(circle at 12% 0%, rgba(7, 131, 58, .08), transparent 30%),
    #f6f8fb;
}

.ocp-account-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.ocp-account-hero,
.ocp-account-card,
.ocp-account-sidebar {
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.ocp-account-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border-radius: 20px;
}

.ocp-account-avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0aa24b, #1769d1);
  color: #fff;
  font-size: 30px;
  font-weight: 750;
  box-shadow: 0 16px 28px rgba(7, 131, 58, .22);
}

.ocp-account-summary {
  min-width: 0;
}

.ocp-account-breadcrumb {
  margin: 0 0 8px;
}

.ocp-account-summary h1 {
  margin: 0;
  color: #0f172a;
  font-size: 32px;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.ocp-account-summary p {
  margin: 8px 0 0;
  color: #64748b;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.ocp-account-badges,
.ocp-account-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ocp-account-badges {
  margin-top: 14px;
}

.ocp-account-badges span,
.ocp-account-quick span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: #eef8f0;
  color: #07833a;
  font-size: 13px;
  font-weight: 700;
}

.ocp-account-badges span {
  padding: 0 12px;
}

.ocp-account-badges .store-status {
  background: #eef7ff;
  color: #1769d1;
}

.ocp-account-quick {
  justify-content: flex-end;
  max-width: 250px;
}

.ocp-account-quick span {
  justify-content: space-between;
  width: 100%;
  padding: 0 12px;
  background: #f8fafc;
  color: #334155;
}

.ocp-account-quick b {
  color: #0f172a;
  font-size: 18px;
  font-weight: 750;
}

.ocp-account-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.ocp-account-sidebar {
  height: fit-content;
  padding: 14px;
  border-radius: 18px;
}

.ocp-account-nav {
  display: grid;
  gap: 6px;
}

.ocp-account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #334155;
  font-weight: 650;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.ocp-account-nav a span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #f1f5f9;
  color: #1769d1;
  font-size: 11px;
  font-weight: 750;
}

.ocp-account-nav a.active,
.ocp-account-nav a:hover {
  background: #eaf7ef;
  color: #07833a;
  transform: translateX(2px);
}

.ocp-account-nav a.active span,
.ocp-account-nav a:hover span {
  background: #07833a;
  color: #fff;
}

.ocp-account-main {
  min-width: 0;
}

.ocp-account-card {
  padding: 22px;
  border-radius: 20px;
}

.ocp-account-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ocp-account-card-head h2 {
  margin: 0;
  color: #0f172a;
  font-size: 24px;
  font-weight: 750;
  letter-spacing: -0.01em;
}

.ocp-account-card-head p {
  margin: 6px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.ocp-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ocp-profile-grid div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 3px;
  align-items: center;
  min-height: 78px;
  padding: 14px;
  border: 1px solid #eef2f7;
  border-radius: 14px;
  background: #fbfdff;
}

.ocp-profile-grid span {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef8f0;
  color: #07833a;
  font-size: 12px;
  font-weight: 750;
}

.ocp-profile-grid small {
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.ocp-profile-grid b {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
}

.ocp-account-actions,
.ocp-favorite-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.ocp-account-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ocp-action-card {
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 18px;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ocp-action-card:hover {
  transform: translateY(-2px);
  border-color: #cdebd5;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .08);
}

.ocp-action-card > span,
.ocp-empty-state > span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #eef8f0;
  color: #07833a;
  font-size: 13px;
  font-weight: 750;
}

.ocp-action-card strong {
  color: #0f172a;
  font-size: 17px;
  font-weight: 750;
}

.ocp-action-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.5;
}

.ocp-action-card em {
  align-self: end;
  color: #07833a;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
}

.ocp-favorite-tabs {
  display: inline-flex;
  gap: 8px;
  max-width: 100%;
  padding: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
  background: #f1f5f9;
  border-radius: 14px;
}

.ocp-favorite-tabs a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.ocp-favorite-tabs a.active {
  background: #fff;
  color: #07833a;
  box-shadow: 0 4px 14px rgba(15, 23, 42, .08);
}

.ocp-favorite-store-card,
.ocp-favorite-service-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
  transition: box-shadow .18s ease, transform .18s ease;
}

.ocp-favorite-store-card:hover,
.ocp-favorite-service-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.ocp-favorite-thumb img {
  width: 170px;
  height: 112px;
  object-fit: cover;
  border-radius: 12px;
  background: #eef2f7;
}

.ocp-favorite-body {
  min-width: 0;
}

.ocp-favorite-body h3 {
  margin: 6px 0 6px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.ocp-favorite-body h3 a {
  color: inherit;
}

.ocp-favorite-body p {
  margin: 0 0 5px;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
}

.ocp-favorite-actions {
  display: grid;
  gap: 8px;
  min-width: 130px;
}

.ocp-favorite-actions form {
  margin: 0;
}

.ocp-favorite-actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 13px;
}

.ocp-empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 44px 24px;
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  background: #fbfdff;
  text-align: center;
}

.ocp-empty-state h3 {
  margin: 0;
  color: #0f172a;
  font-size: 22px;
  font-weight: 750;
}

.ocp-empty-state p {
  max-width: 560px;
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 900px) {
  .ocp-account-hero {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ocp-account-quick {
    grid-column: 1 / -1;
    max-width: none;
  }

  .ocp-account-layout {
    grid-template-columns: 1fr;
  }

  .ocp-account-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .ocp-account-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .ocp-account-nav a:hover,
  .ocp-account-nav a.active {
    transform: none;
  }

  .ocp-favorite-store-card,
  .ocp-favorite-service-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .ocp-favorite-actions {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ocp-favorite-thumb img {
    width: 150px;
  }
}

@media (max-width: 600px) {
  .ocp-account-page {
    padding: 18px 0 40px;
  }

  .ocp-account-container {
    width: min(100% - 20px, 1180px);
  }

  .ocp-account-hero,
  .ocp-account-card,
  .ocp-account-sidebar {
    border-radius: 16px;
  }

  .ocp-account-hero {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .ocp-account-avatar {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  .ocp-account-summary h1 {
    font-size: 27px;
  }

  .ocp-profile-grid,
  .ocp-account-actions {
    grid-template-columns: 1fr;
  }

  .ocp-account-card {
    padding: 16px;
  }

  .ocp-favorite-tabs {
    width: 100%;
  }

  .ocp-favorite-tabs a {
    flex: 1 0 auto;
    padding: 0 12px;
  }

  .ocp-favorite-store-card,
  .ocp-favorite-service-card {
    grid-template-columns: 1fr;
  }

  .ocp-favorite-thumb img {
    width: 100%;
    height: 178px;
  }
}

@media (max-width: 430px) {
  .ocp-account-card-head {
    display: block;
  }

  .ocp-favorite-actions {
    grid-template-columns: 1fr;
  }
}
