/* ============================================================
   Amar — UI Patch 3
   Fix 3: Lightbox mobile full-screen
   Fix 4: Phone/email clickable
   Fix 5: TikTok icon
   ============================================================ */

/* Fix 3 — Lightbox mobile-ում լրիվ էկրան */
.lb-overlay {
  padding: 0 !important;
}
.lb-inner {
  flex-direction: column;
  width: 100%;
  height: 100vh;
  max-width: 100%;
  padding: 0;
  justify-content: center;
  align-items: center;
  gap: 0;
}
.lb-img-wrap {
  width: 100%;
  flex: 1;
  max-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px 10px;
}
.lb-img-wrap img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 10px;
  object-fit: contain;
}
/* Prev/Next ներքևում desktop-ում, կողքերից mobile */
.lb-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.lb-prev { left: 12px; }
.lb-next { right: 12px; }
.lb-close {
  position: fixed;
  top: 12px;
  right: 12px;
  z-index: 11;
}
.lb-counter {
  position: fixed;
  bottom: 84px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.lb-thumbs {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0 10px;
  justify-content: center;
  margin-top: 0;
}
.lb-thumb {
  width: 52px;
  height: 38px;
}

/* Fix 4 — Phone / email clickable */
.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--pine);
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 14.5px;
  transition: background .15s, border-color .15s;
  margin: 4px 4px 4px 0;
}
.contact-link:hover {
  background: var(--pine-soft);
  border-color: var(--pine);
}
.contact-link.phone { color: var(--pine); }
.contact-link.email { color: var(--rust); border-color: rgba(201,98,43,.3); }
.contact-link.whatsapp { color: #25D366; border-color: rgba(37,211,102,.3); }
.contact-link.tiktok { color: var(--ink); }

/* Fix 5 — TikTok footer icon */
.footer-social { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: var(--sand);
  font-size: 19px;
  transition: background .15s, color .15s;
}
.footer-social a:hover {
  background: var(--rust);
  color: #fff;
}
