[data-flora-footer] {
  color: var(--color-text-strong);
  font-family: "Montserrat", Arial, sans-serif;
  background: var(--color-primary);
}

.flora-footer__container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}

.flora-footer__top {
  padding: 48px 0 32px;
  background: var(--color-dark);
  position: relative;
}

.flora-footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: start;
}

.flora-footer__logos-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 20px;
}

.flora-footer__logos-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flora-footer__logos-item img {
  max-height: 56px;
  width: auto;
  display: block;
}

.flora-footer__logos-item--brand img {
  max-height: 68px;
}

.flora-footer__logos-placeholder {
  color: var(--color-bg);
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 13px;
  opacity: 0.8;
}

.flora-footer__col--brand {
  align-self: center;
}

.flora-footer__title {
  color: var(--color-primary) !important;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 15px;
  margin: 0 0 12px;
  letter-spacing: 0.4px;
}

.flora-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.flora-footer__links a {
  color: var(--color-bg);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.flora-footer__links a:hover {
  color: var(--flora-footer-green);
}

.flora-footer__logo img {
  max-height: 60px;
  width: auto;
  display: block;
}

.flora-footer__logo--dark {
  display: none;
}

.flora-footer__logo-text {
  color: var(--color-bg);
  font-family: "Bebas Neue", "Montserrat", Arial, sans-serif;
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.flora-footer__seals {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.flora-footer__seal {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-bg);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.flora-footer__seal i {
  color: var(--color-bg);
}

.flora-footer__contact-bubble {
  position: absolute;
  right: 5px;
  top: 28px;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.flora-footer__bubble-text {
  background: transparent;
  color: var(--flora-footer-green);
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 10px;
  border: 2px solid var(--flora-footer-green);
  text-transform: uppercase;
  font-size: 12px;
}

.flora-footer__bubble-avatar {
  width: 110px;
  height: 110px;
  max-width: 40vw;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  font-size: 22px;
  border: 2px solid var(--flora-footer-green);
  border-radius: 8px;
  overflow: hidden;
}

.flora-footer__bubble-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.flora-footer__bar {
  background: var(--flora-footer-green);
  color: var(--flora-footer-dark);
  padding: 12px 0;
}

.flora-footer__bar .flora-footer__container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flora-footer__copyright {
  font-size: 13px;
  font-weight: 600;
}

.flora-footer__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.flora-footer__action {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: var(--flora-footer-dark);
  color: var(--flora-footer-green);
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flora-footer__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

@media (max-width: 900px) {
  .flora-footer__contact-bubble {
    position: relative;
    margin: 24px auto 0;
    justify-content: center;
    right: auto;
    top: auto;
    width: 100%;
    transform: translateY(0);
  }

  .flora-footer__columns {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .flora-footer__logos-row {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px;
  }

  .flora-footer__bubble-avatar {
    width: 96px;
    height: 96px;
    max-width: 36vw;
  }
}

@media (max-width: 640px) {
  .flora-footer__container {
    padding: 0 16px;
  }

  .flora-footer__top {
    padding: 36px 0 26px;
  }

  .flora-footer__columns {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .flora-footer__title {
    justify-self: center;
  }

  .flora-footer__links {
    align-items: center;
  }

  .flora-footer__logos-row {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .flora-footer__contact-bubble {
    justify-content: center;
    margin-top: 18px;
  }

  .flora-footer__bubble-text {
    font-size: 11px;
  }

  .flora-footer__bubble-avatar {
    width: 92px;
    height: 92px;
    max-width: 36vw;
  }

  .flora-footer__bar .flora-footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: center;
  }

  .flora-footer__actions {
    margin-left: 0;
    align-self: center;
  }

  .flora-footer__copyright {
    text-align: center;
  }
}
