/* Shared styles for [dw_listing_gallery], [dw_listing_contact_card], [dw_listing_verified_badge]
   shortcodes, and the plain-PHP self-registered listing template. Loaded on any
   singular 'rangovas' page. Design tokens match the site's captured design direction
   (ink #182233, accent #3A5E7C, gold #D4AF37, border #E5E7EB, Inter typography). */

.dw-profile-verified {
	display: inline-flex; align-items: center; gap: 6px;
	background: rgba(212,175,55,.14); color: #8A6D1D;
	font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
	font-family: 'Inter', sans-serif;
}
.dw-profile-verified svg { width: 13px; height: 13px; flex-shrink: 0; }

.dw-profile-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.dw-profile-gallery a { display: block; aspect-ratio: 1 / 1; border-radius: 10px; overflow: hidden; position: relative; }
.dw-profile-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .2s; }
.dw-profile-gallery a:hover img { transform: scale(1.06); }
.dw-gallery-overlay {
	position: absolute; inset: 0; background: rgba(24,34,51,.72); color: #fff;
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; font-weight: 800; font-family: 'Inter', sans-serif;
}

.dw-contact-card {
	background: #fff; border: 1px solid #E5E7EB; border-radius: 14px;
	box-shadow: 0 1px 4px rgba(24,34,51,.06);
	padding: 24px; font-family: 'Inter', sans-serif;
}
.dw-contact-card-title { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: #9CA3AF; margin: 0 0 14px; }
.dw-contact-btn {
	display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 10px;
	text-decoration: none; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #fff;
	transition: opacity .15s;
}
.dw-contact-btn:hover { opacity: .88; }
.dw-contact-btn:last-child { margin-bottom: 0; }
.dw-contact-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.dw-btn-phone { background: #3A5E7C; }
.dw-btn-email { background: #6E7A8A; }
.dw-btn-viber { background: #7360F2; }
.dw-btn-whatsapp { background: #25D366; }
.dw-btn-facebook { background: #1877F2; }
.dw-contact-empty { font-size: 13px; color: #9CA3AF; margin: 0; }

.dw-share-row { display: flex; gap: 10px; margin-top: 16px; }
.dw-share-btn {
	width: 38px; height: 38px; border-radius: 999px; border: 1px solid #E5E7EB; background: #fff;
	display: flex; align-items: center; justify-content: center; cursor: pointer;
	color: #4A5568; transition: background .15s, color .15s, border-color .15s;
}
.dw-share-btn:hover { background: #F5F6F8; }
.dw-share-btn svg { width: 17px; height: 17px; }
.dw-share-copied { font-size: 12px; color: #3A5E7C; font-weight: 700; margin: 8px 0 0; display: none; font-family: 'Inter', sans-serif; }
.dw-share-copied.dw-show { display: block; }
