/* ─── Footer ─── */
footer {
  grid-area: footer;
  background-color: var(--accent-light);
  padding: 60px 40px 20px;
}

/* pictures.html footer layout */
.footerContent {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 30px;
  align-items: start;
}

/* index.html footer layout */
.footer-index-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 30px;
  align-items: start;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.footer-social a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--accent-green);
}

.footer-social i {
  color: var(--accent-green);
  font-size: 1.1rem;
  width: 18px;
}

.footerAbout {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footerImg {
  width: 300px;
  height: 400px;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--bg-warm);
  box-shadow: 0 4px 12px var(--shadow-light);
}

.footerAbout p {
  font-size: 0.9rem;
  margin: 0;
  max-width: 100%;
  line-height: 1.6;
}

.footerLinks {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footerLinks a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footerLinks a:hover {
  text-decoration: underline;
}

.footerLinks i {
  color: var(--accent-green);
  font-size: 1rem;
}

.footerDivider {
  width: 1px;
  background-color: var(--bg-warm);
  opacity: 0.6;
  align-self: stretch;
}

.footerFormSection h3 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.3rem;
}

.footerFormSection>p {
  margin: 0 0 20px;
  font-size: 0.9rem;
  max-width: 100%;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.footerCopy {
  font-size: 0.8rem;
  color: var(--text-dark);
  opacity: 0.7;
  margin: 0;
}

.footerCopyLinks {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footerCopyLinks a {
  color: var(--text-dark);
  text-decoration: none;
}

.footerCopyLinks a:hover {
  text-decoration: underline;
}
.subscribe-btn {
  margin-top: 16px;
  padding: 10px 20px;
  background: transparent;
  border: 1.5px solid var(--accent-green);
  color: var(--accent-green);
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.2s;
}

.subscribe-btn:hover {
  background: var(--accent-green);
  color: var(--text-light);
}

.subscribe-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--shadow-dark);
  justify-content: center;
  align-items: center;
  z-index: 2000;
  padding: 20px;
}

.subscribe-modal-inner {
  background: var(--bg-warm);
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.subscribe-modal-inner h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-style: italic;
}

.subscribe-modal-inner p {
  margin: 0 0 24px;
  font-size: 0.95rem;
  opacity: 0.8;
  max-width: 100%;
}

.subscribe-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-dark);
  opacity: 0.5;
  transition: opacity 0.2s;
}

.subscribe-close:hover { opacity: 1; }
.subscribe-iframe {
  width: 100%;
  height: 160px;
  border: none;
  background: transparent;
  overflow: hidden;
}

.shipping-modal-inner {
  max-width: 520px;
  max-height: 80vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.shipping-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--accent-light);
}

.shipping-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.shipping-section h4 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text-dark);
}

.shipping-section p {
  margin: 0;
  font-size: 0.88rem;
  opacity: 0.85;
  line-height: 1.6;
}

