/*============================================================================================*/
/* Find Stores – professional listing UI (matches Nearby Stores reference) */
/*============================================================================================*/

.page_header {
  background: #fff;
  border-bottom: 1px solid #ededed;
  padding: 18px 0 16px;
  margin-bottom: 25px;
  z-index: 99;
}

.page_header .breadcrumbs ul {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  color: #999;
}

.page_header .breadcrumbs li + li::before {
  content: "›";
  margin-right: 6px;
  color: #bbb;
}

.page_header .breadcrumbs a {
  color: #999;
}

.page_header .result-title,
.page_header h1 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  color: #333;
  letter-spacing: -0.02em;
}

.search_bar_list {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.search_bar_list .form-control {
  border: 1px solid #e0e0e0;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  height: 45px;
  box-shadow: none;
}

.search_bar_list input[type="submit"] {
  background: var(--primary-color, #e53734);
  color: #fff;
  border: 0;
  border-radius: 0 5px 5px 0;
  padding: 0 22px;
  font-weight: 600;
  height: 45px;
  cursor: pointer;
}

.search_bar_list input[type="submit"]:hover {
  filter: brightness(0.95);
}

/* Toolbar: sort + filter buttons */
.listing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.listing-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.sort_select {
  position: relative;
  flex: 0 1 260px;
  min-width: 180px;
}

.sort_select select {
  width: 100%;
  height: 45px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 0 36px 0 14px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
  appearance: none;
  -webkit-appearance: none;
  color: #555;
  font-size: 14px;
  cursor: pointer;
}

.btn_filters {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 45px;
  min-width: 45px;
  padding: 0 14px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  color: #555;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  transition: border-color .2s, color .2s;
}

.btn_filters:hover,
.btn_filters.active {
  border-color: var(--primary-color, #e53734);
  color: var(--primary-color, #e53734);
}

.btn_filters i {
  font-size: 16px;
  line-height: 1;
}

.btn_filters span {
  display: none;
}

@media (min-width: 576px) {
  .btn_filters.open_filters span {
    display: inline;
  }
}

.listing_toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.listing_toolbar .sort_select {
  flex: 1 1 180px;
  margin-bottom: 0 !important;
}

.listing_toolbar .btn_map {
  flex: 0 0 auto;
}

/* Hide Filters button on desktop — sidebar is always visible */
.filters_mobile_only {
  display: none !important;
}

aside#sidebar_fixed > .filters_mobile_only {
  width: 100%;
  margin-bottom: 12px;
}

@media (max-width: 767px) {
  .filters_mobile_only {
    display: inline-flex !important;
  }

  aside#sidebar_fixed {
    order: 2;
  }

  .stores-listing-layout > .col-md-8,
  .stores-listing-layout > .col-lg-9 {
    order: 1;
  }
}

@media (min-width: 768px) {
  aside#sidebar_fixed {
    position: relative;
  }

  aside#sidebar_fixed .filter_col {
    position: sticky;
    top: 96px;
  }
}

/* Filter panel — desktop: left sidebar | mobile: off-canvas drawer */
.filter_col {
  position: relative;
  left: auto;
  top: auto;
  width: auto;
  max-width: none;
  height: auto;
  max-height: none;
  background: #fff;
  z-index: auto;
  overflow: visible;
  box-shadow: 0 10px 30px -18px rgba(11, 18, 32, 0.28);
  padding: 8px 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  margin-bottom: 25px;
  transition: none;
}

.filter_col .inner_bt {
  display: none;
  text-align: right;
  margin: 8px 0 4px;
}

.filter_col .inner_bt a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #1c2536;
  font-size: 18px;
  background: #f4f6f8;
  text-decoration: none !important;
}

.filter_col .inner_bt a:hover {
  color: var(--primary-color, #e53734);
}

/* Mobile: slide-out drawer */
@media (max-width: 767px) {
  .filter_col {
    position: fixed;
    top: 0;
    left: -360px;
    width: 340px;
    max-width: 92vw;
    height: 100vh;
    max-height: 100vh;
    z-index: 9999;
    overflow-y: auto;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.12);
    padding: 12px 18px 40px;
    margin: 0;
    border-radius: 0;
    border: 0;
    transition: left .3s ease;
  }

  .filter_col.show {
    left: 0;
  }

  .filter_col .inner_bt {
    display: block;
  }
}

.filter_type {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  margin: 0 !important;
  padding: 12px 0 !important;
}

.filter_type:last-of-type,
.filter_type.filter_type_open {
  border-bottom: 0;
}

.filter_type h4 {
  font-size: 14px;
  font-weight: 650;
  margin: 0 0 10px;
  line-height: 1.2;
}

/* Collapse chevron — Font Awesome (ElegantIcons font missing on server) */
.filter_type h4 a {
  color: #0b1220;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none !important;
  padding: 8px 10px;
  margin: 0;
  background: #f6f8fa;
  border-radius: 10px;
  line-height: 1.25;
  position: relative;
}

.filter_type h4 a:hover {
  color: var(--primary-color, #e53734);
}

.filter_type h4 a:after {
  content: "\f078" !important;
  font-family: 'Font Awesome 5 Free' !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  line-height: 1 !important;
  position: static !important;
  right: auto !important;
  top: auto !important;
  color: #5b677a;
  transform: none !important;
  transition: transform .25s ease, color .2s ease;
  flex: 0 0 auto;
}

.filter_type h4 a.opened {
  background: #f6f8fa;
}

.filter_type h4 a.opened:after {
  content: "\f077" !important;
  transform: none !important;
  color: var(--primary-color, #e53734);
}

.filter_type h4 a.closed:after {
  content: "\f078" !important;
  transform: none !important;
}

.filter_categories ul,
.filter_type ul,
.rating_filter ul,
.opening_time ul,
.location-selector {
  list-style: none;
  margin: 0;
  padding: 2px 0 0;
}

.filter_categories li,
.rating_filter li,
.opening_time li,
.location-selector li {
  margin: 0;
  padding: 0;
}

.filter_type .container_check,
.filter_col .container_check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
  margin-bottom: 0;
  min-height: 36px;
  line-height: 1.35;
  color: #1c2536;
  font-size: 14px;
  font-weight: 500;
}

.filter_type .container_check .checkmark,
.filter_col .container_check .checkmark {
  top: 50%;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  border-radius: 4px !important;
  border-color: #cfd6de;
}

.filter_type .container_check input:checked ~ .checkmark,
.filter_col .container_check input:checked ~ .checkmark {
  transform: translateY(-50%);
}

.filter_type .container_check .checkmark:after,
.filter_col .container_check .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 9px;
}

.filter_check_row {
  width: 100%;
}

.filter_check_label {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter_count {
  float: none !important;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 7px;
  margin: 0;
  border-radius: 999px;
  background: #eef1f5;
  color: #5b677a !important;
  font-size: 11px !important;
  font-weight: 700;
  line-height: 1;
}

.filter_search_location {
  position: relative;
}

.filter_search_location .filter_loc_icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a94a6;
  font-size: 14px;
  z-index: 2;
  pointer-events: none;
  line-height: 1;
}

.filter_search_location .form-control {
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  padding-left: 36px;
  font-size: 14px;
  box-shadow: none;
  background: #fff;
}

.filter_search_location .form-control:focus {
  border-color: var(--primary-color, #e53734);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(229, 55, 52, 0.12);
}

.rating_filter .rating_row {
  gap: 8px;
}

.rating_filter .rating_stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1;
}

.rating_filter .rating_stars .icon_star,
.rating_filter .rating_stars .fa-star {
  color: #f5b301;
  font-size: 13px;
  line-height: 1;
}

.range_distance .distance {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #5b677a;
  line-height: 1.35;
}

.range_distance .distance_label {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
}

.range_distance .selected_radius {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: #0f766e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.distance_slider_wrap {
  margin-bottom: 4px !important;
  padding: 0 2px;
}

.distance_slider_wrap .rangeslider,
.filter_col .rangeslider {
  margin: 8px 0 4px;
}

.distance_range {
  width: 100%;
  accent-color: var(--primary-color, #e53734);
}

.open_only_row .filter_check_label {
  white-space: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  line-height: 1.3;
}

.open_time_stamp {
  display: block;
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  color: #8a94a6;
}

.filter_actions_btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 4px;
}

.filter_actions_btns .btn_1,
.filter_actions_btns .btn_2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin: 0 !important;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none !important;
}

.filter_actions {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.filter_actions .btn_1 {
  flex: 1;
  text-align: center;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
}

.filter_actions .btn_1.outline {
  background: #fff;
  border: 1px solid #ddd;
  color: #555;
}

.filter_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s;
}

.filter_overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Store cards – modern professional strips */
.stores-list .strip,
.list-placeholder .strip,
.list-container .strip {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 30px -18px rgba(11, 18, 32, 0.28);
  transition: box-shadow .35s cubic-bezier(0.22, 1, 0.36, 1),
              transform .35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color .35s ease;
}

.stores-list .strip:hover,
.list-container .strip:hover {
  box-shadow: 0 22px 48px -24px rgba(11, 18, 32, 0.38);
  transform: translateY(-6px);
  border-color: rgba(15, 118, 110, 0.18);
}

.stores-list .strip figure,
.list-container .strip figure,
.list-placeholder .strip figure {
  position: relative;
  margin: 0;
  height: 240px;
  overflow: hidden;
  background: #eef1f5;
}

.stores-list .strip figure .cover,
.list-container .strip figure .cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stores-list .strip figure img,
.list-container .strip figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.stores-list .strip figure .ribbon.off,
.list-container .strip figure .ribbon.off {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: var(--primary-color, #e53734);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(229, 55, 52, 0.28);
}

.stores-list .strip figure a.strip_info,
.list-container .strip figure a.strip_info {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  padding: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 38%,
    rgba(11, 18, 32, 0.35) 68%,
    rgba(11, 18, 32, 0.82) 100%
  );
  text-decoration: none !important;
}

.stores-list .strip figure a.strip_info > small,
.list-container .strip figure a.strip_info > small {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 6px 12px 5px;
  border-radius: 999px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.stores-list .strip .item_title,
.list-container .strip .item_title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 28px 18px 16px;
  background: transparent;
}

.stores-list .strip .item_title h3,
.list-container .strip .item_title h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  line-height: 1.25;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.stores-list .strip .item_title small,
.list-container .strip .item_title small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
}

.stores-list .strip > ul,
.list-container .strip > ul {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #fbfcfd 0%, #fff 100%);
}

.stores-list .strip > ul .loc_open,
.list-container .strip > ul .loc_open {
  display: inline-block;
  border: none;
  color: #0f766e;
  background: rgba(15, 118, 110, 0.1);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stores-list .strip > ul .loc_closed,
.list-container .strip > ul .loc_closed {
  display: inline-block;
  border: none;
  color: #be123c;
  background: rgba(190, 18, 60, 0.1);
  font-size: 11px;
  font-weight: 700;
  padding: 7px 12px;
  border-radius: 999px;
  line-height: 1;
}

.stores-list .strip .score,
.list-container .strip .score {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.stores-list .strip .score span,
.list-container .strip .score span {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #1c2536;
  font-weight: 700;
  line-height: 1.15;
}

.stores-list .strip .score span em,
.list-container .strip .score span em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-weight: 500;
  color: #5b677a;
  font-size: 10px;
}

.stores-list .strip .score strong,
.list-container .strip .score strong {
  background: linear-gradient(145deg, #0f766e 0%, #0a5c56 100%);
  color: #fff;
  min-width: 44px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  gap: 3px;
  padding: 0 10px;
  box-shadow: 0 8px 18px -10px rgba(15, 118, 110, 0.7);
}

.stores-list .strip .score strong i,
.list-container .strip .score strong i {
  font-size: 11px;
  color: #fbbf24;
}

.map_collapse_box {
  margin-bottom: 20px;
}

#collapseMap {
  margin-bottom: 18px;
}

#collapseMap .map,
#map.map {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: #eef1f5;
  border: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 1;
}

#map.leaflet-container {
  font: inherit;
}

#map.map-empty {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ns-map-infobox {
  max-width: 240px;
  font-family: inherit;
}

.ns-map-infobox-link {
  display: block;
  color: inherit;
  text-decoration: none !important;
}

.ns-map-infobox-img {
  width: 100%;
  height: 110px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 8px;
  background-color: #eef1f5;
}

.ns-map-infobox-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ns-map-infobox-body small {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #5b677a;
}

.ns-map-infobox-body strong {
  font-size: 14px;
  color: #0b1220;
  line-height: 1.25;
}

.ns-map-infobox-body span {
  font-size: 12px;
  color: #5b677a;
  line-height: 1.3;
}

.ns-map-infobox-body em {
  font-style: normal;
  font-size: 12px;
  font-weight: 650;
  color: #0f766e;
}

.ns-map-infobox-body .icon_star {
  color: #f5b301;
  font-size: 11px;
}

.map_listing_placeholder {
  background: #f7f7f7;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 40px 20px;
  text-align: center;
  color: #888;
}

.map_listing_placeholder i {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
  color: var(--primary-color, #e53734);
}

.pagination-container {
  margin-top: 10px;
}

.pagination-container .pagination {
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pagination-container .pagination li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  color: #555;
  text-decoration: none;
  padding: 0 10px;
}

.pagination-container .pagination li.active a,
.pagination-container .pagination li a:hover {
  background: var(--primary-color, #e53734);
  border-color: var(--primary-color, #e53734);
  color: #fff;
}

.list-placeholder .strip figure {
  height: 240px;
  background: linear-gradient(90deg, #eef1f5, #f7f8fb, #eef1f5);
  background-size: 200% 100%;
}

.list-placeholder .strip ul li {
  height: 18px;
  background: #eef1f5;
  border-radius: 999px;
  width: 40%;
}

@media (max-width: 991px) {
  .page_header .result-title,
  .page_header h1 {
    font-size: 22px;
  }

  .sort_select {
    flex: 1 1 auto;
  }
}

/*============================================================================================*/
/* Store detail – professional polish */
/*============================================================================================*/

.detail_page_wrap .nav-tabs {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.detail_page_wrap .nav-tabs .nav-link {
  border: 0;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .04em;
  padding: 14px 18px;
  border-bottom: 2px solid transparent;
}

.detail_page_wrap .nav-tabs .nav-link.active {
  color: var(--primary-color, #e53734);
  border-bottom-color: var(--primary-color, #e53734);
  background: transparent;
}

.detail_page_wrap .tab-content > .tab-pane {
  display: none;
  padding: 28px 0 10px;
}

.detail_page_wrap .tab-content > .active {
  display: block;
}

.detail_page_wrap .tab-content .card {
  border: 0;
  background: transparent;
}

.detail_page_wrap .tab-content .card-header {
  display: none;
}

.detail_page_wrap .tab-content .card-body {
  padding: 0;
}

.detail_page_wrap .content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
}

.detail_page_wrap .contacts_info {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.detail_page_wrap .contacts_info li {
  margin: 0 0 10px;
  color: #666;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.detail_page_wrap .contacts_info li i {
  color: #999;
  margin-top: 3px;
}

.detail_page_wrap .contacts_info a {
  color: var(--primary-color, #e53734);
}

.detail_page_wrap .box_booking {
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 90px;
}

.detail_page_wrap .box_booking .head {
  background: #fafafa;
  border-bottom: 1px solid #ededed;
  padding: 16px 20px;
}

.detail_page_wrap .box_booking .head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.detail_page_wrap .box_booking .main {
  padding: 20px;
}

.detail_page_wrap .box_booking .btn_1.full-width {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.detail_page_wrap .reviews_summary {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.detail_page_wrap .reviews_summary .score_big {
  background: #ffc107;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-radius: 6px;
  padding: 10px 14px;
  line-height: 1;
}

.detail_page_wrap .contact_form_box {
  background: #fafafa;
  border: 1px solid #ededed;
  border-radius: 8px;
  padding: 22px;
  margin-top: 30px;
}

.detail_page_wrap .contact_form_box h3 {
  margin-top: 0;
}

.detail_page_wrap .contact_form_box .form-control {
  margin-bottom: 12px;
  height: 44px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
}

.detail_page_wrap .contact_form_box textarea.form-control {
  height: 110px;
}

.detail_page_wrap .map_box {
  margin-top: 28px;
}

.detail_page_wrap .map_box h3 {
  margin-bottom: 10px;
}

.detail_page_wrap .share_links {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  gap: 10px;
}

.detail_page_wrap .share_links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 8px 12px;
  color: #555;
  font-size: 13px;
  text-decoration: none !important;
}

.detail_page_wrap .share_links a:hover {
  border-color: var(--primary-color, #e53734);
  color: var(--primary-color, #e53734);
}
