
.location-map-section {
  padding: 60px 0;
background: #ffffff;
}

.location-map-section .boxcar-title .text {
  color: #666;
  font-size: 15px;
  margin-top: 10px;
}

.location-list {
  margin-top: 30px;
  height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Scrollbar personalizada */
.location-list::-webkit-scrollbar {
  width: 6px;
}

.location-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.location-list::-webkit-scrollbar-thumb {
  background: #e62c27;
  border-radius: 10px;
}

.location-list::-webkit-scrollbar-thumb:hover {
  background: #c41f1a;
}

.location-block {
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInLocation 0.5s ease forwards;
  transition: all 0.3s ease;
    border: 1px solid #eee;
    border-radius: 8px;
}

.location-block:nth-child(1) {
  animation-delay: 0.1s;
}

.location-block:nth-child(2) {
  animation-delay: 0.15s;
}

.location-block:nth-child(3) {
  animation-delay: 0.2s;
}

.location-block:nth-child(4) {
  animation-delay: 0.25s;
}

.location-block:nth-child(5) {
  animation-delay: 0.3s;
}

.location-block:nth-child(6) {
  animation-delay: 0.35s;
}

.location-block:nth-child(n+7) {
  animation-delay: 0.4s;
}

@keyframes fadeInLocation {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.location-block .inner-box {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f9fbfc;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #e1e1e1;
}

.location-block .inner-box:hover {
  border: none;
  border-left: 3px solid transparent;
  border-left-color: #e62c27;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(230, 44, 39, 0.1);
}

.location-block .icon-box {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 44, 39, 0.1);
  border-radius: 6px;
  margin-right: 15px;
}

.location-block .content-box {
  flex: 1;
}

.location-block .title {
  font-size: 16px;
  font-weight: 700;
  color: #050b20;
  margin-bottom: 5px;
}

.location-block .address {
  font-size: 13px;
  color: #666;
  margin: 0 0 5px 0;
}

.location-block .phone-number {
  font-size: 13px;
  color: #666;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
}

.location-block .phone-number i {
  margin-right: 5px;
  font-size: 12px;
}

.location-block .direction-link {
  display: inline-flex;
  align-items: center;
  color: #e62c27;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.location-block .direction-link:hover {
  color: #c41f1a;
}

.location-block .direction-link i {
  margin-left: 5px;
  font-size: 11px;
  transition: margin-left 0.3s ease;
}

.location-block .direction-link:hover i {
  margin-left: 8px;
}


    .selected-location-header {
        border-left: 4px solid #e62c27;
        padding-left: 15px;
        margin-bottom: 25px;
    }
    #display-store-title {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        text-transform: uppercase;
    }
    .location-block:hover {
        background: #f9f9f9;
    }
    .location-block .inner-box {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }
    .location-block h6.title {
        font-size: 16px;
        margin-bottom: 5px;
        color: #222;
    }
    .location-block p {
        font-size: 13px;
        margin-bottom: 3px;
        color: #666;
    }
    #map-container {
        width: 100%;
        height: 600px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        position: sticky;
        top: 20px;
        margin-top: 98px;
    }
    .location-list::-webkit-scrollbar {
        width: 6px;
    }
    .location-list::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 10px;
    }