:root {
  /* Dynamic custom branding variables based on Biozin (bz-) */
  --bz-bg-base: #F5F8FA;
  --bz-surface: #FFFFFF;
  --bz-accent: #1E6B7B;
  --bz-accent-hover: #154B57;
  --bz-contrast-text: #1D262C;
  --bz-body-text: #5A6973;
  --bz-accent-bg: #E2F1F4;
  --bz-border-tint: #E2E8F0;
  
  /* Fonts */
  --font-display: 'Raleway', sans-serif;
  --font-body: 'Mulish', sans-serif;

  /* Theme settings */
  --bz-radius: 14px; /* soft */
  --bz-shadow-deep: 0 20px 25px -5px rgba(30, 107, 123, 0.1), 0 10px 10px -5px rgba(30, 107, 123, 0.04);
}

/* Base resets and overrides */
body {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Layout container custom sizing */
.bz-main-hull {
  width: 100%;
  max-width: 1180px; /* Custom container-width */
}

/* Header style settings */
.bz-masthead {
  position: sticky;
  top: 0;
  z-index: 50;
}

.bz-brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--bz-contrast-text);
  text-transform: uppercase;
}

.bz-brand-glyph {
  width: 2rem;
  height: 2rem;
  color: var(--bz-accent);
}

/* H1 Specific rules */
.bz-main-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.2;
  text-transform: uppercase;
}

@media(max-width: 768px) {
  .bz-main-title {
    font-size: 1.75rem;
  }
}

/* Custom CSS Price tag */
.bz-purchase-tag {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  clip-path: polygon(15px 0%, 100% 0%, 100% 100%, 15px 100%, 0% 50%);
  font-family: var(--font-display);
}

/* Gallery thumbnails styling */
.bz-thumb-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  transition: background-color 0.3s;
}

/* Alternate Section styling */
.bz-shelf-lead {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
}

.bz-shelf-row {
  border-bottom: 1px solid var(--bz-border-tint);
}

.bz-shelf-row:last-child {
  border-bottom: none;
}

.bz-icon-circle {
  border-radius: 50%;
  flex-shrink: 0;
}

.bz-row-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 4rem;
}

/* Testimonials Masonry */
.bz-masonry-columns {
  column-count: 3;
  column-gap: 1.5rem;
}

@media (max-width: 1024px) {
  .bz-masonry-columns {
    column-count: 2;
  }
}

@media (max-width: 640px) {
  .bz-masonry-columns {
    column-count: 1;
  }
}

.bz-avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Accessibility & interactive behaviors */
.bz-action-trigger:hover {
  background-color: var(--bz-accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 25px 30px -5px rgba(30, 107, 123, 0.15);
}

.bz-fineprint a {
  color: #CBD5E1;
}

.bz-fineprint a:hover {
  color: #FFFFFF;
}