/** Shopify CDN: Minification failed

Line 6:23 Unexpected "-"

**/
Store Location Section - Professional Split Design
.store-location-section {
  background: rgb(var(--color-background));
  border-top: 1px solid rgba(var(--color-foreground), 0.08);
  position: relative;
  overflow: hidden;
}

.store-location-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 500px;
  margin: 4rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(var(--color-foreground), 0.08),
              0 2px 8px rgba(0, 0, 0, 0.04),
              0 12px 24px rgba(0, 0, 0, 0.06);
  animation: fadeInUp 0.6s ease-out;
}

@media screen and (min-width: 990px) {
  .store-location-wrapper {
    grid-template-columns: 1fr 1.2fr;
    min-height: 600px;
  }
}

/* Store Info Container */
.store-info-container {
  background: rgb(var(--color-background));
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 750px) {
  .store-info-container {
    padding: 4rem 3rem;
  }
}

.store-info-card {
  width: 100%;
  max-width: 480px;
}

.store-info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(var(--color-foreground), 0.08);
}

.store-info-title {
  font-size: 2.4rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
  margin: 0;
  letter-spacing: -0.02em;
}

/* Status Indicator */
.store-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4CAF50;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}

.status-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #4CAF50;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Store Details */
.store-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.detail-item {
  display: flex;
  gap: 1.5rem;
  opacity: 0;
  animation: slideIn 0.5s ease-out forwards;
}

.detail-item:nth-child(1) { animation-delay: 0.1s; }
.detail-item:nth-child(2) { animation-delay: 0.2s; }
.detail-item:nth-child(3) { animation-delay: 0.3s; }
.detail-item:nth-child(4) { animation-delay: 0.4s; }

.detail-icon {
  flex-shrink: 0;
  color: rgba(var(--color-foreground), 0.5);
  transition: color 0.3s ease;
}

.detail-item:hover .detail-icon {
  color: rgb(var(--color-foreground));
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.detail-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(var(--color-foreground), 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.detail-value {
  font-size: 1.5rem;
  color: rgb(var(--color-foreground));
  line-height: 1.4;
}

.detail-link {
  color: rgb(var(--color-foreground));
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.detail-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: rgb(var(--color-foreground));
  transition: width 0.3s ease;
}

.detail-link:hover::after {
  width: 100%;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.text-subdued {
  color: rgba(var(--color-foreground), 0.5);
}

/* Map Container */
.store-map-container {
  position: relative;
  background: #f5f5f5;
  min-height: 400px;
}



.footer-newsletter-logo img {
  max-width: 160px;
  margin-bottom: 12px;
}

.footer-newsletter-subtext {
  font-size: 1.4rem;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-newsletter-form .field {
  display: flex;
  gap: 8px;
}


.footer-trust-points {
  list-style: none;
  padding: 0;
  margin: 12px 0 6px;
}

.footer-trust-points li {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.footer-microcopy {
  font-size: 1.1rem;
  opacity: 0.6;
}

@media screen and (min-width: 990px) {
  .store-map-container {
    min-height: 100%;
  }
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

@media screen and (min-width: 990px) {
  .map-wrapper {
    min-height: 600px;
  }
}

.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(10%);
  transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%);
}

.map-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.map-expand-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.map-expand-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Mobile Optimizations */
@media screen and (max-width: 749px) {
  .store-info-title {
    font-size: 2rem;
  }
  
  .store-info-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .detail-item {
    gap: 1rem;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .store-location-section {
    background: #1a1a1a;
  }
  
  .map-wrapper iframe {
    filter: grayscale(20%) invert(90%) contrast(90%);
  }
  
  .map-wrapper:hover iframe {
    filter: grayscale(0%) invert(90%) contrast(90%);
  }
}
