/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/
.app-cards-wrap *,
.app-cards-wrap *::before,
.app-cards-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }

.app-cards-wrap {
	--green: #22c55e;
	--green-light: #f0fdf4;
	--green-dark: #16a34a;
	--text-main: #111827;
	--text-muted: #6b7280;
	--border: #F2F2F4;
	--star: #f59e0b;
	--radius-card: 20px;
	--radius-btn: 8px 8px 8px 8px;
	--shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
	font-family: "Inter", Sans-serif;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, 1fr);
}

/* ── Card ── */
.app-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: var(--radius-card);
	box-shadow: var(--shadow);
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 0;
	transition: box-shadow .2s, transform .2s;
}
.app-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,.13);
	transform: translateY(-2px);
}

/* ── Header row ── */
.app-card__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 14px;
}

/* Thumbnail icon box */
.app-card__icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--green-light);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}
.app-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}
/* fallback svg if no image */
.app-card__icon svg {
	width: 28px;
	height: 28px;
	color: var(--green);
}

/* Featured tag */
.app-card__tag {
	display: inline-block;
	background: var(--green-light);
	color: var(--green-dark);
	font-size: 12px;
	font-weight: 600;
	padding: 4px 12px;
	border-radius: 999px;
	letter-spacing: .02em;
}

/* ── Title & excerpt ── */
.app-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--text-main);
	line-height: 1.25;
	margin-bottom: 6px;
}
.app-card__excerpt {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 18px;
}

/* ── Points list ── */
.app-card__points {
	list-style: none;
	margin-top: auto;
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.app-card__points li {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 14px;
	color: var(--text-muted);
}
.app-card__points li::before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 10px;
	flex-shrink: 0;
	background: url("data:image/svg+xml,%3Csvg width='11' height='8' viewBox='0 0 11 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.917.583 3.5 7 .583 4.083' stroke='%2322c55e' stroke-width='1.167' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Rating ── */
.app-card__rating {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 24px;
}
.app-card__rating .star {
	display: flex;
	color: var(--star);
	font-size: 14px;
	line-height: 1;
}
.app-card__rating strong {
	color: var(--text-main);
	font-weight: 600;
}

/* ── Buttons ── */
.app-card__actions {
	display: flex;
	gap: 10px;
/* 	margin-top: auto; */
}
.app-card__btn {
	flex: 1;
	padding: 8.5px 8px 8.5px 9px;
	border-radius: var(--radius-btn);
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .18s, color .18s, border-color .18s;
	line-height: 1;
}
/* Outline / View Details */
.app-card__btn--outline {
	border: 1.5px solid var(--border);
	background: #fff;
	color: var(--text-main);
}
.app-card__btn--outline:hover {
	border-color: #111827;
	background: #111827;
	color: #fff;
}
/* Solid / Install */
.app-card__btn--solid {
	border: none;
	background: var(--green);
	color: #fff;
}
.app-card__btn--solid:hover {
	border-color: #111827;
	background: #111827;
	color: #fff;
}
/* Coming soon state (no link, muted outline) */
.app-card__btn--coming-soon {
	border: 1.5px solid var(--border);
	background: #f3f4f6;
	color: var(--text-muted);
	cursor: default;
	pointer-events: none;
}
 

/* App Search Input */
.app-search {
	--as-bg:          #ffffff;
	--as-border:      #d1d5db;
	--as-border-focus:#111827;
	--as-text:        #111827;
	--as-muted:       #6b7280;
	--as-tag-bg:      #f3f4f6;
	--as-tag-text:    #374151;
	--as-star:        #f59e0b;
	--as-hover:       #f9fafb;
	--as-shadow:      0 8px 32px rgba(0,0,0,.13);
	--as-radius:      10px;
	--as-font:        "Inter", Sans-serif;

	position: relative;
	font-family: var(--as-font);
	width: 100%;
}

.app-search__input-wrap {
	display: flex;
	align-items: center;
	border: 1.5px solid var(--as-border);
	border-radius: var(--as-radius);
	background: var(--as-bg);
	padding: 0 12px;
	transition: border-color .18s, box-shadow .18s;
}
.app-search__input-wrap:focus-within {
	border-color: var(--as-border-focus);
	box-shadow: 0 0 0 3px rgba(17,24,39,.08);
}

.app-search__icon {
	color: var(--as-muted);
	display: flex;
	align-items: center;
	flex-shrink: 0;
	margin-right: 10px;
}

.app-search__input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-family: var(--as-font);
	font-size: 15px;
	color: var(--as-text);
	padding: 13px 0;
	min-width: 0;
	height: 56px;
	border: 0 !important;
	outline: none;
}
.app-search__input::placeholder { color: var(--as-muted); }
.app-search__input::-webkit-search-cancel-button { display: none; }

.app-search__spinner {
	width: 16px;
	height: 16px;
	border: 2px solid var(--as-border);
	border-top-color: var(--as-text);
	border-radius: 50%;
	flex-shrink: 0;
	display: none;
	margin-left: 8px;
	animation: as-spin .7s linear infinite;
}
.app-search__spinner.active { display: block; }
@keyframes as-spin { to { transform: rotate(360deg); } }

.app-search__clear {
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: var(--as-muted);
	display: flex;
	align-items: center;
	border-radius: 4px;
	transition: color .15s, background .15s;
	flex-shrink: 0;
	margin-left: 4px;
}
.app-search__clear:hover { color: var(--as-text); background: var(--as-tag-bg); }

.app-search__dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 0; right: 0;
	background: var(--as-bg);
	border: 1.5px solid var(--as-border);
	border-radius: var(--as-radius);
	box-shadow: var(--as-shadow);
	overflow: hidden;
	z-index: 9999;
	animation: as-fadedown .15s ease;
}
@keyframes as-fadedown {
	from { opacity: 0; transform: translateY(-6px); }
	to   { opacity: 1; transform: translateY(0); }
}

.app-search__item {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 12px 16px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid var(--as-border);
	transition: background .12s;
	cursor: pointer;
}
.app-search__item:last-child { border-bottom: none; }
.app-search__item:hover,
.app-search__item:focus { background: var(--as-hover); outline: none; }

.app-search__thumb {
	width: 44px; height: 44px;
	border-radius: 10px;
	background: #f0fdf4;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	overflow: hidden;
}
.app-search__thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	border-radius: 10px;
}
.app-search__thumb svg { color: #22c55e; }

.app-search__info { flex: 1; min-width: 0; }

.app-search__title {
	font-size: 14.5px;
	font-weight: 700;
	color: var(--as-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 3px;
}

.app-search__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 12px;
	color: var(--as-muted);
}

.app-search__tag {
	background: var(--as-tag-bg);
	color: var(--as-tag-text);
	border-radius: 999px;
	padding: 1px 8px;
	font-size: 11.5px;
	font-weight: 500;
	display: flex;
	align-items: center;
}
.app-search__tag svg {
	width: 12px;
	margin-right: 5px;
}
.app-search__rating {
	display: flex;
	align-items: center;
	gap: 3px;
	font-weight: 600;
	color: var(--as-text);
}
.app-search__rating .as-star { color: var(--as-star); font-size: 13px; line-height: 1; }
.app-search__rating .as-reviews { color: var(--as-muted); font-weight: 400; }

.app-search__empty {
	padding: 22px 18px;
	text-align: center;
	color: var(--as-muted);
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}
.app-search__empty svg { color: #d1d5db; }
.app-search__empty strong { color: var(--as-text); display: block; font-size: 15px; }







@media only screen and (max-width: 880px) {
	.app-cards-wrap {
		gap: 20px;
		grid-template-columns: repeat(3, 1fr);
	}
	.app-card__btn {
		font-size: 12px;
	}
	.app-card__rating {
		font-size: 12px;
	}
	.app-card__title {
		font-size: 18px;
	}
}
@media only screen and (max-width: 800px) {
	.app-cards-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media only screen and (max-width: 580px) {
	.app-cards-wrap {
		grid-template-columns: repeat(1, 1fr);
	}
}