/**
 * AMIR SUITE — Google Preferred Source button styles
 * Loaded via wp_enqueue_style (normal WP asset pipeline).
 */
.as-gps-wrap{
	display: flex;
	direction: rtl;
}
.as-gps-btn{
	--as-gps-accent: #00ff96;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 13px 24px 13px 16px;
	border-radius: 999px;
	border: 1px solid rgba(0,255,150,.18);
	background: linear-gradient(160deg, rgba(20,22,22,.9), rgba(6,8,8,.95));
	color: #f4f2ec;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.as-gps-btn:hover{
	transform: translateY(-3px);
	border-color: var(--as-gps-accent);
	box-shadow: 0 16px 34px -10px color-mix(in srgb, var(--as-gps-accent) 55%, transparent);
}
.as-gps-btn.as-gps-glow{
	animation: asGpsGlow 3.2s ease-in-out infinite;
}
@keyframes asGpsGlow{
	0%, 100%{ box-shadow: 0 0 0 rgba(0,0,0,0); }
	50%{ box-shadow: 0 0 20px color-mix(in srgb, var(--as-gps-accent) 45%, transparent); }
}
.as-gps-icon{
	flex: none;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 1px rgba(255,255,255,.08);
}
.as-gps-icon svg{ width: 16px; height: 16px; }
.as-gps-text{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.35;
}
.as-gps-label{ font-size: 14px; font-weight: 600; }
.as-gps-sublabel{ font-size: 11px; font-weight: 400; color: #93919c; margin-top: 2px; }
.as-gps-btn:disabled{ opacity: .6; cursor: progress; }

@media (prefers-reduced-motion: reduce){
	.as-gps-btn.as-gps-glow{ animation: none; }
}
