/* =========================================================
   BamzyStore Redesign — ChrisStores-style header, drawer,
   hero, sections & footer
   ========================================================= */
:root {
  --bz-accent: #2f6fed;
  --bz-accent-dark: #1d4fc4;
  --bz-ink: #0b1730;
  --bz-ink-soft: #16213f;
  --bz-muted: #64748b;
  --bz-line: #e7eaf3;
  --bz-radius: 16px;
}

body {
  background: #fff;
}

/* ------------------------- Header (floating pill) ------------------------- */
.header-wrap {
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 16px 0 0;
  background: transparent;
  pointer-events: none;
}

.header-wrap .container {
  pointer-events: auto;
}

.header {
  background: #fff;
  border-radius: 50px;
  border: 1px solid var(--bz-line);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: box-shadow 0.25s ease;
}

.header.fixed-header {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 10px 8px 22px;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.header__brand img {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.header__brand-name {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 18px;
  color: var(--bz-ink);
  line-height: 1;
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.header__nav .nav-link {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--bz-muted) !important;
  padding: 8px 2px !important;
  position: relative;
}

.header__nav .nav-item.active .nav-link,
.header__nav .nav-link:hover {
  color: var(--bz-ink) !important;
}

.header__nav .dropdown-menu {
  border: 1px solid var(--bz-line);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  padding: 8px;
  min-width: 220px;
  margin-top: 14px !important;
}

.header__nav .dropdown-item {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bz-ink-soft);
}

.header__nav .dropdown-item:hover {
  background: var(--bz-accent);
  color: #fff;
}

.header__search {
  display: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.header__wallet {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eef4ff;
  color: var(--bz-accent);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
  white-space: nowrap;
}

.header__icon-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--bz-line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bz-ink-soft);
  text-decoration: none;
  font-size: 15px;
}

.header__icon-btn:hover {
  border-color: var(--bz-accent);
  color: var(--bz-accent);
}

.btn-bz-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 50px;
  border: none;
  color: var(--bz-ink) !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  transition: all 0.2s ease;
}

.btn-bz-outline:hover {
  color: var(--bz-accent) !important;
}

.btn-bz-accent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 22px;
  border-radius: 50px;
  border: 1.5px solid var(--bz-accent);
  background: var(--bz-accent);
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-bz-accent:hover {
  background: var(--bz-accent-dark);
  border-color: var(--bz-accent-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

.btn-bz-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bz-accent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.btn-bz-link:hover {
  text-decoration: underline;
}

.header__hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--bz-accent);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

@media (max-width: 991px) {
  .header__nav,
  .header__actions .btn-bz-outline,
  .header__actions .btn-bz-accent,
  .header__actions .header__wallet,
  .header__actions .header__icon-btn {
    display: none !important;
  }
  .header__hamburger {
    display: flex;
  }
  .header__actions {
    margin-left: auto;
  }
  .header-wrap {
    padding-top: 12px;
  }
  .header__inner {
    padding: 6px 6px 6px 16px;
  }
}

/* ------------------------- Drawer ------------------------- */
.bz-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 48, 0.55);
  z-index: 1049;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.bz-drawer-overlay.show {
  opacity: 1;
  visibility: visible;
}

.bz-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 86vw;
  background: #fff;
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(15, 23, 42, 0.18);
}

.bz-drawer.show {
  transform: translateX(0);
}

.bz-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bz-line);
}

.bz-drawer__head img {
  height: 30px;
}

.bz-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: #f2f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--bz-ink-soft);
}

.bz-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px;
}

.bz-drawer__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px;
  border-bottom: 1px solid var(--bz-line);
  font-weight: 600;
  color: var(--bz-ink);
  text-decoration: none;
  font-size: 15px;
}

.bz-drawer__link:hover {
  color: var(--bz-accent);
}

.bz-drawer__sub {
  padding-left: 14px;
  display: none;
}

.bz-drawer__sub.show {
  display: block;
}

.bz-drawer__sub a {
  display: block;
  padding: 10px 2px;
  font-size: 14px;
  color: var(--bz-muted);
  text-decoration: none;
}

.bz-drawer__help {
  padding-top: 16px;
  margin-top: 6px;
}

.bz-drawer__help-label {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
  font-weight: 800;
  color: #9aa4b6;
  margin-bottom: 12px;
  display: block;
}

.bz-drawer__help a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 2px;
  color: var(--bz-ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.bz-drawer__foot {
  padding: 16px 20px 22px;
  border-top: 1px solid var(--bz-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bz-drawer__foot .header__wallet {
  justify-content: center;
}

.bz-drawer__foot .btn-bz-outline,
.bz-drawer__foot .btn-bz-accent {
  justify-content: center;
  width: 100%;
  border: 1.5px solid var(--bz-line);
}

.bz-drawer__foot .btn-bz-accent {
  border-color: var(--bz-accent);
}

body.bz-drawer-open {
  overflow: hidden;
}

/* ------------------------- Section shell ------------------------- */
.bz-section {
  padding: 80px 0;
}

.bz-section--muted {
  background: #f6f8fc;
}

.bz-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.bz-section__head.bz-section__head--split {
  text-align: left;
  max-width: none;
  margin: 0 0 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bz-section__eyebrow {
  display: inline-block;
  color: var(--bz-accent);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.bz-section__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bz-ink);
  margin-bottom: 10px;
  line-height: 1.25;
}

.bz-section__desc {
  color: var(--bz-muted);
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
}

.bz-section__link {
  color: var(--bz-accent);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

.bz-section__link:hover {
  text-decoration: underline;
}

/* ------------------------- Hero ------------------------- */
.bz-hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 60% at 50% 0%, #eaf1ff 0%, #ffffff 70%);
}

.bz-hero__wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}

.bz-hero__badge {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
}

.bz-hero__badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.bz-hero__title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--bz-ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}

.bz-hero__title span {
  color: var(--bz-accent);
  display: block;
}

.bz-hero__desc {
  font-size: 16px;
  color: var(--bz-muted);
  max-width: 540px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.bz-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.bz-hero__actions .btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.bz-hero__note {
  font-size: 13px;
  color: #9aa4b6;
  font-weight: 600;
}

.bz-hero__stage {
  position: relative;
  max-width: 980px;
  margin: 50px auto 0;
  height: 90px;
}

.bz-hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  min-width: 200px;
  animation: bzFloat 6s ease-in-out infinite;
}

.bz-hero__card-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--chip-color, var(--bz-accent)) 14%, #fff);
  color: var(--chip-color, var(--bz-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.bz-hero__card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bz-ink);
  line-height: 1.3;
  white-space: nowrap;
}

.bz-hero__card-sub {
  font-size: 11.5px;
  color: var(--bz-muted);
}

.bz-hero__card--1 { top: -30px; left: 2%; animation-delay: 0s; }
.bz-hero__card--2 { top: -50px; right: 2%; animation-delay: .5s; }
.bz-hero__card--3 { bottom: -20px; left: 14%; animation-delay: 1s; }
.bz-hero__card--4 { bottom: -20px; right: 14%; animation-delay: 1.5s; }

@keyframes bzFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 991px) {
  .bz-hero { padding: 60px 0 40px; }
  .bz-hero__title { font-size: 32px; }
  .bz-hero__stage { display: none; }
}

/* ------------------------- Offer / value grid ------------------------- */
.features {
  padding: 0 !important;
}

.features .section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.features .section-heading__subtitle {
  display: inline-block;
  color: var(--bz-accent);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.features .section-heading__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bz-ink);
}

.features .section-heading__desc {
  color: var(--bz-muted);
  font-size: 15px;
}

.features .feature-item-wrapper {
  row-gap: 24px !important;
}

.features .feature-item {
  background: #fff;
  border: 1px solid var(--bz-line);
  border-radius: var(--bz-radius);
  padding: 30px 26px;
  height: 100%;
  text-align: left;
  transition: all 0.2s ease;
}

.features .feature-item:hover {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transform: translateY(-4px);
}

.features .feature-item__number {
  display: none;
}

.features .feature-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--bz-accent);
  font-size: 20px;
  margin-bottom: 18px;
}

.features .feature-item__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--bz-ink);
  margin-bottom: 8px;
}

.features .feature-item__desc {
  font-size: 14px;
  color: var(--bz-muted);
  margin: 0;
  line-height: 1.6;
}

/* ------------------------- Process steps ------------------------- */
.how-we-work {
  background: #f6f8fc !important;
}

.how-we-work .section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.how-we-work .section-heading__subtitle {
  display: inline-block;
  color: var(--bz-accent);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.how-we-work .section-heading__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bz-ink);
}

.how-we-work .section-heading__desc {
  color: var(--bz-muted);
  font-size: 15px;
}

.how-work-item-wrapper {
  position: relative;
}

.how-work-item {
  text-align: center;
  position: relative;
}

.how-work-item__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bz-accent);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(47, 111, 237, 0.3);
}

.how-work-item__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--bz-ink);
  margin-bottom: 8px;
}

.how-work-item__desc {
  font-size: 13.5px;
  color: var(--bz-muted);
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .how-work-item-wrapper::before {
    content: '';
    position: absolute;
    top: 27px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--bz-line) 0 8px, transparent 8px 16px);
    z-index: 1;
  }
}

/* ------------------------- Category cards ------------------------- */
.bz-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--bz-line);
  border-radius: var(--bz-radius);
  padding: 26px 14px;
  text-decoration: none;
  height: 100%;
  transition: all 0.2s ease;
}

.bz-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  border-color: transparent;
}

.bz-cat-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: color-mix(in srgb, var(--chip-color) 12%, #fff);
  color: var(--chip-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.bz-cat-card__name {
  font-weight: 700;
  color: var(--bz-ink);
  font-size: 15px;
}

.bz-cat-card__count {
  font-size: 12.5px;
  color: var(--bz-muted);
}

/* ------------------------- Product cards ------------------------- */
.bz-product-card {
  background: #fff;
  border: 1px solid var(--bz-line);
  border-radius: var(--bz-radius);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.2s ease;
}

.bz-product-card:hover {
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.bz-product-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bz-product-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--chip-color) 12%, #fff);
  color: var(--chip-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.bz-product-card__badge {
  background: #eef4ff;
  color: var(--bz-accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.bz-product-card__name {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  min-height: 40px;
}

.bz-product-card__name a {
  color: var(--bz-ink);
  text-decoration: none;
}

.bz-product-card__price {
  font-size: 18px;
  font-weight: 800;
  color: var(--bz-ink);
}

.bz-product-card button {
  border: 1.5px solid var(--bz-accent);
  cursor: pointer;
}

/* ------------------------- Testimonials ------------------------- */
.testimonials {
  background: #fff !important;
}

.testimonials .section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.testimonials .section-heading__subtitle {
  display: inline-block;
  color: var(--bz-accent);
  font-weight: 800;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.testimonials .section-heading__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--bz-ink);
}

.testimonial-item {
  background: #f8fafd;
  border: 1px solid var(--bz-line);
  border-radius: var(--bz-radius);
  padding: 30px;
  margin: 6px 12px;
  height: 100%;
}

.testimonial-item__desc {
  font-size: 14.5px;
  color: var(--bz-ink-soft);
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-item__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-item__author-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-item__author-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-item__author-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--bz-ink);
  margin: 0;
}

.testimonial-item__author-designation {
  font-size: 12.5px;
  color: var(--bz-muted);
}

.testimonails.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonails.owl-carousel .owl-dot span {
  background: var(--bz-line) !important;
}

.testimonails.owl-carousel .owl-dot.active span {
  background: var(--bz-accent) !important;
}

/* ------------------------- FAQ accordion ------------------------- */
.bz-faq {
  max-width: 760px;
  margin: 0 auto;
}

.bz-faq__item {
  border: 1px solid var(--bz-line);
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

.bz-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  background: #fff;
  font-weight: 700;
  font-size: 15px;
  color: var(--bz-ink);
}

.bz-faq__q .icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--bz-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.bz-faq__item.open .bz-faq__q .icon {
  transform: rotate(45deg);
}

.bz-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.bz-faq__a p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--bz-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ------------------------- Promo / CTA band ------------------------- */
.bz-promo {
  padding: 0 0 80px;
}

.bz-promo__inner {
  background: linear-gradient(120deg, var(--bz-accent) 0%, var(--bz-ink) 100%);
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bz-promo__inner::before,
.bz-promo__inner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.bz-promo__inner::before {
  width: 260px;
  height: 260px;
  top: -100px;
  left: -60px;
}

.bz-promo__inner::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -40px;
}

.bz-promo__tag {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 2;
}

.bz-promo__title {
  color: #fff;
  font-size: 32px;
  font-weight: 800;
  margin: 12px 0 10px;
  position: relative;
  z-index: 2;
}

.bz-promo__desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 30px;
  max-width: 480px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.bz-promo__inner .btn-bz-accent {
  background: #fff;
  border-color: #fff;
  color: var(--bz-accent) !important;
  position: relative;
  z-index: 2;
}

.bz-promo__inner .btn-bz-accent:hover {
  background: #f1f5ff;
  border-color: #f1f5ff;
}

@media (max-width: 575px) {
  .bz-promo__inner { padding: 42px 24px; border-radius: 20px; }
}

/* ------------------------- Stats / counter bar ------------------------- */
.counter {
  background: #fff !important;
  padding: 40px 0 !important;
  border-top: 1px solid var(--bz-line);
  border-bottom: 1px solid var(--bz-line);
}

.counter .counter-item__number {
  color: var(--bz-ink);
  font-weight: 800;
  font-size: 30px;
}

.counter .counter-item__number span {
  color: var(--bz-accent);
}

.counter .counter-item__text {
  color: var(--bz-muted);
  font-weight: 600;
  font-size: 14px;
}

/* ------------------------- Footer ------------------------- */
.footer-area {
  background: var(--bz-ink) !important;
}

.footer-item__logo img {
  height: 30px;
}

.footer-item__title {
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-item__desc {
  color: #93a0bd;
  font-size: 14px;
  line-height: 1.7;
}

.footer-menu,
.footer-contact-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu__item {
  margin-bottom: 13px;
}

.footer-menu__link {
  color: #93a0bd;
  font-size: 14px;
  text-decoration: none;
}

.footer-menu__link:hover {
  color: #fff;
}

.footer-contact-menu__item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  color: #93a0bd;
  font-size: 13.5px;
}

.footer-contact-menu__item-icon {
  color: var(--bz-accent);
  margin-top: 2px;
}

.social-list {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.social-list__link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
}

.social-list__link:hover {
  background: var(--bz-accent);
}

.footer-newsletter__form {
  display: flex;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px;
  margin-top: 4px;
}

.footer-newsletter__form input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  padding: 9px 14px;
  font-size: 13px;
}

.footer-newsletter__form input::placeholder {
  color: #7f8aa3;
}

.footer-newsletter__form input:focus {
  outline: none;
}

.footer-newsletter__form button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--bz-accent);
  color: #fff;
  flex-shrink: 0;
}

.footer-newsletter__msg {
  font-size: 12.5px;
  margin-top: 8px;
  min-height: 16px;
}

.footer-newsletter__msg.success { color: #4ade80; }
.footer-newsletter__msg.error { color: #f87171; }

.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.footer-payments span {
  background: rgba(255, 255, 255, 0.08);
  color: #dbe1ee;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
}

.bottom-footer {
  background: #060d1e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-footer__text {
  color: #7f8aa3;
  font-size: 13px;
}

.bottom-footer__menu {
  gap: 18px;
}

.bottom-footer__link {
  color: #7f8aa3;
  font-size: 13px;
  text-decoration: none;
}

.bottom-footer__link:hover {
  color: #fff;
}

@media (max-width: 575px) {
  .bottom-footer__menu {
    justify-content: flex-start !important;
  }
}
