/* =============================================================================
   OGRA Pump Station Locator — Frontend CSS
   Version: 2.0.0
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Shared with main stylesheet */
  --ogfp-font: 'Inter', system-ui, sans-serif;
  --ogfp-red: #d32f2f;
  --ogfp-red-hover: #b71c1c;
  --ogfp-red-light: rgba(211, 47, 47, 0.09);
  --ogfp-text-black: #0f172a;
  --ogfp-text-mid: #64748b;
  --ogfp-text-muted: #94a3b8;
  --ogfp-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Locator-specific */
  --ogfp-panel-bg: #ffffff;
  --ogfp-panel-border: #e2e8f0;
  --ogfp-panel-w: 360px;
  --ogfp-map-bg: #1a1f2e;
  --ogfp-chip-bg: #f1f5f9;
  --ogfp-chip-active: #d32f2f;
  --ogfp-radius: 12px;
  --ogfp-card-radius: 14px;
  --ogfp-shadow-card: 0 2px 12px rgba(15, 23, 42, .10);
  --ogfp-shadow-pop: 0 8px 32px rgba(15, 23, 42, .18);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Locator Root
───────────────────────────────────────────────────────────────────────────── */
.ogfp-locator {
  display: flex;
  font-family: var(--ogfp-font);
  border-radius: var(--ogfp-radius);
  overflow: hidden;
  box-shadow: var(--ogfp-shadow-pop);
  height: 600px;
  /* Fixed height required for scroll to work */
  max-height: 90vh;
  /* Cap on small screens */
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Left Panel
───────────────────────────────────────────────────────────────────────────── */
.ogfp-locator__panel {
  width: var(--ogfp-panel-w);
  flex-shrink: 0;
  background: var(--ogfp-panel-bg);
  border-right: 1px solid var(--ogfp-panel-border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Panel fills the full height of the locator widget */
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* Panel header */
.ogfp-panel__header {
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--ogfp-panel-border);
  background: linear-gradient(135deg, #1a1f36, #2d3561);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Filter toggle — override WordPress theme button styles */
.ogfp-locator .ogfp-panel__filter-toggle,
.ogfp-locator .ogfp-panel__filter-toggle:visited,
.ogfp-locator .ogfp-panel__filter-toggle:hover,
.ogfp-locator .ogfp-panel__filter-toggle:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  border-radius: 8px !important;
  color: #fff !important;
  cursor: pointer;
  padding: 6px 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all .2s var(--ogfp-ease);
  flex-shrink: 0;
  line-height: 1;
  box-shadow: none !important;
  text-shadow: none !important;
  text-decoration: none !important;
  font-size: 0 !important;
  /* hide any text fallback */
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  outline: none;
}

.ogfp-locator .ogfp-panel__filter-toggle:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  transform: scale(1.05);
}

.ogfp-panel__filter-toggle svg {
  width: 18px !important;
  height: 18px !important;
  transition: transform .3s var(--ogfp-ease);
  display: block !important;
}

.ogfp-panel__filter-toggle[aria-expanded="false"] svg {
  transform: rotate(-90deg);
}

.ogfp-panel__scroll-area {
  flex: 1;
  overflow-y: scroll;
  /* scroll instead of auto - always shows scrollbar */
  display: flex;
  flex-direction: column;
  min-height: 0;
  /* Critical: allows flex child to shrink below content size */
}

.ogfp-panel__scroll-area::-webkit-scrollbar {
  width: 6px;
}

.ogfp-panel__scroll-area::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.ogfp-panel__scroll-area::-webkit-scrollbar-track {
  background: #f1f5f9;
}

.ogfp-panel__title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
}

.ogfp-panel__title svg {
  width: 20px;
  height: 20px;
  color: #d32f2f;
  flex-shrink: 0;
}

/* Search */
.ogfp-panel__search-wrap {
  position: relative;
  padding: 14px 16px 10px;
}

.ogfp-search-icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ogfp-text-muted);
  pointer-events: none;
}

.ogfp-search-input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border: 1.5px solid var(--ogfp-panel-border);
  border-radius: 10px;
  font-family: var(--ogfp-font);
  font-size: 13.5px;
  color: var(--ogfp-text-black);
  background: #f8fafc;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s var(--ogfp-ease), box-shadow .2s var(--ogfp-ease);
}

.ogfp-search-input:focus {
  border-color: var(--ogfp-red);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, .12);
  background: #fff;
}

/* Filter chips */
.ogfp-panel__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 4px 16px 12px;
  max-height: 500px;
  opacity: 1;

  transition: max-height .3s var(--ogfp-ease), opacity .3s var(--ogfp-ease), padding .3s var(--ogfp-ease);
}

.ogfp-panel__filters.is-collapsed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}

.ogfp-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: var(--ogfp-chip-bg);
  border: 1.5px solid transparent;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--ogfp-font);
  color: var(--ogfp-text-mid);
  cursor: pointer;
  transition: all .2s var(--ogfp-ease);
  white-space: nowrap;
}

.ogfp-filter-chip:hover {
  border-color: var(--ogfp-red);
  color: var(--ogfp-red);
  background: var(--ogfp-red-light);
}

.ogfp-filter-chip.is-active,
.ogfp-filter-chip[aria-pressed="true"] {
  background: var(--ogfp-red);
  color: #fff;
  border-color: var(--ogfp-red);
}

/* Locate Me Button */
.ogfp-locate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 16px 12px;
  padding: 9px 16px;
  background: transparent;
  border: 1.5px dashed var(--ogfp-panel-border);
  border-radius: 10px;
  font-family: var(--ogfp-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--ogfp-text-mid);
  cursor: pointer;
  transition: all .2s var(--ogfp-ease);
}

.ogfp-locate-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ogfp-locate-btn:hover {
  border-color: var(--ogfp-red);
  color: var(--ogfp-red);
  background: var(--ogfp-red-light);
}

/* Section label */
.ogfp-panel__section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ogfp-text-muted);
}

.ogfp-station-count {
  background: var(--ogfp-red-light);
  color: var(--ogfp-red);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 50px;
}

/* Station List */
.ogfp-station-list {
  /* Changed to auto-height as parent scrolls */
  padding: 0 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ogfp-station-list::-webkit-scrollbar {
  width: 4px;
}

.ogfp-station-list::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 2px;
}

/* Individual station card in list */
.ogfp-station-card {
  background: #fff;
  border: 1.5px solid var(--ogfp-panel-border);
  border-radius: var(--ogfp-card-radius);
  padding: 14px;
  cursor: pointer;
  transition: border-color .2s var(--ogfp-ease), box-shadow .2s var(--ogfp-ease), transform .2s var(--ogfp-ease);
  position: relative;
}

.ogfp-station-card:hover,
.ogfp-station-card.is-active {
  border-color: var(--ogfp-red);
  box-shadow: 0 4px 18px rgba(211, 47, 47, .12);
  transform: translateX(2px);
}

.ogfp-station-card__top {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.ogfp-station-card__img {
  width: 56px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f1f5f9;
}

.ogfp-station-card__img-placeholder {
  width: 56px;
  height: 42px;
  border-radius: 8px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.ogfp-station-card__info {
  flex: 1;
  min-width: 0;
}

.ogfp-station-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ogfp-text-black);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ogfp-station-card__address {
  font-size: 12px;
  color: var(--ogfp-text-mid);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Open/Closed chip on card */
.ogfp-open-chip {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 3px;
}

.ogfp-open-chip--open {
  background: #dcfce7;
  color: #166534;
}

.ogfp-open-chip--closed {
  background: #fee2e2;
  color: #991b1b;
}

/* Services on card */
.ogfp-station-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 10px;
}

.ogfp-svc-icon {
  font-size: 16px;
  cursor: default;
}

/* View Station button */
.ogfp-view-station-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px;
  background: var(--ogfp-red);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--ogfp-font);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s var(--ogfp-ease), transform .2s var(--ogfp-ease);
}

.ogfp-view-station-btn:hover {
  background: var(--ogfp-red-hover);
  transform: translateY(-1px);
}

.ogfp-view-station-btn svg {
  width: 13px;
  height: 13px;
  color: #fff;
}

/* Loading / empty states */
.ogfp-list-loading,
.ogfp-list-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  color: var(--ogfp-text-muted);
  font-size: 13px;
  text-align: center;
}

.ogfp-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #e2e8f0;
  border-top-color: var(--ogfp-red);
  border-radius: 50%;
  animation: ogfp-spin .7s linear infinite;
}

@keyframes ogfp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Map is offset to allow for the panel */
.ogfp-locator__map-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  background: var(--ogfp-map-bg);
  margin-left: var(--ogfp-panel-w);
  height: 100%;
}

.ogfp-map {
  width: 100%;
  height: 100%;
  min-height: 0;
  /* Parent is already height:100%, don't force own height */
  z-index: 0;
}

/* Leaflet popup overrides */
.leaflet-popup-content-wrapper {
  border-radius: 14px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .22) !important;
  padding: 0 !important;
  overflow: hidden;
  min-width: 220px;
}

.leaflet-popup-content {
  margin: 0 !important;
}

.leaflet-popup-tip {
  background: #fff !important;
}

.leaflet-popup-close-button {
  top: 10px !important;
  right: 12px !important;
  color: #64748b !important;
  font-size: 18px !important;
}

/* Custom popup card */
.ogfp-popup {
  font-family: var(--ogfp-font);
  -webkit-font-smoothing: antialiased;
  padding: 16px;
}

.ogfp-popup__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ogfp-text-black);
  margin-bottom: 4px;
}

.ogfp-popup__city {
  font-size: 12px;
  color: var(--ogfp-text-muted);
  margin-bottom: 12px;
}

.ogfp-popup__prices {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
}

.ogfp-popup__price {
  text-align: center;
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px 4px;
}

.ogfp-popup__price-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--ogfp-text-muted);
  display: block;
}

.ogfp-popup__price-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--ogfp-text-black);
  display: block;
}

.ogfp-popup__services {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.ogfp-popup__svc {
  font-size: 14px;
}

/* Custom red marker */
.ogfp-marker-icon {
  width: 32px !important;
  height: 40px !important;
  background: none !important;
  border: none !important;
}

.ogfp-marker-icon svg {
  width: 32px;
  height: 40px;
}

/* Cluster override */
.marker-cluster-small,
.marker-cluster-medium,
.marker-cluster-large {
  background-color: rgba(211, 47, 47, .2) !important;
}

.marker-cluster-small div,
.marker-cluster-medium div,
.marker-cluster-large div {
  background-color: rgba(211, 47, 47, .8) !important;
  color: #fff !important;
  font-family: var(--ogfp-font) !important;
  font-weight: 700 !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Single Station Page [pump_prices]
───────────────────────────────────────────────────────────────────────────── */
.ogfp-station-single__header {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.ogfp-station-single__image img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--ogfp-shadow-card);
}

.ogfp-station-single__meta {
  flex: 1;
  min-width: 200px;
}

.ogfp-station-single__address {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--ogfp-text-mid);
  margin: 4px 0 10px;
}

.ogfp-station-single__address svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.ogfp-status-chip {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

.ogfp-status-chip--open {
  background: #dcfce7;
  color: #166534;
}

.ogfp-status-chip--closed {
  background: #fee2e2;
  color: #991b1b;
}

/* Services section */
.ogfp-station-single__services {
  margin-top: 24px;
}

.ogfp-station-single__services h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ogfp-text-black);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.ogfp-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ogfp-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #f1f5f9;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ogfp-text-black);
}

/* Error */
.ogfp-error {
  color: var(--ogfp-red);
  padding: 12px 16px;
  background: #fff5f5;
  border-left: 3px solid var(--ogfp-red);
  border-radius: 6px;
  font-size: 14px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ogfp-locator {
    flex-direction: column;
    height: auto;
    min-height: 700px;
  }

  /* Switch panel from absolute back to relative flow for mobile */
  .ogfp-locator__panel {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-height: 380px;
    flex-shrink: 0;
  }

  .ogfp-locator__map-wrap {
    margin-left: 0;
    height: 380px;
    min-height: 360px;
    flex: 1;
  }

  .ogfp-map {
    min-height: 360px;
  }
}

@media (max-width: 580px) {
  :root {
    --ogfp-panel-w: 100%;
  }

  .ogfp-locator {
    min-height: 600px;
  }

  .ogfp-map {
    min-height: 300px;
  }

  .ogfp-popup__prices {
    grid-template-columns: 1fr 1fr;
  }

  .ogfp-station-single__image img {
    width: 100%;
    height: 180px;
  }
}

/* =============================================================================
   Station Profile Page — Premium Edition v2.2
   BEM namespace: .ogfp-sp
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Root overrides for the profile page ─────────────────────────────────── */
.ogfp-sp {
  --sp-font: 'Inter', system-ui, sans-serif;
}

.ogfp-sp * {
  box-sizing: border-box;
}

/* ── Page reset ──────────────────────────────────────────────────────────── */
.ogfp-sp {
  font-family: var(--sp-font);
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  background: #f8fafc;
  min-height: 100vh;
}

/* =============================================================================
   1. HERO
   ============================================================================= */
.ogfp-sp__hero {
  position: relative;
  height: 520px;
  overflow: hidden;
  background: #0f172a;
}

@media (max-width: 768px) {
  .ogfp-sp__hero {
    height: 360px;
  }
}

/* Slider */
.ogfp-sp__hero-swiper,
.ogfp-sp__hero-static,
.ogfp-sp__hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ogfp-sp__hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ogfp-sp__hero-static {
  background-size: cover;
  background-position: center;
}

.ogfp-sp__hero-fallback {
  background: linear-gradient(135deg, #0f172a 0%, #1d3461 100%);
}

/* Overlay */
.ogfp-sp__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.90) 0%,
      rgba(0, 0, 0, 0.45) 50%,
      rgba(0, 0, 0, 0.10) 100%);
  display: flex;
  align-items: flex-end;
  z-index: 10;
}

.ogfp-sp__hero-content {
  padding: 0 48px 44px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ogfp-sp__hero-content {
    padding: 0 20px 32px;
  }
}

.ogfp-sp__live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: ogfp-pulse 2s infinite;
}

@keyframes ogfp-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
  }
}

.ogfp-sp__hero-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.ogfp-sp__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.ogfp-sp__hero-meta span {
  color: rgba(255, 255, 255, 0.80);
  font-size: .88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Swiper custom arrows */
.ogfp-sp__hero-swiper .swiper-button-next,
.ogfp-sp__hero-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.35);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ogfp-sp__hero-swiper .swiper-button-next::after,
.ogfp-sp__hero-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}


/* =============================================================================
   2. BODY CONTAINER
   ============================================================================= */
.ogfp-sp__body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

@media (max-width: 768px) {
  .ogfp-sp__body {
    padding: 28px 16px 60px;
  }
}


/* =============================================================================
   3. FUEL PRICE CARDS
   ============================================================================= */
.ogfp-sp__prices {
  margin-bottom: 56px;
}

.ogfp-sp__prices-inner {}

.ogfp-sp__section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  border-left: 4px solid #d32f2f;
  padding-left: 20px;
}

.ogfp-sp__header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}

/* LIVE pill - Professional Dark Tone */
.ogfp-sp__live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e293b;
  border: 1px solid #334155;
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}

.ogfp-sp__section-header h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0f172a;
  margin: 0;
  letter-spacing: -.03em;
  line-height: 1;
}

.ogfp-sp__updated {
  font-size: .85rem;
  color: #64748b;
  font-weight: 600;
  font-style: italic;
  opacity: 0.8;
}

@media (max-width: 640px) {
  .ogfp-sp__header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.ogfp-sp__fuel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 700px) {
  .ogfp-sp__fuel-grid {
    grid-template-columns: 1fr;
  }
}

/* Individual fuel card */
.ogfp-sp__fuel-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  cursor: default;
  opacity: 0;
  transform: translateY(20px);
  transition: transform .4s var(--ogfp-ease), opacity .4s var(--ogfp-ease), box-shadow .3s;
}

.ogfp-sp__fuel-card.ogfp-sp--visible {
  opacity: 1;
  transform: translateY(0);
}

.ogfp-sp__fuel-card:nth-child(2) {
  transition-delay: .07s;
}

.ogfp-sp__fuel-card:nth-child(3) {
  transition-delay: .14s;
}

.ogfp-sp__fuel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.ogfp-sp__fuel-card-bg {
  position: absolute;
  inset: 0;
  background: var(--fc-bg);
  z-index: 0;
}

.ogfp-sp__fuel-card-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, .10) 0%, transparent 60%);
}

.ogfp-sp__fuel-card-body {
  position: relative;
  z-index: 1;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

.ogfp-sp__fuel-icon {
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 14px;
}

.ogfp-sp__fuel-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2px;
}

.ogfp-sp__fuel-unit {
  font-size: .70rem;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: 12px;
}

.ogfp-sp__fuel-price {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.ogfp-sp__fuel-currency {
  font-size: 1rem;
  font-weight: 600;
  opacity: .75;
}

.ogfp-sp__fuel-na {
  opacity: .4;
  font-style: italic;
}

.ogfp-sp__fuel-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid var(--fc-accent);
  color: var(--fc-accent);
  font-size: .72rem;
  font-weight: 700;
  border-radius: 20px;
  padding: 4px 12px;
  align-self: flex-start;
}


/* =============================================================================
   4. TWO-COLUMN GRID
   ============================================================================= */
.ogfp-sp__grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 52px;
}

@media (max-width: 900px) {
  .ogfp-sp__grid {
    grid-template-columns: 1fr;
  }
}


/* =============================================================================
   5. SIDEBAR WIDGETS
   ============================================================================= */
.ogfp-sp__sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ogfp-sp__widget {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 4px 16px rgba(0, 0, 0, .04);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .4s var(--ogfp-ease), transform .4s var(--ogfp-ease);
}

.ogfp-sp__widget.ogfp-sp--visible {
  opacity: 1;
  transform: translateX(0);
}

.ogfp-sp__widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f1f5f9;
}

.ogfp-sp__widget-icon {
  font-size: 1.1rem;
}

.ogfp-sp__widget-header h3 {
  font-size: .85rem;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}

/* Detail list */
.ogfp-sp__detail-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ogfp-sp__detail-list li {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  border-bottom: 1px solid #f8fafc;
}

.ogfp-sp__detail-list li:last-child {
  border-bottom: none;
}

.ogfp-sp__dl-key {
  font-size: .70rem;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 3px;
}

.ogfp-sp__dl-val {
  font-size: .88rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.4;
}

.ogfp-sp__dl-val--code {
  font-size: .78rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  background: #f1f5f9;
  padding: 2px 7px;
  border-radius: 6px;
  color: #475569;
  display: inline-block;
}

/* Google Maps button */
.ogfp-sp__gmaps-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d32f2f;
  color: #fff !important;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
  width: 100%;
}

.ogfp-sp__gmaps-btn:hover {
  background: #b71c1c;
  transform: translateY(-1px);
}

/* Services chips */
.ogfp-sp__services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ogfp-sp__service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: .85rem;
  font-weight: 500;
  color: #334155;
  transition: background .2s, border-color .2s;
}

.ogfp-sp__service-chip:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}


/* =============================================================================
   6. MAIN CONTENT — SECTIONS
   ============================================================================= */
.ogfp-sp__main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ogfp-sp__section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.ogfp-sp__section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #d32f2f;
  margin-bottom: 6px;
}

.ogfp-sp__section-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  letter-spacing: -.02em;
}

.ogfp-sp__prose {
  color: #475569;
  font-size: .95rem;
  line-height: 1.8;
}

.ogfp-sp__prose p {
  margin: 0 0 1em;
}

.ogfp-sp__prose p:last-child {
  margin-bottom: 0;
}

/* Map */
.ogfp-sp__map {
  width: 100%;
  height: 360px;
  border-radius: 12px;
  overflow: hidden;
  background: #e2e8f0;
  margin-bottom: 12px;
}

.ogfp-sp__map-caption {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: .82rem;
  color: #64748b;
}

.ogfp-sp__plus-code {
  font-family: monospace;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .78rem;
  color: #475569;
}

/* Gallery section */
.ogfp-sp__section--gallery {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.ogfp-sp__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
}

.ogfp-sp__gallery-item {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #e2e8f0;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .4s var(--ogfp-ease), transform .4s var(--ogfp-ease);
}

.ogfp-sp__gallery-item.ogfp-sp--visible {
  opacity: 1;
  transform: scale(1);
}

.ogfp-sp__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ogfp-ease);
}

.ogfp-sp__gallery-item:hover img {
  transform: scale(1.08);
}

.ogfp-sp__gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}

.ogfp-sp__gallery-item:hover .ogfp-sp__gallery-hover {
  opacity: 1;
}

.ogfp-sp__gallery-hover span {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, .25);
}

/* Mobile stacks */
@media (max-width: 600px) {
  .ogfp-sp__section {
    padding: 22px 18px;
  }

  .ogfp-sp__gallery {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* =============================================================================
   NEW SECTIONS — v2.3.0
   Services, Video Gallery, Complaints & Queries
   ============================================================================= */

/* Full-width section (no sidebar grid) */
.ogfp-sp__section--full {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s var(--ogfp-ease), transform .45s var(--ogfp-ease);
}

.ogfp-sp__section--full.ogfp-sp--visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   4. SERVICES AVAILABLE GRID
   ============================================================================= */
.ogfp-sp__services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
  gap: 10px;
}

.ogfp-sp__service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 24px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  opacity: 0;
  transform: scale(.93);
  transition: opacity .4s var(--ogfp-ease), transform .4s var(--ogfp-ease), box-shadow .25s;
}

.ogfp-sp__service-card.ogfp-sp--visible {
  opacity: 1;
  transform: scale(1);
}

.ogfp-sp__service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
  border-color: #d32f2f;
  transform: translateY(-4px) scale(1.02);
}

.ogfp-sp__service-card-icon {
  font-size: 2.4rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.ogfp-sp__service-card-name {
  font-size: .82rem;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -.01em;
}

/* =============================================================================
   6. VIDEO GALLERY
   ============================================================================= */
.ogfp-sp__video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.ogfp-sp__video-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .45s var(--ogfp-ease), transform .45s var(--ogfp-ease);
}

.ogfp-sp__video-item.ogfp-sp--visible {
  opacity: 1;
  transform: translateY(0);
}

/* 16:9 responsive iframe container */
.ogfp-sp__video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0f172a;
}

.ogfp-sp__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================================
   7. COMPLAINTS & QUERIES
   ============================================================================= */
.ogfp-sp__section--complaints {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0c2340 100%) !important;
  border: none !important;
  padding: 0 !important;
  overflow: hidden;
}

.ogfp-sp__complaints-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 500px;
}

@media (max-width: 860px) {
  .ogfp-sp__complaints-wrap {
    grid-template-columns: 1fr;
  }
}

/* Left panel */
.ogfp-sp__complaints-left {
  padding: 52px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(211, 47, 47, .18) 0%, transparent 100%);
  border-right: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width: 860px) {
  .ogfp-sp__complaints-left {
    padding: 36px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
}

.ogfp-sp__complaints-icon-wrap {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 4px;
}

.ogfp-sp__complaints-phone {
  margin-top: 4px;
}

.ogfp-sp__complaints-phone a {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff !important;
  text-decoration: none !important;
  letter-spacing: -.03em;
  transition: opacity .2s;
}

.ogfp-sp__complaints-phone a:hover {
  opacity: .8;
}

.ogfp-sp__complaints-sub {
  color: rgba(255, 255, 255, .60);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

/* Right panel — form */
.ogfp-sp__complaints-right {
  padding: 48px 40px;
  background: rgba(255, 255, 255, .03);
  backdrop-filter: blur(4px);
}

@media (max-width: 860px) {
  .ogfp-sp__complaints-right {
    padding: 32px 24px;
  }
}

.ogfp-sp__complaints-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
}

/* Form rows/groups */
.ogfp-sp__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (max-width: 560px) {
  .ogfp-sp__form-row {
    grid-template-columns: 1fr;
  }
}

.ogfp-sp__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ogfp-sp__form-group label {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .70);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.ogfp-sp__form-group .req {
  color: #f87171;
}

.ogfp-sp__form-group input,
.ogfp-sp__form-group select,
.ogfp-sp__form-group textarea {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  width: 100%;
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}

.ogfp-sp__form-group input::placeholder,
.ogfp-sp__form-group textarea::placeholder {
  color: rgba(255, 255, 255, .35);
}

.ogfp-sp__form-group input:focus,
.ogfp-sp__form-group select:focus,
.ogfp-sp__form-group textarea:focus {
  outline: none;
  border-color: #d32f2f;
  background: rgba(255, 255, 255, .10);
}

.ogfp-sp__form-group select option {
  background: #1e293b;
  color: #fff;
}

.ogfp-sp__form-submit-row {
  margin-top: 6px;
}

.ogfp-sp__form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  font-size: .95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  transition: background .2s, transform .15s;
}

.ogfp-sp__form-submit:hover {
  background: #b71c1c;
  transform: translateY(-2px);
}

.ogfp-sp__form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.ogfp-sp__form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
}

.ogfp-sp__form-message--ok {
  background: rgba(22, 163, 74, .2);
  color: #86efac;
  border: 1px solid rgba(22, 163, 74, .3);
}

.ogfp-sp__form-message--err {
  background: rgba(239, 68, 68, .2);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, .3);
}

/* =============================================================================
   Responsive adjustments for all new sections
   ============================================================================= */
@media (max-width: 600px) {
  .ogfp-sp__section--full {
    padding: 22px 16px;
  }

  .ogfp-sp__services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .ogfp-sp__service-card {
    padding: 16px 10px;
  }

  .ogfp-sp__service-card-icon {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .ogfp-sp__video-grid {
    grid-template-columns: 1fr;
  }

  .ogfp-sp__complaints-phone a {
    font-size: 1.4rem;
  }
}

/* End of ogfp-locator.css */