/* ==========================================================================
   MTS CIGARS CO. - STORE LOCATOR & LOCATIONS PAGE STYLES
   ========================================================================== */

.store-locator-container {
  min-height: 680px;
}

#storeMap {
  width: 100%;
  height: 680px;
  min-height: 500px;
  border-radius: 12px;
  border: 1px solid var(--mts-gold-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  z-index: 1;
}

.locations-sidebar-list {
  max-height: 680px;
  overflow-y: auto;
  padding-right: 6px;
}

/* Custom Luxury Scrollbar for Location List */
.locations-sidebar-list::-webkit-scrollbar {
  width: 6px;
}
.locations-sidebar-list::-webkit-scrollbar-track {
  background: rgba(197, 155, 39, 0.05);
  border-radius: 4px;
}
.locations-sidebar-list::-webkit-scrollbar-thumb {
  background: rgba(197, 155, 39, 0.35);
  border-radius: 4px;
}
.locations-sidebar-list::-webkit-scrollbar-thumb:hover {
  background: var(--mts-gold);
}

/* Store Card Styles */
.store-card {
  background: #ffffff;
  border: 1px solid #e8dfcf;
  border-radius: 10px;
  padding: 1.25rem;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}

.store-card:hover,
.store-card.active-store {
  border-color: var(--mts-gold) !important;
  background-color: #fdfaf3 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 155, 39, 0.12);
}

.store-card.active-store {
  border-left: 4px solid var(--mts-gold) !important;
}

/* Custom Gold Leaflet Marker */
.custom-gold-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #14100c 0%, #2a2016 100%);
  color: #c59b27;
  border: 2px solid #c59b27;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  width: 36px !important;
  height: 36px !important;
  margin-top: -36px;
  margin-left: -18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease;
}

.custom-gold-marker i {
  transform: rotate(45deg);
  font-size: 16px;
  color: #d4af37;
}

.custom-gold-marker:hover,
.custom-gold-marker.active-marker {
  background: #c59b27;
  border-color: #ffffff;
  box-shadow: 0 0 16px rgba(197, 155, 39, 0.8);
}

.custom-gold-marker:hover i,
.custom-gold-marker.active-marker i {
  color: #14100c;
}

/* Custom Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
  background: #ffffff !important;
  color: #1a1510 !important;
  border-radius: 12px !important;
  border: 1px solid var(--mts-gold) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  padding: 0 !important;
  overflow: hidden;
}

.leaflet-popup-content {
  margin: 0 !important;
  line-height: 1.5;
  width: 290px !important;
}

.leaflet-popup-tip {
  background: #ffffff !important;
  border-right: 1px solid var(--mts-gold);
  border-bottom: 1px solid var(--mts-gold);
}

.popup-header {
  background: #14100c;
  color: #ffffff;
  padding: 12px 16px;
  border-bottom: 2px solid var(--mts-gold);
}

.popup-body {
  padding: 14px 16px;
  background-color: #ffffff;
}

.popup-btn-directions {
  display: block;
  width: 100%;
  background: var(--mts-gold);
  color: #14100c !important;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  margin-top: 10px;
}

.popup-btn-directions:hover {
  background: var(--mts-gold-dark);
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  #storeMap {
    height: 420px;
    margin-bottom: 2rem;
  }
  .locations-sidebar-list {
    max-height: 480px;
  }
}
