:root {
  --zb-black: #050403;
  --zb-ink: #0b0907;
  --zb-panel: #12100d;
  --zb-cream: #ead8b7;
  --zb-muted: #c8ab7b;
  --zb-gold: #d39a46;
  --zb-copper: #9b642d;
  --zb-line: rgba(211, 154, 70, .5);
  --zb-display: "Segoe Print", "Bradley Hand ITC", "Comic Sans MS", Georgia, serif;
  --zb-serif: Georgia, "Palatino Linotype", "Book Antiqua", serif;
  --zb-sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-y: scroll;
  color: var(--zb-cream);
  background:
    radial-gradient(circle at 18% 12%, rgba(136, 90, 36, .18), transparent 28rem),
    radial-gradient(circle at 80% 18%, rgba(92, 56, 22, .16), transparent 24rem),
    linear-gradient(180deg, #090704 0%, #030302 100%);
  font-family: var(--zb-display);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
  background-size: 54px 54px, 54px 54px;
}

a {
  color: var(--zb-cream);
  transition: color .2s ease, filter .2s ease, transform .2s ease;
}

a:hover {
  color: var(--zb-gold);
  filter: brightness(1.08);
}

::-webkit-scrollbar {
  width: 12px;
  background-color: #000;
}

::-webkit-scrollbar-track {
  background-color: #17110b;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #9b642d;
  box-shadow: inset 0 0 0 2px #050403;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity .35s ease, visibility .35s ease;
}

#preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#preloader img {
  width: 160px;
  border-color: var(--zb-gold) !important;
}

.barber-navbar {
  min-height: 76px;
  background:
    linear-gradient(180deg, rgba(13, 10, 7, .98), rgba(2, 2, 2, .94)),
    #050403;
  border-bottom: 1px solid rgba(211, 154, 70, .38);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .55);
  transition: min-height .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.barber-navbar.is-scrolled {
  min-height: 62px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .68);
}

.navbar-brand img {
  width: 58px;
  border: 1px solid var(--zb-line);
}

.navbar .navbar-nav {
  align-items: center;
  gap: clamp(.9rem, 3vw, 2.8rem);
}

.navbar .navbar-nav .nav-link {
  position: relative;
  padding: .35rem .2rem;
  color: var(--zb-cream);
  font-family: var(--zb-display);
  font-size: clamp(1.05rem, 1.8vw, 1.48rem);
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
}

.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .12rem;
  width: 0;
  height: 1px;
  background: var(--zb-gold);
  transition: width .2s ease, left .2s ease;
}

.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover {
  color: var(--zb-gold);
}

.navbar .navbar-nav .nav-link.active::after,
.navbar .navbar-nav .nav-link:hover::after {
  left: 0;
  width: 100%;
}

.logo {
  position: relative;
  display: block;
  width: 142px;
  height: 70px;
  margin: 0 .7rem;
  transition: width .25s ease, height .25s ease;
}

.logo .wrapper {
  position: absolute;
  left: 50%;
  top: 90%;
  width: 200px;
  height: 200px;
  padding: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 11, 8, .96), rgba(0, 0, 0, .98));
  border: 1px solid rgba(211, 154, 70, .58);
  box-shadow: 0 14px 38px rgba(0, 0, 0, .58);
  transform: translate(-50%, -34%);
  transition: width .25s ease, height .25s ease, transform .25s ease;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(234, 216, 183, .32);
}

.barber-navbar.is-scrolled .logo {
  height: 56px;
}

.barber-navbar.is-scrolled .logo .wrapper {
  width: 150px;
  height: 150px;
  transform: translate(-50%, -34%);
}

.navbar-toggler i {
  font-size: 42px;
}

.masthead {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #000;
}

.masthead-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0;
  filter: saturate(.86) contrast(1.04) brightness(.72);
  transform: scale(1.02);
  transition: opacity 1.25s ease, transform 7s ease;
}

.masthead-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.masthead-media.is-active {
  opacity: 1;
  transform: scale(1);
}

.masthead .overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.096) 0%, rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, 0.13) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.11), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.185));
}

.ornament-top-bg {
  height: 85px;
  min-height: 85px;
  background:
    linear-gradient(180deg, #080604, #020201),
    url("../img/ornament.png");
  background-image: url("../img/ornament.png"), linear-gradient(180deg, #080604, #020201);
  background-size: 85px 102px, auto;
  background-repeat: repeat-x, repeat;
  background-position: center, center;
  filter: sepia(.8) saturate(1.8) brightness(.86);
}

.ornament-bottom-bg {
  height: 92px;
  min-height: 72px;
  background: #dfc69b url("../img/page-bottom.png") repeat-x center / auto 92px;
  border-top: 1px solid rgba(211, 154, 70, .7);
  border-bottom: 1px solid rgba(0, 0, 0, .55);
}

.black {
  position: relative;
  background: transparent;
  color: var(--zb-cream);
}

.custom-title,
.gallery h1,
.site-info,
.pera-bottom,
.pera-top,
.section-tittle-about,
.custom-button {
  font-family: var(--zb-display);
}

.custom-title,
.gallery h1,
.site-info h1,
.pricing-section h2 {
  color: var(--zb-cream) !important;
  font-weight: 500;
  letter-spacing: 0;
}

.custom-title::before,
.custom-title::after,
.pricing-section h2::before,
.pricing-section h2::after {
  content: "";
  display: inline-block;
  width: 42px;
  height: 1px;
  margin: 0 16px 8px;
  background: var(--zb-gold);
  box-shadow: 0 4px 0 rgba(211, 154, 70, .3);
}

.section {
  background:
    radial-gradient(circle at 10% 12%, rgba(166, 101, 38, .09), transparent 22rem),
    linear-gradient(180deg, rgba(9, 7, 4, .94), rgba(4, 3, 2, .98));
}

.about {
  padding-top: 2.5rem !important;
}

.about .container {
  max-width: 1180px;
}

.about-img {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
}

.about-img img {
  position: relative;
  z-index: 3;
  width: 100%;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .48);
}

.about-caption {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.about-image {
  height: 160px;
  min-height: 100px;
  filter: sepia(1) saturate(1.35) hue-rotate(344deg) brightness(1.25);
}

.smaller-image {
  max-width: 100%;
  height: auto;
}

.section-tittle-about h2 {
  color: var(--zb-cream) !important;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
}

.pera-bottom,
.pera-top {
  color: var(--zb-cream) !important;
  font-size: clamp(1.02rem, 1.9vw, 1.28rem);
  line-height: 1.65;
  margin-bottom: 18px;
  text-wrap: pretty;
}

.team {
  padding-top: 1rem !important;
}

.team .row {
  padding-top: 1.5rem !important;
}

.ldapico-plugin[data-plugin="TeamShowcase"] {
  padding: 34px 0 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 154, 70, .08), transparent 26rem),
    linear-gradient(180deg, rgba(8, 6, 4, .96), rgba(3, 3, 2, .99));
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team {
  margin-top: 0;
  margin-bottom: 0;
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__card {
  flex: 0 1 calc((100% - 66px) / 4);
  min-height: 100%;
  padding: 15px 14px 58px;
  background:
    linear-gradient(180deg, rgba(3, 3, 2, .1), rgba(3, 3, 2, .18)),
    url("../img/tlo.png") center / 100% 100% no-repeat;
  border: 0;
  border-radius: 10px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, .48);
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__card::before {
  display: none;
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__image {
  margin: 0 0 12px;
  aspect-ratio: 4 / 5;
  background: rgba(5, 4, 3, .82);
  border-color: rgba(211, 154, 70, .42);
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__image img {
  object-position: center top;
}

.ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__card>div:last-child {
  min-height: 138px;
  margin-bottom: 22px;
  padding: 10px 10px 18px;
}

@media (max-width: 991.98px) {
  .ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__card {
    flex-basis: min(100%, calc((100% - 22px) / 2));
  }
}

.flip-card {
  height: 420px;
  perspective: none;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: flat;
}

.flip-card:hover .flip-card-inner {
  transform: none;
}

.flip-card-front {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 9px;
  background: #090705;
  border: 2px solid rgba(211, 154, 70, .82);
  border-radius: 8px 8px 0 0;
  box-shadow:
    inset 0 0 0 1px rgba(234, 216, 183, .18),
    0 18px 40px rgba(0, 0, 0, .45);
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  filter: saturate(.9) contrast(1.04);
}

.flip-card-back {
  display: none;
}

.card-body {
  margin-top: -1px;
  padding: 1.35rem 1rem 1.2rem;
  color: var(--zb-cream) !important;
  background:
    linear-gradient(180deg, rgba(21, 18, 14, .95), rgba(9, 7, 5, .98)) !important;
  border: 2px solid rgba(211, 154, 70, .82);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .42);
}

.card-body h1 {
  margin-bottom: .2rem;
  color: var(--zb-cream) !important;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 500;
}

.card-body p {
  color: var(--zb-gold) !important;
  font-family: var(--zb-sans);
  font-size: .85rem;
  font-weight: 700;
}

.booking-section,
.ldapico-plugin[data-plugin="BookingCta"] {
  padding: 48px 16px 12px;
  text-align: center;
}

.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action p {
  padding-bottom: 34px;
}

.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action p::after {
  left: 50%;
  top: auto;
  bottom: 4px;
  width: 18px;
  height: 18px;
  border: 0;
  border-right: 2px solid var(--zb-gold);
  border-bottom: 2px solid var(--zb-gold);
  opacity: .9;
  transform: translate(-50%, 0) rotate(45deg);
  animation: zb-booking-arrow-bounce 1.25s ease-in-out infinite;
}

.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action a {
  display: block;
  width: min(300px, 80vw);
  min-width: 0;
  aspect-ratio: 100 / 33;
  padding: 0;
  background: url("../img/rezerwacja.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 0;
  text-transform: none;
}

.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action a::before,
.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action a::after {
  display: none;
}

.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action a span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action a:hover {
  background: url("../img/rezerwacja.png") center / contain no-repeat;
  box-shadow: none;
  filter: brightness(1.06);
  transform: translateY(-2px);
}

@keyframes zb-booking-arrow-bounce {

  0%,
  100% {
    transform: translate(-50%, -3px) rotate(45deg);
  }

  50% {
    transform: translate(-50%, 6px) rotate(45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ldapico-plugin[data-plugin="BookingCta"] .ldapico-booking__action p::after {
    animation: none;
  }
}

.booking-logo {
  max-width: 132px;
  padding: 10px;
  background: #3fc5a7;
  border: 2px solid rgba(0, 0, 0, .75);
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .42);
  transition: transform .25s ease;
}

.booking-logo:hover {
  transform: translateY(-3px) scale(1.04);
}

.custom-button {
  padding-top: 12px;
  padding-bottom: 74px;
}

.custom-button p {
  color: var(--zb-cream) !important;
}

.booking-button {
  color: #1b1004;
  background: linear-gradient(180deg, #d89b43, #b77625);
  border: 2px solid rgba(255, 213, 135, .55);
  border-radius: 7px;
  font-family: var(--zb-sans);
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.booking-button::before,
.booking-button::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.booking-button:hover {
  color: #100903;
  background: linear-gradient(180deg, #e4ac55, #c78531);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(183, 118, 37, .28);
}

.pricing-section {
  position: relative;
  padding: 92px 0 90px;
  background:
    radial-gradient(circle at 50% 0, rgba(211, 154, 70, .09), transparent 28rem),
    linear-gradient(180deg, rgba(9, 7, 4, .96), rgba(3, 3, 2, .98));
  font-family: var(--zb-display);
}

.pricing-section .row.border {
  padding: 8px 14px 22px;
  border-color: rgba(211, 154, 70, .48) !important;
  background: rgba(0, 0, 0, .18);
  box-shadow: inset 0 0 0 1px rgba(234, 216, 183, .06);
}

.pricing-section h2 {
  margin-top: 1.25rem !important;
  margin-bottom: 2.2rem !important;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.price-ornament {
  max-height: 200px;
  filter: brightness(0) saturate(100%) invert(66%) sepia(50%) saturate(719%) hue-rotate(343deg) brightness(88%) contrast(86%);
}

.price-block {
  position: relative;
  margin-bottom: 24px;
}

.price-block .inner-box {
  position: relative;
  min-height: 112px;
  padding: 0 124px 20px 0;
  color: var(--zb-cream);
  border-bottom: 1px dashed rgba(211, 154, 70, .45);
}

.price-block .price {
  position: absolute;
  right: 0;
  top: 2px;
  color: var(--zb-gold);
  font-family: var(--zb-sans);
  font-size: 1.15rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-block h4 {
  color: var(--zb-cream);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
}

.price-block p {
  color: rgba(234, 216, 183, .74);
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 6px;
  margin-bottom: 0;
}

.price-block p.text-end {
  color: var(--zb-muted);
  font-family: var(--zb-sans);
  font-size: .9rem;
}

.gallery {
  background:
    radial-gradient(circle at 50% 0, rgba(211, 154, 70, .08), transparent 22rem),
    linear-gradient(180deg, rgba(8, 6, 4, .96), rgba(3, 3, 2, .99));
}

.gallery h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.gallery a[data-lightbox="gallery"] {
  display: block;
  padding: clamp(14px, 1.35vw, 19px);
  background:
    linear-gradient(180deg, rgba(3, 3, 2, .08), rgba(3, 3, 2, .18)),
    url("../img/galeria.png") center / 100% 100% no-repeat;
  border: 0;
  border-radius: 9px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, .42);
}

.gallery .img-thumbnail {
  display: block;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
}

.gallery a img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: cover;
  transition: transform .25s ease, filter .25s ease;
}

.gallery a:hover img {
  transform: translateY(-3px);
  filter: brightness(.8);
}

.site-info {
  background:
    radial-gradient(circle at 70% 0, rgba(211, 154, 70, .08), transparent 24rem),
    linear-gradient(180deg, rgba(8, 6, 4, .96), rgba(3, 3, 2, .99));
}

.site-info .info_single {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  color: var(--zb-cream) !important;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  border-bottom: 1px dashed rgba(211, 154, 70, .32);
}

.site-info .info_single span:first-of-type {
  color: var(--zb-muted);
}

.site-info .info_single strong,
.site-info .info_single span:last-child {
  font-weight: 500;
}

.site-info i {
  color: var(--zb-gold);
}

.map iframe {
  display: block;
  filter: saturate(.75) contrast(.94);
}

.policy-content {
  color: var(--zb-cream) !important;
  font-family: var(--zb-sans);
  line-height: 1.75;
}

.policy-content h2,
.policy-content h3 {
  padding-top: 18px;
  color: var(--zb-gold);
  font-family: var(--zb-display);
}

.policy-content p,
.policy-content li {
  font-size: 1.05rem;
}

.site-footer {
  font-family: var(--zb-display);
  background: #050403 !important;
  border-top: 1px solid rgba(211, 154, 70, .25);
}

.site-footer .container {
  padding-top: 1.35rem !important;
  padding-bottom: 1rem !important;
}

.site-footer a {
  color: var(--zb-cream) !important;
}

.site-footer .bg-dark {
  background: #050403 !important;
  color: var(--zb-cream);
  border-top: 1px dashed rgba(211, 154, 70, .22);
}

.btn-group-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
}

.btn-group-fab>div {
  position: relative;
  width: 100%;
  height: 100%;
}

.btn-group-fab .btn {
  position: absolute;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
}

.btn-group-fab .btn-main,
.btn-group-fab .btn-sub {
  background: #0a0806 !important;
  border-color: var(--zb-line) !important;
}

.btn-group-fab .btn-main {
  width: 60px;
  height: 60px;
  font-size: 30px;
  z-index: 9;
}

.btn-group-fab .btn-sub {
  z-index: 8;
  opacity: 0;
  transform: translateY(0);
  transition: transform .25s ease, opacity .25s ease;
}

.btn-group-fab.active .btn-sub {
  opacity: 1;
}

.btn-group-fab.active .btn-sub:nth-child(2) {
  transform: translateY(-70px);
}

.btn-group-fab.active .btn-sub:nth-child(3) {
  transform: translateY(-130px);
}

.btn-group-fab.active .btn-sub:nth-child(4) {
  transform: translateY(-190px);
}

@media (max-width: 991.98px) {
  .masthead {
    min-height: 68vh;
  }

  .navbar-collapse .navbar-nav {
    align-items: center;
  }

  .navbar-collapse .nav-item {
    padding-top: .2rem !important;
    padding-bottom: .2rem !important;
  }

  .navbar .navbar-nav {
    gap: .75rem;
  }

  .navbar .navbar-nav .nav-link {
    font-size: 1.45rem;
  }

}

@media (max-width: 767.98px) {
  .ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team {
    width: min(100% - 28px, 380px);
  }

  .ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__grid {
    display: flex;
    justify-content: center;
    gap: 18px;
  }

  .ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__card {
    flex-basis: min(100%, 340px);
    width: min(100%, 340px);
    margin-inline: auto;
    padding: 12px 12px 64px;
    background-size: 100% 100%;
  }

  .ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__image {
    aspect-ratio: 4 / 5;
    margin-bottom: 14px;
  }

  .ldapico-plugin[data-plugin="TeamShowcase"] .ldapico-team__card>div:last-child {
    min-height: auto;
    margin-bottom: 30px;
    padding-inline: 8px;
  }

  .masthead {
    min-height: 58vh;
  }

  .custom-title::before,
  .custom-title::after,
  .pricing-section h2::before,
  .pricing-section h2::after {
    width: 24px;
    margin: 0 8px 7px;
  }

  .about {
    padding-top: 1.2rem !important;
  }

  .about-img {
    max-width: 84vw;
  }

  .pera-bottom,
  .pera-top {
    font-size: 1rem;
    line-height: 1.58;
  }

  .flip-card {
    height: 390px;
  }

  .pricing-section {
    padding: 64px 0;
  }

  .price-block .inner-box {
    min-height: 118px;
    padding-right: 88px;
  }

  .price-block .price {
    font-size: .96rem;
  }

  .site-info .info_single {
    align-items: flex-start;
    flex-wrap: wrap;
    font-size: 1rem;
  }

  .ornament-top-bg {
    height: 65px;
    min-height: 58px;
    background-size: 50px 58px, auto;
  }

  .ornament-bottom-bg {
    height: 72px;
    background-size: auto 72px;
  }

}

/* DESKTOP NAV */
.desktop-nav {
  gap: clamp(.9rem, 3vw, 2.8rem);
}

.desktop-nav .nav-link {
  position: relative;
  padding: .35rem .2rem;
  color: var(--zb-cream);
  font-family: var(--zb-display);
  font-size: clamp(1.05rem, 1.8vw, 1.48rem);
  font-weight: 500;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
}

.desktop-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .12rem;
  width: 0;
  height: 1px;
  background: var(--zb-gold);
  transition: width .2s ease, left .2s ease;
}

.desktop-nav .nav-link.active,
.desktop-nav .nav-link:hover {
  color: var(--zb-gold);
}

.desktop-nav .nav-link.active::after,
.desktop-nav .nav-link:hover::after {
  left: 0;
  width: 100%;
}

/* MOBILE OFFCANVAS */
.zb-offcanvas {
  width: min(88vw, 390px);
  color: var(--zb-cream);
  background:
    radial-gradient(circle at 20% 10%, rgba(211, 154, 70, .16), transparent 16rem),
    linear-gradient(180deg, rgba(13, 10, 7, .98), rgba(2, 2, 2, .99));
  border-left: 1px solid rgba(211, 154, 70, .5);
  box-shadow: -22px 0 50px rgba(0, 0, 0, .65);
  font-family: var(--zb-display);
}

.zb-offcanvas::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.zb-offcanvas .offcanvas-header {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  border-bottom: 1px dashed rgba(211, 154, 70, .42);
}

.zb-offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--zb-cream);
  text-decoration: none;
  font-size: 1.2rem;
}

.zb-offcanvas-brand img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border: 1px solid rgba(211, 154, 70, .7);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .45);
}

.zb-offcanvas .offcanvas-body {
  position: relative;
  z-index: 1;
  padding: 24px 20px 28px;
}

.zb-mobile-ornament {
  height: 42px;
  margin-bottom: 16px;
  background:
    linear-gradient(90deg, transparent, rgba(211, 154, 70, .7), transparent);
  mask-image: radial-gradient(circle, #000 45%, transparent 47%);
  mask-size: 22px 22px;
  mask-repeat: repeat-x;
  mask-position: center;
  opacity: .8;
}

.zb-mobile-menu {
  display: grid;
  gap: 12px;
}

.zb-mobile-menu .nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--zb-cream);
  text-decoration: none;
  font-size: 1.45rem;
  border: 1px solid rgba(211, 154, 70, .28);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01)),
    rgba(0, 0, 0, .22);
  box-shadow:
    inset 0 0 0 1px rgba(234, 216, 183, .04),
    0 10px 24px rgba(0, 0, 0, .25);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.zb-mobile-menu .nav-link i {
  color: var(--zb-gold);
  font-size: 1.2rem;
}

.zb-mobile-menu .nav-link:hover,
.zb-mobile-menu .nav-link.active {
  color: var(--zb-gold);
  border-color: rgba(211, 154, 70, .72);
  background:
    linear-gradient(180deg, rgba(211, 154, 70, .16), rgba(211, 154, 70, .05)),
    rgba(0, 0, 0, .32);
  transform: translateX(-3px);
}

.zb-offcanvas-contact {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed rgba(211, 154, 70, .35);
  display: grid;
  gap: 10px;
  font-family: var(--zb-sans);
}

.zb-offcanvas-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(234, 216, 183, .86);
  text-decoration: none;
  font-size: .95rem;
}

.zb-offcanvas-contact i {
  color: var(--zb-gold);
}

/* MOBILE NAVBAR POPRAWKI */
@media (max-width: 991.98px) {
  .barber-navbar {
    min-height: 70px;
  }

  .barber-navbar .container-fluid {
    min-height: 70px;
  }

  .navbar-brand img {
    width: 70px;
    height: 70px;
    object-fit: cover;
  }

  .navbar-toggler {
    padding: 0;
    box-shadow: none !important;
  }

  .navbar-toggler i {
    font-size: 42px;
    line-height: 1;
  }
}