/* assets/css/baly-search.css */
:root{
  --baly-radius: 36px;
  --baly-border: rgba(0,0,0,.10);
  --baly-gray: #6b7280;
}

/* Narrower container */
.baly-search-hero{max-width:760px;margin:0 auto;padding:12px}
.baly-search-form{position:relative}

/* Outer pill */
.baly-field{
	position:relative; display:flex; align-items:center; gap:.75rem;
	padding:14px 16px; background:#fff;
	border:1px solid var(--baly-border);
	border-radius: var(--baly-radius);
	box-shadow: 0 2px 0 rgba(0,0,0,.02), 0 8px 24px rgba(0,0,0,.06);
}
.baly-field:focus-within{ border-color:#d6d9e0; box-shadow:0 12px 28px rgba(0,0,0,.08), 0 0 0 3px rgba(0,0,0,.02); }

/* Remove any inner borders from theme */
.baly-field .baly-input,
.baly-field input[type="search"].baly-input,
.baly-field input.baly-input[type="search"]{
	border:none !important; box-shadow:none !important; background:transparent !important; outline:none !important;
	-webkit-appearance:none; -moz-appearance:none; appearance:none;
}
.baly-field input[type="search"]::-webkit-search-decoration,
.baly-field input[type="search"]::-webkit-search-cancel-button,
.baly-field input[type="search"]::-webkit-search-results-button,
.baly-field input[type="search"]::-webkit-search-results-decoration{ -webkit-appearance:none; }

.baly-input{
	flex:1;
	font-size:18px; line-height:28px; padding:12px 6px;
	font-family:"GraphikArabicRegular", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
	font-weight:400;
}
@supports (-webkit-touch-callout: none) { .baly-input{ font-size:16px !important; } }
.baly-input::placeholder{ color:#9aa1ad; opacity:1; font-weight:400; font-family:"GraphikArabicRegular", sans-serif; }

/* Minimal magnifier */
.baly-icon-submit{
	display:inline-flex; align-items:center; justify-content:center;
	width:46px; height:46px; border-radius:50%;
	color:#9aa1ad; cursor:pointer; border:none; background:transparent;
}
.baly-icon-submit:hover{ background:#f5f7fb; color:#7b8493; }

/* Suggestions */
.baly-suggest{
	position:absolute; top:100%; inset-inline:0; transform:translateY(8px);
	display:none; background:#fff; border:1px solid var(--baly-border);
	border-radius: calc(var(--baly-radius) - 6px);
	box-shadow: 0 18px 48px rgba(0,0,0,.10); overflow:hidden; z-index:9;
}
.baly-suggest-section{padding:0}
.baly-suggest-title{
	font-size:15px; font-weight:800; color:#445064;
	padding:.7rem 1rem; margin:0; background:#f6f8ff;
	border-inline-start:4px solid var(--baly-blue);
}
.baly-suggest-item{
	display:flex; align-items:center; gap:.6rem;
	padding:14px 16px; border-top:1px solid #f1f3f6;
	text-decoration:none; color:#0a0a0a; font-size:16px;
}
.baly-suggest-item:hover{background:#f7f9fc}

/* Download card */
.baly-empty{
	margin-top:12px; padding:20px; text-align:center;
	border:1px solid rgba(0,0,0,.08);
	border-radius: calc(var(--baly-radius) - 6px);
	background: linear-gradient(180deg,#fff,#f8fbff);
	box-shadow: 0 10px 28px rgba(0,0,0,.08);
}
.baly-empty-text{
	margin:0 0 14px 0; color:#0b0b0b;
	font-weight:900; font-size:1.2rem; letter-spacing:.01em;
}
.baly-store-badges{ display:flex; justify-content:center; align-items:center; gap:14px; flex-wrap:wrap; }
.baly-store img{ height:44px; width:auto; display:block; filter: drop-shadow(0 2px 4px rgba(0,0,0,.06)); }

@media (max-width:640px){
	.baly-search-hero{max-width:100%; padding:8px}
	.baly-icon-submit{width:42px; height:42px}
	.baly-store img{height:40px}
}