/* ========================================
   LAMP Footer Styles
   ======================================== */

.lamp-footer {
  background-color: var(--lamp-bg-deep, #050505);
  padding: 64px 24px 40px;
  border-top: 1px solid var(--lamp-border-subtle, #111);
}

.lamp-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* ---- Row 1: Shop Info + Map ---- */
.lamp-footer__cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--lamp-border-subtle, #111);
}

@media (min-width: 768px) {
  .lamp-footer__cta-row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

.lamp-footer__shop-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-family: var(--lamp-font-serif, serif);
}

.lamp-footer__info-label {
  font-size: 0.8rem;
  color: var(--lamp-text-muted, #888);
  margin-bottom: 4px;
  line-height: 1;
}

.lamp-footer__phone {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 20px;
  transition: color 300ms ease;
}

.lamp-footer__phone:hover {
  color: var(--lamp-gold, #C5A059);
}

/* Hours */
.lamp-footer__hours {
  margin-bottom: 20px;
  padding: 16px 20px;
  background-color: var(--lamp-bg-surface, #0F0F0F);
  border: 1px solid var(--lamp-border-subtle, #111);
  border-radius: 4px;
}

.lamp-footer__hours p {
  font-size: 0.8rem;
  color: var(--lamp-text-muted, #888);
  line-height: 1.8;
  margin-bottom: 4px;
  text-align: center;
}

.lamp-footer__hours p:last-child {
  margin-bottom: 0;
}

.lamp-footer__note {
  font-size: 0.75rem;
  color: var(--lamp-text-dim, #777);
}

/* Address */
.lamp-footer__address {
  font-size: 0.8rem;
  color: var(--lamp-text-muted, #888);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Google Map Link */
.lamp-footer__map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--lamp-gold, #C5A059);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  transition: opacity 300ms ease;
}

.lamp-footer__map-link svg {
  flex-shrink: 0;
}

.lamp-footer__map-link:hover {
  opacity: 0.7;
}

/* Credit Card Logos */
.lamp-footer__cards {
  margin-top: 8px;
}

.lamp-footer__cards img {
  max-width: 280px;
  height: auto;
  opacity: 0.7;
  transition: opacity 300ms ease;
}

.lamp-footer__cards img:hover {
  opacity: 1;
}

/* Map Column */
.lamp-footer__map-col {
  display: flex;
  flex-direction: column;
}

.lamp-footer__map-wrap {
  flex: 1;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid var(--lamp-border-subtle, #111);
  border-radius: 4px;
}

@media (min-width: 768px) {
  .lamp-footer__map-wrap {
    aspect-ratio: 1/1;
  }
}

.lamp-footer__map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) brightness(0.4) contrast(1.3);
}

/* ---- Row 2: Sister Stores ---- */
.lamp-footer__sisters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--lamp-border-subtle, #111);
}

@media (min-width: 768px) {
  .lamp-footer__sisters {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

.lamp-footer__sister-link {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  border: 1px solid var(--lamp-border-subtle, #111);
}

.lamp-footer__sister-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.35);
  transition: background-color 300ms ease;
  pointer-events: none;
  z-index: 1;
}

.lamp-footer__sister-link:hover::after {
  background-color: rgba(0, 0, 0, 0.1);
}

.lamp-footer__sister-link img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.3);
  transition: filter 300ms ease;
}

.lamp-footer__sister-link:hover img {
  filter: grayscale(0);
}

/* ---- Navigation ---- */
.lamp-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 32px;
}

.lamp-footer__nav-link {
  color: var(--lamp-text-muted, #888);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  transition: color 300ms ease;
}

.lamp-footer__nav-link:hover {
  color: var(--lamp-gold, #C5A059);
}

/* ---- Copyright ---- */
.lamp-footer__copyright {
  text-align: center;
  font-size: 9px;
  color: var(--lamp-text-dark, #666);
  font-family: var(--lamp-font-sans, sans-serif);
}

/* ========================================
   Mobile Sticky Footer Bar
   ======================================== */

.lamp-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  border-top: 1px solid var(--lamp-border, #222);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .lamp-sticky-footer {
    display: none;
  }
}

.lamp-sticky-footer__phone {
  flex: 1;
  background-color: var(--lamp-bg-surface, #0F0F0F);
  color: var(--lamp-text-muted, #888);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  transition: background-color 200ms ease;
}

.lamp-sticky-footer__phone:active {
  background-color: #000;
}

.lamp-sticky-footer__phone span {
  font-size: 9px;
  letter-spacing: 0.1em;
}

.lamp-sticky-footer__reservation {
  flex: 1.5;
  background-color: var(--lamp-gold, #C5A059);
  color: var(--lamp-bg-deep, #050505);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  transition: background-color 200ms ease;
}

.lamp-sticky-footer__reservation:active {
  background-color: var(--lamp-gold-hover, #b08d4a);
}

.lamp-sticky-footer__reservation span {
  font-size: 10px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* Add bottom padding to body for sticky footer on mobile */
@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }
}
