/* Trendora Ecommerce — base styles */


:root {
  --bzn-ec-black: #000000;
  --bzn-ec-white: #ffffff;
  --bzn-ec-hero-bg: #F2F0F1;
  --bzn-ec-text: #111111;
  --bzn-ec-muted: #4b5563;
  --bzn-ec-active: #4a7fd7;
  --bzn-ec-border: #111111;
  --bzn-ec-promo-bg: #2E00E630;
  --bzn-ec-dark-bg: #0a0a0a;
  --bzn-ec-dark-surface: #141414;
  --bzn-ec-dark-muted: #9ca3af;
  --bzn-ec-login-navy: #1a2b4b;
  --bzn-ec-login-input-border: #d8dce3;
  --bzn-ec-login-placeholder: #9ca3af;
  --bzn-ec-login-subtitle: #333333;
  --bzn-ec-login-forgot: #6b7280;
  --bzn-ec-font-body: 'Instrument Sans', sans-serif;
  --bzn-ec-font-alt: 'Inter', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.bzn-ec-body {
  margin: 0;
  font-family: var(--bzn-ec-font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bzn-ec-text);
  background: var(--bzn-ec-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Announcement bar */
.bzn-ec-announce {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  padding: 10px 0;
}

.bzn-ec-announce__text {
  margin: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0px;
}

.bzn-ec-announce__link {
  color: var(--bzn-ec-white);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 4px;
  transition: opacity 0.2s ease;
}

.bzn-ec-announce__link:hover {
  opacity: 0.85;
  color: var(--bzn-ec-white);
}

.bzn-ec-announce__link i {
  font-size: 11px;
  margin-left: 2px;
}

/* Header */
.bzn-ec-header {
  background: var(--bzn-ec-white);
  border-bottom: 1px solid #ececec;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s ease;
}

.bzn-ec-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.bzn-ec-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.bzn-ec-header__logo {
  justify-self: start;
  font-family: var(--bzn-ec-font-alt);
  font-size: 28px;
  font-weight: 700;
  color: var(--bzn-ec-black);
  letter-spacing: -1px;
  flex-shrink: 0;
}

.bzn-ec-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  justify-self: center;
}

.bzn-ec-nav__link {
  font-size: 16px;
  font-weight: 500;
  color: var(--bzn-ec-text);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.bzn-ec-nav__link:hover,
.bzn-ec-nav__link.is-active {
  font-weight: 700;
  color: #1B2A52;
}

.bzn-ec-nav__dropdown {
  position: relative;
}

.bzn-ec-nav__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bzn-ec-nav__chev {
  font-size: 10px;
  transition: transform 0.2s ease;
}

.bzn-ec-nav__dropdown:hover .bzn-ec-nav__chev,
.bzn-ec-nav__dropdown:focus-within .bzn-ec-nav__chev {
  transform: rotate(180deg);
}

.bzn-ec-nav__sub {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border-radius: 10px;
  background: var(--bzn-ec-white);
  border: 1px solid #ececec;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 120;
}

.bzn-ec-nav__dropdown::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

.bzn-ec-nav__dropdown:hover .bzn-ec-nav__sub,
.bzn-ec-nav__dropdown:focus-within .bzn-ec-nav__sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.bzn-ec-nav__sub a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ec-text);
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-nav__sub a:hover {
  background: #f5f5f5;
  color: #1B2A52;
  font-weight: 600;
}

.bzn-ec-header__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  justify-self: end;
}

.bzn-ec-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--bzn-ec-black);
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bzn-ec-header__icon:hover {
  color: var(--bzn-ec-active);
}

.bzn-ec-header__cart {
  position: relative;
}

.bzn-ec-header__badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 50%;
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
}

.bzn-ec-header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}

.bzn-ec-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bzn-ec-black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.bzn-ec-header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bzn-ec-header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.bzn-ec-header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.bzn-ec-mobile {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.bzn-ec-mobile.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bzn-ec-mobile__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bzn-ec-mobile.is-open .bzn-ec-mobile__backdrop {
  opacity: 1;
}

.bzn-ec-mobile__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--bzn-ec-white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}

.bzn-ec-mobile.is-open .bzn-ec-mobile__panel {
  transform: translateX(0);
}

.bzn-ec-mobile__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.bzn-ec-mobile__close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.bzn-ec-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bzn-ec-mobile__link {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--bzn-ec-text);
  border-bottom: 1px solid #f0f0f0;
}

.bzn-ec-mobile__link.is-active,
.bzn-ec-mobile__link:hover {
  color: var(--bzn-ec-active);
}

.bzn-ec-mobile__group {
  border-bottom: 1px solid #f0f0f0;
}

.bzn-ec-mobile__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.bzn-ec-mobile__row .bzn-ec-mobile__link {
  flex: 1;
  border-bottom: none;
}

.bzn-ec-mobile__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--bzn-ec-text);
  font-size: 13px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.bzn-ec-mobile__toggle i {
  transition: transform 0.2s ease;
}

.bzn-ec-mobile__group.is-open .bzn-ec-mobile__toggle i {
  transform: rotate(180deg);
}

.bzn-ec-mobile__sub {
  display: none;
  padding: 0 0 10px 14px;
}

.bzn-ec-mobile__group.is-open .bzn-ec-mobile__sub {
  display: block;
}

.bzn-ec-mobile__sublink {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ec-muted);
  border-bottom: 1px solid #f5f5f5;
  transition: color 0.2s ease;
}

.bzn-ec-mobile__sublink:last-child {
  border-bottom: none;
}

.bzn-ec-mobile__sublink:hover {
  color: #1B2A52;
}

body.bzn-ec-menu-open {
  overflow: hidden;
}

/* Hero */
.bzn-ec-hero {
  background: var(--bzn-ec-hero-bg);
  padding: 10px 0 0;
  position: relative;
  z-index: 2;
}

.bzn-ec-hero__content {
  max-width: 720px;
  padding: 80px 0;
}

.bzn-ec-hero__eyebrow {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #151517;
  font-family: var(--bzn-ec-font-alt);
}

.bzn-ec-hero__title {
  margin: 0 0 22px;
  font-family: var(--bzn-ec-font-body);
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--bzn-ec-black);
}

.bzn-ec-hero__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 34px;
  max-width: 600px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: #151517;
}

.bzn-ec-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bzn-ec-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 22px;
  border: 2px solid #151517;
  border-radius: 999px;
  background: transparent;
  color: #151517;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-btn-outline:hover {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
}

.bzn-ec-btn-outline i {
  font-size: 14px;
}

.bzn-ec-hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bzn-ec-hero__img {
  width: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

/* Feature bar */
.bzn-ec-features {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  padding: 22px 0;
  overflow: hidden;
}

.bzn-ec-features .container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bzn-ec-features .container::-webkit-scrollbar {
  display: none;
}

.bzn-ec-features__track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: nowrap;
  min-width: max-content;
  padding: 2px 4px;
}

.bzn-ec-features__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.bzn-ec-features__icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* White homepage block */
.bzn-ec-home-light {
  background: var(--bzn-ec-white);
}

/* Promo banner */
.bzn-ec-promo {
  padding: 48px 0 0;
}

.bzn-ec-promo__card {
  background: var(--bzn-ec-promo-bg);
  border-radius: 18px;
  padding: 36px 40px;
  color: var(--bzn-ec-white);
}

.bzn-ec-promo__badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 4px;
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
}

.bzn-ec-promo__title {
  margin: 0 0 14px;
  max-width: 625px;
  font-family: var(--bzn-ec-font-alt);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-promo__text {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #151517;
}

.bzn-ec-promo__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.bzn-ec-btn-outline--light {
  max-width: max-content;
  border: 2px solid var(--bzn-ec-white);
  color: var(--bzn-ec-white);
}

.bzn-ec-btn-outline--light:hover {
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-black);
}

/* Featured collections */
.bzn-ec-collections {
  padding: 28px 0 0;
}

.bzn-ec-collection-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: #1a1a1a;
}

.bzn-ec-collection-card__img {
  width: 100%;
  height: 100%;
  min-height: 820px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.bzn-ec-collection-card:hover .bzn-ec-collection-card__img {
  transform: scale(1.03);
}

.bzn-ec-collection-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.72) 100%);
  color: var(--bzn-ec-white);
}

.bzn-ec-collection-card__eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.bzn-ec-collection-card__title {
  margin: 0 0 10px;
  font-family: var(--bzn-ec-font-alt);
  font-size: 56;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.bzn-ec-collection-card__text {
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}

/* Shared section head */
.bzn-ec-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
}

.bzn-ec-section-head__title {
  margin: 0;
  font-family: var(--bzn-ec-font-alt);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  color: #151517;
}

.bzn-ec-section-head__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #151517;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bzn-ec-section-head__link:hover {
  color: var(--bzn-ec-muted);
}

/* Shared slider */
.bzn-ec-slider__viewport {
  overflow: hidden;
}

.bzn-ec-slider__track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.bzn-ec-slider__slide {
  min-width: 0;
}

.bzn-ec-slider__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}

.bzn-ec-slider__page {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--bzn-ec-muted);
  letter-spacing: 1px;
}

.bzn-ec-slider__page [data-slider-current] {
  color: var(--bzn-ec-black);
}

.bzn-ec-slider__nav {
  display: flex;
  gap: 10px;
}

.bzn-ec-slider__arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #d1d5db;
  border-radius: 50%;
  color: var(--bzn-ec-black);
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bzn-ec-slider__arrow:hover:not(:disabled) {
  border-color: var(--bzn-ec-black);
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
}

.bzn-ec-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Shop by category */
.bzn-ec-categories {
  padding: 56px 0 0;
}

.bzn-ec-categories__slide.bzn-ec-slider__slide {
  flex: 0 0 calc((100% - 90px) / 6);
}

.bzn-ec-category-card {
  display: block;
  color: var(--bzn-ec-black);
}

.bzn-ec-category-card__media {
  overflow: hidden;
  background: #f0f0f0;
  aspect-ratio: 3 / 4.2;
}

.bzn-ec-category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bzn-ec-category-card:hover .bzn-ec-category-card__media img {
  transform: scale(1.05);
}

.bzn-ec-category-card__label {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  color: #151517;
}

/* Best sellers */
.bzn-ec-bestsellers {
  padding: 64px 0 0;
}

.bzn-ec-bestsellers__slide.bzn-ec-slider__slide {
  flex: 0 0 calc((100% - 54px) / 4);
}

.bzn-ec-product-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f3f3f3;
}

.bzn-ec-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
  min-height: 427px;
  max-height: 427px;
}

.bzn-ec-product-card:hover .bzn-ec-product-card__media img {
  transform: scale(1.04);
}

.bzn-ec-product-card__badge {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
  padding: 5px 12px;
  border-radius: 8px;
  background: #e8e4f3;
  color: #4a4868;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bzn-ec-product-card__badge.is-pick {
  background: #dce8f5;
  color: #3a5f8a;
}

.bzn-ec-product-card__body {
  padding-top: 16px;
}

.bzn-ec-product-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.bzn-ec-product-card__title a {
  color: #101014;
  transition: color 0.2s ease;
}

.bzn-ec-product-card__title a:hover {
  color: var(--bzn-ec-active);
}

.bzn-ec-product-card__meta {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 500;
  color: #151517;
}

.bzn-ec-product-card__price {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  color: #151517;
}

.bzn-ec-product-card__swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #90919c27;
}

.bzn-ec-product-card__swatches span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  flex-shrink: 0;
}

.bzn-ec-product-card__swatches span:first-child {
  border: 2px solid transparent;
  box-shadow: 0 0 0 2px var(--bzn-ec-white), 0 0 0 4px var(--bzn-ec-black);
}

.bzn-ec-product-card__swatches span.is-light:first-child {
  border-color: #e5e7eb;
}

/* New arrivals */
.bzn-ec-arrivals {
  padding: 64px 0 0;
}

.bzn-ec-arrivals__slide.bzn-ec-slider__slide {
  flex: 0 0 calc((100% - 54px) / 4);
}

.bzn-ec-arrival-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
  height: 100%;
  padding: 28px;
  background: #88888927;
  color: var(--bzn-ec-black);
}

.bzn-ec-arrival-intro__eyebrow {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-arrival-intro__title {
  margin: 0;
  max-width: 220px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  color: #101014;
  margin-bottom: auto;
  margin-top: 10px;
}

.bzn-ec-arrival-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 450px;
  background: #1a1a1a;
}

.bzn-ec-arrival-card__img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  max-height: 450px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bzn-ec-arrival-card:hover .bzn-ec-arrival-card__img {
  transform: scale(1.04);
}

.bzn-ec-arrival-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: #29282b70;
  color: var(--bzn-ec-white);
}

.bzn-ec-arrival-card__badge {
  align-self: flex-start;
  color: var(--bzn-ec-white);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.bzn-ec-arrival-card__title {
  margin: 12px 0 auto;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-ec-round-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--bzn-ec-black);
  background: #88888927;
  font-size: 20px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-arrival-card .bzn-ec-round-btn {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--bzn-ec-white);
  background: #88888933;
}

.bzn-ec-round-btn:hover {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  border-color: var(--bzn-ec-black);
}

.bzn-ec-arrival-card:hover .bzn-ec-round-btn {
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-black);
}

/* Lifestyle CTA */
.bzn-ec-cta-banner {
  padding: 64px 0 0;
}

.bzn-ec-cta-banner__card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.bzn-ec-cta-banner__img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.bzn-ec-cta-banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 920px;
  padding: 40px 48px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 0%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
  color: var(--bzn-ec-white);
}

.bzn-ec-cta-banner__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.bzn-ec-cta-banner__title {
  margin: 0 0 16px;
  font-family: var(--bzn-ec-font-alt);
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
  max-width: 560px;
}

.bzn-ec-cta-banner__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

/* Dark homepage block */
.bzn-ec-home-dark {
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-white);
  padding-bottom: 0;
}

/* Products on sale */
.bzn-ec-sale {
  padding: 72px 0 0;
}

.bzn-ec-product-card__badge.is-sale {
  background: #a578bf;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 0px;
}

/* Related resources */
.bzn-ec-resources {
  padding: 72px 0 0;
}

.bzn-ec-resource-card__media {
  display: block;
  overflow: hidden;
  background: var(--bzn-ec-dark-surface);
  aspect-ratio: 1 / 1;
}

.bzn-ec-resource-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.bzn-ec-resource-card:hover .bzn-ec-resource-card__media img {
  transform: scale(1.04);
}

.bzn-ec-resource-card__meta {
  margin: 20px 0;
}

.bzn-ec-resource-card__meta span {
  border: 1px solid #90919c60;
  color: #151517;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}
.bzn-ec-resource-card__body h3 {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  color: #101014;
  max-width: 320px;
  margin: 0 0 10px;
}
.bzn-ec-resource-card__body p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: #151517;
  margin: 0 0 15px;
}

.bzn-ec-resource-card__link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #151517;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.bzn-ec-resource-card__link:hover {
  border-bottom-color: #151517;
}

/* Join CTA */
.bzn-ec-join {
  padding: 80px 0;
  margin-top: 72px;
  background: #88888920;
}

.bzn-ec-join__eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-join__title {
  margin: 0 0 18px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #101014;
}

.bzn-ec-join__text {
  margin: 0 0 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #151517;
}

.bzn-ec-join__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.bzn-ec-btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--bzn-ec-black);
  border: 1.5px solid var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-btn-solid:hover {
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-black);
  border-color: var(--bzn-ec-white);
}

/* Our team page */
.bzn-ec-team-hero {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0;
  background: linear-gradient(135deg, #5a5a5a 0%, #2a2a2a 55%, #000000 100%);
  color: var(--bzn-ec-white);
}

.bzn-ec-team-hero__content {
  max-width: 520px;
  padding: 40px 0;
}

.bzn-ec-team-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-team-hero__title {
  margin: 0 0 22px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-team-hero__text {
  font-family: var(--bzn-ec-font-body);
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--bzn-ec-white);
}

.bzn-ec-team-hero__media {
  position: relative;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
}

.bzn-ec-team-hero__img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bzn-ec-team-grid {
  padding: 72px 0 80px;
  background: var(--bzn-ec-white);
}

.bzn-ec-team-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 550px;
}

.bzn-ec-team-card__photo {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.35s ease;
  border-radius: 12px;
}

.bzn-ec-team-card:hover .bzn-ec-team-card__photo {
  transform: scale(1.03);
}

.bzn-ec-team-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 28px 20px 22px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.92) 100%);
  text-align: center;
}

.bzn-ec-team-card__name {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bzn-ec-white);
}

.bzn-ec-team-card__role {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.bzn-ec-team-card__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bzn-ec-team-card__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bzn-ec-team-card__social a:hover {
  color: var(--bzn-ec-white);
  transform: translateY(-2px);
}

.bzn-ec-team-hiring {
  padding: 72px 0;
  background: #e8eaf6;
}

.bzn-ec-team-hiring__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bzn-ec-team-hiring__content {
  max-width: 620px;
}

.bzn-ec-team-hiring__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #182a52;
}

.bzn-ec-na-cta-section {
  background: #90004D25;
}

.bzn-ec-team-hiring__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: #1b2a52;
  max-width: 520px;
}

.bzn-ec-team-hiring__text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #1b2a52;
}

.bzn-ec-team-hiring__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.bzn-ec-team-hiring__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-team-hiring__btn--primary {
  border: 1.5px solid #1b2a52;
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-team-hiring__btn--primary:hover {
  background: #0f1a33;
  border-color: #0f1a33;
  color: var(--bzn-ec-white);
}

.bzn-ec-team-hiring__btn--outline {
  border: 2px solid #1b2a52;
  background: transparent;
  color: #1b2a52;
}

.bzn-ec-team-hiring__btn--outline:hover {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

/* Best sellers page */
.bzn-ec-bs-hero {
  padding: 20px 0 0;
  background: #e3b84a;
  color: #1b2a52;
  overflow: hidden;
}

.bzn-ec-bs-hero__content {
  max-width: 520px;
  padding: 32px 0 56px;
}

.bzn-ec-bs-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #1b2a52;
}

.bzn-ec-bs-hero__title {
  margin: 0 0 20px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  color: #1b2a52;
}

.bzn-ec-bs-hero__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #1b2a52;
}

.bzn-ec-bs-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bzn-ec-bs-hero__actions .bzn-ec-btn-outline {
  border-color: #1B2A52;
  color: #1B2A52;
}

.bzn-ec-bs-hero__actions .bzn-ec-btn-outline:hover {
  background: #1B2A52;
  color: var(--bzn-ec-white);
}

.bzn-ec-bs-hero__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 520px;
}

.bzn-ec-bs-hero__img {
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

.bzn-ec-bs-stats {
  background: #1b2a52;
  padding: 28px 0;
}

.bzn-ec-bs-stats__inner {
  display: flex;
  align-items: stretch;
}

.bzn-ec-bs-stats__item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 24px;
  border-right: 1px solid var(--bzn-ec-white);
}

.bzn-ec-bs-stats__item:last-child {
  border-right: 0;
}

.bzn-ec-bs-stats__item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
  line-height: 1.4;
}

.bzn-ec-bs-stats__item span {
  display: block;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
  line-height: 1.4;
}

.bzn-ec-bs-filters {
  background: var(--bzn-ec-black);
  padding: 18px 0;
  overflow-x: auto;
}

.bzn-ec-bs-filters__list {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-bs-filters__list a {
  color: var(--bzn-ec-white);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.bzn-ec-bs-filters__list a:hover,
.bzn-ec-bs-filters__list a.is-active {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bzn-ec-bs-products {
  padding: 64px 0 0;
  background: var(--bzn-ec-white);
}

.bzn-ec-bs-products + .bzn-ec-bs-products {
  padding-top: 48px;
}

.bzn-ec-bs-products .bzn-ec-section-head__title {
  font-size: 28px;
}

.bzn-ec-product-card__badge.is-bestseller {
  background: #a578bf;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bzn-ec-bs-metrics {
  margin-top: 72px;
  padding: 72px 0;
  background: #1B2A52;
  color: var(--bzn-ec-white);
}

.bzn-ec-bs-metrics__item {
  height: 100%;
  padding-right: 24px;
}

.bzn-ec-bs-metrics .bzn-ec-bs-metrics__item {
  border-right: 1px solid var(--bzn-ec-white);
}

.bzn-ec-bs-metrics .col-md-6:last-child .bzn-ec-bs-metrics__item {
  padding-right: 0;
  border-right: 0;
}

.bzn-ec-bs-metrics__value {
  margin: 0 0 16px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: var(--bzn-ec-white);
}

.bzn-ec-bs-metrics__text {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--bzn-ec-white);
}

/* About page */
.bzn-ec-about-accent {
  color: var(--bzn-ec-active);
}

.bzn-ec-about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 728px;
  max-height: 728px;
}

.bzn-ec-about-hero__main,
.bzn-ec-about-hero__journey {
  position: relative;
  overflow: hidden;
}

.bzn-ec-about-hero__main img,
.bzn-ec-about-hero__journey img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bzn-ec-about-hero__main {
  min-height: 728px;
  max-height: 728px;
}

.bzn-ec-about-hero__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 36px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.82) 100%);
  color: var(--bzn-ec-white);
}

.bzn-ec-about-hero__since {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.bzn-ec-about-hero__title {
  margin: 0 0 14px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 420px;
}

.bzn-ec-about-hero__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.9);
}

.bzn-ec-about-hero__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  min-height: 728px;
  max-height: 728px;
}

.bzn-ec-about-hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0 32px;
  background: var(--bzn-ec-white);
}

.bzn-ec-about-hero__stat {
  text-align: center;
}

.bzn-ec-about-hero__stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #1b2a52;
}

.bzn-ec-about-hero__stat span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1b2a52;
}

.bzn-ec-about-hero__journey {
  min-height: 328px;
  max-height: 100%;
}

.bzn-ec-about-hero__journey-btn {
  position: absolute;
  bottom: 100px;
  left: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 0;
  background: var(--bzn-ec-white);
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-about-hero__journey-btn:hover {
  background: #000000;
  color: var(--bzn-ec-white);
}

.bzn-ec-about-ticker {
  background: #1b2a52;
  padding: 22px 0;
  overflow: hidden;
}

.bzn-ec-about-ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: bznEcAboutTicker 28s linear infinite;
}

.bzn-ec-about-ticker__group {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.bzn-ec-about-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bzn-ec-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes bznEcAboutTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.bzn-ec-about-story {
  background: var(--bzn-ec-white);
  overflow: hidden;
}

.bzn-ec-about-story__media {
  overflow: hidden;
  min-height: 628px;
  background: #f3f4f6;
}

.bzn-ec-about-story__media img {
  width: 100%;
  height: 100%;
  min-height: 628px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.bzn-ec-about-story__content {
  padding: 0 0 0 24px;
}

.bzn-ec-about-story__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-about-story__title {
  margin: 0 0 24px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  max-width: 420px;
}

.bzn-ec-about-story__body {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

.bzn-ec-about-story__body p + p {
  margin-top: 40px;
}

.bzn-ec-about-values {
  padding: 72px 0 80px;
  background: #43600017;
}

.bzn-ec-about-values__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 70px;
}

.bzn-ec-about-values__title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: #101014;
  max-width: 420px;
}

.bzn-ec-about-values__intro {
  margin: 0;
  max-width: 420px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #1b2a52;
}

.bzn-ec-about-value {
  height: 100%;
}

.bzn-ec-about-value__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #1b2a52;
  color: var(--bzn-ec-white);
  font-size: 28px;
}

.bzn-ec-about-value__title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
  color: #1B2A52;
}

.bzn-ec-about-value__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #1B2A52;
}

.bzn-ec-about-team {
  padding: 60px 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-about-team__head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.bzn-ec-about-team__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-about-team__title {
  margin: 0 auto 20px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: #101014;
  max-width: 420px;
}

.bzn-ec-about-team__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000000;
}

.bzn-ec-about-team .bzn-ec-team-card {
  min-height: 480px;
  border-radius: 8px;
}

.bzn-ec-about-team .bzn-ec-team-card__photo {
  min-height: 480px;
}

.bzn-ec-about-team .bzn-ec-team-card__name {
  font-size: 16px;
}

.bzn-ec-about-team .bzn-ec-team-card__overlay {
  padding: 28px 20px 10px;
}

.bzn-ec-about-journey {
  padding: 80px 0;
  background: #1b2a52;
  color: var(--bzn-ec-white);
  text-align: left;
}

.bzn-ec-about-journey__eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-about-journey__title {
  margin: 0 0 56px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bzn-ec-white);
  max-width: 560px;
}

.bzn-ec-about-journey__timeline {
  position: relative;
  padding-top: 28px;
}

.bzn-ec-about-journey__line {
  position: absolute;
  top: 45px;
  left: 12%;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}

.bzn-ec-about-journey__milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.bzn-ec-about-journey__dot {
  width: 36px;
  height: 36px;
  margin: 0 0 50px;
  border-radius: 50%;
  background: var(--bzn-ec-white);
}

.bzn-ec-about-journey__year {
  margin: 0 0 12px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.bzn-ec-about-journey__label {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 700;
}

.bzn-ec-about-journey__desc {
  margin: 0;
  max-width: 360px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: var(--bzn-ec-white);
}

.bzn-ec-about-rewards {
  background: #f5f0e8;
}

.bzn-ec-about-rewards__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bzn-ec-about-rewards__content {
  flex: 1 1 420px;
  max-width: 580px;
}

.bzn-ec-about-rewards__eyebrow {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b2a52;
}

.bzn-ec-about-rewards__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b2a52;
  max-width: 360px;
}

.bzn-ec-about-rewards__text {
  margin: 0 0 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.65;
  color: #1b2a52;
}

.bzn-ec-about-rewards__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 2px solid #1b2a52;;
  background: #1b2a52;;
  color: var(--bzn-ec-white);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-about-rewards__btn:hover {
  background: #0f1a33;
  border-color: #0f1a33;
  color: var(--bzn-ec-white);
}

.bzn-ec-about-rewards__media {
  flex: 0 1 420px;
  display: flex;
  justify-content: center;
}

.bzn-ec-about-rewards__media img {
  width: 100%;
  max-width: 360px;
  height: auto;
  object-fit: contain;
}

/* New arrivals page */
.bzn-ec-na-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #4ba3e8;
  color: var(--bzn-ec-white);
}

.bzn-ec-na-hero__bg {
  position: absolute;
  inset: 0;
}

.bzn-ec-na-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bzn-ec-na-hero .container {
  position: relative;
  z-index: 1;
}

.bzn-ec-na-hero__content {
  max-width: 520px;
  padding: 72px 0;
}

.bzn-ec-na-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-na-hero__title {
  margin: 0 0 20px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-na-hero__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--bzn-ec-white);
}

.bzn-ec-na-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bzn-ec-na-hero__notice {
  background: #1B2A52;
  padding: 20px 0;
}

.bzn-ec-na-hero__notice-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.bzn-ec-na-hero__notice-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ec-white);
}

.bzn-ec-na-hero__notice-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ec-white);
  text-decoration: none;
}

.bzn-ec-na-banners {
  padding: 64px 0 0;
  background: var(--bzn-ec-white);
}

.bzn-ec-na-banners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 200px;
  gap: 16px;
}

.bzn-ec-na-banners__intro {
  grid-column: 1;
  grid-row: 1 / 3;
}

.bzn-ec-na-banners__sweatshirts {
  grid-column: 2;
  grid-row: 1 / 3;
}

.bzn-ec-na-banners__coats {
  grid-column: 3;
  grid-row: 1 / 3;
}

.bzn-ec-na-banners__dresses {
  grid-column: 4;
  grid-row: 1 / 3;
}

.bzn-ec-na-banners__outerwear {
  grid-column: 1 / 3;
  grid-row: 4;
}

.bzn-ec-na-banners__printed {
  grid-column: 3 / 5;
  grid-row: 4;
}

.bzn-ec-na-banners .bzn-ec-arrival-intro {
  min-height: 100%;
  height: 100%;
}

.bzn-ec-na-banners .bzn-ec-arrival-card {
  min-height: 450px;
  max-height: 450px;
  height: 100%;
}

.bzn-ec-na-banners .bzn-ec-arrival-card__img {
  min-height: 100%;
  max-height: none;
  height: 100%;
}

.bzn-ec-na-banners__dresses .bzn-ec-arrival-card__img {
  min-height: 456px;
}

.bzn-ec-na-products {
  padding: 64px 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-na-products .bzn-ec-section-head__title {
  font-family: var(--bzn-ec-font-alt);
  font-size: 32px;
  font-weight: 600;
}

.bzn-ec-product-card__badge.is-new {
  background: #a578bf;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FAQ page */
.bzn-ec-faq-hero {
  background: #f2f0f1;
}

.bzn-ec-faq-hero__content {
  max-width: 500px;
}

.bzn-ec-faq-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-faq-hero__title {
  margin: 0 0 22px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-faq-hero__text {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: #1B2A52;
}

.bzn-ec-faq-hero__media {
  min-height: 500px;
  border-radius: 0;
  overflow: hidden;
}

.bzn-ec-faq-hero__img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.bzn-ec-faq {
  padding: 64px 0 80px;
  background: var(--bzn-ec-white);
}

.bzn-ec-faq__group + .bzn-ec-faq__group {
  margin-top: 48px;
}

.bzn-ec-faq__category {
  margin: 0 0 25px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bzn-ec-faq-item {
  border-radius: 20px;
  background: var(--bzn-ec-white);
  overflow: hidden;
  box-shadow: 0 0 30px 0 #00000016;
}
.bzn-ec-faq-item__trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #000000;
  font-family: var(--bzn-ec-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.bzn-ec-faq-item__trigger i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000000;
  font-size: 20px;
  transition: transform 0.2s ease;
}

.bzn-ec-faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.bzn-ec-faq-item__content-inner {
  padding: 0 22px 20px;
  color: #151517;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.bzn-ec-faq-item__content-inner p {
  margin: 0;
}

.bzn-ec-faq-item.is-active .bzn-ec-faq-item__content {
  max-height: 240px;
}

.bzn-ec-faq-item.is-active .bzn-ec-faq-item__trigger i {
  transform: rotate(45deg);
}

.bzn-ec-faq-cta {
  padding: 72px 0;
  background: #e8ede3;
}

.bzn-ec-faq-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bzn-ec-faq-cta__content {
  max-width: 620px;
}

.bzn-ec-faq-cta__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b2a52;
}

.bzn-ec-faq-cta__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: #1b2a52;
}

.bzn-ec-faq-cta__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #1b2a52;
}

.bzn-ec-faq-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.bzn-ec-faq-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-faq-cta__btn--primary {
  border: 2px solid #1b2a52;
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-faq-cta__btn--primary:hover {
  background: #0f1a33;
  border-color: #0f1a33;
  color: var(--bzn-ec-white);
}

.bzn-ec-faq-cta__btn--outline {
  border: 2px solid #1b2a52;
  background: transparent;
  color: #1b2a52;
}

.bzn-ec-faq-cta__btn--outline:hover {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

/* Blog page */
.bzn-ec-blog-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bzn-ec-blog-hero__bg {
  position: absolute;
  inset: 0;
}

.bzn-ec-blog-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.bzn-ec-blog-hero .container {
  position: relative;
  z-index: 1;
}

.bzn-ec-blog-hero__content {
  max-width: 560px;
  padding: 72px 0;
}

.bzn-ec-blog-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-blog-hero__title {
  margin: 0 0 22px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-blog-hero__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 22px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #1B2A52;
}

.bzn-ec-blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bzn-ec-blog-hero__actions .bzn-ec-btn-outline {
  border-color: #1B2A52;
  color: #1B2A52;
}

.bzn-ec-blog-hero__actions .bzn-ec-btn-outline:hover {
  background: #1B2A52;
  color: var(--bzn-ec-white);
}

.bzn-ec-blog-topics {
  background: #1B2A52;
  padding: 20px 0;
  overflow-x: auto;
}

.bzn-ec-blog-topics__list {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-blog-topics__list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bzn-ec-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.bzn-ec-blog-topics__list a:hover {
  color: var(--bzn-ec-white);
}

.bzn-ec-blog-grid {
  padding: 80px 0;
  background: var(--bzn-ec-white);
}

.bzn-ec-blog-card__media {
  display: block;
  overflow: hidden;
  background: #f3f4f6;
  max-height: 420px;
}

.bzn-ec-blog-card__media img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.bzn-ec-blog-card:hover .bzn-ec-blog-card__media img {
  transform: scale(1.04);
}

.bzn-ec-blog-card__meta {
  margin: 20px 0 14px;
}

.bzn-ec-blog-card__meta span {
  display: inline-block;
  padding: 5px 18px;
  border: 1px solid #90919c60;
  border-radius: 50px;
  color: #151517;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}

.bzn-ec-blog-card__title {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.5;
  color: #101014;
  max-width: 320px;
  margin: 0 0 10px;
}

.bzn-ec-blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.bzn-ec-blog-card__title a:hover {
  color: #1b2a52;
}

.bzn-ec-blog-card__excerpt {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  color: #151517;
  margin: 0 0 15px;
}

.bzn-ec-blog-card__link {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #151517;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  transition: border-color 0.2s ease;
}

.bzn-ec-blog-card__link:hover {
  border-bottom-color: #151517;
}

.bzn-ec-blog-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0 64px;
}

.bzn-ec-blog-pagination__pages {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #151517;
  font-size: 15px;
  font-weight: 600;
}

.bzn-ec-blog-pagination__pages .is-active {
  color: #1b2a52;
}

.bzn-ec-blog-pagination__dash {
  color: #9ca3af;
  letter-spacing: 2px;
}

.bzn-ec-blog-pagination__nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bzn-ec-blog-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  background: var(--bzn-ec-white);
  color: #151517;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bzn-ec-blog-pagination__btn:hover {
  background: #1b2a52;
  border-color: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-blog-pagination__btn.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

.bzn-ec-blog-newsletter {
  padding: 80px 0 42px;
  background: #90004D25;
  text-align: center;
}

.bzn-ec-blog-newsletter__eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1b2a52;
}

.bzn-ec-blog-newsletter__title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  color: #1B2A52;
}

.bzn-ec-blog-newsletter__text {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #1B2A52;
}

.bzn-ec-blog-newsletter__form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 600px;
  margin: 0 auto 25px;
}

.bzn-ec-blog-newsletter__input {
  flex: 1 1 220px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #e5e7eb;
  border-right: 0;
  background: var(--bzn-ec-white);
  color: #111827;
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 500;
  outline: none;
}

.bzn-ec-blog-newsletter__input:focus {
  border-color: #1b2a52;
  box-shadow: 0 0 0 2px rgba(27, 42, 82, 0.12);
}

.bzn-ec-blog-newsletter__submit {
  min-height: 58px;
  padding: 0 28px;
  border: 0;
  background: #1b2a52;
  color: var(--bzn-ec-white);
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bzn-ec-blog-newsletter__submit:hover {
  background: #0f1a33;
}

.bzn-ec-blog-newsletter__note {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  color: #1B2A52;
}

/* Career pages */
.bzn-ec-career-toolbar {
  display: none;
  padding: 28px 0 0;
}

.bzn-ec-career-search {
  display: none;
  align-items: center;
  gap: 12px;
  max-width: 420px;
  padding: 0 0 8px;
  border-bottom: 1px solid #d1d5db;
}

.bzn-ec-career-search i {
  color: #6b7280;
  font-size: 14px;
}

.bzn-ec-career-search input {
  flex: 1;
  border: 0;
  background: transparent;
  font-size: 16px;
  color: #151517;
  outline: none;
}

.bzn-ec-blog-topics__list em {
  font-style: normal;
  color: #6b7280;
  font-weight: 400;
}

.bzn-ec-career-grid {
  padding: 48px 0 64px;
}

.bzn-ec-career-card {
  height: 100%;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: var(--bzn-ec-white);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-career-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.bzn-ec-career-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.bzn-ec-career-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f3f4f6;
  color: #1b2a52;
  font-size: 16px;
}

.bzn-ec-career-card__tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-career-card__title {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.bzn-ec-career-card__title a {
  color: inherit;
  text-decoration: none;
}

.bzn-ec-career-card__title a:hover {
  color: #1b2a52;
}

.bzn-ec-career-card__meta {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
  color: #4b5563;
}

.bzn-ec-career-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bzn-ec-career-card__meta i {
  margin-top: 3px;
  color: #1b2a52;
  width: 14px;
}

.bzn-ec-career-card__excerpt {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #4b5563;
}

.bzn-ec-career-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #151517;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.bzn-ec-career-card__link:hover {
  border-bottom-color: #151517;
}

.bzn-ec-career-detail {
  padding: 48px 0 64px;
}

.bzn-ec-career-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: #4b5563;
}

.bzn-ec-career-detail__meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bzn-ec-career-detail__meta i {
  color: #1b2a52;
}

.bzn-ec-career-detail__article {
  padding-right: 12px;
}

.bzn-ec-career-detail__summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 8px;
  background: #f9fafb;
}

.bzn-ec-career-detail__summary-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bzn-ec-career-detail__summary-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: #6b7280;
}

.bzn-ec-career-detail__summary-item strong {
  font-size: 18px;
  font-weight: 700;
  color: #151517;
}

.bzn-ec-career-detail__block + .bzn-ec-career-detail__block {
  margin-top: 28px;
}

.bzn-ec-career-detail__block-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #151517;
}

.bzn-ec-career-detail__block .summernote-content {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
}

.bzn-ec-career-detail__apply {
  margin-top: 32px;
  padding: 24px;
  border-radius: 8px;
  background: #f3f4f6;
}

.bzn-ec-career-detail__apply p {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}

.bzn-ec-career-detail__apply-email {
  font-size: 18px;
  font-weight: 700;
  color: #1b2a52;
  text-decoration: none;
}

.bzn-ec-career-detail__apply-email:hover {
  text-decoration: underline;
}

.bzn-ec-career-detail__share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  font-size: 14px;
  font-weight: 600;
  color: #151517;
}

.bzn-ec-career-detail__share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #151517;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bzn-ec-career-detail__share a:hover {
  background: #e5e7eb;
}

.bzn-ec-career-detail__sidebar {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: var(--bzn-ec-white);
}

.bzn-ec-career-detail__sidebar-title {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #151517;
}

.bzn-ec-career-detail__sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  color: #151517;
  text-decoration: none;
  transition: color 0.2s ease;
}

.bzn-ec-career-detail__sidebar-link:hover,
.bzn-ec-career-detail__sidebar-link.is-active {
  color: #1b2a52;
}

.bzn-ec-career-detail__sidebar-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 600;
  color: #151517;
  text-decoration: none;
}

.bzn-ec-career-detail__sidebar-all:hover {
  color: #1b2a52;
}

/* Blog details page */
.bzn-ec-blog-detail-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bzn-ec-blog-detail-hero__bg {
  position: absolute;
  inset: 0;
}

.bzn-ec-blog-detail-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bzn-ec-blog-detail-hero .container {
  position: relative;
  z-index: 1;
}

.bzn-ec-blog-detail-hero__content {
  max-width: 520px;
  padding: 72px 0;
}

.bzn-ec-blog-detail-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-blog-detail-hero__title {
  margin: 0 0 18px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-blog-detail-hero__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--bzn-ec-white);
}

.bzn-ec-blog-detail__rule {
  height: 4px;
  background: #1b2a52;
}

.bzn-ec-blog-detail {
  padding: 80px 0 0;
  background: var(--bzn-ec-white);
}

.bzn-ec-blog-detail__intro {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.45;
  color: #1B2A52;
  border-top: 10px solid #1B2A52;
  padding-top: 40px;
}

.bzn-ec-blog-detail__divider {
  margin: 0 0 32px;
  border: 0;
  border-top: 1px solid #1B2A5295;
}

.bzn-ec-blog-detail__subhead {
  margin: 0 0 18px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #000000;
}

.bzn-ec-blog-detail__body {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
  color: #000000;
}

.bzn-ec-blog-detail__body p + p {
  margin-top: 18px;
}

.bzn-ec-blog-detail__body a {
  color: #101014;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bzn-ec-blog-detail__body a:hover {
  color: #1b2a52;
}

.bzn-ec-blog-detail__figure {
  margin: 36px 0 40px;
}

.bzn-ec-blog-detail__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.bzn-ec-resources--detail {
  padding: 72px 0 80px;
  margin-top: 48px;
  background: var(--bzn-ec-white);
}

.bzn-ec-resources--detail .bzn-ec-resource-card__body h3 {
  max-width: 100%;
}

/* Footer */
.bzn-ec-footer {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  padding: 72px 120px 36px;
}

.bzn-ec-footer__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  gap: 0 48px;
  align-items: stretch;
}

.bzn-ec-footer__left,
.bzn-ec-footer__right {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.bzn-ec-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.8fr) minmax(0, 0.95fr);
  gap: 32px 40px;
}

.bzn-ec-footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
.bzn-ec-footer__logo img {
  max-width: 150px;
}

.bzn-ec-footer__about {
  font-family: var(--bzn-ec-font-alt);
  margin: 0;
  max-width: 320px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.bzn-ec-footer__heading {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.bzn-ec-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-footer__list li + li {
  margin-top: 6px;
}

.bzn-ec-footer__list a {
  font-family: var(--bzn-ec-font-alt);
  font-size: 14px;
  font-weight: 400;
  color: var(--bzn-ec-white);
  transition: color 0.2s ease;
}

.bzn-ec-footer__list a:hover {
  color: var(--bzn-ec-dark-muted);
}

.bzn-ec-footer__contact-item {
  margin-top: 70px;
}

.bzn-ec-footer__contact-link {
  font-family: var(--bzn-ec-font-alt);
  font-size: 14px;
  font-weight: 400;
  color: var(--bzn-ec-white);
  transition: color 0.2s ease;
}

.bzn-ec-footer__contact-link:hover {
  color: var(--bzn-ec-dark-muted);
}

.bzn-ec-footer__copy {
  margin: auto 0 0;
  padding-top: 48px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.bzn-ec-footer__divider {
  position: relative;
  width: 1px;
  background: rgba(255, 255, 255, 0.14);
  align-self: stretch;
}

.bzn-ec-footer__top {
  position: absolute;
  left: 50%;
  bottom: 108px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: #f97316;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.bzn-ec-footer__top:hover {
  color: #fb923c;
  transform: translateX(-50%) translateY(-2px);
}

.bzn-ec-footer__right {
  justify-content: space-between;
}

.bzn-ec-footer__aside {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.bzn-ec-footer__tagline-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bzn-ec-footer__social {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 32px;
}

.bzn-ec-footer__social a {
  font-family: var(--bzn-ec-font-alt);
  font-size: 14px;
  font-weight: 500;
  color: var(--bzn-ec-white);
  transition: color 0.2s ease;
}

.bzn-ec-footer__social a:hover {
  color: var(--bzn-ec-dark-muted);
}

.bzn-ec-footer__tagline {
  margin: 0 0 16px;
  font-family: var(--bzn-ec-font-alt);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--bzn-ec-white);
}

.bzn-ec-footer__address {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.bzn-ec-footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: auto;
  padding-top: 48px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

.bzn-ec-footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s ease;
}

.bzn-ec-footer__legal a:hover {
  color: var(--bzn-ec-white);
}

/* Customer dashboard */
.bzn-ec-body--dashboard .bzn-ec-join {
  margin-top: 0;
}

.bzn-ec-db-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bzn-ec-db-hero__bg {
  position: absolute;
  inset: 0;
}

.bzn-ec-db-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.bzn-ec-db-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27, 42, 82, 0.40) 0%, rgba(27, 42, 82, 0.30) 55%, rgba(27, 42, 82, 0.10) 100%);
}

.bzn-ec-db-hero__content {
  position: relative;
  z-index: 1;
  margin: 72px auto 72px 0;
  max-width: 800px;
}

.bzn-ec-db-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.bzn-ec-db-hero__title {
  margin: 0 0 14px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--bzn-ec-white);
}

.bzn-ec-db-hero__text {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.bzn-ec-db-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.bzn-ec-db-side {
  background: #1b2a52;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
}

.bzn-ec-db-profile__wrapper {
  padding: 35px 10px;
  background: #c6cad4;
}

.bzn-ec-db-profile {
  padding: 26px;
  background: var(--bzn-ec-white);
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 9.4px 0 #00000033;
}

.bzn-ec-db-profile__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #1b2a52;
  color: var(--bzn-ec-white);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  position: relative;
}

.bzn-ec-db-profile__avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bzn-ec-db-profile__avatar.has-photo .bzn-ec-db-profile__initials {
  display: none;
}

.bzn-ec-db-profile__avatar.has-photo .bzn-ec-db-profile__avatar-img {
  display: block;
}

.bzn-ec-db-profile__name {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 400;
  color: #000000;
}

.bzn-ec-db-profile__email {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 400;
  color: #151517;
  word-break: break-word;
}

.bzn-ec-db-profile__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 12px;
  background: #7C9BAB16;
  color: #1B2A52;
  font-size: 12px;
  font-weight: 400;
  border: 1px solid #1B2A52;
}

.bzn-ec-db-profile__badge i {
  font-size: 8px;
  color: #2DC071;
}

.bzn-ec-db-nav {
  display: flex;
  flex-direction: column;
  padding: 0 0 30px;
}

.bzn-ec-db-nav__link,
.bzn-ec-db-nav__toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 26px 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff92;
  font-family: var(--bzn-ec-font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  text-align: left;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-db-nav__link:not(:last-child),
.bzn-ec-db-nav__toggle:not(:last-child) {
  border-bottom: 1px solid #ffffff50;
}

.bzn-ec-db-nav__toggle {
  justify-content: space-between;
}

.bzn-ec-db-nav__link img,
.bzn-ec-db-nav__toggle .bzn-ec-db-nav__toggle-left img {
  max-width: 26px;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.57;
  transition: opacity 0.2s ease;
}

.bzn-ec-db-nav__toggle-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.bzn-ec-db-nav__chev {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.2s ease, color 0.2s ease;
}

.bzn-ec-db-nav__link:hover,
.bzn-ec-db-nav__toggle:hover,
.bzn-ec-db-nav__link.is-active,
.bzn-ec-db-nav__toggle.is-active {
  color: var(--bzn-ec-white);
}

.bzn-ec-db-nav__link:hover img,
.bzn-ec-db-nav__link.is-active img,
.bzn-ec-db-nav__toggle:hover .bzn-ec-db-nav__toggle-left img,
.bzn-ec-db-nav__toggle.is-active .bzn-ec-db-nav__toggle-left img {
  opacity: 1;
}

.bzn-ec-db-nav__toggle:hover .bzn-ec-db-nav__chev,
.bzn-ec-db-nav__toggle.is-active .bzn-ec-db-nav__chev,
.bzn-ec-db-nav__group.is-open .bzn-ec-db-nav__chev {
  color: var(--bzn-ec-white);
}

.bzn-ec-db-nav__group.is-open .bzn-ec-db-nav__chev {
  transform: rotate(180deg);
}

.bzn-ec-db-nav__sub {
  display: none;
  padding: 4px 0 8px;
}

.bzn-ec-db-nav__group.is-open .bzn-ec-db-nav__sub {
  display: block;
}

.bzn-ec-db-nav__sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px 10px 52px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-db-nav__sublink img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.bzn-ec-db-nav__sublink:hover,
.bzn-ec-db-nav__sublink.is-active {
  color: var(--bzn-ec-white);
}

.bzn-ec-db-nav__sublink:hover img,
.bzn-ec-db-nav__sublink.is-active img {
  opacity: 1;
}

.bzn-ec-db-nav__link--signout {
  padding-bottom: 0;
}

.bzn-ec-db-content {
  padding: 40px 0 20px;
  min-width: 0;
}

.bzn-ec-db-content__head {
  margin-bottom: 28px;
}

.bzn-ec-db-content__eyebrow, .bzn-ec-db-order-detail__title--top {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-db-order-detail__title {
  margin: 8px 0 12px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}

.bzn-ec-db-stat {
  height: 100%;
  padding: 31px 22px;
  border-radius: 24px;
  text-align: left;
}

.bzn-ec-db-stat__label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-db-stat__value {
  margin: 0 0 10px;
  font-size: 56px;
  font-weight: 700;
  line-height: 1;
  color: #1B2A52;
}

.bzn-ec-db-stat__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #1B2A52;
}

.bzn-ec-db-stat--green {
  background: #43600025;
}

.bzn-ec-db-stat--purple {
  background: #DFDFF4;
}

.bzn-ec-db-stat--pink {
  background: #90004D25;
}

.bzn-ec-db-account {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bzn-ec-white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.bzn-ec-db-account__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.bzn-ec-db-account__list {
  margin: 0;
}

.bzn-ec-db-account__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.bzn-ec-db-account__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.bzn-ec-db-account__row dt {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  color: #000000;
}

.bzn-ec-db-account__row dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-align: right;
}

.bzn-ec-db-account__row dd.is-muted {
  font-weight: 500;
  font-style: italic;
  color: #9ca3af;
}

/* Dashboard: My profile */
.bzn-ec-db-prof {
  padding: 32px 36px 36px;
  background: var(--bzn-ec-white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.bzn-ec-db-prof__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  padding: 30px;
  border: 1px solid #7C9BAB;
  background: #1B2A5210;
  border-radius: 10px;
  position: relative;
}

.bzn-ec-db-prof__summary--picker {
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-db-prof__summary--picker:hover,
.bzn-ec-db-prof__summary--picker:focus-visible {
  background: #1B2A5218;
  border-color: #1b2a52;
  outline: none;
}

.bzn-ec-db-prof__photo-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.bzn-ec-db-prof__summary-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #1b2a52;
  color: var(--bzn-ec-white);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: capitalize;
  overflow: hidden;
  position: relative;
}

.bzn-ec-db-prof__summary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bzn-ec-db-prof__summary-avatar.has-photo .bzn-ec-db-prof__summary-initials {
  display: none;
}

.bzn-ec-db-prof__summary-avatar.has-photo .bzn-ec-db-prof__summary-img {
  display: block;
}

.bzn-ec-db-prof__summary-name {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
}

.bzn-ec-db-prof__summary-location {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
}

.bzn-ec-db-prof__label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #151517;
  line-height: 1.3;
}

.bzn-ec-db-prof__input {
  width: 100%;
  height: 52px;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: #88888915;
  color: #151517;
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  outline: none;
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.bzn-ec-db-prof__input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.bzn-ec-db-prof__input:focus {
  background: var(--bzn-ec-white);
  box-shadow: 0 0 0 2px rgba(27, 42, 82, 0.18);
}

.bzn-ec-db-prof__input:read-only {
  cursor: default;
  color: #6b7280;
}

.bzn-ec-db-prof__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.bzn-ec-db-prof__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  font-family: var(--bzn-ec-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.bzn-ec-db-prof__btn:hover {
  opacity: 0.9;
  color: inherit;
}

.bzn-ec-db-prof__btn--cancel {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  min-width: max-content;
}

.bzn-ec-db-prof__btn--update {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-db-prof__textarea {
  height: auto;
  min-height: 100px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

/* Dashboard: Change password */
.bzn-ec-db-pwd__desc {
  margin: 0 0 28px;
  color: #374151;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.bzn-ec-db-pwd__field {
  position: relative;
}

.bzn-ec-db-pwd__input {
  padding-right: 52px;
}

.bzn-ec-db-pwd__toggle {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #6b7280;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.bzn-ec-db-pwd__toggle:hover {
  color: #1b2a52;
}

.bzn-ec-db-pwd__divider {
  margin: 8px 0 4px;
  border: 0;
  border-top: 1px solid #e5e7eb;
  opacity: 1;
}

/* Dashboard: Product orders + DataTables */
.bzn-ec-db-orders {
  padding: 24px 28px 20px;
  background: var(--bzn-ec-white);
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  min-width: 0;
  overflow: hidden;
}

.bzn-ec-db-orders__table-wrap,
.bzn-ec-db-order-detail__table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bzn-ec-db-orders .dataTables_wrapper {
  width: 100%;
  max-width: 100%;
}

.bzn-ec-db-orders__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.bzn-ec-db-orders__dt-top {
  margin-bottom: 16px;
}

.bzn-ec-db-orders__dt-bottom {
  margin-top: 16px;
}

.bzn-ec-db-orders .dataTables_length label,
.bzn-ec-db-orders .dataTables_filter label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 600 !important;
}

.bzn-ec-db-orders .dataTables_length select,
.bzn-ec-db-orders .dataTables_filter input {
  min-height: 40px;
  padding: 0 22px;
  border: 1px solid #e2e1e1;
  border-radius: 8px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  outline: none;
  box-shadow: 0 0 4px 0 #00000033;
}

.bzn-ec-db-orders .dataTables_filter input {
  min-width: 220px;
  min-height: 44px;
  background: #d9d9d912;
}

.bzn-ec-db-orders .dataTables_filter input:focus,
.bzn-ec-db-orders .dataTables_length select:focus {
  border-color: #1b2a52;
  box-shadow: 0 0 0 2px rgba(27, 42, 82, 0.12);
}

.bzn-ec-db-orders .dataTables_info {
  padding-top: 4px;
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.bzn-ec-db-orders .dataTables_paginate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin-top: 20px !important;
  padding-bottom: 20px;
}

.bzn-ec-db-orders .dataTables_paginate .pagination,
.bzn-ec-db-orders div.dataTables_paginate ul.pagination {
  display: flex;
  align-items: center !important;
  gap: 8px;
  margin: 0;
}

.bzn-ec-db-orders .dataTables_paginate .page-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.bzn-ec-db-orders .dataTables_paginate .page-link {
  min-width: auto;
  min-height: auto;
  padding: 0 8px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #000000 !important;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: none !important;
}

.bzn-ec-db-orders .dataTables_paginate .page-item.previous .page-link,
.bzn-ec-db-orders .dataTables_paginate .page-item.next .page-link {
  padding: 0 !important;
  border: none !important;
  background: none !important;
  color: #000000 !important;
  font-size: 17px;
  font-weight: 600;
  box-shadow: none !important;
}

.bzn-ec-db-orders .dataTables_paginate .page-item:not(.active) .page-link:hover,
.bzn-ec-db-orders .dataTables_paginate .page-item:not(.active) .page-link:focus,
.bzn-ec-db-orders .dataTables_paginate .page-item.previous .page-link:hover,
.bzn-ec-db-orders .dataTables_paginate .page-item.next .page-link:hover {
  background: transparent !important;
  border: 0 !important;
  color: #000000 !important;
  box-shadow: none !important;
}

.bzn-ec-db-orders .dataTables_paginate .page-item.active .page-link {
  min-width: 40px;
  min-height: 40px;
  padding: 0 12px !important;
  border: 1px solid #1d7bf5 !important;
  border-radius: 8px !important;
  background: #1d7bf5 !important;
  color: var(--bzn-ec-white) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 34px;
  text-align: center;
}

.bzn-ec-db-orders .dataTables_paginate .page-item.active .page-link:hover,
.bzn-ec-db-orders .dataTables_paginate .page-item.active .page-link:focus {
  background: #1d7bf5 !important;
  border-color: #1d7bf5 !important;
  color: var(--bzn-ec-white) !important;
}

.bzn-ec-db-orders .dataTables_paginate .page-item.disabled .page-link {
  opacity: 0.45;
  pointer-events: none;
}

.bzn-ec-db-orders-table.table.dataTable {
  margin-top: 40px !important;
  margin-bottom: 0 !important;
  border-collapse: separate;
  border-spacing: 0;
}

.bzn-ec-db-orders-table thead th {
  padding: 14px 16px;
  border-bottom: 0;
  background: #2d8cfe12;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.bzn-ec-db-orders-table tbody td {
  padding: 16px;
  border-bottom: 1px solid #eef0f2;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  vertical-align: middle;
}

.bzn-ec-db-orders-table tbody tr:last-child td {
  border-bottom: 0;
}

.bzn-ec-db-orders-table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #fafbfc;
}

.bzn-ec-db-orders-table.table-striped > tbody > tr:nth-of-type(even) > * {
  background-color: var(--bzn-ec-white);
}

.bzn-ec-db-orders__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 32px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.bzn-ec-db-orders__status--pending {
  background: #FFAB0033;
  color: #B76E00;
}

.bzn-ec-db-orders__status--completed {
  background: #d1fae5;
  color: #065f46;
}

.bzn-ec-db-orders__details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 32px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #0166FF;
  color: var(--bzn-ec-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bzn-ec-db-orders__details:hover {
  background: #1d4ed8;
  color: var(--bzn-ec-white);
}

.bzn-ec-db-orders__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 32px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #dc2626;
  color: var(--bzn-ec-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease;
}

.bzn-ec-db-orders__remove:hover {
  background: #b91c1c;
  color: var(--bzn-ec-white);
}

/* Dashboard: Product order details */
.bzn-ec-db-order-detail__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}

.bzn-ec-db-order-detail__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
}

.bzn-ec-db-order-detail__date {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

.bzn-ec-db-order-detail__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-family: var(--bzn-ec-font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.bzn-ec-db-order-detail__download:hover {
  opacity: 0.9;
}

.bzn-ec-db-order-detail__stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  box-shadow: 0 4px 20px 0 #00000017;
  border-radius: 10px;
  padding: 33px 20px;
}

.bzn-ec-db-order-detail__step {
  position: relative;
  flex: 1 1 0;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 4px;
}

.bzn-ec-db-order-detail__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 30px;
  left: calc(50% + 22px);
  width: 100%;
  height: 2px;
  background: #d1d5db;
  z-index: 0;
}

.bzn-ec-db-order-detail__step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 2px solid #70707050;
  background: #F9F8F8;
  color: #707070;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.bzn-ec-db-order-detail__step-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #00000045;
  line-height: 1.3;
}

.bzn-ec-db-order-detail__step.is-done .bzn-ec-db-order-detail__step-num {
  border-color: #1b2a52;
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-db-order-detail__step.is-done .bzn-ec-db-order-detail__step-label {
  color: #1B2A52;
}

.bzn-ec-db-order-detail__step.is-active .bzn-ec-db-order-detail__step-num {
  border-color: transparent;
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-db-order-detail__step.is-active .bzn-ec-db-order-detail__step-label {
  color: #1b2a52;
}

.bzn-ec-db-order-detail__card {
    padding: 28px 32px 32px;
    background: var(--bzn-ec-white);
    border-radius: 14px;
    box-shadow: 0 4px 20px 0 #00000017;
    min-width: 0;
}

.bzn-ec-db-order-detail__info {
  margin-bottom: 32px;
}

.bzn-ec-db-order-detail__info-card {
  height: 100%;
  padding: 22px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px 0 #00000017;
}

.bzn-ec-db-order-detail__info-title {
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #00000027;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000000;
  line-height: 1.3;
}

.bzn-ec-db-order-detail__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-db-order-detail__info-list li {
  margin-bottom: 20px;
  color: #000000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.bzn-ec-db-order-detail__info-list li:last-child {
  margin-bottom: 0;
}

.bzn-ec-db-order-detail__info-label {
  display: block;
  margin-bottom: 2px;
  color: #646466;
  font-size: 16px;
  font-weight: 400;
}

.bzn-ec-db-order-detail__table-title {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #00000027;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #000000;
}

.bzn-ec-db-order-detail__table-wrap {
  margin-bottom: 24px;
}

.bzn-ec-db-order-detail__table {
  min-width: 520px;
  margin-bottom: 0;
}

.bzn-ec-db-order-detail__table thead th {
  padding: 12px 16px;
  border-bottom: 0;
  background: #DFDFF4;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.bzn-ec-db-order-detail__table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef0f2;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  vertical-align: middle;
}

.bzn-ec-db-order-detail__table tbody tr:last-child td {
  border-bottom: 0;
  font-weight: 600;
}

.bzn-ec-db-order-detail__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  background: #f3f4f6;
}

.bzn-ec-db-order-detail__product-name {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  color: #000000;
}

.bzn-ec-db-order-detail__product-qty {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
}

.bzn-ec-db-order-detail__summary {
  margin-left: auto;
  max-width: 340px;
}

.bzn-ec-db-order-detail__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px dashed #000000;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.bzn-ec-db-order-detail__summary-row span:last-child {
  font-weight: 700;
}

.bzn-ec-db-order-detail__summary-row--tax span:last-child {
  color: #dc2626;
}

.bzn-ec-db-order-detail__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  background: #43600025;
  color: #1b2a52;
}

.bzn-ec-db-order-detail__total-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bzn-ec-db-order-detail__total-amount {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.bzn-ec-db-order-detail__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.bzn-ec-db-order-detail__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 8px;
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.bzn-ec-db-order-detail__back:hover {
  opacity: 0.9;
  color: var(--bzn-ec-white);
}

/* Login page */
body.bzn-ec-body--login {
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.bzn-ec-login {
  min-height: 100vh;
  min-height: 100dvh;
}

.bzn-ec-login__visual {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.bzn-ec-login__visual-media {
  flex-basis: 40%;
  position: relative;
  z-index: 2;
}
.bzn-ec-login__visual-media img {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  object-fit: cover;
}
.bzn-ec-login__visual-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1B2A52;
  z-index: 1;
  opacity: .40;
}

.bzn-ec-login__visual-title {
  position: absolute;
  top: 100px;
  left: 60px;
  z-index: 2;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--bzn-ec-white);
  max-width: 320px;
}

.bzn-ec-login__panel {
  flex-basis: 58%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bzn-ec-white);
}

.bzn-ec-login__panel-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.bzn-ec-login__head {
  text-align: center;
  margin-bottom: 40px;
}

.bzn-ec-login__brand {
  margin: 0 auto;
}

.bzn-ec-login__brand img {
  max-width: 277px;
  margin: 0 auto 40px;
}

.bzn-ec-login__subtitle {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  color: #333;
}

.bzn-ec-login__form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.bzn-ec-login__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bzn-ec-login__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--bzn-ec-black);
}

.bzn-ec-login__required {
  color: #e11d48;
  font-weight: 700;
}

.bzn-ec-login__input {
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border: 1px solid #D9EBFF;
  border-radius: 8px;
  background: var(--bzn-ec-white);
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #919eab;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzn-ec-login__input::placeholder {
  color: var(--bzn-ec-login-placeholder);
}

.bzn-ec-login__input:focus {
  outline: none;
  border-color: var(--bzn-ec-login-navy);
  box-shadow: 0 0 0 3px rgba(26, 43, 75, 0.12);
}

.bzn-ec-login__submit {
  width: 100%;
  height: 52px;
  margin-top: 6px;
  border: none;
  border-radius: 8px;
  background: #1B2A52;
  color: var(--bzn-ec-white);
  font-family: var(--bzn-ec-font-alt);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bzn-ec-login__submit:hover {
  background: #152238;
}

.bzn-ec-login__submit:active {
  transform: translateY(1px);
}

.bzn-ec-login__foot {
  margin-top: 35px;
  text-align: center;
}

.bzn-ec-login__forgot {
  font-size: 16px;
  font-weight: 500;
  color: #6B7280;
  transition: color 0.2s ease;
}

.bzn-ec-login__forgot:hover {
  color: var(--bzn-ec-login-navy);
}

/* Shop page */
.bzn-ec-shop-hero {
  background: #1b2a52;
  color: var(--bzn-ec-white);
  padding: 100px 0;
}

.bzn-ec-shop-hero__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bzn-ec-shop-hero__title {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
}

.bzn-ec-shop-hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
}

.bzn-ec-shop-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.bzn-ec-shop-hero__stat strong {
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.bzn-ec-shop-hero__stat span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.bzn-ec-shop-perks {
  background: #1b2a52;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bzn-ec-shop-perks__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-shop-perks__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--bzn-ec-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.bzn-ec-shop-main {
  padding: 48px 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bzn-ec-shop-sidebar__search {
  position: relative;
}

.bzn-ec-shop-sidebar__search i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  font-size: 15px;
  pointer-events: none;
}

.bzn-ec-shop-sidebar__search input {
  width: 100%;
  height: 52px;
  padding: 0 18px 0 48px;
  border: 1px solid #000000;
  border-radius: 10px;
  background: var(--bzn-ec-white);
  font-family: var(--bzn-ec-font-body);
  font-size: 16px;
  font-weight: 500;
  color: #3C3C4372;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzn-ec-shop-sidebar__search input::placeholder {
  font-size: 16px;
  color: #000000;
}

.bzn-ec-shop-sidebar__search input:focus {
  border-color: #1b2a52;
  box-shadow: 0 0 0 3px rgba(27, 42, 82, 0.1);
}

.bzn-ec-shop-filter__label {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000000;
}

.bzn-ec-shop-filter__select-wrap {
  position: relative;
}

.bzn-ec-shop-filter__select-wrap > i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
}

.bzn-ec-shop-filter__select,
.bzn-ec-shop-toolbar__select {
  width: 100%;
  height: 48px;
  padding: 0 40px 0 16px;
  border: 1px solid #BBBBBB;
  border-radius: 10px;
  background: var(--bzn-ec-white);
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bzn-ec-text);
  appearance: none;
  outline: none;
  cursor: pointer;
}

.bzn-ec-shop-filter__select:focus,
.bzn-ec-shop-toolbar__select:focus {
  border-color: #1b2a52;
}

.bzn-ec-shop-filter--accordion {
  border-top: 1px solid #BBBBBB;
  padding-top: 30px;
}

.bzn-ec-shop-filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #000000;
  text-align: left;
}

.bzn-ec-shop-filter__toggle i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.bzn-ec-shop-filter--accordion.is-open .bzn-ec-shop-filter__toggle i {
  transform: rotate(180deg);
}

.bzn-ec-shop-filter__body {
  display: none;
  padding-top: 30px;
}

.bzn-ec-shop-filter--accordion.is-open .bzn-ec-shop-filter__body {
  display: block;
}

.bzn-ec-shop-range__values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 400;
  color: var(--bzn-ec-text);
}

.bzn-ec-shop-range {
  position: relative;
  height: 28px;
}

.bzn-ec-shop-range__track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 999px;
  background: #00a76f23;
  pointer-events: none;
}

.bzn-ec-shop-range__fill {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: inherit;
  background: #00a76f;
}

.bzn-ec-shop-range__input {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  margin: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.bzn-ec-shop-range__input::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00a76f;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  pointer-events: auto;
}

.bzn-ec-shop-range__input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00a76f;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  pointer-events: auto;
}

.bzn-ec-shop-range__input:first-of-type {
  display: none;
}

.bzn-ec-shop-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bzn-ec-shop-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--bzn-ec-text);
}

.bzn-ec-shop-check input {
  position: absolute;
  opacity: 0;
  width: 26px;
  height: 26px;
  margin: 0;
  cursor: pointer;
}

.bzn-ec-shop-check__box {
  width: 26px;
  height: 26px;
  border: 1.5px solid #D9D9D9;
  border-radius: 8px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.bzn-ec-shop-check input:checked + .bzn-ec-shop-check__box {
  background: #1b2a52;
  border-color: #1b2a52;
}

.bzn-ec-shop-check.is-checked .bzn-ec-shop-check__box {
  background: #1b2a52;
  border-color: #1b2a52;
}

.bzn-ec-shop-check input:checked + .bzn-ec-shop-check__box::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 7px;
  height: 11px;
  border: solid var(--bzn-ec-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.bzn-ec-shop-check.is-checked .bzn-ec-shop-check__box::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 5px;
  width: 7px;
  height: 11px;
  border: solid var(--bzn-ec-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

a.bzn-ec-shop-check {
  text-decoration: none;
  color: inherit;
}

.bzn-ec-shop-check__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex: 1;
  color: #000000;
  font-weight: 500;
  font-size: 16px;
}
.bzn-ec-shop-check__text em {
  font-family: var(--bzn-ec-font-alt);
  font-style: normal;
  color: #000000;
  font-weight: 400;
}

.bzn-ec-shop-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bzn-ec-shop-size {
  min-width: 50px;
  height: 36px;
  padding: 0 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: var(--bzn-ec-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--bzn-ec-text);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bzn-ec-shop-size:hover,
.bzn-ec-shop-size.is-active {
  border-color: #1b2a52;
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-shop-colours {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bzn-ec-shop-colour {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  padding: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bzn-ec-shop-colour--light {
  border-color: #e5e7eb;
}

.bzn-ec-shop-colour:hover,
.bzn-ec-shop-colour.is-active {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px var(--bzn-ec-white), 0 0 0 4px #1b2a52;
}

.bzn-ec-shop-clear {
  width: 100%;
  height: 54px;
  margin-top: 15px;
  border: none;
  border-radius: 20px;
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-size: 16px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bzn-ec-shop-clear:hover {
  background: #1b2a52;
}

.bzn-ec-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.bzn-ec-shop-toolbar__count {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
}

.bzn-ec-shop-toolbar__count strong {
  color: var(--bzn-ec-text);
  font-weight: 700;
}

.bzn-ec-shop-toolbar__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.bzn-ec-shop-toolbar__sort {
  position: relative;
}

.bzn-ec-shop-toolbar__sort > i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #6b7280;
  pointer-events: none;
}

.bzn-ec-shop-toolbar__select {
  width: auto;
  min-width: 140px;
  height: 42px;
  font-size: 14px;
  border: 0;
  font-weight: 600;
}

.bzn-ec-shop-views {
  display: inline-flex;
  align-items: center;
}

.bzn-ec-shop-view {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6C7275;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease;
  border: 2px solid #e5e7eb;
}

.bzn-ec-shop-view:not(:last-child) {
  border-right: 0;
}

.bzn-ec-shop-view:hover, .bzn-ec-shop-view.is-active {
  background: #F3F5F7;
  color: var(--bzn-ec-black);
}

.bzn-ec-shop-main .bzn-ec-product-card__media {
  background: #f3f4f6;
  overflow: hidden;
}

.bzn-ec-shop-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 8px;
}

.bzn-ec-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 24px;
}

.bzn-ec-shop-grid[data-view="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bzn-ec-shop-grid[data-view="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bzn-ec-shop-grid[data-view="list"] {
  grid-template-columns: 1fr;
}

.bzn-ec-shop-grid[data-view="list"] .bzn-ec-product-card {
  display: flex;
  gap: 24px;
  align-items: center;
}

.bzn-ec-shop-grid[data-view="list"] .bzn-ec-product-card__media {
  width: 200px;
  flex-shrink: 0;
}

.bzn-ec-shop-grid[data-view="list"] .bzn-ec-product-card__body {
  flex: 1;
  padding-top: 0;
}

/* Category page */
.bzn-ec-cat-hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #dce6f2 0%, #eef3f8 45%, #f7f9fc 100%);
  color: #1b2a52;
}

.bzn-ec-cat-hero__bg {
  position: absolute;
  inset: 0;
}

.bzn-ec-cat-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.bzn-ec-cat-hero .container {
  position: relative;
  z-index: 1;
}

.bzn-ec-cat-hero__content {
  max-width: 560px;
  padding: 72px 0;
}

.bzn-ec-cat-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-cat-hero__title {
  margin: 0 0 18px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-cat-hero__text {
  margin: 0 0 28px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #1B2A52;
  max-width: 500px;
}

.bzn-ec-cat-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.bzn-ec-cat-hero__actions .bzn-ec-btn-outline {
  border-color: #1b2a52;
  color: #1b2a52;
}

.bzn-ec-cat-hero__actions .bzn-ec-btn-outline:hover {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-cat-bar__top {
  background: var(--bzn-ec-black);
  padding: 20px 0;
}

.bzn-ec-cat-bar__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.bzn-ec-cat-bar__cats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-cat-bar__cats a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--bzn-ec-white);
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.bzn-ec-cat-bar__cats a em {
  font-style: normal;
  font-size: 14px;
  font-weight: 400;
  color: var(--bzn-ec-white);
}

.bzn-ec-cat-bar__cats a:hover,
.bzn-ec-cat-bar__cats a.is-active {
  color: var(--bzn-ec-white);
  border-bottom-color: var(--bzn-ec-white);
}

.bzn-ec-cat-bar__filter-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--bzn-ec-white);
  color: #1b2a52;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.bzn-ec-cat-bar__active {
  background: #1B2A52;
  padding: 16px 0;
}

.bzn-ec-cat-bar__active-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.bzn-ec-cat-bar__active-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.bzn-ec-cat-bar__active-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--bzn-ec-white);
  text-transform: uppercase;
}

.bzn-ec-cat-bar__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-black);
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.bzn-ec-cat-bar__tag i {
  font-size: 11px;
  opacity: 0.8;
}

.bzn-ec-cat-bar__tag:hover {
  background: rgba(255, 255, 255, 0.2);
}

.bzn-ec-shop-ratings .bzn-ec-shop-check__text {
  justify-content: flex-end;
  font-size: 14px;
}

.bzn-ec-cat-bar__clear {
  font-size: 16px;
  font-weight: 600;
  color: var(--bzn-ec-white);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.bzn-ec-cat-bar__clear:hover {
  color: var(--bzn-ec-white);
}

.bzn-ec-shop-ratings {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bzn-ec-shop-ratings .bzn-ec-shop-check {
  width: 100%;
}

.bzn-ec-shop-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--bzn-ec-black);
  font-size: 14px;
}

.bzn-ec-cat-cta {
  background: #e8ebe4;
}

.bzn-ec-cat-cta .bzn-ec-team-hiring__eyebrow,
.bzn-ec-cat-cta .bzn-ec-team-hiring__title,
.bzn-ec-cat-cta .bzn-ec-team-hiring__text {
  color: #1b2a52;
}

.bzn-ec-body--category .bzn-ec-shop-sidebar.is-mobile-open {
  display: flex;
}

/* Contact page */
.bzn-ec-contact-hero {
  padding: 20px 0 0;
  background: #c5d9d7;
  color: #1b2a52;
}

.bzn-ec-contact-hero__content {
  max-width: 520px;
}

.bzn-ec-contact-hero__eyebrow {
  font-family: var(--bzn-ec-font-alt);
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-contact-hero__title {
  margin: 0 0 18px;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  color: #1B2A52;
}

.bzn-ec-contact-hero__text {
  font-family: var(--bzn-ec-font-alt);
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #1B2A52;
  max-width: 480px;
}

.bzn-ec-contact-hero__media {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.bzn-ec-contact-hero__img {
  width: 100%;
  min-height: 560px;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

.bzn-ec-contact-tabs {
  background: var(--bzn-ec-black);
  padding: 20px 0;
}

.bzn-ec-contact-tabs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bzn-ec-contact-tabs__list a {
  font-size: 18px;
  font-weight: 600;
  color: var(--bzn-ec-white);
  text-decoration: none;
  transition: color 0.2s ease;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.bzn-ec-contact-tabs__list a:hover,
.bzn-ec-contact-tabs__list a.is-active {
  color: var(--bzn-ec-white);
  border-color: var(--bzn-ec-white);
}

.bzn-ec-contact-body {
  background: var(--bzn-ec-white);
}

.bzn-ec-contact-body__grid {
  align-items: stretch;
}

.bzn-ec-contact-form-col {
  background: var(--bzn-ec-white);
}

.bzn-ec-contact-form-wrap {
  padding: 56px 48px 72px 0;
  max-width: 760px;
}

.bzn-ec-contact-form__eyebrow {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #151517;
}
.bzn-ec-contact-form__title {
  margin: 0 0 70px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.15;
  color: #101014;
  max-width: 420px;
}

.bzn-ec-contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bzn-ec-contact-field__label {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.bzn-ec-contact-field__input {
  width: 100%;
  min-height: 62px;
  padding: 0 16px;
  border: 1.5px solid #000000;
  background: #D9D9D908;
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 500;
  color: #00000080;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bzn-ec-contact-field__input::placeholder {
  color: #00000055;
}

.bzn-ec-contact-field__input:focus {
  border-color: #1b2a52;
  box-shadow: 0 0 0 3px rgba(27, 42, 82, 0.08);
}

.bzn-ec-contact-field__textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

.bzn-ec-contact-field__select-wrap {
  position: relative;
}

.bzn-ec-contact-field__select-wrap > i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #6b7280;
  pointer-events: none;
}

.bzn-ec-contact-field__select {
  appearance: none;
  padding-right: 42px;
  cursor: pointer;
  background: #D9D9D928;
  color: var(--bzn-ec-black);
  font-weight: 500;
}

.bzn-ec-contact-upload {
  position: relative;
}

.bzn-ec-contact-upload__input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.bzn-ec-contact-upload__box {
  min-height: 120px;
  padding: 28px 20px;
  border: 2px dashed #000000;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bzn-ec-contact-upload:hover .bzn-ec-contact-upload__box,
.bzn-ec-contact-upload.is-dragover .bzn-ec-contact-upload__box {
  border-color: #1b2a52;
  background: #f3f4f6;
}

.bzn-ec-contact-upload__icon {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 10px;
}

.bzn-ec-contact-upload__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}

.bzn-ec-contact-upload__hint {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: #9ca3af;
}

.bzn-ec-contact-upload__files {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: #1b2a52;
}

.bzn-ec-contact-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 8px;
  border: none;
  background: #1B2A52;
  color: var(--bzn-ec-white);
  font-size: 20px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bzn-ec-contact-submit:hover {
  background: #0f1a33;
}

.bzn-ec-contact-aside-col {
  background: #43600028;
}

.bzn-ec-contact-aside {
  padding: 80px 40px 80px 40px;
  height: 100%;
}

.bzn-ec-contact-panel + .bzn-ec-contact-panel {
  margin-top: 60px;
}

.bzn-ec-contact-panel__title {
  margin: 0 0 40px;
  font-size: 30px;
  font-weight: 700;
  color: #1B2A52;
}

.bzn-ec-contact-channels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bzn-ec-contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  background: var(--bzn-ec-white);
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bzn-ec-contact-channel:hover {
  box-shadow: 0 8px 24px rgba(27, 42, 82, 0.08);
  transform: translateY(-1px);
}

.bzn-ec-contact-channel__icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #1B2A5210;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1B2A52;
  font-size: 24px;
  flex-shrink: 0;
}

.bzn-ec-contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bzn-ec-contact-channel__body strong {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.bzn-ec-contact-channel__body span {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

.bzn-ec-contact-hours {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.bzn-ec-contact-hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 16px;
  background: #D9D9D920;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  border: 1.5px solid #D9D9D9;
}

.bzn-ec-contact-hours li.is-today {
  background: #43600025;
}

.bzn-ec-contact-hours li strong {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
}

.bzn-ec-contact-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.bzn-ec-contact-social a {
  color: #1B2A52;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.bzn-ec-contact-social a:hover {
  color: #0f1a33;
  transform: translateY(-2px);
}

/* Cart page */
.bzn-ec-cart {
  padding: 36px 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-cart__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 70px;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.bzn-ec-cart__crumbs a {
  color: #000000;
  transition: color 0.2s ease;
}

.bzn-ec-cart__crumbs a:hover {
  color: var(--bzn-ec-black);
}

.bzn-ec-cart__crumbs .is-current {
  color: var(--bzn-ec-black);
  font-weight: 700;
}

.bzn-ec-cart__head {
  margin-bottom: 40px;
}

.bzn-ec-cart__eyebrow {
  margin: 0 0 10px;
  font-family: var(--bzn-ec-font-alt);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #151517;
}

.bzn-ec-cart__title {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-item {
  display: flex;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eceef2;
  margin-bottom: 28px;
}

.bzn-ec-cart-item__thumb {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  background: #f3f4f6;
}

.bzn-ec-cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}

.bzn-ec-cart-item__body {
  flex: 1;
  min-width: 0;
}

.bzn-ec-cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.bzn-ec-cart-item__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-item__title a:hover {
  color: #1b2a52;
}

.bzn-ec-cart-item__meta,
.bzn-ec-cart-item__color {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-item__color {
  margin-top: 4px;
  font-weight: 600;
}

.bzn-ec-cart-item__price {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--bzn-ec-black);
  white-space: nowrap;
}

.bzn-ec-cart-item__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bzn-ec-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #f3f4f6;
  border-radius: 6px;
  overflow: hidden;
}

.bzn-ec-cart-qty__btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #161519;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-cart-qty__btn:hover {
  background: #e5e7eb;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-qty__value {
  min-width: 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--bzn-ec-black);
  background: #f3f4f6;
  border: 0;
  max-width: 50px;
}

.bzn-ec-cart-item__remove {
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: #111013;
  cursor: pointer;
  transition: color 0.2s ease;
}

.bzn-ec-cart-item__remove:hover {
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-coupon {
  margin-top: 28px;
}

.bzn-ec-cart-coupon__label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-coupon__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.bzn-ec-cart-coupon__field {
  position: relative;
  flex: 1 1 220px;
  min-width: 0;
}

.bzn-ec-cart-coupon__input {
  width: 100%;
  height: 52px;
  padding: 0 130px 0 16px;
  border: 0;
  border-radius: 8px;
  background: #88888916;
  font-family: inherit;
  font-size: 14px;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-coupon__input::placeholder {
  color: #646466;
}

.bzn-ec-cart-coupon__apply {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  height: auto;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--bzn-ec-black);
  cursor: pointer;
  transition: color 0.2s ease;
}

.bzn-ec-cart-coupon__apply:hover {
  color: #1b2a52;
}

.bzn-ec-cart-coupon__update {
  margin-left: auto;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: #888889;
  color: var(--bzn-ec-white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.bzn-ec-cart-coupon__update:hover {
  background: #4b5563;
}

.bzn-ec-cart-totals {
  padding: 28px 24px;
  border-radius: 12px;
  background: #88888918;
}

.bzn-ec-cart-totals__title {
  margin: 0 0 26px;
  font-size: 24px;
  font-weight: 700;
  color: #101014;
}

.bzn-ec-cart-totals__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 500;
  color: #151517;
  border-bottom: 1px solid #91919c30;
  padding-bottom: 14px;
}

.bzn-ec-cart-totals__row strong {
  font-size: 15px;
  font-weight: 700;
  color: #111013;
}

.bzn-ec-cart-totals__row--total {
  margin-bottom: 24px;
  font-size: 16px;
  border-bottom: 0;
  padding-bottom: 0;
}

.bzn-ec-cart-totals__row--total strong {
  font-size: 20px;
}

.bzn-ec-cart-totals__shipping {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid #91919c30;
}

.bzn-ec-cart-totals__label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.bzn-ec-cart-shipping {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bzn-ec-cart-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.bzn-ec-cart-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bzn-ec-cart-radio__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.2s ease;
}

.bzn-ec-cart-radio input:checked + .bzn-ec-cart-radio__dot {
  border-color: #dc2626;
}

.bzn-ec-cart-radio input:checked + .bzn-ec-cart-radio__dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #dc2626;
}

.bzn-ec-cart-radio__text em {
  font-style: normal;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-totals__address {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.6;
}

.bzn-ec-cart-totals__address strong {
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-totals__address a {
  display: block;
  font-weight: 600;
  color: var(--bzn-ec-black);
  margin-top: 10px;
}

.bzn-ec-cart-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 8px;
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-size: 17px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-cart-checkout:hover {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-cart-checkout-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.bzn-ec-cart-checkout-section__block + .bzn-ec-cart-checkout-section__block {
  margin-top: 36px;
}

.bzn-ec-cart-checkout-section__title {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-cart-payment #payment-gateway {
  width: 100%;
  min-height: 62px;
  padding: 0 42px 0 16px;
  border: 1.5px solid #000000;
  background: #D9D9D928;
  font-family: var(--bzn-ec-font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--bzn-ec-black);
  appearance: none;
  outline: none;
}

.bzn-ec-cart-payment #payment-gateway:focus {
  border-color: #1b2a52;
  box-shadow: 0 0 0 3px rgba(27, 42, 82, 0.08);
}

.bzn-ec-payment-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.bzn-ec-payment-modal .modal-header {
  padding: 24px 28px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.bzn-ec-payment-modal .modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-payment-modal .modal-body {
  padding: 24px 28px;
}

.bzn-ec-payment-modal .modal-footer {
  padding: 16px 28px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  gap: 12px;
}

.bzn-ec-payment-modal .modal-footer .bzn-ec-btn-outline {
  min-height: 52px;
  padding: 0 24px;
}

.bzn-ec-cart-checkout--modal {
  width: auto;
  min-width: 180px;
}

.bzn-ec-pay-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bzn-ec-pay-wrap__label {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-pay-types {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bzn-ec-pay-type {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: var(--bzn-ec-white);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bzn-ec-pay-type:hover {
  border-color: rgba(27, 42, 82, 0.35);
}

.bzn-ec-pay-type.is-active {
  border-color: #1b2a52;
  background: rgba(27, 42, 82, 0.04);
  box-shadow: 0 8px 24px rgba(27, 42, 82, 0.08);
}

.bzn-ec-pay-type__icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 42, 82, 0.08);
  color: #1b2a52;
  font-size: 18px;
}

.bzn-ec-pay-type.is-active .bzn-ec-pay-type__icon {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-pay-type__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bzn-ec-pay-type__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--bzn-ec-black);
  line-height: 1.3;
}

.bzn-ec-pay-type__hint {
  font-size: 13px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.4;
}

.bzn-ec-pay-gateway .bzn-ec-contact-field__select-wrap {
  margin-top: 8px;
}

.bzn-ec-pay-gateway .bzn-ec-contact-field__select {
  width: 100%;
}

@media (max-width: 575.98px) {
  .bzn-ec-pay-types {
    grid-template-columns: 1fr;
  }
}

.bzn-ec-cart-cross {
  padding: 0 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-cart-features {
  background: #1B2A52;
  color: var(--bzn-ec-white);
  padding: 36px 0;
}

.bzn-ec-cart-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bzn-ec-cart-features__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 72px;
  padding: 8px 18px;
  text-align: left;
}

.bzn-ec-cart-features__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.50);
  transform: translateY(-50%);
}

.bzn-ec-cart-features__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
  color: var(--bzn-ec-white);
}

.bzn-ec-cart-features__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.bzn-ec-cart-features__content strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--bzn-ec-white);
}

.bzn-ec-cart-features__content span {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bzn-ec-white);
}

/* Checkout page */
.bzn-ec-checkout {
  padding: 36px 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-checkout__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 70px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout__crumbs a {
  color: var(--bzn-ec-black);
  transition: color 0.2s ease;
}

.bzn-ec-checkout__crumbs a:hover {
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout__crumbs .is-current {
  color: var(--bzn-ec-black);
  font-weight: 700;
}

.bzn-ec-checkout__title {
  margin: 0 0 36px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -1px;
  color: #101014;
}

.bzn-ec-checkout-success {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.bzn-ec-checkout-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #29a36626;
  color: var(--bzn-ec-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.bzn-ec-checkout-success__text {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bzn-ec-black);
  max-width: 300px;
}

.bzn-ec-checkout-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
  margin-bottom: 24px;
}

.bzn-ec-checkout-meta__label {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 400;
  color: #646466;
}

.bzn-ec-checkout-meta__value {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-email {
  margin: 0 0 36px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-email .bzn-ec-checkout-meta__label {
  margin-bottom: 4px;
}

.bzn-ec-checkout-addresses {
  margin-top: 8px;
}

.bzn-ec-checkout-address__title {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 700;
  color: #101014;
}

.bzn-ec-checkout-address__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #151517;
}

.bzn-ec-checkout-details {
  padding: 28px;
  border-radius: 12px;
  background: #88888918;
}

.bzn-ec-checkout-details__title {
  margin: 0 0 30px;
  font-size: 22px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-details__head,
.bzn-ec-checkout-details__item,
.bzn-ec-checkout-details__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.bzn-ec-checkout-details__head {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #d1d5db;
  font-size: 13px;
  font-weight: 400;
  color: #000000;
}

.bzn-ec-checkout-details__item {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  color: #151517;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 14px;
}

.bzn-ec-checkout-details__item--variant .bzn-ec-checkout-details__product span {
  display: block;
}

.bzn-ec-checkout-details__product {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bzn-ec-checkout-details__product strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-details__product span {
  font-size: 14px;
  font-weight: 600;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-details__amount {
  font-size: 14px;
  font-weight: 700;
  color: var(--bzn-ec-black);
  white-space: nowrap;
}

.bzn-ec-checkout-details__summary {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bzn-ec-checkout-details__row {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 14px;
}

.bzn-ec-checkout-details__row strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-details__row strong.is-discount {
  color: var(--bzn-ec-black);
}

.bzn-ec-checkout-details__row--total {
  margin-top: 6px;
  font-size: 15px;
  border-bottom: 0;
  padding-bottom: 0;
}

.bzn-ec-checkout-details__row--total strong {
  font-size: 20px;
}

/* Product details page */
.bzn-ec-pd {
  padding: 60px 0 64px;
  background: var(--bzn-ec-white);
}

.bzn-ec-pd__crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin: 0 0 60px;
  font-size: 18px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-pd__crumbs a {
  color: var(--bzn-ec-black);
  transition: color 0.2s ease;
}

.bzn-ec-pd__crumbs a:hover {
  color: #1b2a52;
}

.bzn-ec-pd__crumbs .is-current {
  font-weight: 700;
}

.bzn-ec-pd-gallery {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bzn-ec-pd-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.bzn-ec-pd-gallery__thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #f3f4f6;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.bzn-ec-pd-gallery__thumb.is-active {
  border-color: var(--bzn-ec-black);
}

.bzn-ec-pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bzn-ec-pd-gallery__main {
  position: relative;
  flex: 1;
  min-width: 0;
  background: #f3f4f6;
  border-radius: 4px;
  overflow: hidden;
}

.bzn-ec-pd-gallery__img {
  width: 100%;
  height: auto;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.bzn-ec-pd-gallery__share {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.bzn-ec-pd-gallery__share a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bzn-ec-black);
  font-size: 14px;
  transition: color 0.2s ease;
}

.bzn-ec-pd-gallery__share a:hover {
  color: #1b2a52;
}

.bzn-ec-pd-gallery__expand {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--bzn-ec-black);
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
}

.bzn-ec-pd-gallery__expand:hover {
  background: var(--bzn-ec-white);
}

.bzn-ec-pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.bzn-ec-pd-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.bzn-ec-lightbox-open {
  overflow: hidden;
}

.bzn-ec-pd-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 16, 20, 0.88);
}

.bzn-ec-pd-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bzn-ec-pd-lightbox__figure {
  margin: 0;
  width: 100%;
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bzn-ec-white);
  border-radius: 8px;
  overflow: hidden;
}

.bzn-ec-pd-lightbox__img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 120px);
  object-fit: contain;
}

.bzn-ec-pd-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bzn-ec-black);
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.bzn-ec-pd-lightbox__close:hover {
  background: var(--bzn-ec-white);
}

.bzn-ec-pd-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--bzn-ec-black);
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease;
}

.bzn-ec-pd-lightbox__nav:hover {
  background: var(--bzn-ec-white);
}

.bzn-ec-pd-lightbox__nav--prev {
  left: -56px;
}

.bzn-ec-pd-lightbox__nav--next {
  right: -56px;
}

.bzn-ec-pd-lightbox__counter {
  margin: 16px 0 0;
  color: var(--bzn-ec-white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 767.98px) {
  .bzn-ec-pd-lightbox {
    padding: 16px;
  }

  .bzn-ec-pd-lightbox__close {
    top: 8px;
    right: 8px;
    position: fixed;
  }

  .bzn-ec-pd-lightbox__nav {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .bzn-ec-pd-lightbox__nav--prev {
    left: calc(50% - 52px);
  }

  .bzn-ec-pd-lightbox__nav--next {
    right: calc(50% - 52px);
  }

  .bzn-ec-pd-lightbox__figure {
    max-height: calc(100vh - 100px);
  }

  .bzn-ec-pd-lightbox__img {
    max-height: calc(100vh - 100px);
  }
}

.bzn-ec-pd-info {
  padding-top: 8px;
}

.bzn-ec-pd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.bzn-ec-pd-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bzn-ec-pd-badge.is-stock {
  background: #88888925;
  color: #151517;
}

.bzn-ec-pd-badge.is-new {
  background: #d90a2c;
  color: var(--bzn-ec-white);
}

.bzn-ec-pd-info__title {
  margin: 0 0 10px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: var(--bzn-ec-black);
}

.bzn-ec-pd-info__meta {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: #151517;
}

.bzn-ec-pd-info__price {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  color: #101014;
}

.bzn-ec-pd-rating {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid #90919c;
  border-radius: 12px;
}

.bzn-ec-pd-rating__stars-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bzn-ec-pd-rating__text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-pd-rating__text strong {
  font-weight: 500;
  color: #151517;
}

.bzn-ec-pd-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #888889;
  font-size: 14px;
}

.bzn-ec-pd-rating__stars .is-filled {
  color: var(--bzn-ec-black);
}

.bzn-ec-pd-rating__count {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.bzn-ec-pd-rating__count strong {
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-pd-specs {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bzn-ec-pd-specs li {
  font-size: 14px;
  font-weight: 700;
  color: #151517;
}

.bzn-ec-pd-specs strong {
  font-weight: 500;
}

.bzn-ec-pd-info__desc {
  margin: 0 0 24px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #4b5563;
  max-width: 520px;
}

.bzn-ec-pd-option {
  margin-bottom: 22px;
  border-top: 1px solid #90919c25;
  padding-top: 20px;
}

.bzn-ec-pd-option__label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.bzn-ec-pd-option__label strong {
  font-weight: 700;
  color: var(--bzn-ec-black);
}

.bzn-ec-pd-colours {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.bzn-ec-pd-colour {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bzn-ec-pd-colour--light {
  border-color: #e5e7eb;
}

.bzn-ec-pd-colour.is-active {
  box-shadow: 0 0 0 2px var(--bzn-ec-white), 0 0 0 4px var(--bzn-ec-black);
  transform: scale(1.05);
}

.bzn-ec-pd-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bzn-ec-pd-size {
  min-width: 52px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: var(--bzn-ec-white);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--bzn-ec-black);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.bzn-ec-pd-size:hover,
.bzn-ec-pd-size.is-active {
  border-color: var(--bzn-ec-black);
  background: var(--bzn-ec-white);
}

.bzn-ec-pd-buy {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #eceef2;
}

.bzn-ec-pd-buy__price {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 600;
  color: var(--bzn-ec-black);
}

.bzn-ec-pd-buy__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.bzn-ec-pd-qty {
  border-radius: 8px;
}

.bzn-ec-pd-buy__cart {
  flex: 1 1 200px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
  font-size: 16px;
  font-weight: 700;
  max-width: max-content;
  transition: background 0.2s ease;
}

.bzn-ec-pd-buy__cart:hover {
  background: #1b2a52;
  color: var(--bzn-ec-white);
}

.bzn-ec-pd-buy__wish {
  width: 52px;
  height: 52px;
  border: 2px solid var(--bzn-ec-black);
  border-radius: 8px;
  background: var(--bzn-ec-white);
  color: var(--bzn-ec-black);
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.bzn-ec-pd-buy__wish:hover {
  background: var(--bzn-ec-black);
  color: var(--bzn-ec-white);
}

.bzn-ec-pd-related {
  padding: 0 0 72px;
  background: var(--bzn-ec-white);
}

.bzn-ec-pd-related__slide.bzn-ec-slider__slide {
  flex: 0 0 calc((100% - 54px) / 4);
}

.bzn-ec-pd-reviews {
  padding: 0 0 80px;
  background: var(--bzn-ec-white);
}

.bzn-ec-pd-reviews__title {
  margin: 0 0 32px;
  font-family: var(--bzn-ec-font-alt);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: #151517;
}

.bzn-ec-pd-review {
  height: 100%;
  padding: 24px;
  border-radius: 12px;
  background: var(--bzn-ec-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.bzn-ec-pd-review__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bzn-ec-pd-review__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.bzn-ec-pd-review__user {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.bzn-ec-pd-review__user strong {
  font-size: 15px;
  font-weight: 600;
  color: #323232;
}

.bzn-ec-pd-review__date {
  font-size: 13px;
  font-weight: 500;
  color: #323232;
}

.bzn-ec-pd-review__verified {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 6px;
  background: #dddaed;
  color: #323232;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.bzn-ec-pd-review__stars {
  display: inline-flex;
  gap: 3px;
  color: #ecba0b;
  font-size: 18px;
  margin-left: auto;
}

.bzn-ec-pd-review__text {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #323232;
}

.bzn-ec-pd-review__more {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #151517;
  margin-left: auto;
  text-align: right;
}

.bzn-ec-pd-review__more:hover {
  color: #1b2a52;
}
