.location-page-main {
  background: #F3F4F6;
}

.location-hero {
  background: #F3F4F6;
  padding: 40px 0 0;
}

.location-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.location-hero-img {
  border-radius: 8px;
  overflow: hidden;
}

.location-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-hero-info {
  background: #F3F4F6;
}

.location-hero-text {
  border-radius: 8px;
  overflow: hidden;
}

.location-hero-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-hero-map {
  background: #F3F4F6;
  min-height: 374px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.location-content {
  background: #F3F4F6;
  padding: 40px 0 80px;
}

.location-content-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.location-map {
  position: relative;
  min-height: 380px;
  border: 1px solid #E5E7EB;
  overflow: hidden;
  border-radius: 16px;
}

.map-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0,0,0,0.05);
  cursor: pointer;
}

.map-overlay span {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
}

.location-map .root_daum_roughmap_landing .wrap_map_details {
  display: none !important;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.location-info-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.location-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid #D1D5DB;
  font-size: 16px;
  font-weight: 500;
  color: #4B5563;
}

.location-info-item:last-child {
  border-bottom: 1px solid #D1D5DB;
}

.location-info-item strong {
  font-weight: 700;
  font-size: 17px;
  color: #0B0F1A;
  margin-right: 8px;
}

.location-info-icon {
  flex-shrink: 0;
  font-size: 22px;
}

.location-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #2D3A6D;
  border-radius: 50%;
}

.location-hours-card {
  background: #FFFDF7;
  padding: 16px 24px;
  color: #3B2415;
  border-radius: 16px;
  text-align: center;
  border: none;
  border: 4px solid #C9A96E;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.location-hours-card::before,
.location-hours-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.15), rgba(201,169,110,0.3), rgba(201,169,110,0.15), transparent);
  pointer-events: none;
}

.location-hours-card::before {
  left: -100%;
}

.location-hours-card::after {
  right: -100%;
}

.location-hours-card:hover::before {
  animation: shimmerLeft 1.2s ease forwards;
}

.location-hours-card:hover::after {
  animation: shimmerRight 1.2s ease forwards;
}

@keyframes shimmerLeft {
  0% { left: -100%; }
  50% { left: 20%; }
  100% { left: 20%; opacity: 0; }
}

@keyframes shimmerRight {
  0% { right: -100%; }
  50% { right: 20%; }
  100% { right: 20%; opacity: 0; }
}

.location-hours p {
  font-size: 16px;
  line-height: 1.8;
  color: #3B2415;
  font-weight: 500;
}

.location-hours strong {
  font-weight: 500;
  font-size: 16px;
  color: #3B2415;
}

.location-hours-note {
  margin-top: 16px;
  padding: 0;
  background: transparent;
  border: none;
  display: block;
  font-size: 16px;
  color: #3B2415;
  font-weight: 500;
}

.location-kakao-btn {
  display: block;
  margin-top: 20px;
  padding: 14px;
  background: #1a1f36;
  border: 1.5px solid #C9A96E;
  border-radius: 8px;
  color: #C9A96E;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}

.location-hours-card:hover .location-kakao-btn {
  animation: btnFlash 0.8s 0.5s ease both;
}

@keyframes btnFlash {
  0% { box-shadow: 0 0 0 0 rgba(201,169,110,0); }
  40% { box-shadow: 0 0 24px 8px rgba(201,169,110,0.6); background: #C9A96E; color: #ffffff; }
  100% { box-shadow: 0 0 0 0 rgba(201,169,110,0); background: #1a1f36; color: #C9A96E; }
}

.location-kakao-btn:hover {
  background: #C9A96E;
  color: #ffffff;
}

@media (max-width: 768px) {
  .map-overlay { display: block; }
  .location-hero { padding: 20px 0 0; }
  .location-hero-inner {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }
  .location-hero-right {
    gap: 30px;
  }
  .location-hero-map {
    min-height: 250px;
  }
  .location-content {
    padding: 30px 0 40px;
  }
  .location-content-inner {
    padding: 0 16px;
  }
  .location-hours p { font-size: 16px; }
}
