.brand-button-alt {
  display: inline-flex;
  align-items: center;
  background-color: #1e1e1e;
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.brand-button-alt:hover {
  background-color: #f36f21;
  color: #fff;
}

.picture-hover-zoom {
    width: 100%;
    height: 100% !important;
}
.picture-hover-zoom figure {
  overflow: hidden;
  border-radius: 10px;
    width: 100%;
    height: 100% !important;
}

.picture-hover-zoom img {
  transition: transform 0.5s ease;
  width: 100%;
    height: 100% !important;
}

.picture-hover-zoom:hover img {
  transform: scale(1.05);
}

.theme__shadow__circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(243, 111, 33, 0.1);
  border-radius: 50%;
  top: 100px;
  left: -100px;
  z-index: -1;
}

.shadow__right {
  right: -100px;
  left: auto;
}


.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  transform: none;
}

.lightbox-prev {
  left: 40px;
}

.lightbox-next {
  right: 40px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.4);
}