#interactive-map {
  width: 100%;
  height: 100%;
  pointer-events: auto !important;
  touch-action: pan-x pan-y;
}

[id^=single-map-],
.single-location-map {
  width: 100% !important;
  min-height: 500px !important;
  pointer-events: auto !important;
  touch-action: none !important;
  position: relative !important;
  display: block !important;
  scroll-margin: 0 !important;
  scroll-padding: 0 !important;
  scroll-snap-align: none !important;
  scroll-behavior: auto !important;
}

[id^=single-map-] .mapboxgl-map,
.single-location-map .mapboxgl-map {
  min-height: inherit !important;
}

.map-controls {
  margin: 0;
  padding: 0;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  gap: 8px;
  width: auto !important;
  height: auto !important;
  max-width: fit-content;
}

.map-control-btn {
  background: #fecc20;
  border: 2px solid #fecc20;
  border-radius: 6px;
  padding: 10px 18px;
  margin-right: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: #00355b;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.map-control-btn:hover {
  background: #e5b81d;
  border-color: #e5b81d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-control-btn.active {
  background: #fecc20;
  border-color: #fecc20;
  color: #00355b;
}

.gm-style .gm-style-iw-c {
  padding: 0 !important;
  border-radius: 12px !important;
  overflow: visible !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

.gm-style .gm-style-iw-chr {
  display: none !important;
}

.gm-style .gm-style-iw-d {
  overflow: hidden !important;
  padding: 0 !important;
  max-height: none !important;
}

.gm-style .gm-style-iw-t::after {
  display: none !important;
}

.gm-style button[aria-label=Close] {
  width: 32px !important;
  height: 32px !important;
  top: 12px !important;
  right: 12px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
}

.gm-style button[aria-label=Close]:hover {
  background: rgba(0, 0, 0, 0.5) !important;
}

.gm-style button[aria-label=Close] img {
  filter: brightness(0) invert(1) !important;
}

.mapboxgl-popup {
  max-width: 240px !important;
  z-index: 99 !important;
  pointer-events: auto !important;
}

.mapboxgl-popup-content {
  padding: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
  border: none !important;
  overflow: hidden;
  background: transparent !important;
  pointer-events: auto !important;
}

.mapboxgl-popup-content a, .mapboxgl-popup-content button {
  pointer-events: auto !important;
  cursor: pointer !important;
}

.mapboxgl-popup-close-button {
  width: 25px !important;
  height: 25px !important;
  font-size: 18px !important;
  line-height: 22px !important;
  color: #fff !important;
  background: rgba(0, 0, 0, 0.3) !important;
  border-radius: 50% !important;
  right: 8px !important;
  top: 8px !important;
  padding: 0 !important;
  padding-bottom: 3px !important;
  margin: 0 !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.2s ease;
  z-index: 100;
  text-align: center !important;
  display: block !important;
  box-sizing: border-box !important;
}

.mapboxgl-popup-close-button:hover {
  background: rgba(0, 0, 0, 0.5) !important;
  transform: scale(1.05);
}

.mapboxgl-popup-close-button:active {
  transform: scale(0.95);
}

.mapboxgl-popup-tip {
  border-top-color: #00355b !important;
  border-bottom-color: #00355b !important;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  border-bottom-color: #00355b !important;
  border-top-color: transparent !important;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  border-top-color: #00355b !important;
  border-bottom-color: transparent !important;
}

.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  border-right-color: #00355b !important;
}

.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  border-left-color: #00355b !important;
}

.map-info-window {
  max-width: 240px;
  padding: 0;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #00355b;
  pointer-events: auto !important;
}

.map-info-window a, .map-info-window button {
  pointer-events: auto !important;
  cursor: pointer !important;
}

.map-info-window .info-window-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  background: #f5f5f5;
}

.map-info-window .info-window-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.map-info-window .info-window-content {
  padding: 15px;
  position: relative;
}

.map-info-window .info-window-title {
  margin: 0 0 10px 0;
  color: #fff;
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.3;
  padding-right: 30px;
}

.map-info-window .info-window-address {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  line-height: 1.4;
}

.map-info-window .info-window-address svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #fecc20;
  width: 14px;
  height: 14px;
}

.map-info-window .info-window-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.map-info-window .info-window-description p {
  margin: 0 0 8px 0;
}

.map-info-window .info-window-description p:last-child {
  margin-bottom: 0;
}

.back-btn {
  background: #fecc20;
  color: #00355b;
  border: 2px solid #fecc20;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  margin: 0 15px 15px 15px;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  width: calc(100% - 30px);
  text-align: center;
}

.back-btn:hover {
  background: #fecc20;
  color: #00355b;
  border-color: #fecc20;
  transform: translateY(-1px);
}

.back-btn:active {
  transform: translateY(0);
}

#map-layout-container {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 600px;
  width: 100%;
}

#map-sidebar {
  width: 300px;
  background: #f9f9f9;
  border-right: 1px solid #ddd;
  overflow-y: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

#map-sidebar .sidebar-header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 15px 20px;
}

#map-sidebar h3 {
  margin: 0 0 12px 0;
  font-size: 18px;
  color: #00355b;
  font-weight: 700;
}

#map-sidebar .sidebar-controls {
  margin-bottom: 12px;
}

#map-sidebar .find-nearest-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #fecc20;
  color: #00355b;
  border: 2px solid #fecc20;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s ease;
  width: 100%;
  justify-content: center;
}

#map-sidebar .find-nearest-btn svg {
  flex-shrink: 0;
}

#map-sidebar .find-nearest-btn:hover:not(:disabled) {
  background: #00355b;
  color: #fff;
  border-color: #00355b;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 53, 91, 0.2);
}

#map-sidebar .find-nearest-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

#map-sidebar .find-nearest-btn .spinner {
  animation: spin 1s linear infinite;
}

#map-sidebar .sidebar-search {
  position: relative;
}

#map-sidebar .sidebar-search input {
  width: 100%;
  padding: 10px 36px 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.2s ease;
}

#map-sidebar .sidebar-search input:focus {
  outline: none;
  border-color: #fecc20;
  box-shadow: 0 0 0 3px rgba(254, 204, 32, 0.1);
}

#map-sidebar .sidebar-search input::placeholder {
  color: #999;
}

#map-sidebar .sidebar-search .search-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  pointer-events: none;
}

#map-sidebar .sidebar-locations-list {
  flex: 1;
  overflow-y: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes slideDown {
  from {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translate(-50%, 0);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -100%);
    opacity: 0;
  }
}

.map-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.3s ease;
}

.map-loading-spinner {
  text-align: center;
}

.map-loading-spinner p {
  margin-top: 15px;
  color: #00355b;
  font-size: 16px;
  font-weight: 600;
}

.map-error-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.map-error-content {
  text-align: center;
  max-width: 400px;
}

.map-error-content svg {
  margin-bottom: 20px;
  opacity: 0.8;
}

.map-error-content h3 {
  color: #00355b;
  font-size: 24px;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.map-error-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.map-error-content .retry-button {
  background: #fecc20;
  color: #00355b;
  border: 2px solid #fecc20;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.map-error-content .retry-button:hover {
  background: #00355b;
  color: #fff;
  border-color: #00355b;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 53, 91, 0.2);
}

#interactive-map-container {
  flex: 1;
}

#interactive-map-container.with-sidebar {
  width: calc(100% - 300px);
}

#interactive-map-container.full-width {
  width: 100%;
}

.sidebar-location-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.sidebar-location-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #fecc20;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-location-item:hover, .sidebar-location-item.active {
  background-color: #fff8e1;
  transform: translateX(6px);
}

.sidebar-location-item:hover::before, .sidebar-location-item.active::before {
  transform: scaleY(1);
}

.sidebar-location-item .icon {
  margin-right: 15px;
  color: #fecc20;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.sidebar-location-item:hover .icon {
  transform: scale(1.1);
}

.sidebar-location-item .location-details {
  flex: 1;
}

.sidebar-location-item .title {
  font-weight: 600;
  color: #00355b;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 2px;
}

.sidebar-location-item .location-distance {
  font-size: 12px;
  color: #666;
  font-weight: 500;
}

.sidebar-location-item .location-store-count {
  font-size: 12px;
  color: #888;
  font-weight: 500;
  margin-top: 2px;
}

.sidebar-location-item .search-match-hint {
  font-size: 11px;
  color: #888;
  font-weight: 500;
  font-style: italic;
  margin-top: 3px;
  line-height: 1.3;
}

.single-location-map {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.info-window-actions {
  display: flex;
  gap: 8px;
  padding: 0 15px 15px 15px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
  padding-top: 12px;
}

.action-button {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 8px 6px !important;
  background: #FECC20 !important;
  border: none !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  color: #00355b !important;
  font-size: 10px !important;
  transition: none !important;
  width: 60px !important;
  height: auto !important;
  min-width: 60px !important;
  max-width: 60px !important;
  flex: none !important;
  flex-shrink: 0 !important;
  box-shadow: none !important;
  position: relative !important;
  gap: 4px !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 10 !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  outline: none !important;
}

.action-button:focus, .action-button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.action-button svg {
  color: #00355B !important;
  width: 20px !important;
  height: 20px !important;
  pointer-events: none !important;
  flex-shrink: 0 !important;
}

.action-button span {
  display: block !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  text-align: center !important;
  color: #00355B !important;
}

.action-button:hover {
  background: #FECC20 !important;
  text-decoration: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.action-button:hover svg {
  color: #00355B !important;
  transform: none !important;
}

.action-button:active {
  transform: none !important;
  background: #FECC20 !important;
}

.action-button svg {
  margin-bottom: 0;
  transition: transform 0.2s ease;
  position: relative;
  z-index: 1;
}

.action-button:hover svg {
  transform: scale(1.1);
}

.action-button span {
  font-size: 11px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.phone-button svg,
.email-button svg,
.directions-button svg {
  color: #fecc20;
}

.phone-button:hover svg,
.email-button:hover svg,
.directions-button:hover svg {
  color: #00355b;
}

.mobile-store-actions-split {
  display: flex !important;
  justify-content: space-between !important;
  gap: 8px !important;
}

.mobile-store-actions-split .mobile-store-btn {
  flex: 1 1 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
}

.mobile-store-actions-centered {
  display: flex !important;
  justify-content: center !important;
}

.mobile-store-actions-centered .mobile-store-btn {
  width: auto !important;
  min-width: 100px !important;
  max-width: 140px !important;
}

.book-job-button {
  padding: 8px 12px !important;
  white-space: normal !important;
}

.book-job-button span {
  white-space: normal !important;
  word-wrap: break-word !important;
}

.map-tap-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: opacity 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.map-tap-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.map-tap-overlay .map-tap-overlay-content {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  color: #00355b;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.map-tap-overlay .map-tap-overlay-content svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #00355b;
}

@media (max-width: 768px) and (min-width: 481px) {
  #map-layout-container {
    position: relative;
    overflow: hidden;
  }
  #interactive-map-container {
    width: 100% !important;
  }
  #interactive-map-container.with-sidebar {
    width: 100% !important;
  }
  #map-sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    z-index: 100;
    background: #fff;
    border-right: 1px solid #ddd;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  #map-sidebar.tablet-drawer-open {
    transform: translateX(0);
  }
  .tablet-drawer-toggle {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 36px;
    padding: 14px 0;
    background: #00355b;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    letter-spacing: 1px;
    transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .tablet-drawer-toggle svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transform: rotate(0deg);
  }
  .tablet-drawer-toggle:hover {
    background: #0a4a73;
  }
  .tablet-drawer-toggle.drawer-open {
    left: 300px;
  }
  .tablet-drawer-backdrop {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 98;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .tablet-drawer-backdrop.visible {
    display: block;
    opacity: 1;
  }
  .map-info-window {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  #map-layout-container {
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  #interactive-map-container {
    width: 100% !important;
    height: 100% !important;
    min-height: unset;
    flex: 1;
    position: relative;
  }
  #interactive-map-container.with-sidebar {
    width: 100% !important;
  }
  #map-sidebar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 55vh;
    z-index: 100;
    background: #fff;
    border-right: none;
    border-top: none;
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  #map-sidebar.mobile-sheet-open {
    transform: translateY(0);
  }
  #map-sidebar::before {
    content: "";
    display: block;
    width: 36px;
    height: 4px;
    background: #ccc;
    border-radius: 2px;
    margin: 10px auto 6px;
    flex-shrink: 0;
  }
  #map-sidebar .sidebar-header {
    padding: 8px 16px 12px;
    border-bottom: 1px solid #ddd;
    flex-shrink: 0;
  }
  #map-sidebar .sidebar-header h3 {
    display: none;
  }
  #map-sidebar .sidebar-controls {
    margin-bottom: 10px;
  }
  #map-sidebar .find-nearest-btn {
    padding: 12px 14px;
    font-size: 14px;
  }
  #map-sidebar .find-nearest-btn svg {
    width: 18px;
    height: 18px;
  }
  #map-sidebar .sidebar-search input {
    padding: 12px 36px 12px 12px;
    font-size: 16px;
  }
  #map-sidebar .sidebar-locations-list {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding-bottom: 8px;
  }
  .mobile-sheet-toggle {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #00355b;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.25s ease;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .mobile-sheet-toggle svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .mobile-sheet-toggle:active {
    transform: scale(0.97);
  }
  .mobile-sheet-toggle.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
  }
  .mobile-sheet-backdrop {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 98;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-sheet-backdrop.visible {
    display: block;
    opacity: 1;
  }
  .sidebar-location-item {
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .sidebar-location-item .icon {
    margin-right: 12px;
  }
  .sidebar-location-item .icon svg {
    width: 22px;
    height: 22px;
  }
  .sidebar-location-item .title {
    font-size: 15px;
  }
  .sidebar-location-item .location-distance {
    font-size: 13px;
  }
  .sidebar-location-item .location-store-count {
    font-size: 12px;
  }
  .sidebar-location-item:hover, .sidebar-location-item.active {
    transform: none;
  }
  .map-controls {
    margin: 8px;
  }
  .map-control-btn {
    padding: 10px 14px;
    font-size: 13px;
    touch-action: manipulation;
  }
  .map-info-window {
    max-width: calc(100vw - 40px);
  }
  .map-info-window .info-window-image {
    height: 120px;
  }
  .map-info-window .info-window-content {
    padding: 14px;
  }
  .map-info-window .info-window-title {
    font-size: 17px !important;
  }
  .map-info-window .info-window-address {
    font-size: 13px;
  }
  .map-info-window .info-window-description {
    font-size: 13px;
  }
  .info-window-actions {
    padding: 0 14px 14px 14px;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .action-button {
    min-width: 60px !important;
    max-width: none !important;
    width: auto !important;
    padding: 12px 8px !important;
    font-size: 11px;
    flex: 1 1 0 !important;
  }
  .action-button svg {
    width: 18px !important;
    height: 18px !important;
  }
  .action-button span {
    font-size: 10px !important;
  }
  .back-btn {
    margin: 0 14px 14px 14px;
    width: calc(100% - 28px);
    padding: 12px 16px;
    font-size: 14px;
  }
  .mapboxgl-popup {
    max-width: calc(100vw - 32px) !important;
  }
}

@media (max-width: 360px) {
  .action-button {
    min-width: 54px !important;
    padding: 10px 6px !important;
  }
  .action-button span {
    font-size: 9px !important;
  }
  .info-window-actions {
    gap: 4px;
  }
  .mobile-sheet-toggle {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 16px;
    font-size: 14px;
  }
}

.swiper-button-next {
  top: unset !important;
  bottom: -8% !important;
  right: 0 !important;
}

.swiper-button-prev {
  top: unset !important;
  bottom: -8% !important;
  left: unset !important;
  right: 6% !important;
}

.sub-service-card {
  padding: 15px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transform-origin: center;
  will-change: transform, box-shadow;
}

.sub-service-card:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 15px 30px rgba(0, 0, 0, 0.08);
}

.sub-service-card:hover .sub-service-btn {
  opacity: 1;
}

body .bde-tabs__tabslist--bar {
  flex-wrap: wrap !important;
  gap: 10px !important;
}

.bde-tabs__tabslist--pills .bde-tabs__tab {
  border: 1px solid #00355b;
}