:root {
	--akacja-orange: #f19f03;
	--akacja-orange-dark: #ea970d;
	--akacja-orange-bg: #fefaf3;
	--akacja-hero: #f5a800;
	--akacja-container: 1600px;
	--akacja-font-body: 'Montserrat', system-ui, sans-serif;
	--akacja-font-display: 'Bangers', 'Montserrat', system-ui, sans-serif;
	--akacja-font-bangers: 'Bangers', 'Montserrat', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
body {
	margin: 0;
	font-family: var(--akacja-font-body);
	color: #1a1a2e;
	background: #fff;
}

/* Prevent FOUT: hide branded text until webfonts are ready */
html.fonts-loading body {
	visibility: hidden;
}
html.fonts-loaded body,
html.fonts-failed body {
	visibility: visible;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container {
	width: min(100% - 2rem, var(--akacja-container));
	max-width: var(--akacja-container);
	margin-inline: auto;
	box-sizing: border-box;
}

.akacja-container {
	width: min(100% - 2rem, var(--akacja-container));
	max-width: var(--akacja-container);
	margin-inline: auto;
	padding-inline: 1rem;
	box-sizing: border-box;
}

.akacja-highlight { color: var(--akacja-orange); }

.akacja-section { padding: 4rem 0; }
.akacja-section__title {
	margin: 0 0 2.5rem;
	text-align: center;
	text-transform: uppercase;
	font-family: var(--akacja-font-display);
	letter-spacing: 0.08em;
	font-size: clamp(1.8rem, 3vw, 2.2rem);
	font-weight: 400;
}
.akacja-section__title--white { color: #fff; }

/* Header */
.akacja-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--akacja-orange);
	transition: padding .3s ease;
	overflow: visible;
}
.akacja-header__inner {
	padding: 0 1rem;
	overflow: visible;
}
.akacja-header__contacts {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.5rem;
	flex-wrap: wrap;
	overflow: hidden;
	max-height: 48px;
	opacity: 1;
	padding: 1rem 0 .75rem;
	transition: max-height .3s ease, opacity .3s ease, padding .3s ease;
}
.akacja-header.is-scrolled .akacja-header__contacts {
	max-height: 0;
	opacity: 0;
	padding-top: 0;
	padding-bottom: 0;
}
.akacja-header__contact {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	color: #fff;
	font-weight: 700;
	font-size: .875rem;
}
.akacja-header__bar-wrap {
	position: relative;
	margin-bottom: .75rem;
	min-height: 148px;
	display: flex;
	align-items: center;
	overflow: visible;
}
.akacja-header.is-scrolled .akacja-header__bar-wrap {
	min-height: 108px;
	margin-bottom: .5rem;
	margin-top: .15rem;
}
.akacja-header__bar {
	background: #fff;
	display: flex;
	align-items: center;
	margin-left: 30px;
	padding: 0.35rem 1rem 0.35rem 7.75rem;
	border-radius: 0 999px 999px 0;
	min-height: 64px;
	width: 100%;
	transition: min-height .3s ease, padding .3s ease;
	overflow: visible;
}
.akacja-header.is-scrolled .akacja-header__bar {
	min-height: 62px;
	padding: 0.45rem 1rem 0.45rem 6.25rem;
}
.akacja-header__logo,
#akacjaHeaderLogo {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 148px;
	height: 148px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 8px 24px rgba(0,0,0,.12);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 15px;
	box-sizing: border-box;
	z-index: 2;
	transition: all .3s ease;
}
.akacja-header.is-scrolled .akacja-header__logo,
.akacja-header.is-scrolled #akacjaHeaderLogo {
	width: 96px;
	height: 96px;
	padding: 10px;
	top: 50%;
	transform: translateY(-50%);
}
.akacja-header__logo img,
#akacjaHeaderLogo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.akacja-header__actions {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin-left: auto;
	flex-shrink: 0;
}
.akacja-icon-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	display: grid;
	place-items: center;
	cursor: pointer;
	background: var(--akacja-orange);
	color: #fff;
}
.akacja-icon-btn--gray { background: #e0e0e0; color: #374151; }
.akacja-header__search-wrap {
	display: flex;
	justify-content: center;
	overflow: hidden;
	max-height: 56px;
	opacity: 1;
	padding-bottom: 1rem;
	transition: max-height .3s ease, opacity .3s ease, padding .3s ease;
}
.akacja-header.is-scrolled {
	padding-top: .85rem;
	padding-bottom: .65rem;
}
.akacja-header.is-scrolled .akacja-header__inner {
	padding-top: .6rem;
}
.akacja-header.is-scrolled .akacja-header__search-wrap {
	max-height: 0;
	opacity: 0;
	padding-bottom: 0;
}
.akacja-header__search {
	display: flex;
	align-items: center;
	gap: .5rem;
	background: #fff;
	border-radius: 999px;
	padding: .5rem 1rem;
	width: min(400px, 100%);
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.akacja-header__search input {
	border: none;
	outline: none;
	flex: 1;
	font-size: .875rem;
	color: #6b7280;
	background: transparent;
}
.akacja-header__search button {
	width: 32px;
	height: 32px;
	border: none;
	border-radius: 50%;
	background: var(--akacja-orange);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
}

/* Hero */
.akacja-hero {
	position: relative;
	overflow: hidden;
	background: var(--akacja-hero);
}
.akacja-hero__sunburst {
	position: absolute;
	inset: 0;
	overflow: hidden;
	z-index: 0;
}
.akacja-hero__sunburst::before {
	content: '';
	position: absolute;
	width: 280vw;
	height: 280vw;
	left: -110vw;
	top: 50%;
	transform: translateY(-50%);
	background: repeating-conic-gradient(from 0deg at 50% 50%, #f5a800 0deg 9deg, #e8960f 9deg 18deg);
}
.akacja-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
}
.akacja-hero__image img { width: 100%; }
.akacja-hero__content { padding: 2rem; }
.akacja-hero__title {
	margin: 0 0 1.5rem;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--akacja-font-display);
	letter-spacing: .05em;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	text-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.akacja-hero__title-line {
	display: inline-block;
}
.akacja-hero__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}
.akacja-hero__list-item {
	display: flex;
	align-items: flex-start;
	gap: 0.45em;
	width: 100%;
	text-align: left;
	color: #fff;
	transform-origin: left center;
	font-family: var(--akacja-font-display);
	letter-spacing: .06em;
	font-size: 1.35rem;
	line-height: 1.45;
	text-transform: uppercase;
	text-shadow: 0 1px 4px rgba(0,0,0,.12);
}
.akacja-hero__emoji {
	font-size: 1.875rem;
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	color: inherit;
	transform-origin: 50% 90%;
}
.akacja-hero__emoji--check {
	flex: 0 0 auto;
	font-size: 1.15em;
	margin-top: 0.12em;
	color: #fff;
}
.akacja-hero__emoji--check svg {
	display: block;
	width: 1em;
	height: 1em;
}
.akacja-hero__list-line {
	flex: 1 1 auto;
	min-width: 0;
}
.akacja-hero__emoji--word {
	display: inline;
	font-family: inherit;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	line-height: inherit;
	text-transform: inherit;
	text-shadow: inherit;
	color: inherit;
	margin: 0 0.3em 0 0;
	padding: 0 0.18em;
	background-image: linear-gradient(
		to top,
		#ff6b9d 0%,
		#ff6b9d 100%
	);
	background-repeat: no-repeat;
	background-size: 0 0.72em;
	background-position: 0 82%;
	transition: background-size 1.4s 0.25s ease;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}
.akacja-hero__list-item.aos-animate .akacja-hero__emoji--word,
.akacja-hero__list-item:not([data-aos]) .akacja-hero__emoji--word {
	background-size: 100% 0.72em;
}
.akacja-hero__list-text {
	display: inline;
	font-family: inherit;
	letter-spacing: inherit;
	font-size: inherit;
	line-height: inherit;
	text-transform: inherit;
	text-shadow: inherit;
	color: inherit;
}
.akacja-hero__btn {
	display: inline-block;
	width: 100%;
	text-align: center;
	padding: 1rem 2rem;
	border-radius: 999px;
	background: #fff;
	color: var(--akacja-hero);
	font-family: var(--akacja-font-display);
	letter-spacing: .08em;
	font-size: 1.15rem;
	text-transform: uppercase;
	box-shadow: 0 4px 16px rgba(0,0,0,.12);
	transition: background .2s;
	transform-origin: center center;
}
.akacja-hero__btn:hover { background: #fff8ee; }

/* Categories */
.akacja-categories { background: var(--akacja-orange-bg); }
.akacja-categories__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5rem;
}
.akacja-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	cursor: pointer;
	transition: transform .2s;
}
.akacja-category-card:hover { transform: scale(1.05); }
.akacja-category-card img { width: min(12rem, 40vw); object-fit: contain; }
.akacja-category-card span {
	font-family: var(--akacja-font-display);
	letter-spacing: .08em;
	font-size: 1.3rem;
	text-transform: uppercase;
	color: #374151;
}

/* Bestsellers */
.akacja-bestsellers {
	position: relative;
	overflow: hidden;
	background: #ea970d;
}
.akacja-bestsellers::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		-45deg,
		#f4b855,
		#ea970d,
		#f5c842,
		#e8960f,
		#f4b855,
		#ea970d
	);
	background-size: 400% 400%;
	animation: akacja-bestsellers-gradient 12s ease infinite;
	z-index: 0;
}
.akacja-bestsellers > .container {
	position: relative;
	z-index: 1;
}
@keyframes akacja-bestsellers-gradient {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
.akacja-bestsellers__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}
.akacja-product-card { text-align: center; }
.akacja-product-card__image-wrap {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0 auto 1rem;
	overflow: visible;
}
.akacja-product-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	overflow: hidden;
}
.akacja-product-card__image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.akacja-product-card__cart {
	position: absolute;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	padding: 0;
	border-radius: 50%;
	border: none;
	display: grid;
	place-items: center;
	box-shadow: 0 4px 12px rgba(0,0,0,.15);
	cursor: pointer;
	z-index: 2;
	line-height: 1;
	text-decoration: none;
}
.akacja-product-card__cart { right: 4px; bottom: 4px; background: var(--akacja-orange); }

.akacja-product-card__cart.add_to_cart_button {
	width: 40px;
	height: 40px;
	padding: 0;
	font-size: 0;
}

.akacja-product-card__image-wrap .dc-wishlist-wrap--overlay-bottom-left {
	bottom: 4px;
	left: 4px;
}

.akacja-product-card__image-wrap .dc-wishlist-btn {
	width: 40px;
	height: 40px;
	padding: 0;
	font-size: 18px;
	background: #fff;
	color: var(--akacja-orange);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.akacja-product-card__image-wrap .dc-wishlist-btn.is-active {
	color: var(--akacja-orange);
	background: #fff;
}

/* WooCommerce dodaje link „Zobacz koszyk” po AJAX — slide cart go zastępuje */
a.added_to_cart.wc-forward {
	display: none !important;
}

.akacja-product-card__title {
	margin: 0 0 .5rem;
	font-family: var(--akacja-font-display);
	letter-spacing: .06em;
	font-size: 1.15rem;
	text-transform: uppercase;
}
.akacja-product-card__title a { color: #fff; }
.akacja-product-card__price { margin: 0; font-weight: 700; color: #fff; }

/* Features */
.akacja-features { position: relative; overflow: hidden; background: #fff; }
.akacja-features__woman {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 33%;
	pointer-events: none;
	z-index: 1;
}
.akacja-features__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
	position: relative;
	z-index: 2;
}
.akacja-features__col { display: flex; flex-direction: column; gap: 1.5rem; }
.akacja-feature-card {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.5rem;
	border-radius: 1rem;
	background: #f9fafb;
	transition: box-shadow .2s;
}
.akacja-feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.akacja-feature-card__icon { font-size: 2.25rem; flex-shrink: 0; line-height: 1; }
.akacja-feature-card__title {
	margin: 0 0 .4rem;
	color: var(--akacja-orange-dark);
	font-family: var(--akacja-font-display);
	letter-spacing: .06em;
	font-size: 1.35rem;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.15;
}
.akacja-feature-card p {
	margin: 0;
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.55;
}

/* Testimonials */
.akacja-testimonials { background: var(--akacja-orange-bg); }
.akacja-testimonials__slider {
	position: relative;
	padding: 0 3.75rem;
}
.akacja-testimonials__track-wrap {
	overflow: hidden;
	padding: 0;
}
.akacja-testimonials__track {
	display: flex;
	gap: 1.5rem;
	transition: transform .35s ease;
	will-change: transform;
}
.akacja-testimonial-card {
	flex: 0 0 auto;
	min-width: 0;
	box-sizing: border-box;
	background: #f9f9f9;
	border-radius: 1rem;
	padding: 1.5rem 1rem;
	text-align: center;
}
.akacja-testimonial-card__avatar {
	width: 80px;
	height: 80px;
	margin: 0 auto .75rem;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid var(--akacja-orange);
	background: #e5e7eb;
	display: grid;
	place-items: center;
}
.akacja-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.akacja-testimonial-card__name {
	margin: 0 0 .4rem;
	color: var(--akacja-orange-dark);
	font-family: var(--akacja-font-display);
	letter-spacing: .06em;
	font-size: 1.35rem;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.15;
}
.akacja-testimonial-card__stars {
	color: var(--akacja-orange);
	margin-bottom: .5rem;
	font-size: 1rem;
	line-height: 1;
}
.akacja-testimonial-card__text {
	margin: 0;
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.55;
}
.akacja-slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	background: var(--akacja-orange);
	color: #fff;
	font-size: 1.5rem;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
	z-index: 2;
}
.akacja-slider-btn--prev { left: 0; }
.akacja-slider-btn--next { right: 0; }
.akacja-slider-btn:disabled {
	opacity: 0.4;
	cursor: default;
}

/* FAQ */
.akacja-faq {
	background: #f7bb47;
	padding-bottom: 0;
	overflow: hidden;
}
.akacja-faq__grid {
	display: flex;
	align-items: flex-end;
	gap: 2.5rem;
}
.akacja-faq__content {
	flex: 1;
	padding: 4rem 0;
	min-width: 0;
}
.akacja-faq__title {
	margin: 0 0 2rem;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--akacja-font-display);
	letter-spacing: .06em;
	font-size: 1.875rem;
}
.akacja-faq__list { display: flex; flex-direction: column; gap: 1rem; }
.akacja-faq-item {
	background: #fff;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.akacja-faq-item__trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: var(--akacja-font-display);
	letter-spacing: .06em;
	font-size: 1.35rem;
	text-transform: uppercase;
	font-weight: 400;
	line-height: 1.15;
	color: var(--akacja-orange-dark);
}
.akacja-faq-item__chevron { transition: transform .35s ease; }
.akacja-faq-item.is-open .akacja-faq-item__chevron { transform: rotate(180deg); }
.akacja-faq-item__answer {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows .35s ease;
}
.akacja-faq-item.is-open .akacja-faq-item__answer {
	grid-template-rows: 1fr;
}
.akacja-faq-item__answer-inner {
	overflow: hidden;
}
.akacja-faq-item__answer-inner p {
	margin: 0;
	padding: 0 1.5rem 1.5rem;
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
	.akacja-faq-item__answer,
	.akacja-faq-item__chevron {
		transition: none;
	}
}
.akacja-faq__figure {
	margin: 0;
	flex-shrink: 0;
	align-self: flex-end;
	display: flex;
	align-items: flex-end;
	line-height: 0;
}
.akacja-faq__image {
	width: min(480px, 42vw);
	max-width: 480px;
	height: auto;
	max-height: min(620px, 72vh);
	object-fit: contain;
	object-position: bottom center;
	display: block;
}

/* Footer bar */
.akacja-footer__bar {
	background: #000;
	border-top: 1px solid #2a2a2a;
	padding: 1.25rem 0;
}
.akacja-footer__bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}
.akacja-footer__copyright,
.akacja-footer__credit {
	margin: 0;
	font-size: .75rem;
	color: #6b7280;
}
.akacja-footer__credit a { color: var(--akacja-orange); }
.akacja-footer__credit a:hover { text-decoration: underline; }

/* Slidecart theme tweaks */
#dc-slidecart .dc-slidecart-header h3 { font-family: var(--akacja-font-body); }
.woocommerce-mini-cart__buttons .button { background: var(--akacja-orange) !important; color: #fff !important; }
#cart-table .dc-qty-btn,
#dc-products-listing .dc-qty-btn { background-color: var(--akacja-orange) !important; color: #fff !important; }
#cart-table .dc-qty-wrapper,
#dc-products-listing .dc-qty-wrapper { border-color: var(--akacja-orange); }
.dc-button-add-to-cart { background: var(--akacja-orange) !important; }

@media (max-width: 1024px) {
	.akacja-bestsellers__grid { grid-template-columns: repeat(2, 1fr); }
	.akacja-features__grid { grid-template-columns: 1fr; }
	.akacja-features__col--center,
	.akacja-features__woman { display: none; }
	.akacja-header__bar-wrap {
		min-height: 120px;
		margin-bottom: 0;
		padding-bottom: 0.75rem;
	}
	.akacja-header.is-scrolled .akacja-header__bar-wrap {
		min-height: 96px;
		margin-bottom: 0;
		padding-bottom: 0.5rem;
	}
	.akacja-header__logo,
	#akacjaHeaderLogo {
		width: 112px;
		height: 112px;
		padding: 11px;
	}
	.akacja-header.is-scrolled .akacja-header__logo,
	.akacja-header.is-scrolled #akacjaHeaderLogo {
		width: 88px;
		height: 88px;
		padding: 9px;
	}
	.akacja-header__bar {
		margin-left: 14px;
		padding: 0.35rem 0.85rem 0.35rem 6.25rem;
		min-height: 58px;
	}
	.akacja-header.is-scrolled .akacja-header__bar {
		padding: 0.35rem 0.85rem 0.35rem 5.25rem;
		min-height: 54px;
	}
	.akacja-header__actions {
		gap: 0.5rem;
	}
	.akacja-hero {
		display: block;
		min-height: min(88vh, 780px);
		overflow: hidden;
	}
	.akacja-hero__grid {
		display: block;
		position: relative;
		width: 100%;
		min-height: min(88vh, 780px);
		height: min(88vh, 780px);
		padding: 0;
		box-sizing: border-box;
	}
	.akacja-hero__image {
		position: absolute;
		bottom: 0;
		left: -30%;
		width: 100%;
		height: 90%;
		z-index: 0;
		margin: 0;
		padding: 0;
		line-height: 0;
		pointer-events: none;
		transform: none !important;
		opacity: 1 !important;
	}
	.akacja-hero__image.aos-animate,
	.akacja-hero__image[data-aos] {
		transform: none !important;
		opacity: 1 !important;
	}
	.akacja-hero__image img {
		width: 100%;
		height: 100%;
		max-width: none;
		max-height: none;
		display: block;
		object-fit: contain;
		object-position: bottom left;
		margin: 0;
	}
	.akacja-hero__content {
		position: absolute;
		z-index: 2;
		bottom: 5%;
		right: 5%;
		left: 40%;
		width: auto;
		max-width: none;
		margin: 0;
		padding: 1.15rem 1rem 1.25rem;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
		background: rgba(255, 255, 255, 0.84);
		backdrop-filter: blur(8px);
		-webkit-backdrop-filter: blur(8px);
		border-radius: 1.25rem;
		box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
		box-sizing: border-box;
	}
	.akacja-hero__title {
		text-align: left;
		color: #1a1a2e;
		text-shadow: none;
		font-size: clamp(1.4rem, 4.4vw, 1.9rem);
		margin-bottom: 1rem;
		letter-spacing: 0.03em;
	}
	.akacja-hero__list {
		align-items: flex-start;
		width: 100%;
		gap: 0.75rem;
		margin-bottom: 1rem;
	}
	.akacja-hero__list-item {
		display: flex;
		align-items: flex-start;
		gap: 0.4em;
		text-align: left;
		color: #1a1a2e;
		transform-origin: left center;
		font-size: 0.9rem;
		line-height: 1.45;
		text-shadow: none;
	}
	.akacja-hero__list-text {
		display: inline;
		font-size: inherit;
		line-height: inherit;
		text-shadow: none;
	}
	.akacja-hero__emoji {
		font-size: 1.15rem;
	}
	.akacja-hero__emoji--check {
		font-size: 1.05em;
		margin-top: 0.1em;
		color: #1a1a2e;
	}
	.akacja-hero__emoji--word {
		background-image: linear-gradient(
			to top,
			#ff6b9d 0%,
			#ff6b9d 100%
		);
		background-size: 0 0.72em;
	}
	.akacja-hero__list-item.aos-animate .akacja-hero__emoji--word,
	.akacja-hero__list-item:not([data-aos]) .akacja-hero__emoji--word {
		background-size: 100% 0.72em;
	}
	.akacja-hero__btn {
		max-width: 100%;
		width: 100%;
		font-size: 0.95rem;
		padding: 0.8rem 1.15rem;
		letter-spacing: 0.02em;
		box-shadow: 0 4px 14px rgba(241, 159, 3, 0.28);
	}
	.akacja-faq__image {
		width: min(380px, 36vw);
		max-width: 380px;
		max-height: min(520px, 65vh);
	}
}

@media (max-width: 640px) {
	.akacja-bestsellers__grid { grid-template-columns: 1fr; }
	.akacja-faq__figure,
	.akacja-faq__image { display: none; }
	.akacja-testimonials__slider {
		padding: 0 3.1rem;
	}
	.akacja-testimonials__track-wrap {
		padding: 0;
	}
	.akacja-slider-btn {
		width: 40px;
		height: 40px;
		font-size: 1.35rem;
	}
	.akacja-header__bar-wrap {
		min-height: 100px;
		margin-bottom: 0;
		padding-bottom: 0.75rem;
	}
	.akacja-header.is-scrolled .akacja-header__bar-wrap {
		min-height: 84px;
		margin-bottom: 0;
		padding-bottom: 0.5rem;
	}
	.akacja-header__logo,
	#akacjaHeaderLogo {
		width: 96px;
		height: 96px;
		padding: 10px;
	}
	.akacja-header.is-scrolled .akacja-header__logo,
	.akacja-header.is-scrolled #akacjaHeaderLogo {
		width: 76px;
		height: 76px;
		padding: 8px;
	}
	.akacja-header__bar {
		margin-left: 10px;
		padding: 0.3rem 0.65rem 0.3rem 5.35rem;
		min-height: 52px;
	}
	.akacja-header.is-scrolled .akacja-header__bar {
		padding: 0.3rem 0.65rem 0.3rem 4.5rem;
		min-height: 48px;
	}
	.akacja-icon-btn {
		width: 36px;
		height: 36px;
	}
	.akacja-hero,
	.akacja-hero__grid {
		min-height: min(92vh, 720px);
		height: min(92vh, 720px);
	}
	.akacja-hero__image {
		left: -30%;
		width: 108%;
		height: 90%;
	}
	.akacja-hero__content {
		bottom: 5%;
		right: 5%;
		left: 40%;
		padding: 1rem 0.85rem 1.1rem;
		background: rgba(255, 255, 255, 0.88);
	}
	.akacja-hero__title {
		font-size: clamp(1.25rem, 5vw, 1.6rem);
		margin-bottom: 0.75rem;
	}
	.akacja-hero__list-item {
		font-size: 0.82rem;
	}
	.akacja-hero__btn {
		font-size: 0.88rem;
		padding: 0.7rem 1rem;
	}
}

@media (max-width: 585px) {
	.akacja-hero__image {
		left: -55%;
		width: 145%;
		height: 90%;
	}
	.akacja-hero__image img {
		object-position: bottom left;
	}
	.akacja-hero__content {
		left: 35%;
		right: 4%;
		bottom: 5%;
	}
}
