/* ===== FOOTER STYLES ===== */
.footer {
  background: #333;
  color: #ddd;
  padding: 15px 20px;
  font-size: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  box-sizing: border-box;
}

/* Share row */
.footer .right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  order: 1;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-buttons span {
  font-weight: 500;
  color: white;
  margin-right: 8px;
}

.share-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f8f9fa;
  transition: all 0.3s ease;
  text-decoration: none;
}

.share-buttons a:hover {
  background: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.share-buttons a:hover svg {
  transform: scale(1.1);
}

.share-buttons svg {
  transition: transform 0.2s ease;
}

/* Legal links row */
.footer .left {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  order: 2;
}

.footer .left span,
.footer .left a {
  color: #ddd;
  text-decoration: none;
  white-space: nowrap;
}

.footer .left a:hover {
  text-decoration: underline;
}

/* Separators between legal links */
.footer .left::before {
  content: '';
}

.footer .left > *:not(:first-child)::before {
  content: '•';
  color: #666;
  margin-right: 12px;
  font-size: 0.7rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .footer {
    padding: 15px 10px;
    gap: 10px;
  }
  
  .footer .left {
    gap: 8px;
  }
  
  .footer .left > *:not(:first-child)::before {
    margin-right: 8px;
  }
  
  .share-buttons {
    gap: 8px;
  }
  
  .share-buttons a {
    width: 32px;
    height: 32px;
  }
}