/**
 * Amazon Live Affiliate Search – frontend styles.
 * Colors are defined on :root via CSS custom properties
 * injected from Settings → Amazon Search → Appearance.
 */

.almas-wrap {
	--almas-radius: 18px;
	--almas-radius-pill: 999px;
	--almas-grid-gap: 18px;
	/*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;*/
	color: var(--almas-text);
	box-sizing: border-box;
}

.almas-wrap *,
.almas-wrap *::before,
.almas-wrap *::after {
	box-sizing: border-box;
}

/* ── Home section ───────────────────────────────── */

.almas-section--home {
	width: 100%;
	margin: 0;
	padding: 0;
	background: var(--almas-section-bg);
}

.mr-main .almas-section--home {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
}

.almas-wrap--home {
	background: var(--almas-surface);
	padding: 52px 24px 40px;
	width: 100%;
}

.almas-wrap--home .almas-search-bar {
	max-width: 900px;
	margin: 0 auto;
}

.almas-home-intro {
	max-width: 900px;
	margin: 0 auto 28px;
	text-align: center;
}

.almas-home-intro__heading {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.2;
	color: var(--almas-heading);
	margin: 0 0 12px;
}

.almas-home-intro__description {
	font-size: 1.05rem;
	line-height: 1.6;
	color: var(--almas-muted);
	margin: 0 auto;
	max-width: 640px;
}

.almas-wrap--home .almas-results-section {
	max-width: 1200px;
	margin: 28px auto 0;
}

.almas-wrap--home .almas-trending-section {
	max-width: 1200px;
	margin: 28px auto 0;
}

/* ── Shop page shell ────────────────────────────── */

.almas-shop-page {
	background: var(--almas-surface);
	min-height: 60vh;
	width: 100%;
	margin: 0;
	padding: 0;
}

.almas-wrap--shop {
	background: transparent;
	padding: 32px 20px 64px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* ── Shop layout: Hero Box (default) ──────────── */

.almas-shop-layout--layout-1 .almas-hero-box {
	background: var(--almas-surface);
	border: 1px solid var(--almas-hero-border);
	border-radius: 20px;
	padding: 44px 28px 36px;
	margin-bottom: 44px;
	box-shadow: 0 8px 32px var(--almas-card-shadow);
}

.almas-shop-layout--layout-1 .almas-hero {
	text-align: center;
}

.almas-shop-layout--layout-1 .almas-wrap--shop .almas-search-bar {
	max-width: 720px;
	margin: 0 auto;
}

/* ── Shop layout: Full Width ──────────────────── */

.almas-shop-layout--layout-2 .almas-hero-box {
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 56px 0 48px;
	margin-bottom: 36px;
	box-shadow: none;
}

.almas-shop-layout--layout-2 .almas-hero {
	text-align: center;
}

.almas-shop-layout--layout-2 .almas-hero-title {
	font-size: clamp(2.4rem, 6vw, 3.5rem);
}

.almas-shop-layout--layout-2 .almas-wrap--shop {
	max-width: 1320px;
}

/* ── Shop layout: Split Hero ──────────────────── */

.almas-shop-layout--layout-3 .almas-hero-box {
	background: var(--almas-surface);
	border: 1px solid var(--almas-hero-border);
	border-radius: 20px;
	padding: 40px 36px;
	margin-bottom: 44px;
	box-shadow: 0 8px 32px var(--almas-card-shadow);
}

.almas-shop-layout--layout-3 .almas-hero {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	align-items: center;
	text-align: left;
}

.almas-shop-layout--layout-3 .almas-hero-copy {
	max-width: 520px;
}

.almas-shop-layout--layout-3 .almas-hero-subtitle {
	margin-left: 0;
	margin-right: 0;
}

.almas-shop-layout--layout-3 .almas-wrap--shop .almas-search-bar {
	max-width: none;
	margin: 0;
}

@media (max-width: 768px) {
	.almas-shop-layout--layout-3 .almas-hero {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.almas-shop-layout--layout-3 .almas-hero-copy {
		max-width: none;
	}

	.almas-shop-layout--layout-3 .almas-hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}
}

/* ── Shop layout: Compact ─────────────────────── */

.almas-shop-layout--layout-4 .almas-hero-box {
	background: var(--almas-surface);
	border-bottom: 1px solid var(--almas-hero-border);
	border-radius: 0;
	padding: 20px 20px 24px;
	margin-bottom: 28px;
	box-shadow: none;
}

.almas-shop-layout--layout-4 .almas-hero {
	display: flex;
	flex-direction: column;
	gap: 16px;
	text-align: left;
}

.almas-shop-layout--layout-4 .almas-hero-copy {
	width: 100%;
}

.almas-shop-layout--layout-4 .almas-hero-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	display: block;
	margin: 0 0 8px;
	line-height: 1.2;
}

.almas-shop-layout--layout-4 .almas-hero-accent {
	display: inline;
}

.almas-shop-layout--layout-4 .almas-badge {
	margin-bottom: 10px;
}

.almas-shop-layout--layout-4 .almas-hero-subtitle {
	font-size: 0.92rem;
	margin: 0 0 4px;
	max-width: none;
	text-align: left;
}

.almas-shop-layout--layout-4 .almas-wrap--shop {
	padding-top: 0;
}

.almas-shop-layout--layout-4 .almas-wrap--shop .almas-search-bar {
	max-width: none;
	margin: 0;
	width: 100%;
}

.almas-shop-layout--layout-4 .almas-disclaimer {
	text-align: left;
	margin-top: 10px;
}

/* ── Hero elements ────────────────────────────── */

.almas-hero {
	margin-bottom: 0;
}

.almas-badge {
	display: inline-block;
	padding: 6px 18px;
	border: 1px solid var(--almas-primary);
	border-radius: var(--almas-radius-pill);
	color: var(--almas-primary);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.almas-hero-title {
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	margin: 0 0 12px;
	line-height: 1.15;
	color: var(--almas-heading);
}

.almas-hero-accent {
	color: var(--almas-heading);
}

.almas-hero-subtitle {
	font-size: 1rem;
	color: var(--almas-text);
	margin: 0 auto 28px;
	max-width: 520px;
	line-height: 1.5;
}

.almas-wrap--shop .almas-search-bar {
	max-width: 720px;
	margin: 0 auto;
}

.almas-wrap--shop .almas-trending-section,
.almas-wrap--shop .almas-results-section {
	margin-top: 8px;
}

/* ── Search bar ───────────────────────────────── */

.almas-search-form {
	position: relative;
	display: flex;
	align-items: center;
}

.almas-search-input {
	width: 100%;
	padding: 16px 60px 16px 24px;
	border: 1px solid var(--almas-input-border);
	border-radius: var(--almas-radius-pill);
	background: var(--almas-card-bg);
	color: var(--almas-input-text);
	font-size: 1rem;
	outline: none;
	transition: border-color 0.2s, background 0.2s;
}

.almas-search-input::placeholder {
	color: var(--almas-muted);
}

.almas-search-input:focus {
	border-color: var(--almas-input-focus-border);
}

.almas-search-btn {
	position: absolute;
	right: 6px;
	width: 44px;
	height: 44px;
	border: none;
	border-radius: 50%;
	background: var(--almas-primary);
	color: var(--almas-on-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, transform 0.15s;
	flex-shrink: 0;
}

.almas-search-btn:hover {
	background: var(--almas-primary-hover);
	transform: scale(1.04);
}

.almas-search-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.almas-disclaimer {
	text-align: center;
	font-size: 12px;
	color: var(--almas-muted);
	margin: 12px 0 0;
	line-height: 1.4;
}

/* ── Section headers ──────────────────────────── */

.almas-section-title,
.almas-results-title {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 20px;
	color: var(--almas-heading);
}

.almas-results-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.almas-results-count {
	font-size: 0.9rem;
	color: var(--almas-text);
	margin: 6px 0 0;
}

.almas-view-all {
	color: var(--almas-primary);
	font-weight: 600;
	font-size: 0.95rem;
	text-decoration: none;
	white-space: nowrap;
	align-self: center;
	transition: opacity 0.2s;
}

.almas-view-all:hover {
	opacity: 0.85;
	text-decoration: underline;
}

/* ── Product grid ─────────────────────────────── */

.almas-grid {
	display: grid;
	gap: var(--almas-grid-gap);
	grid-template-columns: repeat(var(--almas-cols, 4), minmax(0, 1fr));
	align-items: stretch;
}

@media (max-width: 1024px) {
	.almas-grid {
		grid-template-columns: repeat(min(var(--almas-cols, 4), 2), minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.almas-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ── Product card ─────────────────────────────── */

.almas-card {
	display: flex;
	flex-direction: column;
	position: relative;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.2s, box-shadow 0.2s;
	min-width: 0;
	width: 100%;
	box-shadow: 0 4px 20px var(--almas-card-shadow);
}

.almas-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px var(--almas-card-hover-shadow);
}

.almas-card-image {
	background: var(--almas-card-bg);
	padding: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1;
	overflow: hidden;
	flex-shrink: 0;
}

.almas-card-image img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	display: block;
}

.almas-card-body {
	padding: 14px 16px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: var(--almas-card-bg);
}

.almas-card-brand {
	display: inline-block;
	align-self: flex-start;
	width: fit-content;
	max-width: 100%;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--almas-primary);
	line-height: 1.3;
	padding: 4px 10px;
	border-radius: 6px;
	background: color-mix(in srgb, var(--almas-primary) 12%, transparent);
}

.almas-card-title {
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.4;
	color: var(--almas-heading);
	margin: 0;
	flex: 1 1 auto;
	min-height: 4.2em;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.almas-card-pricing {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 6px;
	margin-top: auto;
	padding-top: 4px;
	min-width: 0;
	flex-shrink: 0;
}

.almas-card-price {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--almas-heading);
	white-space: nowrap;
	flex-shrink: 0;
}

.almas-card-list-price {
	font-size: 0.85rem;
	color: var(--almas-muted);
	text-decoration: line-through;
	white-space: nowrap;
	flex-shrink: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}

.almas-card-savings {
	font-size: 11px;
	font-weight: 700;
	color: var(--almas-on-primary);
	background: var(--almas-primary);
	padding: 2px 8px;
	border-radius: var(--almas-radius-pill);
	white-space: nowrap;
	flex-shrink: 0;
	line-height: 1.4;
}

/* ── Product card layouts ─────────────────────── */

/* card-1: Classic (default styles above) */

/* card-2: Horizontal */
.almas-card-layout--card-2 .almas-card {
	flex-direction: row;
	align-items: stretch;
}

.almas-card-layout--card-2 .almas-card-image {
	flex: 0 0 38%;
	max-width: 38%;
	width: 38%;
	aspect-ratio: auto;
	min-height: 140px;
	padding: 12px;
	align-self: stretch;
}

.almas-card-layout--card-2 .almas-card-body {
	flex: 1;
	min-width: 0;
	justify-content: flex-start;
	padding: 12px 14px 12px 4px;
}

.almas-card-layout--card-2 .almas-card-title {
	-webkit-line-clamp: 2;
	min-height: 2.8em;
}

.almas-card-layout--card-2 .almas-card-pricing {
	padding-top: 8px;
}

.almas-card-layout--card-2 .almas-card-price {
	font-size: 0.92rem;
}

.almas-card-layout--card-2 .almas-card-list-price {
	font-size: 0.72rem;
}

.almas-card-layout--card-2 .almas-card-savings {
	font-size: 10px;
	padding: 2px 6px;
}

@media (max-width: 580px) {
	.almas-card-layout--card-2 .almas-card {
		flex-direction: column;
		height: auto;
	}

	.almas-card-layout--card-2 .almas-card-image {
		flex: none;
		max-width: none;
		width: 100%;
		aspect-ratio: 1;
		min-height: 0;
	}

	.almas-card-layout--card-2 .almas-card-body {
		padding: 14px 16px 20px;
	}

	.almas-card-layout--card-2 .almas-card-title {
		min-height: 0;
		flex: none;
	}

	.almas-card-layout--card-2 .almas-card-pricing {
		flex-wrap: wrap;
	}
}

/* card-3: Compact */
.almas-card-layout--card-3 .almas-grid {
	--almas-grid-gap: 12px;
}

.almas-card-layout--card-3 .almas-card {
	border-radius: 12px;
}

.almas-card-layout--card-3 .almas-card-image {
	aspect-ratio: 4 / 3;
	padding: 10px;
}

.almas-card-layout--card-3 .almas-card-body {
	padding: 10px 12px 14px;
	gap: 4px;
}

.almas-card-layout--card-3 .almas-card-brand {
	font-size: 10px;
}

.almas-card-layout--card-3 .almas-card-title {
	font-size: 0.8rem;
	-webkit-line-clamp: 2;
	min-height: 2.8em;
}

.almas-card-layout--card-3 .almas-card-price {
	font-size: 0.95rem;
}

/* card-4: Centered / bordered */
.almas-card-layout--card-4 .almas-card {
	box-shadow: none;
	border: 1px solid var(--almas-input-border);
}

.almas-card-layout--card-4 .almas-card:hover {
	box-shadow: 0 8px 24px var(--almas-card-hover-shadow);
}

.almas-card-layout--card-4 .almas-card-body {
	text-align: center;
	align-items: center;
}

.almas-card-layout--card-4 .almas-card-pricing {
	justify-content: center;
}

.almas-card-layout--card-4 .almas-card-brand {
	align-self: center;
}

.almas-card-layout--card-4 .almas-card-image {
	aspect-ratio: 1;
	padding: 22px;
}

/* card-5: Hover spotlight — zoom image + overlay CTA */
.almas-card-layout--card-5 .almas-card {
	border-radius: 18px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.almas-card-layout--card-5 .almas-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px var(--almas-card-hover-shadow);
}

.almas-card-layout--card-5 .almas-card-image {
	position: relative;
	aspect-ratio: 1;
	padding: 0;
	background: #f3f4f6;
}

.almas-card-layout--card-5 .almas-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 16px;
	transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.almas-card-layout--card-5 .almas-card:hover .almas-card-image img {
	transform: scale(1.1);
}

.almas-card-layout--card-5 .almas-card-image::after {
	content: "View Deal →";
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 700;
	color: #fff;
	background: linear-gradient(180deg, rgba(17, 24, 39, 0) 30%, rgba(17, 24, 39, 0.72) 100%);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.almas-card-layout--card-5 .almas-card:hover .almas-card-image::after {
	opacity: 1;
}

.almas-card-layout--card-5 .almas-card-savings {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.almas-card-layout--card-5 .almas-card-body {
	padding: 14px 16px 18px;
}

/* card-6: Edge accent — colored strip + slide on hover */
.almas-card-layout--card-6 .almas-card {
	border-left: 4px solid var(--almas-primary);
	border-radius: 14px;
	box-shadow: 0 2px 12px var(--almas-card-shadow);
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.almas-card-layout--card-6 .almas-card:hover {
	transform: translateX(5px) translateY(-3px);
	border-left-width: 6px;
	border-left-color: var(--almas-primary-hover);
	box-shadow: -6px 10px 28px var(--almas-card-hover-shadow);
}

.almas-card-layout--card-6 .almas-card-image {
	background: linear-gradient(135deg, var(--almas-surface) 0%, var(--almas-card-bg) 100%);
}

.almas-card-layout--card-6 .almas-card-savings {
	background: linear-gradient(135deg, var(--almas-primary) 0%, var(--almas-primary-hover) 100%);
}

/* card-7: Glass float — overlapping frosted panel */
.almas-card-layout--card-7 .almas-card {
	background: transparent;
	box-shadow: none;
	border-radius: 20px;
	overflow: hidden;
}

.almas-card-layout--card-7 .almas-card:hover {
	transform: translateY(-5px);
}

.almas-card-layout--card-7 .almas-card-image {
	aspect-ratio: 4 / 5;
	padding: 0;
	border-radius: 20px;
	background: linear-gradient(160deg, var(--almas-surface) 0%, var(--almas-card-bg) 100%);
	box-shadow: 0 8px 24px var(--almas-card-shadow);
	transition: box-shadow 0.3s ease;
}

.almas-card-layout--card-7 .almas-card:hover .almas-card-image {
	box-shadow: 0 14px 36px var(--almas-card-hover-shadow);
}

.almas-card-layout--card-7 .almas-card-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 20px;
	transition: transform 0.4s ease;
}

.almas-card-layout--card-7 .almas-card:hover .almas-card-image img {
	transform: scale(1.04);
}

.almas-card-layout--card-7 .almas-card-savings {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.almas-card-layout--card-7 .almas-card-body {
	position: relative;
	z-index: 1;
	margin: -28px 10px 0;
	padding: 14px 14px 16px;
	border-radius: 14px;
	background: color-mix(in srgb, var(--almas-card-bg) 88%, transparent);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid color-mix(in srgb, var(--almas-card-bg) 70%, var(--almas-input-border));
	box-shadow: 0 6px 20px var(--almas-card-shadow);
}

.almas-card-layout--card-7 .almas-card-title {
	-webkit-line-clamp: 2;
	min-height: 2.8em;
}

/* card-8: Minimal lift — soft gradient frame + shine sweep */
.almas-card-layout--card-8 .almas-card {
	border-radius: 16px;
	background: linear-gradient(145deg, var(--almas-card-bg) 0%, color-mix(in srgb, var(--almas-surface) 40%, var(--almas-card-bg)) 100%);
	border: 1px solid color-mix(in srgb, var(--almas-primary) 18%, var(--almas-input-border));
	box-shadow: 0 4px 16px var(--almas-card-shadow);
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.almas-card-layout--card-8 .almas-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 60%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
	transform: skewX(-18deg);
	transition: left 0.55s ease;
	pointer-events: none;
	z-index: 3;
}

.almas-card-layout--card-8 .almas-card:hover::before {
	left: 140%;
}

.almas-card-layout--card-8 .almas-card:hover {
	border-color: color-mix(in srgb, var(--almas-primary) 45%, var(--almas-input-border));
	box-shadow: 0 12px 32px var(--almas-card-hover-shadow);
	transform: translateY(-4px);
}

.almas-card-layout--card-8 .almas-card-image {
	background: transparent;
}

.almas-card-layout--card-8 .almas-card-price {
	color: var(--almas-primary);
}

@media (max-width: 480px) {
	.almas-card {
		height: auto;
	}

	.almas-card-title {
		min-height: 0;
		flex: none;
	}

	.almas-card-pricing {
		flex-wrap: wrap;
	}

	.almas-card-layout--card-7 .almas-card-body {
		margin-top: -20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.almas-card,
	.almas-card-image img,
	.almas-card-image::after,
	.almas-card::before {
		transition: none !important;
	}

	.almas-card-layout--card-5 .almas-card:hover .almas-card-image img,
	.almas-card-layout--card-7 .almas-card:hover .almas-card-image img,
	.almas-card-layout--card-8 .almas-card:hover::before {
		transform: none;
	}

	.almas-card-layout--card-5 .almas-card-image::after {
		opacity: 1;
		background: linear-gradient(180deg, rgba(17, 24, 39, 0) 55%, rgba(17, 24, 39, 0.45) 100%);
	}
}

/* ── Load more ────────────────────────────────── */

.almas-load-more-wrap {
	text-align: center;
	margin-top: 36px;
}

.almas-load-more {
	padding: 14px 48px;
	border: 1px solid var(--almas-primary);
	border-radius: var(--almas-radius-pill);
	background: var(--almas-primary);
	color: var(--almas-on-primary);
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.almas-load-more:hover {
	background: var(--almas-load-more-hover-bg);
	color: var(--almas-load-more-hover-text);
	border-color: var(--almas-primary-hover);
}

.almas-load-more:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

/* ── States ───────────────────────────────────── */

.almas-message {
	text-align: center;
	padding: 24px;
	color: var(--almas-muted);
	font-size: 0.95rem;
}

.almas-message--error {
	color: #ff8a8a;
}

.almas-message--empty {
	grid-column: 1 / -1;
	width: 100%;
	text-align: center;
	font-weight: 700;
	color: var(--almas-heading);
}

.almas-loading {
	text-align: center;
	padding: 40px;
	color: var(--almas-text);
}

.almas-wrap.is-searching .almas-search-btn {
	opacity: 0.6;
}

.almas-trending-section.is-hidden {
	display: none;
}

/* ── Responsive ───────────────────────────────── */

@media (max-width: 768px) {
	.almas-shop-layout--layout-1 .almas-hero-box,
	.almas-shop-layout--layout-3 .almas-hero-box {
		padding: 32px 18px 28px;
		border-radius: 16px;
		margin-bottom: 32px;
	}

	.almas-wrap--shop {
		padding: 20px 14px 48px;
	}
}

@media (max-width: 480px) {
	.almas-hero-title {
		font-size: 1.75rem;
	}

	.almas-search-input {
		padding: 14px 54px 14px 18px;
		font-size: 0.95rem;
	}

	.almas-search-btn {
		width: 40px;
		height: 40px;
	}
}
