/* Begonvil — tema eklentileri.
   Sitede yalnızca 2 ikon glifi kullanılıyordu; bunlar için 600 KB ikon fontu
   yüklemek yerine saf CSS ile çizildi. Ayrıca fancybox yerine gelen büyüteç. */

/* ---- fa-angle-right (ana sayfa ürün/hizmet listeleri) ---- */
.fa { display: inline-block; font-style: normal; line-height: 1; }
.fa-angle-right { position: relative; width: 1em; height: 1em; vertical-align: middle; }
.fa-angle-right::before {
  content: '';
  position: absolute; top: 50%; left: 30%;
  width: .38em; height: .38em;
  border: solid currentColor; border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

/* ---- glyphicon-fullscreen (galeri "BÜYÜT" rozeti) ---- */
.glyphicon { display: inline-block; position: relative; width: 1em; height: 1em; vertical-align: -.1em; }
.glyphicon-fullscreen::before {
  content: '';
  position: absolute; inset: 0;
  background-color: currentColor;
  -webkit-mask: var(--bgn-fs-icon) center / contain no-repeat;
          mask: var(--bgn-fs-icon) center / contain no-repeat;
}
:root {
  --bgn-fs-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M1 1h6L4.8 3.2 7 5.4 5.4 7 3.2 4.8 1 7V1zm14 14H9l2.2-2.2L9 10.6 10.6 9l2.2 2.2L15 9v6z'/%3E%3C/svg%3E");
}

/* ---- görsel büyüteci ---- */
html.bgn-lb-open { overflow: hidden; }
.bgn-lb {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, .92);
  padding: 48px 64px;
}
.bgn-lb.open { display: flex; }
.bgn-lb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bgn-lb button {
  position: absolute; border: 0; background: none; color: #fff;
  font-size: 40px; line-height: 1; cursor: pointer; padding: 12px;
  opacity: .75; transition: opacity .2s ease;
}
.bgn-lb button:hover, .bgn-lb button:focus-visible { opacity: 1; }
.bgn-lb button:focus-visible { outline: 2px solid #019152; outline-offset: 2px; }
.bgn-lb-close { top: 4px; right: 12px; font-size: 44px; }
.bgn-lb-prev  { left: 4px;  top: 50%; transform: translateY(-50%); font-size: 56px; }
.bgn-lb-next  { right: 4px; top: 50%; transform: translateY(-50%); font-size: 56px; }
.bgn-lb-count {
  position: absolute; bottom: 12px; left: 0; right: 0;
  margin: 0; text-align: center; color: #bbb; font-size: 13px;
}
@media (max-width: 767px) {
  .bgn-lb { padding: 56px 8px; }
  .bgn-lb-prev, .bgn-lb-next { font-size: 40px; }
}

/* ---- görsel oranını koru (width/height eklendiği için) ---- */
.content img, .gallery img, .sidebar img, footer img { max-width: 100%; height: auto; }

/* ---- erişilebilirlik ---- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid #019152; outline-offset: 2px;
}
.bgn-skip {
  position: absolute; left: -9999px; top: 0; z-index: 3000;
  background: #019152; color: #fff; padding: 10px 16px; text-decoration: none;
}
.bgn-skip:focus { left: 8px; top: 8px; }

/* ---- form yanıt kutusu: gizliyken yer kaplamasın ---- */
div.wpcf7-response-output[hidden] { display: none !important; }
