/* ============================================================
   BUZNEI SHOPPING CENTER â€” Stylesheet
   Versiune: 1.0
   ÃŽncarcÄƒ acest fiÈ™ier din functions.php sau direct Ã®n temÄƒ
   ============================================================ */

/* â”€â”€ Google Fonts â”€â”€ */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@300;400;500;600&display=swap');

/* â”€â”€ CSS Variables â”€â”€ */
:root {
  --bsc-red:          #E53324;
  --bsc-red-dark:     #c42a1d;
  --bsc-red-light:    #fdecea;
  --bsc-dark:         #1a1c22;
  --bsc-dark2:        #23262f;
  --bsc-white:        #ffffff;
  --bsc-off-white:    #f7f7f5;
  --bsc-light-grey:   #f0f1f3;
  --bsc-mid-grey:     #e4e5e8;
  --bsc-text-dark:    #1a1c22;
  --bsc-text-body:    #4a4e5a;
  --bsc-text-muted:   #8a8f9e;
  --bsc-border-light: #e4e5e8;
  --bsc-border-dark:  rgba(255,255,255,0.08);
}

/* ============================================================
   STICKY NAV â€” [bsc_nav]
   ============================================================ */
.bsc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bsc-border-light);
  transition: all 0.3s ease;
}

.bsc-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.bsc-nav__logo img {
  height: 46px;
  width: auto;
  display: block;
}

.bsc-nav__links {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.bsc-nav__links li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bsc-text-body);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 3px;
  transition: all 0.2s;
  display: block;
}

.bsc-nav__links li a:hover,
.bsc-nav__links li a.active {
  color: var(--bsc-red);
  background: var(--bsc-red-light);
}

.bsc-nav__links li.bsc-nav__cta a {
  background: var(--bsc-red);
  color: var(--bsc-white) !important;
  padding: 8px 20px;
  border-radius: 3px;
}

.bsc-nav__links li.bsc-nav__cta a:hover {
  background: var(--bsc-red-dark);
}

/* offset body so content doesn't hide under nav */
body.has-bsc-nav {
  padding-top: 68px;
}

/* ============================================================
   HERO â€” [bsc_hero]
   ============================================================ */
.bsc-hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bsc-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bsc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(20,21,26,0.92) 0%, rgba(20,21,26,0.68) 52%, rgba(20,21,26,0.22) 100%),
    linear-gradient(to top,    rgba(20,21,26,0.55) 0%, transparent 55%);
}

.bsc-hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 0 150px;
  max-width: 1270px;
  margin: 0 auto;
  width: 100%;
}

.bsc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bsc-hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--bsc-red);
  border-radius: 50%;
  display: inline-block;
}

.bsc-hero__eyebrow-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.bsc-hero__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(60px, 8.5vw, 95px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--bsc-white);
  margin-bottom: 4px;
  margin-top: 0;
}

.bsc-hero__subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 0;
  line-height: 1;
}

.bsc-hero__subtitle strong {
  color: var(--bsc-red);
  font-weight: 800;
}

.bsc-hero__desc {
  max-width: 480px;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.58);
  margin: 28px 0 38px;
  font-weight: 400;
}

.bsc-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.bsc-hero__strip {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px;
}

.bsc-hero__strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 32px;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.bsc-hero__strip-item:last-child { border-right: none; }

.bsc-hero__strip-item i {
  color: var(--bsc-red);
  font-size: 27px;
  width: 32px;
  text-align: center;
  position: relative;
  bottom: 2px;
}

.bsc-hero__strip-item-text strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--bsc-white);
  line-height: 1.1;
}

.bsc-hero__strip-item-text small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.58);
  font-weight: 600;
}

/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.bsc-btn-red {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--bsc-red);
  color: var(--bsc-white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none !important;
  border: 2px solid var(--bsc-red);
  cursor: pointer;
  transition: all 0.2s;
}

.bsc-btn-red:hover {
  background: var(--bsc-red-dark);
  border-color: var(--bsc-red-dark);
  transform: translateY(-2px);
}

.bsc-btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--bsc-white) !important;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 26px;
  text-decoration: none !important;
  border: 2px solid rgba(255,255,255,0.32);
  cursor: pointer;
  transition: all 0.2s;
}

.bsc-btn-ghost-white:hover {
  border-color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ============================================================
   SHARED SECTION UTILITIES
   ============================================================ */
.bsc-section {
  padding: 96px 0;
}

.bsc-section--white    { background: var(--bsc-white); }
.bsc-section--offwhite { background: var(--bsc-off-white); }
.bsc-section--grey     { background: var(--bsc-light-grey); }
.bsc-section--dark     { background: var(--bsc-dark); }

.bsc-container {
  max-width: 1280px;
  margin: 0 auto;
  /* padding: 0 48px; */
}

.bsc-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bsc-red);
  font-weight: 700;
  display: block;
  margin-bottom: 0px;
}

.bsc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.bsc-title--dark  { color: var(--bsc-text-dark); }
.bsc-title--light { color: var(--bsc-white); }
.bsc-title span   { color: var(--bsc-red); }

.bsc-divider {
  width: 44px; height: 3px;
  background: var(--bsc-red);
  margin: 18px 0 26px;
}

/* ============================================================
   DESPRE / COMPLEX â€” [bsc_despre]
   ============================================================ */
.bsc-despre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bsc-despre__text p {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: var(--bsc-text-body);
  margin-bottom: 14px;
}

.bsc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 31px;
}

.bsc-stat {
  background: var(--bsc-off-white);
  border: 1px solid var(--bsc-border-light);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}

.bsc-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--bsc-red);
}

.bsc-stat__number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--bsc-text-dark);
  line-height: 1;
  margin-bottom: 6px;
}

.bsc-stat__number span { color: var(--bsc-red); }

.bsc-stat__label {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bsc-text-muted);
  font-weight: 600;
}

/* ============================================================
   MAGAZINE â€” [bsc_magazine]  +  [bsc_store]
   ============================================================ */
.bsc-building {
  margin-bottom: 56px;
}

.bsc-building:last-child { margin-bottom: 0; }

.bsc-building__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--bsc-border-light);
}

.bsc-building__badge {
  background: var(--bsc-red);
  color: var(--bsc-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  display: inline-block;
}

.bsc-building__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase;
  color: var(--bsc-text-dark);
}

.bsc-building__area {
  margin-left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--bsc-text-muted);
  line-height: 1;
}

.bsc-building__area span { color: var(--bsc-red); }

.bsc-stores {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 31px;
}

.bsc-store {
  background: var(--bsc-white);
  padding: 32px 26px;
  border: 1px solid var(--bsc-border-light);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.bsc-store::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--bsc-red);
  transition: width 0.3s;
}

.bsc-store:hover::after { width: 100%; }

.bsc-store:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.bsc-store__logo {
  width: 112px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
  object-position: left;
}

.bsc-store__logo-placeholder {
  width: 90px; height: 48px;
  background: var(--bsc-light-grey);
  border: 1px dashed var(--bsc-mid-grey);
  display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 10px; color: var(--bsc-text-muted);
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

.bsc-store__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  text-transform: uppercase;
  color: var(--bsc-text-dark);
  margin-bottom: 8px;
}

.bsc-store__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--bsc-text-body);
  line-height: 1.65;
}

.bsc-store__tag {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsc-red);
  font-weight: 700;
}

/* ============================================================
   SERVICII â€” [bsc_servicii]  +  [bsc_serviciu]
   ============================================================ */
.bsc-servicii {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bsc-serviciu {
  border: 1px solid var(--bsc-border-light);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  background: var(--bsc-white);
}

.bsc-serviciu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--bsc-red);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.bsc-serviciu:hover::before { transform: scaleX(1); }

.bsc-serviciu:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

.bsc-serviciu__icon {
  width: 72px; height: 72px;
  background: var(--bsc-red-light);
  border: 1px solid rgba(229,51,36,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  color: var(--bsc-red);
  transition: all 0.3s;
}

.bsc-serviciu:hover .bsc-serviciu__icon {
  background: var(--bsc-red);
  color: var(--bsc-white);
  border-color: var(--bsc-red);
}

.bsc-serviciu__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 800;
  text-transform: uppercase;
  color: var(--bsc-text-dark);
  margin-bottom: 12px;
}

.bsc-serviciu__desc {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--bsc-text-body);
  line-height: 1.75;
}

/* ============================================================
   LOCATIE â€” [bsc_locatie]
   ============================================================ */
.bsc-locatie {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 520px;
}

.bsc-locatie__info {
  background: var(--bsc-dark);
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.bsc-locatie__info::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--bsc-red), transparent);
}

.bsc-locatie__item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.bsc-locatie__item:last-child { margin-bottom: 0; }

.bsc-locatie__icon {
  width: 40px; height: 40px;
  background: rgba(229,51,36,0.12);
  border: 1px solid rgba(229,51,36,0.2);
  display: flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--bsc-red);
  font-size: 15px;
}

.bsc-locatie__label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 3px;
}

.bsc-locatie__value {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-weight: 300;
}

.bsc-locatie__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
  filter: grayscale(35%);
}

/* ============================================================
   CONTACT â€” [bsc_contact]
   ============================================================ */
.bsc-contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.bsc-contact__intro {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--bsc-text-body);
  line-height: 1.8;
  margin-bottom: 4px;
}

.bsc-contact__list {margin-top: 32px;}

.bsc-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--bsc-border-light);
}

.bsc-contact__item:first-child { border-top: 1px solid var(--bsc-border-light); }

.bsc-contact__item-icon {
  width: 60px;
  height: 60px;
  background: var(--bsc-red-light);
  border: 1px solid rgba(229,51,36,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bsc-red);
  font-size: 23px;
}

.bsc-contact__item-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bsc-text-muted);
  margin-bottom: 3px;
}

.bsc-contact__item-value,
.bsc-contact__item-value a {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  color: var(--bsc-text-dark);
  text-decoration: none;
  font-weight: 600;
}

.bsc-contact__item-value a:hover { color: var(--bsc-red); }

/* Form wrapper */
.bsc-contact__form-wrap {
  background: var(--bsc-white);
  border: 1px solid var(--bsc-border-light);
  padding: 44px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  position: relative;
}

.bsc-contact__form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--bsc-red);
}

.bsc-contact__form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bsc-text-dark);
  margin-bottom: 30px;
  margin-top: 0;
}

.bsc-contact__form-note {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: var(--bsc-text-muted);
  margin-bottom: 26px;
  line-height: 1.65;
}

/* Contact Form 7 overrides */
.bsc-contact__form-wrap .wpcf7-form p { margin-bottom: 16px; }

.bsc-contact__form-wrap .wpcf7-form label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bsc-text-muted);
  display: block;
  margin-bottom: 7px;
}

.bsc-contact__form-wrap .wpcf7-form input:not([type='checkbox']):not([type='submit']), .bsc-contact__form-wrap .wpcf7-form input[type="email"], .bsc-contact__form-wrap .wpcf7-form textarea {
  width: 100%;
  background: var(--bsc-off-white);
  border: 1px solid var(--bsc-border-light);
  color: var(--bsc-text-dark);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  box-shadow: none;
  max-height: 100px;
}

.bsc-contact__form-wrap .wpcf7-form input:focus,
.bsc-contact__form-wrap .wpcf7-form textarea:focus {
  border-color: var(--bsc-red);
}

.bsc-contact__form-wrap .wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}

.bsc-contact__form-wrap .wpcf7-form input[type="submit"] {
  width: 100%;
  background: var(--bsc-red);
  color: var(--bsc-white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 0;
}

.bsc-contact__form-wrap .wpcf7-form input[type="submit"]:hover {
  background: var(--bsc-red-dark);
}

/* ============================================================
   FOOTER â€” [bsc_footer]
   ============================================================ */
.bsc-footer {
  background: var(--bsc-dark);
  border-top: 3px solid var(--bsc-red);
  padding: 32px 0;
}

.bsc-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.bsc-footer__logo img {
  height: 38px;
  width: auto;
  display: block;
}

.bsc-footer__copy {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.bsc-footer__links {
  display: flex;
  gap: 20px;
}

.bsc-footer__links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}

.bsc-footer__links a:hover { color: var(--bsc-red); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .bsc-nav__links { display: none; } /* burger menu â€” implementezi tu */

  .bsc-hero__content {padding: 40px 24px 60px;}

  .bsc-container { padding: 0 24px; }

  .bsc-despre__grid,
  .bsc-contact__layout { grid-template-columns: 1fr; gap: 40px; }

  .bsc-stores { grid-template-columns: 1fr 1fr; }

  .bsc-servicii { grid-template-columns: 1fr; }

  .bsc-locatie { grid-template-columns: 1fr; }
  .bsc-locatie__info { padding: 48px 24px; }

  .bsc-footer__inner { flex-direction: column; text-align: center; }
  .bsc-footer__links { justify-content: center; }
}

@media (max-width: 600px) {
  .bsc-stores { grid-template-columns: 1fr; }
  .bsc-stats  { grid-template-columns: 1fr; }

  .bsc-hero__strip { flex-direction: column; gap: 16px; }
  .bsc-hero__strip-item { border-right: none; padding-right: 0; margin-right: 0; }

  .bsc-section { padding: 60px 0; }

  .bsc-contact__form-wrap { padding: 24px; }
}


button.wpcf7-form-control.wpcf7-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--bsc-red);
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    transition: background .2s;
}

button.wpcf7-form-control.wpcf7-submit:hover {
    background: var(--bsc-red-dark);
}

.wpcf7-acceptance input {
    position: relative;
    top: 2px;
    margin-right: 5px;
}

footer{background: var(--bsc-dark);border-top: 3px solid var(--bsc-red);padding: 15px 0;}
.footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;max-width: 1270px;margin: 0 auto;}
.footer-logo img{height: 68px;width:auto;display:block}
.footer-copy{font-size: 14px;color: #fff;}
.footer-links{display:flex;gap:20px}
.footer-links a{font-size: 14px;color: #fff;text-decoration:none;letter-spacing:.06em;text-transform:uppercase;font-family:'Barlow Condensed',sans-serif;font-weight:600;transition:color .2s}
.footer-links a:hover{color: var(--bsc-red-dark);}