/* ===== FOOTER SENIOR MODERNE ===== */
/* Externalized from footer.tpl for caching - 2026-02-08 */

.footer-senior {
  background: linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
  border-top: 4px solid #8b7355;
  margin-top: 80px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.footer-main {
  padding: 64px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #6d5a42;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-heading .icon {
  font-size: 1.5rem;
}

.about-column {
  grid-column: span 1;
}

.tagline {
  font-size: 1.1rem;
  color: #8b7355;
  font-weight: 600;
  margin-bottom: 16px;
}

.description {
  color: #333333;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #8b7355;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #8b7355;
  min-height: 52px;
}

.contact-btn:hover {
  background: #6d5a42;
  border-color: #6d5a42;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.3);
}

.contact-btn.secondary {
  background: #ffffff;
  color: #8b7355;
  border-color: #8b7355;
}

.contact-btn.secondary:hover {
  background: #f9f9f9;
  border-color: #6d5a42;
  color: #6d5a42;
}

.btn-icon {
  font-size: 1.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #333333;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
  background: transparent;
  border-left: 3px solid transparent;
}

.footer-links a:hover {
  background: rgba(139, 115, 85, 0.1);
  border-left-color: #8b7355;
  color: #8b7355;
  padding-left: 16px;
}

.flag {
  font-size: 1.2rem;
}

.shop-address {
  font-style: normal;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(139, 115, 85, 0.05);
  border-left: 3px solid #8b7355;
  border-radius: 6px;
}

.shop-address strong {
  color: #6d5a42;
  font-weight: 600;
}

.hours-box {
  background: #ffffff;
  border: 2px solid #cccccc;
  border-radius: 8px;
  padding: 16px;
  font-size: 0.9rem;
  line-height: 1.8;
}

.hours-title {
  font-weight: 600;
  color: #6d5a42;
  margin-bottom: 8px;
}

.hours-box .closed {
  color: #595959;
  font-style: italic;
}

/* Certifications */
.footer-certifications-section {
  background: #f9f9f9;
  padding: 32px 0;
  border-top: 1px solid #e0e0e0;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.certification-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon {
  color: #8b7355;
  font-size: 1.5rem;
}

.cert-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}

.cert-content p {
  font-size: 0.8rem;
  color: #666;
  margin: 0;
}

/* Copyright bar */
.footer-bottom {
  background: #8b7355;
  color: #ffffff;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}

.copyright strong {
  font-weight: 700;
  color: #ffffff;
}

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0;
}

.badge {
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 479px) {
  .footer-main { padding: 40px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-column { grid-column: span 1; }
  .contact-quick { flex-direction: column; }
  .contact-btn { width: 100%; justify-content: center; }
  .bottom-content { flex-direction: column; text-align: center; }
  .badges { justify-content: center; }
}

@media (min-width: 480px) and (max-width: 767px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-column { grid-column: span 2; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .about-column { grid-column: span 3; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; }
  .about-column { grid-column: span 1; }
}

@media print {
  .footer-senior { page-break-before: always; border-top: 2px solid #000000; }
  .contact-btn, .footer-bottom { display: none; }
}
