/* ========================================
   BeeBeauty — Footer
   ======================================== */

/* Футер завжди внизу сторінки */
html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#content,
.site-content {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.site-footer {
  background: #F7F3EF !important;
  padding: 0 !important;
}

.bee-footer {
  background: #F7F3EF;
  color: #2B211C;
  font-family: 'Inter', sans-serif;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  border-top: 3px solid #CDB79E;
}

.bee-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
  width: 100%;
  box-sizing: border-box;
  padding: 36px clamp(16px, 4vw, 60px) 32px;
}

/* ---- Лого ---- */
.bee-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 12px;
}

.bee-footer__logo img,
.bee-footer__logo .custom-logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  object-fit: contain;
}

.bee-footer__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: #2B211C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bee-footer__about {
  font-size: 12px;
  line-height: 1.7;
  color: #6B5F58;
  margin: 0;
  max-width: 280px;
}

/* ---- Заголовки колонок ---- */
.bee-footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #CDB79E;
  margin: 0 0 14px;
}

/* ---- Меню ---- */
.bee-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bee-footer__menu li a {
  font-size: 13px;
  color: #2B211C;
  text-decoration: none;
  transition: color 0.2s;
}

.bee-footer__menu li a:hover { color: #CDB79E; }

/* ---- Контакти ---- */
.bee-footer__contacts {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bee-footer__contacts li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: #2B211C;
  line-height: 1.4;
}

.bee-footer__contacts li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #CDB79E;
}

.bee-footer__contacts a {
  color: #2B211C;
  text-decoration: none;
  transition: color 0.2s;
}

.bee-footer__contacts a:hover { color: #CDB79E; }

/* ---- Месенджери ---- */
.bee-footer__messengers {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.bee-footer__msg {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.bee-footer__msg:hover { opacity: 0.8; }
.bee-footer__msg--viber    { background: transparent; }
.bee-footer__msg--telegram { background: transparent; }

/* ---- Платіжні системи ---- */
.bee-footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.bee-footer__pay-label {
  font-size: 10px;
  color: #6B5F58;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bee-footer__pay-img {
  height: 20px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
  opacity: 0.75;
  transition: opacity 0.2s;
}

.bee-footer__pay-img:hover { opacity: 1; }

/* ---- Нижній рядок ---- */
.bee-footer__bottom {
  border-top: 1px solid #E8E0D8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(16px, 4vw, 60px);
  background: #EDE8E1;
}

.bee-footer__bottom p {
  font-size: 11px;
  color: #6B5F58;
  margin: 0;
  letter-spacing: 0.03em;
}

.bee-footer__dev {
  font-size: 10px !important;
  color: #6B5F58 !important;
}

.bee-footer__dev a {
  color: #A89880;
  text-decoration: none;
  transition: color 0.2s;
}

.bee-footer__dev a:hover { color: #2B211C; }

/* ---- Адаптив ---- */
@media (max-width: 900px) {
  .bee-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .bee-footer__col:first-child {
    grid-column: 1 / -1;
  }
  .bee-footer__about {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .bee-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px 24px;
  }
  .bee-footer__bottom {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    padding: 12px 20px;
  }
}
