/**
 * Shared layout + homepage styles (desktop first, responsive below).
 * Replaces brittle inline layout styles.
 */

.site-wrapper {
	--accent: #b1873f;
	--tala-font-body: "Vazirmatn", sans-serif;
	--tala-font-heading: "Markazi Text", serif;
	font-family: var(--tala-font-body);
	color: #1a1714;
	background: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}

.tala-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding-inline: 24px;
}

/* —— Announcement —— */
.tala-announcement {
	background: #1a1714;
	color: #f3ebdd;
	font-size: 13px;
	text-align: center;
	padding: 9px 16px;
	letter-spacing: 0.2px;
}

/* —— Header —— */
.tala-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid #f0ece4;
}

.tala-header__inner {
	height: 78px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.tala-logo {
	display: flex;
	align-items: center;
	gap: 11px;
	text-decoration: none;
	color: #1a1714;
	flex: 0 0 auto;
}

.tala-logo__mark {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1.5px solid var(--accent, #b1873f);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.tala-logo__text {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}

.tala-logo__name {
	font-family: var(--tala-font-heading);
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.tala-logo__tag {
	font-size: 10px;
	color: #9a9082;
	letter-spacing: 3px;
	font-weight: 500;
}

.tala-nav {
	display: flex;
	align-items: center;
	gap: 26px;
	margin-inline-start: 14px;
	font-size: 14.5px;
	font-weight: 500;
}

.tala-nav a {
	text-decoration: none;
	color: #33302b;
	transition: color 0.2s;
	white-space: nowrap;
}

.tala-header__actions {
	margin-inline-start: auto;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tala-header__search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #f6f3ed;
	border: 1px solid #eee7da;
	border-radius: 999px;
	padding: 8px 14px;
	width: 200px;
	font-size: 13px;
	color: #9a9082;
}

.tala-icon-btn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid #eee7da;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	position: relative;
	flex: 0 0 auto;
}

.tala-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid #eee7da;
	background: #fff;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	padding: 0;
}

.tala-menu-toggle__bar {
	display: block;
	width: 18px;
	height: 2px;
	background: #33302b;
	border-radius: 2px;
	transition: transform 0.2s, opacity 0.2s;
}

body.tala-nav-open .tala-menu-toggle__bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
body.tala-nav-open .tala-menu-toggle__bar:nth-child(2) {
	opacity: 0;
}
body.tala-nav-open .tala-menu-toggle__bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* —— Buttons / shared —— */
.tala-btn {
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	border: none;
	cursor: pointer;
	font-family: inherit;
}

.tala-btn--primary {
	background: var(--accent, #b1873f);
	color: #fff;
	padding: 15px 30px;
}

.tala-btn--ghost {
	border: 1.5px solid #d8cdb6;
	color: #33302b;
	background: transparent;
	padding: 14px 28px;
}

.tala-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	border: 1px solid #ece2cd;
	border-radius: 999px;
	padding: 7px 15px;
	font-size: 13px;
	color: #7a6f5c;
	font-weight: 500;
}

.tala-pill__dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent, #b1873f);
}

.tala-text-accent {
	color: var(--accent, #b1873f);
}

.tala-eyebrow {
	font-size: 13px;
	color: var(--accent, #b1873f);
	font-weight: 600;
	letter-spacing: 1px;
}

.tala-section__title {
	font-family: var(--tala-font-heading);
	font-size: 42px;
	font-weight: 700;
	margin-top: 4px;
	color: #211d18;
	line-height: 1.25;
}

.tala-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 38px;
	flex-wrap: wrap;
	gap: 14px;
}

.tala-section__head--center {
	justify-content: center;
	text-align: center;
	margin-bottom: 42px;
}

.tala-section__link {
	text-decoration: none;
	color: #33302b;
	font-weight: 600;
	font-size: 14.5px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.tala-empty {
	grid-column: 1 / -1;
	text-align: center;
	color: #8a8073;
	padding: 24px 0;
}

/* —— Hero (centered) —— */
.tala-hero {
	position: relative;
	overflow: hidden;
	background: #faf8f3;
	padding: 48px 0 64px;
	text-align: center;
}

.tala-hero__pattern {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-color: #faf8f3;
	background-image: url("../img/hero-pattern.svg");
	background-repeat: repeat;
	background-size: 96px 96px;
	background-position: center top;
	opacity: 0.55;
	mask-image: radial-gradient(
		ellipse 85% 70% at 50% 28%,
		#000 0%,
		#000 38%,
		transparent 78%
	);
	-webkit-mask-image: radial-gradient(
		ellipse 85% 70% at 50% 28%,
		#000 0%,
		#000 38%,
		transparent 78%
	);
}

.tala-hero__pattern::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(
		ellipse 55% 45% at 50% 22%,
		rgba(255, 252, 245, 0.75) 0%,
		rgba(250, 248, 243, 0.15) 55%,
		transparent 80%
	);
	pointer-events: none;
}

.tala-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 820px;
}

.tala-hero__showcase {
	width: min(280px, 62vw);
	margin: 0 auto 22px;
	animation: floaty 7s ease-in-out infinite;
}

.tala-hero__bar {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 24px 40px rgba(138, 106, 46, 0.18));
}

.tala-hero__photo {
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: contain;
	display: block;
	filter: drop-shadow(0 24px 40px rgba(138, 106, 46, 0.18));
}

.tala-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.85);
	border: 1px solid #ece2cd;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: #6b6256;
	margin-bottom: 18px;
}

.tala-hero__title {
	font-family: var(--tala-font-heading);
	font-size: clamp(28px, 4.6vw, 46px);
	line-height: 1.35;
	font-weight: 700;
	margin: 0;
	color: #211d18;
	letter-spacing: 0.2px;
	max-width: 18em;
}

.tala-hero__brand {
	color: var(--accent, #b1873f);
	display: inline;
}

.tala-hero__lead {
	font-size: clamp(14px, 2.2vw, 17px);
	color: #6b6256;
	max-width: 36em;
	margin: 16px auto 0;
	line-height: 1.85;
}

.tala-hero__cta {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	max-width: 520px;
}

.tala-hero__btn {
	flex: 1 1 200px;
	min-width: 180px;
	justify-content: center;
	padding-block: 15px;
}

.tala-hero__cta .tala-btn--ghost {
	background: #fff;
}

.tala-hero__stats {
	display: flex;
	gap: 28px;
	margin-top: 40px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.tala-stat__num {
	font-family: var(--tala-font-heading);
	font-size: 28px;
	font-weight: 700;
	color: #211d18;
}

.tala-stat__label {
	font-size: 12.5px;
	color: #8a8073;
	margin-top: 2px;
}

.tala-stat__divider {
	width: 1px;
	height: 36px;
	background: #e3d8c2;
}

/* —— Trust —— */
.tala-trust {
	border-bottom: 1px solid #f0ece4;
}

.tala-trust__grid {
	padding-block: 26px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.tala-trust__item {
	display: flex;
	align-items: center;
	gap: 13px;
}

.tala-trust__icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #f6f1e7;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.tala-trust__title {
	font-weight: 600;
	font-size: 14.5px;
}

.tala-trust__sub {
	font-size: 12.5px;
	color: #8a8073;
}

/* —— Sections —— */
.tala-section {
	padding-block: 48px;
}

.tala-cats {
	padding-top: 78px;
	padding-bottom: 30px;
}

.tala-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.tala-catcard {
	text-decoration: none;
	color: #1a1714;
	border: 1px solid #efe9de;
	border-radius: 18px;
	padding: 26px 22px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
	transition: all 0.25s;
}

.tala-catcard__icon {
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: #f6f1e7;
	color: var(--accent, #b1873f);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s;
	overflow: hidden;
}

.tala-catcard__icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.tala-catcard__name {
	font-weight: 600;
	font-size: 16px;
}

.tala-catcard__count {
	font-size: 12.5px;
	color: #9a9082;
	margin-top: 2px;
}

.tala-catcard--all {
	color: #fff;
	border-color: var(--accent, #b1873f);
	background: var(--accent, #b1873f);
	justify-content: center;
	gap: 8px;
}

.tala-catcard__all-title {
	font-family: var(--tala-font-heading);
	font-size: 22px;
	font-weight: 700;
}

.tala-catcard__all-sub {
	font-size: 13px;
	opacity: 0.9;
}

.tala-catcard__all-arrow {
	font-size: 22px;
	margin-top: 4px;
}

/* —— Offer —— */
.tala-offer-wrap {
	padding-block: 48px;
}

.tala-offer {
	background: linear-gradient(120deg, #211d18, #34291c 70%, #4a3a23);
	border-radius: 26px;
	padding: 54px 56px;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 30px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.tala-offer__glow {
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 88% 30%, rgba(196, 154, 79, 0.35), transparent 45%);
	pointer-events: none;
}

.tala-offer__copy,
.tala-offer__timer {
	position: relative;
	z-index: 2;
}

.tala-offer__badge {
	display: inline-block;
	background: var(--accent, #b1873f);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 999px;
}

.tala-offer__title {
	font-family: var(--tala-font-heading);
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	color: #fdf8ee;
	margin: 18px 0 0;
	line-height: 1.2;
}

.tala-offer__text {
	color: #cbbfa9;
	font-size: 16px;
	margin: 16px 0 0;
	max-width: 420px;
}

.tala-offer__copy .tala-btn {
	margin-top: 28px;
}

.tala-offer__timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
}

.tala-timer__box {
	text-align: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	padding: 18px 14px;
	min-width: 78px;
}

.tala-timer__num {
	font-family: var(--tala-font-heading);
	font-size: 38px;
	font-weight: 700;
	color: #f3e6c8;
}

.tala-timer__label {
	font-size: 12px;
	color: #bcae95;
}

/* —— Products —— */
.tala-best {
	padding-bottom: 30px;
}

.tala-best__tabs {
	display: flex;
	gap: 9px;
	flex-wrap: wrap;
}

.tala-tab {
	padding: 9px 18px;
	border-radius: 999px;
	border: 1px solid #e6ddcd;
	background: #fff;
	color: #5b5347;
	font-weight: 600;
	font-size: 13.5px;
	cursor: pointer;
	font-family: inherit;
}

.tala-tab--active {
	border: none;
	background: #1a1714;
	color: #fff;
}

.tala-products__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.tala-best__more {
	text-align: center;
	margin-top: 40px;
}

.tala-best__more .tala-btn {
	padding-inline: 36px;
}

/* —— About —— */
.tala-about {
	background: #faf7f1;
	border-block: 1px solid #f0ece4;
	margin-top: 40px;
}

.tala-about__grid {
	padding-block: 74px;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 54px;
	align-items: center;
}

.tala-about__visual {
	position: relative;
	height: 380px;
	border-radius: 22px;
	background: linear-gradient(150deg, #efe6d4, #e2d0ac);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tala-about__ring {
	position: absolute;
	width: 230px;
	height: 230px;
	border-radius: 50%;
	border: 1px dashed rgba(160, 120, 55, 0.45);
}

.tala-about__visual svg {
	filter: drop-shadow(0 14px 18px rgba(120, 85, 30, 0.3));
}

.tala-about__caption {
	position: absolute;
	bottom: 22px;
	right: 22px;
	left: 22px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(4px);
	border-radius: 14px;
	padding: 12px 18px;
	font-size: 13px;
	color: #5b5347;
}

.tala-about__text {
	font-size: 16px;
	color: #6b6256;
	margin: 18px 0 0;
	max-width: 520px;
}

.tala-about__points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 30px;
}

.tala-about__point {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.tala-about__check {
	color: var(--accent, #b1873f);
	font-size: 20px;
	margin-top: 2px;
}

.tala-about__point-title {
	font-weight: 600;
}

.tala-about__point-sub {
	font-size: 13px;
	color: #8a8073;
}

/* —— Reviews —— */
.tala-reviews {
	padding-block: 74px;
}

.tala-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.tala-review {
	border: 1px solid #efe9de;
	border-radius: 18px;
	padding: 28px;
	background: #fff;
}

.tala-review__stars {
	color: var(--accent, #b1873f);
	font-size: 16px;
	letter-spacing: 2px;
}

.tala-review__text {
	font-size: 15px;
	color: #4d463c;
	margin: 14px 0 0;
	line-height: 1.8;
}

.tala-review__author {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-top: 20px;
}

.tala-review__avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #f1e7d3;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #a07c3a;
}

.tala-review__name {
	font-weight: 600;
	font-size: 14.5px;
}

.tala-review__meta {
	font-size: 12.5px;
	color: #9a9082;
}

/* —— Newsletter —— */
.tala-newsletter-wrap {
	padding-top: 0;
	padding-bottom: 70px;
}

.tala-newsletter {
	background: #f6f1e7;
	border: 1px solid #efe2cc;
	border-radius: 22px;
	padding: 44px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}

.tala-newsletter__title {
	font-family: var(--tala-font-heading);
	font-size: 32px;
	font-weight: 700;
	color: #211d18;
}

.tala-newsletter__sub {
	font-size: 15px;
	color: #6b6256;
	margin-top: 6px;
}

.tala-newsletter__form {
	display: flex;
	gap: 10px;
	flex: 1 1 280px;
	max-width: 420px;
}

.tala-newsletter__input {
	border: 1px solid #ddd0b6;
	background: #fff;
	border-radius: 999px;
	padding: 14px 22px;
	font-family: inherit;
	font-size: 14px;
	flex: 1 1 auto;
	min-width: 0;
	outline: none;
	color: #1a1714;
}

.tala-newsletter__btn {
	padding-inline: 28px;
	flex: 0 0 auto;
}

/* —— Footer —— */
.tala-footer {
	background: #1a1714;
	color: #cabfae;
	padding: 60px 0 26px;
}

.tala-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 40px;
}

.tala-footer__logo {
	display: flex;
	align-items: center;
	gap: 11px;
	margin-bottom: 16px;
}

.tala-footer__name {
	font-family: var(--tala-font-heading);
	font-size: 27px;
	font-weight: 700;
	color: #fdf8ee;
}

.tala-footer__about {
	font-size: 13.5px;
	line-height: 1.9;
	max-width: 330px;
	color: #a89c89;
}

.tala-footer__social {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}

.tala-footer__social-btn {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #2a251e;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tala-footer__heading {
	color: #fdf8ee;
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 16px;
}

.tala-footer__links {
	display: flex;
	flex-direction: column;
	gap: 11px;
	font-size: 13.5px;
}

.tala-footer__links a {
	color: #a89c89;
	text-decoration: none;
	transition: all 0.2s;
}

.tala-footer__badges {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.tala-footer__badge {
	width: 84px;
	height: 96px;
	border: 1px solid #34291c;
	border-radius: 12px;
	background: #221d16;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7px;
	text-align: center;
	padding: 8px;
	font-size: 10.5px;
	color: #9a8e7b;
	line-height: 1.5;
}

.tala-footer__bottom {
	margin-top: 36px;
	padding-top: 22px;
	border-top: 1px solid #2c261e;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 12.5px;
	color: #8a7f6d;
}

.tala-footer__legal {
	display: flex;
	gap: 18px;
}

.tala-footer__legal a {
	color: #8a7f6d;
	text-decoration: none;
}

/* —— Generic pages —— */
.tala-page {
	min-height: 50vh;
	background: #fff;
}

.tala-page__header {
	padding-top: 40px;
}

.tala-page__title {
	font-family: var(--tala-font-heading);
	font-size: clamp(28px, 5vw, 40px);
	font-weight: 700;
	color: #211d18;
	margin: 0;
}

/* —— Responsive —— */
@media (max-width: 1100px) {
	.tala-header__search {
		display: none;
	}

	.tala-nav {
		gap: 18px;
		font-size: 13.5px;
	}

	.tala-products__grid,
	.tala-cats__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.tala-footer__grid {
		grid-template-columns: 1.4fr 1fr 1fr;
	}

	.tala-footer__grid > :last-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	.tala-menu-toggle {
		display: flex;
	}

	.tala-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		margin: 0;
		padding: 12px 24px 20px;
		background: #fff;
		border-bottom: 1px solid #f0ece4;
		box-shadow: 0 16px 30px rgba(0, 0, 0, 0.06);
		z-index: 40;
	}

	body.tala-nav-open .tala-nav {
		display: flex;
	}

	.tala-nav a {
		padding: 12px 4px;
		border-bottom: 1px solid #f3eee6;
		white-space: normal;
	}

	.tala-nav a:last-child {
		border-bottom: none;
	}

	.tala-header {
		position: sticky;
	}

	.tala-header__inner {
		position: relative;
	}

	.tala-hero {
		padding: 36px 0 48px;
	}

	.tala-hero__stats {
		gap: 20px;
	}

	.tala-hero__cta {
		max-width: 100%;
	}

	.tala-trust__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}

	.tala-section__title {
		font-size: clamp(28px, 6vw, 36px);
	}

	.tala-offer {
		grid-template-columns: 1fr;
		padding: 36px 28px;
		text-align: center;
	}

	.tala-offer__text {
		margin-inline: auto;
	}

	.tala-offer__timer {
		justify-content: center;
	}

	.tala-about__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-block: 48px;
	}

	.tala-about__visual {
		height: 260px;
	}

	.tala-reviews__grid {
		grid-template-columns: 1fr;
	}

	.tala-products__grid,
	.tala-cats__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.tala-footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
	}

	.tala-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {
	.tala-container {
		padding-inline: 16px;
	}

	.tala-announcement {
		font-size: 11.5px;
		padding: 8px 12px;
		line-height: 1.6;
	}

	.tala-header__inner {
		height: 64px;
		gap: 10px;
	}

	.tala-logo__name {
		font-size: 22px;
	}

	.tala-logo__tag {
		letter-spacing: 2px;
		font-size: 9px;
	}

	.tala-logo__mark {
		width: 36px;
		height: 36px;
	}

	.tala-icon-btn,
	.tala-menu-toggle {
		width: 38px;
		height: 38px;
	}

	.tala-hero__stats {
		gap: 16px;
		margin-top: 28px;
	}

	.tala-stat__divider {
		display: none;
	}

	.tala-stat__num {
		font-size: 22px;
	}

	.tala-hero__showcase {
		width: min(220px, 70vw);
		margin-bottom: 14px;
	}

	.tala-hero__btn {
		flex: 1 1 100%;
	}

	.tala-trust__grid {
		grid-template-columns: 1fr;
	}

	.tala-cats,
	.tala-section,
	.tala-offer-wrap,
	.tala-reviews {
		padding-block: 36px;
	}

	.tala-cats {
		padding-top: 48px;
	}

	.tala-products__grid,
	.tala-cats__grid {
		grid-template-columns: 1fr;
	}

	.tala-about__points {
		grid-template-columns: 1fr;
	}

	.tala-newsletter {
		padding: 28px 20px;
	}

	.tala-newsletter__title {
		font-size: 26px;
	}

	.tala-newsletter__form {
		flex-direction: column;
		max-width: none;
		width: 100%;
	}

	.tala-newsletter__btn {
		width: 100%;
		padding-block: 14px;
	}

	.tala-footer {
		padding-top: 40px;
	}

	.tala-footer__grid {
		grid-template-columns: 1fr;
	}

	.tala-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.tala-best__tabs {
		width: 100%;
		overflow-x: auto;
		flex-wrap: nowrap;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 4px;
	}

	.tala-tab {
		flex: 0 0 auto;
	}

	.tala-btn--primary,
	.tala-btn--ghost {
		width: auto;
		justify-content: center;
	}

	.tala-hero__cta {
		flex-direction: column;
		align-items: stretch;
	}

	.tala-hero__btn {
		width: 100%;
	}

	.tala-offer__copy .tala-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tala-hero__showcase,
	.ticker-track {
		animation: none !important;
	}
}
