/* ################## */

/* ### LEWAKON.PL ### */

/* ################## */

/* EFEKT PODKREŚLENIA MENU */

h1, h2, h3, h4 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

strong {
  font-weight: bold;
}

.dropdown-toggle:focus, .accordion-button:focus, .btn:focus, a:focus {
  outline: none !important;
  box-shadow: none !important;
}

.navbar {
  --bs-navbar-hover-color: #EA5B0D!important;
  box-shadow: 4px 0px 10px rgba(62,63,64,0.58);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  filter: blur(0px);
}

.active {
  color: var(--bs-primary)!important;
  font-weight: 400;
}

.ul-green-dots {
  list-style-type: disc;
  padding-left: 1.4em;
}

.ul-green-dots li::marker {
  color: #EA5B0D;
  font-size: 1.4em;
  transition: transform 0.15s ease, color 0.15s ease;
}

.ul-green-dots li:hover::marker {
  color: #EA5B0D;
  transform: scale(1.15);
}

.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

hr {
  width: 80px;
  color: var(--bs-success);
  opacity: 1;
  border-top: solid 2px;
  transition: width 0.4s ease;
}

/* scroller loga */

.scroller {
  padding: 20px 0;
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.scroller__inner img {
  height: 120px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  mix-blend-mode: var(--img-blend-mode);
}

.scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #F1F5F9 20%, #F1F5F9 80%, transparent);
  mask: linear-gradient(90deg, transparent, #F1F5F9 20%, #F1F5F9 80%, transparent);
}

.scroller[data-animated=true]:hover .scroller__inner {
  animation-play-state: paused;
}

.scroller[data-animated=true] .scroller__inner {
  width: -moz-max-content;
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 30s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

.galleryFX:hover {
  opacity: 0.8;
}

/* dlaczego my - przewagi */

.advantages-list-v3 {
  list-style: none;
  display: grid;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.advantages-list-v3 li {
  background: white;
  border: 2px solid #F8F5F0;
  border-radius: 15px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantages-list-v3 li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: #EA5B0D;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.advantages-list-v3 li:hover::before {
  transform: scaleY(1);
}

.advantages-list-v3 li:hover {
  border-color: #EA5B0D;
  box-shadow: 0 10px 30px rgba(190, 159, 86, 0.15);
  transform: translateY(-3px);
}

.advantage-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.icon-box {
  width: 40px;
  height: 40px;
  background: #EA5B0D;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-box i {
  color: white;
  font-size: 18px;
}

.advantages-list-v3 li strong {
  color: #0F223B;
  font-size: 1.1rem;
  font-weight: 600;
}

.advantages-list-v3 li span {
  color: #4a5568;
  font-size: 0.95rem;
  line-height: 1.6;
  display: block;
}

/* Responsive */

@media (max-width: 992px) {
  .advantages-list-v3 {
    gap: 15px;
  }
}

@media (max-width: 992px) {
  .advantages-list-v3 li {
    padding: 20px;
  }
}

/* footer */

.link-body-emphasis {
  color: #F8F5F0!important;
}

.link-body-emphasis:hover {
  color: #EA5B0D!important;
}

.hr-footer {
  width: 100%;
  color: #F8F5F0;
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--bs-primary)!important;
  font-weight: 400;
  text-decoration: none;
  background-color: #CDD6DE!important;
}

/* KARTY PRODUKTÓW EXPERT */

.expert-card {
  border: 1px solid #ffffff;
}

.expert-card:hover {
  transform: translateY(-3px);
  border: solid 1px;
  border-color: var(--bs-primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.row.gap-custom {
  --bs-gutter-x: 12.5rem;
  --bs-gutter-y: 12.5rem;
}

/* OFERTA KAFELKI */

.section-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e87722;
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 48px;
}

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.tile {
  position: relative;
  background: #0A3461;
  padding: 40px 32px 36px;
  overflow: hidden;
  cursor: default;
  transition: background 0.25s ease;
  border-top: 3px solid transparent;
}

.tile:hover {
  background: #0d3e76;
  border-top-color: #e87722;
}

.tile-number {
  position: absolute;
  top: -10px;
  right: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 120px;
  font-weight: 800;
  color: #0c3060;
  line-height: 1;
  user-select: none;
  transition: color 0.25s ease;
}

.tile:hover .tile-number {
  color: #0f3870;
}

.tile-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.tile-icon svg {
  width: 100%;
  height: 100%;
  stroke: #e87722;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.tile-text {
  font-size: 14px;
  color: #7a9ec4;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.tile-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #e87722;
  text-decoration: none;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.tile:hover .tile-link {
  opacity: 1;
  transform: translateX(0);
}

.tile-link::after {
  content: '→';
}

@media (max-width: 600px) {
  .tiles-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 600px) {
  .tile-number {
    font-size: 90px;
  }
}

