/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
*/

body { background:#f6f6f6; }

/* CONTAINER */
.bs-container{
  max-width:1200px;
  margin:0 auto;
  padding:20px;
}

/* SINGLE CARD */
.bs-single{
  background:#fff;
  border-radius:14px;
  padding:18px;
  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

.bs-title{ font-size:28px; margin:0 0 6px; }
.bs-meta{ font-size:13px; color:#777; }

/* GRID */
.bs-single-grid{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:20px;
}
@media(max-width:900px){
  .bs-single-grid{ grid-template-columns:1fr; }
}

/* GALERİ */
.bs-gallery-wrap{ max-width:460px; }

.bs-main-image{
  border-radius:12px;
  overflow:hidden;
  background:#111;
}
.bs-main-image img{
  width:100%;
  max-height:520px;
  object-fit:contain;
  cursor:pointer;
}

/* THUMBS */
.bs-thumbs{
  display:flex;
  gap:8px;
  margin-top:10px;
}
.bs-thumbs img{
  width:72px;
  height:72px;
  object-fit:cover;
  border-radius:8px;
  cursor:pointer;
  border:2px solid transparent;
}
.bs-thumbs img.is-active{ border-color:#000; }

/* AÇIKLAMA */
.bs-desc{ margin-top:16px; }
.bs-desc h2{ font-size:18px; margin-bottom:6px; }
.bs-content{ line-height:1.7; }

/* SAĞ KART */
.bs-side-card{
  background:#fafafa;
  border-radius:12px;
  padding:14px;
  border:1px solid #eee;
}

/* LIGHTBOX */
.bs-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.9);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
.bs-lightbox.is-open{ display:flex; }
.bs-lightbox img{
  max-width:90vw;
  max-height:90vh;
  border-radius:12px;
}

.bs-lb-close,.bs-lb-prev,.bs-lb-next{
  position:absolute;
  color:#fff;
  background:none;
  border:0;
  font-size:32px;
  cursor:pointer;
}
.bs-lb-close{ top:20px; right:20px; }
.bs-lb-prev{ left:20px; }
.bs-lb-next{ right:20px; }
