﻿/* ==========================================================
   BRILED.cz - Premium Hero Banner v1
   brand: #1D1D1B (black), #D61118 (red), #ffffff (white)
   Fonts: Bebas Neue (headings), DM Sans (body)
   ========================================================== */

@keyframes brb-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes brb-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes brb-label-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes brb-dot-blink {
  0%,100% { opacity: 0.25; }
  50%     { opacity: 0.80; }
}

#brb-hero {
  position: relative;
  z-index: 101;
  --brb-line-left: 0px;
  --brb-line-right: 0px;
  --brb-line-top: 0px;
  width: 100%;
  height: auto;
  min-height: 400px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  margin: -29px auto 0;
}

#brb-hero::before {
  content: '';
  position: absolute;
  left: var(--brb-line-left, 0px);
  right: var(--brb-line-right, 0px);
  top: var(--brb-line-top, 0px);
  height: 1px;
  background: #E0E0E0;
  pointer-events: none;
  z-index: 9;
  transition: left 0.2s ease, right 0.2s ease;
}

#brb-hero .brb-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

#brb-hero .brb-overlay {
  display: none;
}

#brb-hero .brb-corner {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-top: 1px solid rgba(214,17,24,0.45);
  border-right: 1px solid rgba(214,17,24,0.45);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: brb-fade-in 0.8s cubic-bezier(0.22,1,0.36,1) 1.2s forwards;
}
#brb-hero .brb-dot {
  position: absolute;
  top: 29px;
  right: 29px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #D61118;
  z-index: 6;
  animation: brb-dot-blink 2.6s ease-in-out 1.5s infinite;
}
#brb-hero .brb-corner-bl {
  position: absolute;
  bottom: 28px;
  left: 28px;
  width: 36px;
  height: 36px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  border-left: 1px solid rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: brb-fade-in 0.8s cubic-bezier(0.22,1,0.36,1) 1.4s forwards;
}

#brb-hero .brb-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 10px 24px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

#brb-hero .brb-inner::before {
  content: none;
}

#brb-hero .brb-content {
  flex: 0 1 40%;
  width: 40%;
  max-width: 500px;
  min-width: 0;
  
}

#brb-hero .brb-category-panel {
  flex: 0 1 614px;
  max-width: 614px;
  min-width: 0;
  margin-left: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: brb-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 1.05s forwards;
}

#brb-hero .brb-category-grid {
  flex: 0 1 614px;
  max-width: 614px;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  align-items: stretch;
  background-color: rgba(0,0,0,0.06);
  border-radius: 14px;
  overflow: hidden;
}

#brb-hero .brb-cta-grid {
  flex: 0 0 180px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
}

#brb-hero .brb-cta-tile {
  display: flex;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  text-decoration: none;
  line-height: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.18s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}
#brb-hero .brb-cta-tile:hover,
#brb-hero .brb-cta-tile:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(214,17,24,0.42);
  background: transparent !important;
  text-decoration: none;
  outline: none;
}

#brb-hero .brb-cta-tile-img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
}

#brb-hero .brb-cta-grid .brb-cta-tile:nth-child(n + 2) {
  opacity: 0.5;
}
#brb-hero .brb-cta-grid .brb-cta-tile:nth-child(n + 2):hover,
#brb-hero .brb-cta-grid .brb-cta-tile:nth-child(n + 2):focus-visible {
  opacity: 1;
}

#brb-hero .brb-category-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  aspect-ratio: 1 / 1;
  min-height: 123px;
  padding: 11px 11px 14px;
  border-radius: 0;
  overflow: hidden;
  text-decoration: none;
  background-color: #ffffff;
  background-size: auto 96px;
background-position: center 14px;
  background-repeat: no-repeat;
}
#brb-hero .brb-category-tile:hover,
#brb-hero .brb-category-tile:focus-visible,
#brb-hero .brb-category-tile:active {
  text-decoration: none;
  outline: none;
}
#brb-hero .brb-category-tile-overlay {
  display: none;
}
#brb-hero .brb-category-tile-text {
  display: block;
  width: 100%;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  color: #1D1D1B;
  text-align: left;
  margin-top: 4px;
}
#brb-hero .brb-category-tile-subs {
  display: block;
  width: 100%;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 9px;
  font-weight: 550;
  line-height: 1.35;
  color: #9a9a99;
  text-align: left;
  margin-top: 2px;
}
#brb-hero .brb-category-tile--pasky {
  background-image: url("https://www.briled.cz/user/documents/upload/Obrázky popisky/364010/DSC00961-Photoroom (2)_AS.jpg");

}
#brb-hero .brb-category-tile--profily {
  background-image: url("https://www.briled.cz/user/documents/upload/Obrázky popisky/207032/OPAC_30_3.jpg");
}
#brb-hero .brb-category-tile--zdroje {
  background-image: url("https://www.briled.cz/user/documents/upload/Obrázky popisky/885123/IMG_2530-Photoroom (1)_compressed.jpg");
}
#brb-hero .brb-category-tile--rizeni {
  background-image: url("https://www.briled.cz/user/documents/upload/Obrázky popisky/111454/111454 2.png");
}
#brb-hero .brb-category-tile--svitidla {
  background-image: url("https://www.briled.cz/user/documents/upload/Obrázky popisky/116065/116063.png");
}
#brb-hero .brb-category-tile--zarovky {
  background-image: url("https://www.briled.cz/user/documents/upload/Obrázky popisky/162110/162110 1.png");
}

#brb-hero .brb-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0;
  animation: brb-fade-up 0.8s cubic-bezier(0.22,1,0.36,1) 0.5s forwards;
}
#brb-hero .brb-label-text {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #D61118;
}
#brb-hero .brb-label-line {
  display: block;
  width: 40px;
  height: 1px;
  background: #D61118;
  transform-origin: left center;
  transform: scaleX(0);
  animation: brb-label-line 0.7s cubic-bezier(0.22,1,0.36,1) 0.95s forwards;
}

#brb-hero .brb-headline {
  font-family: 'Bebas Neue', Impact, Arial, sans-serif;
  font-size: clamp(27.2px, 3.28vw, 46.4px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.025em;
  color: #1D1D1B;
  margin: 0 0 8px 0;
  opacity: 0;
  animation: brb-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.65s forwards;
}
#brb-hero .brb-headline br {
  display: block;
  content: "";
  margin-bottom: 4px;
}
#brb-hero .brb-headline .brb-hl-red {
  color: #D61118;
}

#brb-hero .brb-subtitle {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: #1D1D1B;
  max-width: 360px;
  margin: 0 0 0px 0;
  opacity: 0;
  animation: brb-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.80s forwards;
}
#brb-hero .brb-subtitle:last-of-type {
  margin-bottom: 16px;
}
#brb-hero .brb-subtitle .brb-subtitle-link {
  color: #1D1D1B;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.18s ease;
}
#brb-hero .brb-subtitle .brb-subtitle-link:hover,
#brb-hero .brb-subtitle .brb-subtitle-link:focus-visible,
#brb-hero .brb-subtitle .brb-subtitle-link:active {
  color: #D61118;
  font-weight: 700;
  text-decoration: none;
}

#brb-hero .brb-cta-row {
  --brb-cta-width: 371px;

  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  width: min(100%, var(--brb-cta-width));
  max-width: 100%;
  gap: 14px;
  margin-top: 14px;
  opacity: 0;
  animation: brb-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 0.95s forwards;
  box-sizing: border-box;
}
#brb-hero .brb-cta-row-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
#brb-hero .brb-cta-row .brb-cta-tile {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  opacity: 0.35;
  box-sizing: border-box;
}
#brb-hero .brb-cta-row .brb-cta-tile--primary {
  opacity: 1;
}
#brb-hero .brb-cta-row .brb-cta-tile--primary .brb-cta-tile-img {
  width: 160px;
}

/* Nakupovat CSS button */
#brb-hero .brb-cta-row .brb-nakupovat-btn {
  display: flex !important;
  align-items: center;
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 464 / 86;
  background: linear-gradient(180deg, #d61118 0%, #c90f15 100%);
  border: 1.5px solid #7f0909;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 10px 20px rgba(127, 9, 9, 0.18), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: transform 0.1s, box-shadow 0.1s;
  -webkit-tap-highlight-color: transparent;
  line-height: 1 !important;
  min-height: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 1;
}
#brb-hero .brb-cta-row .brb-nakupovat-btn::before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;
  width: clamp(78px, 20%, 138px);
  background: #ffffff;
  border-radius: 27px 999px 999px 27px;
  z-index: 0;
}
#brb-hero .brb-cta-row .brb-nakupovat-btn:hover,
#brb-hero .brb-cta-row .brb-nakupovat-btn:focus-visible {
  transform: scale(1.02) !important;
  box-shadow: 0 12px 24px rgba(214,17,24,0.28), inset 0 1px 0 rgba(255,255,255,0.12) !important;
  background: linear-gradient(180deg, #d61118 0%, #c90f15 100%) !important;
  background-color: #d61118 !important;
  text-decoration: none !important;
}
#brb-hero .brb-nakupovat-icon {
  align-self: stretch;
  flex: 0 0 clamp(64px, 16%, 120px);
  position: relative;
  z-index: 1;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 10px 8px 10px 14px;
  box-sizing: border-box;
}
#brb-hero .brb-nakupovat-svg {
  width: clamp(32px, 55%, 62px);
  height: auto;
  fill: #c41212;
  flex-shrink: 0;
}
#brb-hero .brb-nakupovat-text {
  flex: 1;
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(15px, 1.9vw, 30px);
  font-weight: 600;
  text-align: center;
  padding: 0 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
}
#brb-hero .brb-cta-row .brb-cta-tile:hover,
#brb-hero .brb-cta-row .brb-cta-tile:focus-visible {
  opacity: 1;
}
#brb-hero .brb-cta-row .brb-cta-tile-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}


#brb-hero .brb-stats {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  column-gap: 24px;
  row-gap: 10px;
  margin-top: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-top: 1px solid rgba(0,0,0,0.12);
  border-bottom: 1px solid rgba(0,0,0,0.12);
  flex-wrap: wrap;
  opacity: 0;
  animation: brb-fade-up 0.9s cubic-bezier(0.22,1,0.36,1) 1.10s forwards;
}
#brb-hero .brb-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
#brb-hero .brb-stat-num {
  font-family: 'Bebas Neue', Impact, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #1D1D1B;
  line-height: 1;
}
#brb-hero .brb-stat-label {
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(29,29,27,0.50);
}
#brb-hero .brb-stat-sep {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.15);
  flex-shrink: 0;
}

#brb-logo-strip {
  background: #ffffff;
  --brb-logo-strip-logo-opacity: 0.3;
  --brb-logo-strip-label-opacity: 1;
  padding: 0 20px 8px;
  margin-top: 0;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
#brb-logo-strip .brb-logo-strip-label {
  width: 100%;
  text-align: center;
  font-family: 'DM Sans', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #1D1D1B;
  opacity: 1;
  margin: 0 0 4px;
  padding: 0;
}
#brb-logo-strip .brb-logo-strip-label::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 40px;
  height: 1px;
  background: #1D1D1B;
  margin-left: 8px;
}
#brb-logo-strip .brb-logo-strip-img {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px;
  opacity: var(--brb-logo-strip-logo-opacity);
  transition: none !important;
  transform: none !important;
}
#brb-logo-strip .brb-logo-strip-img:hover {
  transform: none !important;
  box-shadow: none !important;
}

@media (min-width: 992px) {
  #brb-logo-strip {
    margin-top: 20px;
    margin-bottom: 60px;
    width: var(--brb-logo-strip-width, 100%);
    margin-left: var(--brb-logo-strip-left, 0);
    margin-right: var(--brb-logo-strip-right, 0);
    padding: 0 0 8px;
    justify-content: space-between;
  }
  #brb-logo-strip .brb-logo-strip-img {
    margin: 0;
  }
}

@media (max-width: 767px) {
  #brb-logo-strip {
    gap: 12px 0;
  }
  #brb-logo-strip .brb-logo-strip-img {
    margin: 0 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #brb-hero {
    --brb-line-top: 0px;
  }
  #brb-hero .brb-inner {
    padding: 30px 24px 26px;
    gap: 16px;
  }
  #brb-hero .brb-content {
    width: 44%;
    flex-basis: 44%;
    margin-top: -8px;
  }
  #brb-hero .brb-category-panel {
    flex-basis: 368px;
    max-width: 368px;
    margin-left: 6px;
    gap: 10px;
  }
  #brb-hero .brb-category-grid {
    flex-basis: 368px;
    max-width: 368px;
    gap: 1px;
    border-radius: 13px;
  }
  #brb-hero .brb-category-tile {
    min-height: 101px;
    padding: 8px 8px 11px;
    border-radius: 0;
    background-size: auto 54px;
    background-position: center 10px;
  }
  #brb-hero .brb-category-tile-text {
    font-size: 9px;
  }
  #brb-hero .brb-category-tile-subs {
    font-size: 8px;
  }
  #brb-hero .brb-cta-grid {
    flex-basis: 100px;
    gap: 10px;
  }
  #brb-hero .brb-stat-sep {
    display: none;
  }
  #brb-hero .brb-stats {
    column-gap: 18px;
    row-gap: 8px;
  }
}

@media (min-width: 992px) {
  #brb-hero .brb-inner {
    justify-content: flex-start;
    padding-left: var(--brb-hero-content-left, 10px);
    padding-right: 0;
  }

  #brb-hero .brb-category-panel {
    position: relative;
    flex: 0 0 580px;
    left: 0;
    margin-left: 2px;
    translate: 25% 0;
  }

  #brb-hero .brb-category-grid {
    flex: 0 0 580px;
    translate: none;
  }
}

@media (max-width: 767px) {
  #brb-hero {
    --brb-line-top: 0px;
  }
  #brb-hero {
    height: auto;
    min-height: 360px;
    margin-top: -10px;
  }
  #brb-hero .brb-overlay {
    display: none;
  }
  #brb-hero .brb-inner {
    padding: 28px 18px 24px;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  #brb-hero .brb-content {
    width: 100%;
    max-width: 100%;
    flex-basis: auto;
    margin-top: -4px;
  }
  #brb-hero .brb-headline {
    font-size: clamp(28.8px, 8.4vw, 41.6px);
  }
  #brb-hero .brb-subtitle {
    font-size: 12px;
    max-width: 100%;
  }
  #brb-hero .brb-corner {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
  }
  #brb-hero .brb-dot {
    top: 15px;
    right: 15px;
  }
  #brb-hero .brb-corner-bl {
    display: none;
  }
  #brb-hero .brb-stats {
    column-gap: 14px;
    row-gap: 8px;
    margin-top: 14px;
    padding-top: 10px;
  }
  #brb-hero .brb-stat-sep {
    display: none;
  }
  #brb-hero .brb-stat-num {
    font-size: 18px;
  }
  #brb-hero .brb-category-panel {
  flex: none;
  flex-basis: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-left: 0;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

#brb-hero .brb-category-grid {
  flex: none;
  flex-basis: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1px;
  border-radius: 11px;
  box-sizing: border-box;
}

#brb-hero .brb-category-tile {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 84px;
  padding: 8px 8px 11px;
  border-radius: 0;
  background-size: auto 64px;
  background-position: center 18%;
  box-sizing: border-box;
}
  #brb-hero .brb-category-tile-text {
    font-size: 10px;
  }
  #brb-hero .brb-category-tile-subs {
    font-size: 8px;
  }
   #brb-hero .brb-cta-row {
    --brb-cta-width: 100%;

    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    margin-top: 12px;
  }

  #brb-hero .brb-cta-row-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
  }

  #brb-hero .brb-cta-row-buttons .brb-cta-tile {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  #brb-hero .brb-cta-row .brb-cta-tile--primary {
    width: 100%;
    max-width: 100%;
  }

  #brb-hero .brb-cta-row .brb-nakupovat-btn {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 464 / 86;
    align-self: stretch;
    border-radius: 18px;
    min-height: 0;
  }

  #brb-hero .brb-cta-row .brb-nakupovat-btn::before {
    border-radius: 17px 999px 999px 17px;
  }

  #brb-hero .brb-nakupovat-icon {
    flex-basis: 56px;
    border-radius: 0;
    padding: 8px 6px 8px 10px;
  }

  #brb-hero .brb-nakupovat-svg {
    width: 28px;
  }

  #brb-hero .brb-nakupovat-text {
    font-size: clamp(14px, 5vw, 22px);
    padding: 0 10px;
    letter-spacing: 0.5px;
  }

  #brb-hero .brb-cta-row .brb-cta-tile-img {
    width: 100%;
    max-width: 100%;
  }
  #brb-hero .brb-cta-grid {
    flex: none;
    grid-template-columns: 1fr;
    gap: 8px;
    transform: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #brb-hero .brb-nakupovat-text {
    font-size: clamp(16px, 3.2vw, 40px);
  }
  #brb-hero .brb-nakupovat-icon {
    flex-basis: clamp(56px, 14%, 100px);
  }
}

@media (max-width: 520px) {
#brb-hero .brb-category-tile {
  min-height: 90px;
}

#brb-hero .brb-category-tile-text {
  max-width: 100%;
  font-size: clamp(10px, 3.2vw, 13px);
  line-height: 1.15;
}
}

/* Fix mezery mezi ikonou a textem v hlavním CTA */
#brb-hero .brb-cta-row .brb-nakupovat-btn {
  --brb-nakupovat-icon-zone: clamp(84px, 21%, 124px);
}

#brb-hero .brb-cta-row .brb-nakupovat-btn::before {
  width: var(--brb-nakupovat-icon-zone);
}

#brb-hero .brb-nakupovat-icon {
  flex: 0 0 var(--brb-nakupovat-icon-zone);
}

#brb-hero .brb-nakupovat-text {
  min-width: 0;
  overflow: hidden;
  flex: 1 1 auto;
  padding-left: clamp(10px, 1.8vw, 20px);
  padding-right: clamp(12px, 2.4vw, 24px);
  font-size: clamp(15px, 1.75vw, 28px);
  letter-spacing: 0.04em;
}

/* Tablet / zúžený desktop, kde je vpravo ještě category panel */
@media (min-width: 768px) and (max-width: 991px) {
  #brb-hero .brb-cta-row .brb-nakupovat-btn {
    --brb-nakupovat-icon-zone: clamp(78px, 22%, 96px);
  }

  #brb-hero .brb-nakupovat-text {
    font-size: clamp(16px, 2.45vw, 21px);
    padding-left: 10px;
    padding-right: 14px;
    letter-spacing: 0.03em;
  }
}

/* Mobil */
@media (max-width: 767px) {
  #brb-hero .brb-cta-row .brb-nakupovat-btn {
    --brb-nakupovat-icon-zone: clamp(78px, 23%, 96px);
  }

  #brb-hero .brb-nakupovat-icon {
    flex-basis: var(--brb-nakupovat-icon-zone);
  }

  #brb-hero .brb-nakupovat-text {
    font-size: clamp(14px, 4.05vw, 20px);
    padding-left: 10px;
    padding-right: 14px;
    letter-spacing: 0.025em;
  }
}

@media (max-width: 430px) {
  #brb-hero .brb-cta-row .brb-nakupovat-btn {
    --brb-nakupovat-icon-zone: 82px;
  }

  #brb-hero .brb-nakupovat-text {
    font-size: clamp(13px, 3.9vw, 17px);
    padding-left: 9px;
    padding-right: 10px;
    letter-spacing: 0.015em;
  }
}

@media (max-width: 360px) {
  #brb-hero .brb-cta-row .brb-nakupovat-btn {
    --brb-nakupovat-icon-zone: 76px;
  }

  #brb-hero .brb-nakupovat-svg {
    width: 25px;
  }

  #brb-hero .brb-nakupovat-text {
    font-size: clamp(12px, 3.75vw, 15px);
    padding-left: 8px;
    padding-right: 8px;
    letter-spacing: 0.01em;
  }
}
