/* Responsive footer layout for Cool Press */
.footer-main {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  min-width: 0;
}

@media (max-width: 700px) {
  .footer-main {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
  }
  .footer-section {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (max-width: 703px) {
  .footer-main {
    padding: 0 4vw;
    gap: 1rem;
  }
  .footer-section {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center;
    /* margin-bottom: 1.2rem; */
  }
  .footer-section h4 {
    margin-top: 1.2rem;
    font-size: 1rem;
  }
  .footer-section ul {
    padding-left: 0;
  }
  .footer-section li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

/* Footer bottom row: single line, horizontally aligned */
.footer-bottom-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0 0 0;
  border-top: 1px solid #eee;
  font-size: 0.92rem;
  color: #6c757d;
}

.footer-bottom-row > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
}

.footer-social a {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  font-size: 0.92rem;
}

@media (max-width: 700px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    text-align: center;
    font-size: 1rem;
  }
  .footer-bottom-row > div {
    justify-content: center;
  }
  .footer-social a {
    margin: 0 0.3rem;
  }
}

@media (max-width: 480px) {
  .footer-bottom-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    text-align: center;
    font-size: 1rem;
    padding: 0.5rem 0 0 0;
  }
  .footer-bottom-row > div {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
    margin: 0 auto 0.5rem auto !important;
  }
  .footer-social a {
    margin: 0 0.2rem;
    font-size: 1.2rem;
  }
}
