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

:root {
	--acs-container: 1440px;
	--acs-gutter-desktop: 32px;
	--acs-gutter-tablet: 24px;
	--acs-gutter-mobile: 14px;
	--acs-primary: #b51267;
	--acs-primary-hover: #951052;
	--acs-primary-soft: #d8458d;
	--acs-pink-50: #fff9fb;
	--acs-pink-100: #fff2f7;
	--acs-pink-200: #fbe4ee;
	--acs-border: #eedce5;
	--acs-heading: #1e171b;
	--acs-text: #5f565a;
	--acs-muted: #8b8186;
	--acs-green: #6ca64a;
	--acs-green-background: #f1f8ed;
	--acs-star: #f3a000;
	--acs-white: #ffffff;
	--acs-card-shadow: 0 5px 22px rgba(90, 34, 60, .065);
	--acs-section-gap: 56px;
	--acs-radius: 8px;
}

.acs-plugin-shell {
	margin: 0;
	background: #fff;
	color: var(--acs-heading);
	font-family: Inter, Arial, Helvetica, sans-serif;
}

.acs-plugin-shell a,
.acs-home a {
	color: inherit;
	text-decoration: none;
}

.acs-container {
	width: min(var(--acs-container), calc(100% - (var(--acs-gutter-desktop) * 2)));
	margin-inline: auto;
}

.acs-site-header {
	position: relative;
	z-index: 20;
	background: #fff;
	border-bottom: 1px solid #f2e4ec;
}

.acs-header-main {
	border-bottom: 1px solid #f4e6ed;
}

.acs-header-main-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	min-height: 78px;
	column-gap: 24px;
}

.acs-header-info-group {
	display: flex;
	align-items: center;
	gap: 34px;
	min-width: 0;
}

.acs-header-info-group--right {
	justify-content: flex-end;
	gap: 26px;
}

.acs-header-info {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: var(--acs-muted);
}

.acs-header-info svg {
	width: 27px;
	height: 27px;
	fill: var(--acs-primary);
	flex: 0 0 auto;
}

.acs-header-info strong {
	display: block;
	color: var(--acs-heading);
	font-size: 12px;
	font-weight: 750;
	line-height: 1.15;
	white-space: nowrap;
}

.acs-header-info small {
	display: block;
	margin-top: 2px;
	color: var(--acs-muted);
	font-size: 11px;
	line-height: 1.2;
	white-space: nowrap;
}

.acs-brand {
	display: grid;
	place-items: center;
	width: 285px;
	max-width: 30vw;
}

.acs-brand img {
	display: block;
	width: 100%;
	height: auto;
}

.acs-brand__mobile-logo {
	display: none;
}

.acs-cart-link {
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid #efdce7;
	border-radius: 999px;
	background: #fff;
	color: var(--acs-primary);
}

.acs-cart-link svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.acs-cart-link span {
	position: absolute;
	top: -6px;
	right: -6px;
	display: grid;
	place-items: center;
	min-width: 19px;
	height: 19px;
	padding: 0 5px;
	border-radius: 99px;
	background: var(--acs-primary);
	color: #fff;
	font-size: 11px;
	font-weight: 800;
}

.acs-navrow {
	background: #fff;
	border-bottom: 1px solid #f0e0e9;
}

.acs-navrow__inner {
	display: grid;
	grid-template-columns: 210px minmax(0, 1fr) 300px;
	align-items: center;
	gap: 24px;
	min-height: 58px;
}

.acs-all-cats,
.acs-button,
.acs-newsletter-form button,
.acs-call-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border: 0;
	border-radius: 5px;
	background: var(--acs-primary);
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.acs-all-cats {
	width: 210px;
	min-height: 42px;
	padding: 0 15px;
	justify-content: space-between;
}

.acs-all-cats svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.acs-main-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 2vw, 34px);
	min-width: 0;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.acs-main-nav a:hover,
.acs-view-all:hover,
.acs-detail-link:hover {
	color: var(--acs-primary);
}

.acs-product-search {
	display: flex;
	align-items: stretch;
	width: 300px;
	height: 40px;
	border: 1px solid #ead8e2;
	border-radius: 5px;
	overflow: hidden;
	background: #fff;
}

.acs-product-search input {
	min-width: 0;
	flex: 1;
	border: 0;
	outline: 0;
	padding: 0 13px;
	color: var(--acs-heading);
	font-size: 13px;
}

.acs-product-search button {
	display: grid;
	place-items: center;
	width: 42px;
	border: 0;
	background: var(--acs-primary);
	color: #fff;
	cursor: pointer;
}

.acs-product-search svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.acs-category-menu {
	background: #fff;
	padding: 18px 0 24px;
}

.acs-category-scroll {
	display: flex;
	flex-wrap: nowrap;
	align-items: start;
	gap: 24px;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	overscroll-behavior-inline: contain;
}

.acs-category-chip {
	display: grid;
	flex: 0 0 112px;
	justify-items: center;
	gap: 9px;
	scroll-snap-align: start;
	text-align: center;
	color: #2d2730;
	font-size: 12.5px;
	font-weight: 750;
	line-height: 1.2;
	transition: transform .18s ease;
}

.acs-category-chip:hover {
	transform: translateY(-3px);
}

.acs-category-chip__image {
	display: grid;
	place-items: center;
	width: 92px;
	height: 92px;
	padding: 6px;
	border: 1px solid #f0dce7;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 10px 22px rgba(145, 41, 91, .08);
	overflow: hidden;
	isolation: isolate;
	transition: border-color .18s ease, box-shadow .18s ease;
}

.acs-category-chip:hover .acs-category-chip__image {
	border-color: var(--acs-primary);
	box-shadow: 0 14px 28px rgba(145, 41, 91, .14);
}

.acs-category-chip img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	object-position: center;
	clip-path: circle(50% at 50% 50%);
	transform: scale(1.52);
	transform-origin: center;
}

.acs-hero {
	padding: 0;
}

.acs-hero__inner {
	position: relative;
	min-height: 470px;
	overflow: hidden;
	border-radius: 12px;
	background-color: #fff2f7;
	background-position: center;
	background-size: cover;
	box-shadow: inset 0 0 0 1px rgba(238, 220, 229, .35);
}

.acs-hero__petals {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: 1;
}

.acs-hero__copy {
	position: relative;
	z-index: 3;
	width: 42%;
	min-width: 440px;
	padding: 70px 0 62px 92px;
}

.acs-script {
	margin: 0 0 12px;
	color: var(--acs-primary);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 27px;
	font-style: italic;
	line-height: 1.1;
}

.acs-hero h1,
.acs-section-head h2,
.acs-institutional h2 {
	margin: 0;
	color: var(--acs-heading);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	letter-spacing: 0;
}

.acs-hero h1 {
	max-width: 560px;
	font-size: clamp(46px, 3.6vw, 62px);
	font-weight: 600;
	line-height: 1.02;
}

.acs-hero h1 span {
	color: var(--acs-primary);
}

.acs-hero__copy > p:not(.acs-script) {
	max-width: 440px;
	margin: 18px 0 26px;
	color: #3e343a;
	font-size: 16px;
	line-height: 1.65;
}

.acs-button--primary {
	min-width: 190px;
	min-height: 48px;
	padding: 0 14px 0 21px;
	box-shadow: 0 12px 26px rgba(181, 18, 103, .22);
}

.acs-button--primary:hover {
	background: var(--acs-primary-hover);
}

.acs-button--primary i {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #fff;
	color: var(--acs-primary);
	font-size: 22px;
	font-style: normal;
	line-height: 1;
}

.acs-hero-mini {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 28px;
	color: var(--acs-primary);
	font-size: 13px;
}

.acs-hero-mini svg {
	width: 34px;
	height: 34px;
	padding: 7px;
	border: 1px solid #f0d5e4;
	border-radius: 999px;
	background: #fff;
	fill: currentColor;
}

.acs-hero-mini strong {
	display: block;
	color: var(--acs-heading);
}

.acs-hero__visual {
	position: absolute;
	right: -28px;
	bottom: -155px;
	z-index: 2;
	width: min(66%, 960px);
	pointer-events: none;
}

.acs-hero__visual img {
	display: block;
	width: 100%;
	height: auto;
}

.acs-slider-dots {
	position: absolute;
	bottom: 18px;
	left: 50%;
	z-index: 4;
	display: flex;
	gap: 7px;
	transform: translateX(-50%);
}

.acs-slider-dots span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--acs-primary);
	opacity: .45;
}

.acs-slider-dots span:first-child {
	opacity: 1;
}

.acs-benefits,
.acs-bottom-benefits {
	background: #fff;
	border-bottom: 1px solid #f2e6ed;
}

.acs-benefits__grid,
.acs-bottom-benefits__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 24px 0;
}

.acs-benefit,
.acs-bottom-benefit {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.acs-benefit__icon,
.acs-bottom-benefit__icon {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border: 1px solid #f1d8e6;
	border-radius: 999px;
	background: #fff8fb;
	flex: 0 0 auto;
}

.acs-benefit img,
.acs-bottom-benefit img {
	width: 26px;
	height: 26px;
}

.acs-benefit h3,
.acs-bottom-benefit h3 {
	margin: 0 0 4px;
	color: var(--acs-heading);
	font-size: 13px;
	font-weight: 750;
	line-height: 1.2;
}

.acs-benefit p,
.acs-bottom-benefit p {
	margin: 0;
	color: var(--acs-muted);
	font-size: 11.5px;
	line-height: 1.35;
}

.acs-product-section {
	padding: 32px 0 24px;
	background: #fff;
}

.acs-section-head {
	position: relative;
	display: flex;
	align-items: end;
	justify-content: center;
	margin-bottom: 24px;
	text-align: center;
}

.acs-section-head h2 {
	font-size: clamp(31px, 2.2vw, 35px);
	font-weight: 600;
	line-height: 1.2;
}

.acs-section-head h2::after {
	content: "";
	display: block;
	width: 54px;
	height: 3px;
	margin: 11px auto 0;
	border-radius: 99px;
	background: var(--acs-primary-soft);
}

.acs-section-head p {
	margin: 8px 0 0;
	color: var(--acs-muted);
}

.acs-view-all {
	position: absolute;
	right: 0;
	bottom: 7px;
	color: var(--acs-primary);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.acs-product-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.acs-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 386px;
	border: 1px solid #eee3e9;
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	box-shadow: var(--acs-card-shadow);
	transition: transform .18s ease, box-shadow .18s ease;
}

.acs-product-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 30px rgba(90, 34, 60, .1);
}

.acs-product-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 1 / .9;
	padding: 14px;
	background: linear-gradient(180deg, #fff, #fff8fb);
}

.acs-product-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.acs-product-card__heart {
	position: absolute;
	top: 12px;
	right: 12px;
	display: grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border: 1px solid #f1d9e6;
	border-radius: 999px;
	background: rgba(255,255,255,.92);
	color: var(--acs-primary);
	cursor: pointer;
}

.acs-product-card__heart svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
	opacity: .65;
}

.acs-product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-width: 0;
	padding: 12px 14px 13px;
}

.acs-product-card h3 {
	min-height: 38px;
	margin: 0 0 6px;
	color: var(--acs-heading);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
}

.acs-product-card__short {
	display: -webkit-box;
	min-height: 30px;
	margin: 0 0 8px;
	overflow: hidden;
	color: var(--acs-muted);
	font-size: 11px;
	line-height: 1.35;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.acs-product-card__price {
	margin-top: auto;
	color: var(--acs-heading);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
}

.acs-product-card__price del {
	margin-left: 4px;
	color: #9b909a;
	font-weight: 500;
}

.acs-product-card__rating {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 20px;
	margin: 5px 0 7px;
}

.acs-stars {
	--percent: calc(var(--rating) / 5 * 100%);
	display: inline-block;
	background: linear-gradient(90deg, var(--acs-star) var(--percent), #e8e0e5 var(--percent));
	background-clip: text;
	color: var(--acs-star);
	font-size: 13px;
	line-height: 1;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.acs-review-count {
	color: var(--acs-muted);
	font-size: 11px;
}

.acs-product-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	min-height: 22px;
}

.acs-badge {
	display: inline-flex;
	align-items: center;
	min-height: 19px;
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
}

.acs-badge--free {
	background: var(--acs-green-background);
	color: #39852e;
}

.acs-badge--today {
	background: #fff0f7;
	color: var(--acs-primary);
}

.acs-urgency {
	min-height: 24px;
	margin: 6px 0 8px;
	color: var(--acs-primary);
	font-size: 10.5px;
	font-weight: 750;
	line-height: 1.25;
}

.acs-product-card__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 7px;
	align-items: center;
	margin-top: auto;
}

.acs-detail-link,
.acs-add-cart {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 29px;
	border-radius: 4px;
	font-size: 11px;
	font-weight: 800;
}

.acs-detail-link {
	border: 1px solid #efdce7;
	color: var(--acs-primary);
	background: #fff;
}

.acs-add-cart,
.acs-product-card .button {
	border: 0;
	background: var(--acs-primary);
	color: #fff;
	padding: 0 9px;
	text-align: center;
}

.acs-special-days {
	padding: 24px 0 18px;
	background: #fff;
}

.acs-special-days__grid {
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	border-radius: 8px;
	background: #fff2f8;
	overflow: hidden;
}

.acs-special-day {
	display: flex;
	align-items: center;
	gap: 9px;
	min-height: 72px;
	padding: 12px 14px;
	border-right: 1px solid #f4dbe8;
	color: var(--acs-primary);
}

.acs-special-day:last-child {
	border-right: 0;
}

.acs-special-day__icon {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	flex: 0 0 auto;
}

.acs-special-day__icon img {
	width: 28px;
	height: 28px;
}

.acs-special-day strong {
	display: block;
	color: var(--acs-primary);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.2;
}

.acs-special-day small {
	display: block;
	margin-top: 3px;
	color: var(--acs-muted);
	font-size: 11px;
	line-height: 1.25;
}

.acs-spotlights {
	padding: 0 0 30px;
	background: #fff;
}

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

.acs-spotlight {
	display: grid;
	grid-template-columns: 1fr 136px;
	align-items: center;
	min-height: 150px;
	padding: 20px;
	border: 1px solid #f4e5ed;
	border-radius: 8px;
	background: linear-gradient(90deg, #fff7fb, #fff);
	overflow: hidden;
}

.acs-spotlight h3 {
	margin: 0 0 7px;
	color: var(--acs-heading);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.1;
}

.acs-spotlight p {
	margin: 0 0 14px;
	color: var(--acs-muted);
	font-size: 12px;
}

.acs-spotlight span {
	color: var(--acs-primary);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.acs-spotlight img {
	justify-self: end;
	width: 138px;
	height: 126px;
	object-fit: contain;
}

.acs-institutional {
	padding: 40px 0 42px;
	background: linear-gradient(90deg, #fff2f8 0%, #fff 100%);
}

.acs-institutional__inner {
	display: grid;
	grid-template-columns: 34% 1fr 280px;
	align-items: center;
	min-height: 390px;
	gap: 38px;
}

.acs-institutional__image {
	align-self: end;
}

.acs-institutional__image img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 360px;
	object-fit: contain;
	object-position: center bottom;
}

.acs-eyebrow {
	margin: 0 0 9px;
	color: var(--acs-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.acs-institutional h2 {
	font-size: clamp(32px, 2.6vw, 40px);
	font-weight: 600;
	line-height: 1.18;
}

.acs-institutional__copy > p:not(.acs-eyebrow) {
	max-width: 680px;
	margin: 16px 0 0;
	color: #4f4350;
	font-size: 15px;
	line-height: 1.75;
}

.acs-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin-top: 22px;
	color: var(--acs-muted);
	font-size: 12px;
}

.acs-stats strong {
	display: block;
	color: var(--acs-primary);
	font-size: 20px;
	line-height: 1.2;
}

.acs-call-card {
	display: grid;
	justify-items: center;
	min-width: 260px;
	min-height: 270px;
	padding: 30px 24px;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(90, 34, 60, .09);
	text-align: center;
}

.acs-call-card__icon {
	width: 78px;
	height: 78px;
	object-fit: contain;
}

.acs-call-card h3 {
	margin: 14px 0 4px;
	color: var(--acs-heading);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.2;
}

.acs-call-card p {
	margin: 0 0 22px;
	color: var(--acs-muted);
	font-weight: 750;
}

.acs-call-card a {
	min-width: 220px;
	min-height: 48px;
	padding: 0 18px;
}

.acs-call-card a svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

.acs-site-footer {
	border-top: 1px solid #f0dfe8;
	background: #fff8fb;
}

.acs-footer__inner {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1fr;
	gap: 42px;
	padding: 52px 0 38px;
}

.acs-site-footer h2,
.acs-site-footer h3 {
	margin: 0 0 13px;
	color: var(--acs-primary);
	font-size: 15px;
	font-weight: 750;
}

.acs-site-footer p,
.acs-site-footer a {
	margin: 0 0 8px;
	color: #594e5a;
	font-size: 13px;
	line-height: 1.75;
}

.acs-footer-col a {
	display: block;
}

.acs-newsletter-form {
	display: grid;
	grid-template-columns: 1fr 132px;
	gap: 9px;
	max-width: 440px;
}

.acs-newsletter-form input {
	min-width: 0;
	min-height: 42px;
	padding: 0 12px;
	border: 1px solid #eedde6;
	border-radius: 5px;
	background: #fff;
}

.acs-newsletter-form button {
	min-height: 42px;
	padding: 0 16px;
	cursor: pointer;
}

.acs-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.acs-socials a {
	margin: 0;
	color: var(--acs-primary);
	font-weight: 800;
}

.acs-footer-bottom {
	border-top: 1px solid #f1dfe8;
	padding: 18px 0;
}

.acs-footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.acs-footer-bottom p {
	margin: 0;
	color: var(--acs-muted);
	font-size: 12px;
}

.acs-payment-logos {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	flex-wrap: wrap;
}

.acs-payment-logos img {
	display: block;
	width: auto;
	height: 32px;
	border-radius: 6px;
	box-shadow: 0 6px 14px rgba(92, 38, 63, .055);
}

.acs-fixed-actions {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 99;
	display: grid;
	gap: 11px;
}

.acs-fixed-actions a {
	position: relative;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 999px;
	color: #fff;
	box-shadow: 0 12px 28px rgba(34, 23, 32, .18);
}

.acs-fixed-actions svg {
	width: 23px;
	height: 23px;
	fill: currentColor;
}

.acs-fixed-actions__whatsapp {
	background: #20ad5f;
}

.acs-fixed-actions__phone {
	background: var(--acs-primary);
}

.acs-fixed-actions__tooltip {
	position: absolute;
	right: 64px;
	top: 50%;
	padding: 6px 9px;
	border-radius: 4px;
	background: #211820;
	color: #fff;
	font-size: 12px;
	font-weight: 750;
	opacity: 0;
	pointer-events: none;
	transform: translateY(-50%) translateX(6px);
	transition: opacity .16s ease, transform .16s ease;
	white-space: nowrap;
}

.acs-fixed-actions a:hover .acs-fixed-actions__tooltip {
	opacity: 1;
	transform: translateY(-50%) translateX(0);
}

.acs-fixed-actions__mobile-text {
	display: none;
}

.acs-delivery-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 18px 0;
	padding: 16px;
	border: 1px solid #f0dfe8;
	border-radius: 8px;
	background: #fff8fb;
}

.acs-delivery-field span {
	display: block;
	margin-bottom: 6px;
	color: var(--acs-heading);
	font-size: 12px;
	font-weight: 800;
}

.acs-delivery-field input,
.acs-delivery-field select {
	width: 100%;
	min-height: 42px;
	padding: 0 10px;
	border: 1px solid #ead7e2;
	border-radius: 6px;
	background: #fff;
}

.acs-delivery-form__note {
	grid-column: 1 / -1;
	margin: 0;
	color: var(--acs-primary);
	font-size: 13px;
	font-weight: 800;
}

.acs-product-whatsapp {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 14px;
}

.acs-wa-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	border-radius: 6px;
	font-weight: 800;
}

.acs-wa-button svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.acs-wa-order {
	background: #20ad5f;
	color: #fff;
}

.acs-wa-question {
	border: 1px solid #20ad5f;
	background: #fff;
	color: #118745;
}

.acs-cart-delivery-summary,
.acs-checkout-delivery,
.acs-order-delivery-box {
	margin: 22px 0;
	padding: 18px;
	border: 1px solid #f0dfe8;
	border-radius: 8px;
	background: #fff8fb;
}

.acs-order-delivery-box dl {
	display: grid;
	grid-template-columns: 160px 1fr;
	gap: 8px 18px;
	margin: 0;
}

.acs-order-delivery-box dt {
	font-weight: 800;
}

.acs-order-delivery-box dd {
	margin: 0;
}

.acs-admin-empty {
	padding: 18px;
	border: 1px dashed var(--acs-primary);
	border-radius: 8px;
	background: #fff8fb;
	color: var(--acs-primary);
	font-weight: 750;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1599px) {
	.acs-container {
		width: calc(100% - 48px);
	}
}

@media (max-width: 1279px) {
	.acs-container {
		width: calc(100% - 40px);
	}

	.acs-header-info-group {
		gap: 18px;
	}

	.acs-brand {
		width: 230px;
	}

	.acs-navrow__inner {
		grid-template-columns: 190px minmax(0, 1fr) 260px;
		gap: 18px;
	}

	.acs-all-cats {
		width: 190px;
	}

	.acs-main-nav {
		gap: 18px;
	}

	.acs-hero__inner {
		min-height: 430px;
	}

	.acs-hero__copy {
		padding-left: 56px;
	}

	.acs-product-grid {
		gap: 18px;
	}
}

@media (max-width: 1023px) {
	.acs-container {
		width: calc(100% - 32px);
	}

	.acs-header-main-inner {
		grid-template-columns: 42px 1fr 84px;
		min-height: 72px;
	}

	.acs-header-info-group--left {
		display: none;
	}

	.acs-header-info--phone,
	.acs-header-info--account {
		display: none;
	}

	.acs-brand {
		justify-self: center;
		width: 210px;
		max-width: 60vw;
	}

	.acs-header-info-group--right {
		gap: 10px;
	}

	.acs-navrow__inner {
		grid-template-columns: 180px 1fr;
		gap: 12px;
		padding: 10px 0;
	}

	.acs-main-nav {
		grid-column: 1 / -1;
		justify-content: flex-start;
		overflow-x: auto;
		padding: 6px 0;
	}

	.acs-product-search {
		width: 100%;
	}

	.acs-category-scroll {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding-bottom: 8px;
		scrollbar-width: none;
	}

	.acs-category-scroll::-webkit-scrollbar {
		display: none;
	}

	.acs-category-chip {
		width: 84px;
		flex: 0 0 84px;
	}

	.acs-category-chip__image {
		width: 76px;
		height: 76px;
	}

	.acs-hero__inner {
		min-height: 390px;
	}

	.acs-hero__copy {
		width: 55%;
		min-width: 0;
		padding: 46px 0 44px 38px;
	}

	.acs-hero__visual {
		right: -90px;
		bottom: -120px;
		width: 68%;
	}

	.acs-benefits__grid,
	.acs-bottom-benefits__grid,
	.acs-spotlights__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.acs-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.acs-special-days__grid {
		display: flex;
		overflow-x: auto;
		scrollbar-width: none;
	}

	.acs-special-days__grid::-webkit-scrollbar {
		display: none;
	}

	.acs-special-day {
		min-width: 178px;
	}

	.acs-institutional__inner {
		grid-template-columns: 1fr;
	}

	.acs-institutional__image {
		max-width: 520px;
		margin: 0 auto;
	}

	.acs-call-card {
		justify-items: center;
		justify-self: start;
	}

	.acs-footer__inner {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 767px) {
	.acs-container {
		width: calc(100% - 24px);
	}

	.acs-header-main-inner {
		grid-template-columns: 38px 1fr 50px;
		column-gap: 8px;
		min-height: 66px;
	}

	.acs-brand {
		width: 165px;
	}

	.acs-brand__desktop-logo {
		display: none;
	}

	.acs-brand__mobile-logo {
		display: block;
	}

	.acs-cart-link {
		width: 38px;
		height: 38px;
	}

	.acs-navrow__inner {
		grid-template-columns: 1fr;
	}

	.acs-all-cats {
		width: 100%;
	}

	.acs-product-search {
		width: 100%;
	}

	.acs-main-nav {
		gap: 18px;
		font-size: 12px;
	}

	.acs-hero__inner {
		min-height: 650px;
	}

	.acs-hero__copy {
		width: 100%;
		padding: 34px 24px 0;
	}

	.acs-script {
		font-size: 21px;
	}

	.acs-hero h1 {
		font-size: 38px;
	}

	.acs-hero__copy > p:not(.acs-script) {
		font-size: 14px;
	}

	.acs-hero__visual {
		right: -88px;
		bottom: -70px;
		width: 118%;
	}

	.acs-slider-dots {
		bottom: 14px;
	}

	.acs-benefits__grid,
	.acs-bottom-benefits__grid,
	.acs-spotlights__grid,
	.acs-footer__inner {
		grid-template-columns: 1fr;
	}

	.acs-benefits__grid,
	.acs-bottom-benefits__grid {
		gap: 14px;
		padding: 20px 0;
	}

	.acs-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.acs-product-section {
		padding: 28px 0 18px;
	}

	.acs-section-head {
		display: block;
	}

	.acs-section-head h2 {
		font-size: 27px;
	}

	.acs-view-all {
		position: static;
		display: inline-block;
		margin-top: 12px;
	}

	.acs-product-card {
		min-height: 358px;
	}

	.acs-product-card__body {
		padding: 10px;
	}

	.acs-product-card h3 {
		font-size: 12.5px;
	}

	.acs-product-card__short {
		display: none;
	}

	.acs-product-card__actions {
		grid-template-columns: 1fr;
	}

	.acs-spotlight {
		grid-template-columns: 1fr 112px;
		min-height: 132px;
	}

	.acs-spotlight img {
		width: 112px;
		height: 108px;
	}

	.acs-institutional {
		padding: 28px 0 34px;
	}

	.acs-institutional h2 {
		font-size: 29px;
	}

	.acs-call-card {
		justify-self: stretch;
	}

	.acs-newsletter-form,
	.acs-delivery-form,
	.acs-product-whatsapp {
		grid-template-columns: 1fr;
	}

	.acs-fixed-actions {
		left: 0;
		right: 0;
		bottom: 0;
		grid-template-columns: 1fr 1fr;
		gap: 0;
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid #eddce6;
		background: #fff;
	}

	.acs-fixed-actions a {
		display: inline-flex;
		gap: 8px;
		width: auto;
		height: 48px;
		border-radius: 0;
		box-shadow: none;
		font-weight: 800;
	}

	.acs-fixed-actions__tooltip {
		display: none;
	}

	.acs-fixed-actions__mobile-text {
		display: inline;
	}
}

@media (max-width: 379px) {
	.acs-hero h1 {
		font-size: 34px;
	}

	.acs-product-grid {
		gap: 10px;
	}

	.acs-badge {
		font-size: 9px;
	}
}

/* v1.0.4 final reference alignment */
:root {
	--acs-container-width: 1440px;
	--acs-container: var(--acs-container-width);
	--acs-gutter-xl: 30px;
	--acs-gutter-lg: 24px;
	--acs-gutter-md: 18px;
	--acs-gutter-sm: 12px;
	--acs-primary: #b81667;
	--acs-primary-dark: #94104f;
	--acs-primary-hover: #9f1057;
	--acs-primary-soft: #de4d91;
	--acs-pink-50: #fffafd;
	--acs-pink-100: #fff2f7;
	--acs-pink-200: #fbe1ec;
	--acs-pink-300: #f5c9db;
	--acs-heading: #1f181c;
	--acs-text: #5f575b;
	--acs-muted: #8b8186;
	--acs-border: #eedde5;
	--acs-card-background: #ffffff;
	--acs-image-background: #fafafa;
	--acs-green: #6ea349;
	--acs-green-soft: #f2f8ed;
	--acs-green-background: var(--acs-green-soft);
	--acs-star: #f4a300;
	--acs-shadow: 0 7px 26px rgba(93, 38, 65, .065);
	--acs-card-shadow: var(--acs-shadow);
	--acs-section-gap: 52px;
}

.acs-container {
	width: min(var(--acs-container-width), calc(100% - (var(--acs-gutter-xl) * 2)));
	margin-inline: auto;
}

.acs-header-main-inner {
	min-height: 82px;
	gap: 26px;
}

.acs-brand {
	width: 272px;
	max-width: 32vw;
}

.acs-header-info strong,
.acs-main-nav {
	font-weight: 650;
}

.acs-all-cats {
	width: 210px;
	height: 42px;
	border-radius: 5px;
	background: var(--acs-primary);
	text-transform: uppercase;
}

.acs-navrow__inner {
	grid-template-columns: 210px minmax(0, 1fr) 300px;
}

.acs-product-search {
	height: 40px;
}

.acs-product-search button {
	width: 42px;
	background: var(--acs-primary);
}

.acs-category-menu {
	padding: 20px 0 18px;
}

.acs-category-scroll {
	justify-content: space-between;
	gap: 18px;
}

.acs-category-chip {
	width: 112px;
}

.acs-category-chip__image {
	width: 94px;
	height: 94px;
	padding: 7px;
	border-color: var(--acs-border);
	background: #fff;
	box-shadow: 0 7px 20px rgba(93, 38, 65, .055);
}

.acs-category-chip__image img {
	object-fit: cover;
}

.acs-hero {
	padding: 0 0 22px;
}

.acs-hero__inner {
	min-height: 465px;
	border-radius: 12px;
	background-size: cover;
	background-position: center;
}

.acs-hero__copy {
	width: 41%;
	padding: 74px 0 64px 86px;
}

.acs-script {
	color: var(--acs-primary);
	font-size: 27px;
	font-weight: 500;
}

.acs-hero h1 {
	font-size: clamp(49px, 4vw, 64px);
	font-weight: 600;
	line-height: 1.02;
	letter-spacing: 0;
}

.acs-hero h1 span {
	color: var(--acs-primary);
}

.acs-hero__copy > p:not(.acs-script) {
	max-width: 440px;
	font-size: 16px;
	line-height: 1.65;
}

.acs-button--primary {
	min-width: 188px;
	min-height: 48px;
	background: var(--acs-primary);
}

.acs-button--primary:hover {
	background: var(--acs-primary-hover);
}

.acs-hero__visual {
	right: -38px;
	bottom: -118px;
	width: 64%;
}

.acs-hero__visual img {
	width: 100%;
	max-height: 610px;
	object-fit: contain;
}

.acs-benefits__grid {
	min-height: 86px;
	align-items: center;
}

.acs-benefit__icon,
.acs-bottom-benefit__icon {
	width: 42px;
	height: 42px;
}

.acs-product-section {
	padding: 32px 0 30px;
}

.acs-section-head {
	margin-bottom: 26px;
}

.acs-section-head h2 {
	font-size: 33px;
	font-weight: 600;
	line-height: 1.2;
}

.acs-product-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 24px;
}

.acs-product-card {
	min-height: 0;
	border-color: var(--acs-border);
	background: var(--acs-card-background);
	box-shadow: var(--acs-shadow);
}

.acs-product-card__tag,
.acs-product-card__actions {
	display: none !important;
}

.acs-product-card__image {
	aspect-ratio: 1 / 1;
	padding: 14px;
	background: var(--acs-image-background);
}

.acs-product-card__body {
	padding: 12px 14px 14px;
}

.acs-product-card h3 {
	display: -webkit-box;
	min-height: 38px;
	margin-bottom: 7px;
	overflow: hidden;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.acs-product-card__price {
	margin-top: 0;
	margin-bottom: 5px;
	font-size: 16px;
	font-weight: 700;
}

.acs-product-card__rating {
	margin: 0 0 7px;
}

.acs-product-card__badges {
	gap: 6px;
	min-height: 21px;
}

.acs-badge {
	min-height: 19px;
	padding: 2px 6px;
}

.acs-urgency {
	min-height: 16px;
	margin: 5px 0 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.acs-special-days {
	padding: 24px 0 20px;
}

.acs-special-days__grid {
	background: var(--acs-pink-100);
}

.acs-spotlight {
	min-height: 152px;
}

.acs-institutional__inner {
	min-height: 395px;
	background: linear-gradient(90deg, #fff7fb 0%, #fff 55%, #fff3f8 100%);
}

.acs-institutional__image img {
	max-height: 360px;
	object-fit: contain;
}

.acs-call-card a {
	min-height: 48px;
	background: var(--acs-primary);
}

.acs-site-footer {
	background: #fff8fb;
}

@media (max-width: 1599px) {
	.acs-container {
		width: calc(100% - 48px);
	}
}

@media (max-width: 1279px) {
	.acs-container {
		width: calc(100% - 36px);
	}

	.acs-navrow__inner {
		grid-template-columns: 190px minmax(0, 1fr) 260px;
	}

	.acs-all-cats {
		width: 190px;
	}

	.acs-hero__inner {
		min-height: 430px;
	}

	.acs-hero__copy {
		padding-left: 60px;
	}

	.acs-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1023px) {
	.acs-container {
		width: calc(100% - 28px);
	}

	.acs-brand {
		width: 215px;
	}

	.acs-category-scroll {
		justify-content: flex-start;
	}

	.acs-hero__inner {
		min-height: 390px;
	}

	.acs-hero__copy {
		width: 55%;
		padding: 46px 0 42px 38px;
	}

	.acs-product-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.acs-container {
		width: calc(100% - 20px);
	}

	.acs-brand {
		width: 165px;
	}

	.acs-category-chip {
		width: 86px;
		flex: 0 0 86px;
	}

	.acs-category-chip__image {
		width: 78px;
		height: 78px;
	}

	.acs-hero__inner {
		min-height: 670px;
	}

	.acs-hero__copy {
		width: 100%;
		padding: 36px 24px 0;
	}

	.acs-hero h1 {
		font-size: 40px;
	}

	.acs-hero__visual {
		right: -72px;
		bottom: -54px;
		width: 112%;
	}

	.acs-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.acs-product-card__image {
		padding: 10px;
	}

	.acs-product-card__body {
		padding: 10px;
	}

	.acs-product-card h3 {
		font-size: 12.5px;
	}

	.acs-product-card__price {
		font-size: 14px;
	}

	.acs-stars {
		font-size: 11px;
	}

	.acs-badge {
		font-size: 9px;
	}

	.acs-urgency {
		font-size: 9.5px;
	}
}

/* v1.0.5 mobile usability fixes */
@media (max-width: 767px) {
	html,
	body,
	.acs-plugin-shell {
		max-width: 100%;
		overflow-x: hidden;
	}

	.acs-plugin-shell {
		padding-bottom: 54px;
	}

	.acs-site-header {
		position: relative;
		z-index: 60;
	}

	.acs-header-main-inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 42px;
		min-height: 58px;
		column-gap: 10px;
		padding: 6px 0;
	}

	.acs-header-info-group--left,
	.acs-header-info--phone,
	.acs-header-info--account {
		display: none !important;
	}

	.acs-brand {
		justify-self: start;
		width: 152px;
		max-width: calc(100vw - 80px);
	}

	.acs-header-info-group--right {
		display: flex;
		justify-content: flex-end;
		min-width: 42px;
	}

	.acs-cart-link {
		width: 38px;
		height: 38px;
	}

	.acs-cart-link svg {
		width: 18px;
		height: 18px;
	}

	.acs-navrow__inner {
		display: grid;
		grid-template-columns: 116px minmax(0, 1fr);
		gap: 8px;
		padding: 8px 0;
		align-items: center;
	}

	.acs-main-nav {
		display: none !important;
	}

	.acs-all-cats {
		width: 100%;
		height: 34px;
		min-height: 34px;
		padding: 0 8px;
		border-radius: 4px;
		font-size: 9px;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.acs-all-cats svg {
		width: 14px;
		height: 14px;
	}

	.acs-all-cats svg:last-child {
		display: none;
	}

	.acs-product-search {
		width: 100%;
		min-width: 0;
		height: 34px;
	}

	.acs-product-search input {
		min-width: 0;
		padding: 0 8px;
		font-size: 11px;
	}

	.acs-product-search button {
		width: 36px;
		min-width: 36px;
	}

	.acs-category-menu {
		padding: 10px 0 8px;
	}

	.acs-category-scroll {
		gap: 10px;
		padding-bottom: 6px;
	}

	.acs-category-chip {
		width: 66px;
		flex: 0 0 66px;
		font-size: 9px;
		line-height: 1.15;
	}

	.acs-category-chip__image {
		width: 56px;
		height: 56px;
		padding: 4px;
	}

	.acs-hero {
		padding-bottom: 14px;
	}

	.acs-hero__inner {
		min-height: 500px;
		border-radius: 8px;
	}

	.acs-hero__copy {
		width: 100%;
		min-width: 0;
		padding: 26px 18px 0;
	}

	.acs-script {
		margin-bottom: 8px;
		font-size: 18px;
	}

	.acs-hero h1 {
		max-width: 270px;
		font-size: 31px;
		line-height: 1.04;
	}

	.acs-hero__copy > p:not(.acs-script) {
		max-width: 245px;
		margin: 12px 0 16px;
		font-size: 11.5px;
		line-height: 1.45;
	}

	.acs-button--primary {
		min-width: 148px;
		min-height: 38px;
		padding: 0 10px 0 13px;
		font-size: 10px;
	}

	.acs-button--primary i {
		width: 20px;
		height: 20px;
		font-size: 18px;
	}

	.acs-hero-mini {
		gap: 7px;
		margin-top: 14px;
		font-size: 10px;
	}

	.acs-hero-mini svg {
		width: 27px;
		height: 27px;
		padding: 6px;
	}

	.acs-hero__visual {
		right: -34px;
		bottom: -24px;
		width: 104%;
	}

	.acs-hero__visual img {
		max-height: 285px;
		object-fit: contain;
	}

	.acs-slider-dots {
		bottom: 8px;
	}

	.acs-benefits__grid {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 10px 0;
	}

	.acs-benefit {
		min-height: 48px;
		padding: 8px 0;
	}

	.acs-benefit__icon {
		width: 32px;
		height: 32px;
	}

	.acs-benefit h3 {
		font-size: 11px;
	}

	.acs-benefit p {
		font-size: 10px;
	}

	.acs-product-section {
		padding: 22px 0 12px;
	}

	.acs-section-head {
		margin-bottom: 14px;
		text-align: center;
	}

	.acs-section-head h2 {
		font-size: 23px;
	}

	.acs-view-all {
		display: none;
	}

	.acs-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 9px;
	}

	.acs-product-card {
		border-radius: 7px;
		box-shadow: 0 4px 15px rgba(93, 38, 65, .075);
	}

	.acs-product-card:hover {
		transform: none;
	}

	.acs-product-card__image {
		padding: 7px;
	}

	.acs-product-card__heart {
		top: 6px;
		right: 6px;
		width: 23px;
		height: 23px;
	}

	.acs-product-card__heart svg {
		width: 12px;
		height: 12px;
	}

	.acs-product-card__body {
		padding: 8px;
	}

	.acs-product-card h3 {
		min-height: 30px;
		margin-bottom: 5px;
		font-size: 10.5px;
		line-height: 1.28;
	}

	.acs-product-card__price {
		margin-bottom: 4px;
		font-size: 11.5px;
		line-height: 1.2;
	}

	.acs-product-card__rating {
		gap: 3px;
		min-height: 13px;
		margin-bottom: 5px;
	}

	.acs-stars {
		font-size: 9px;
	}

	.acs-review-count {
		display: none;
	}

	.acs-product-card__badges {
		flex-wrap: nowrap;
		gap: 3px;
		min-height: 16px;
		overflow: hidden;
	}

	.acs-badge {
		flex: 1 1 0;
		justify-content: center;
		min-width: 0;
		min-height: 16px;
		padding: 2px 4px;
		overflow: hidden;
		font-size: 7.5px;
		line-height: 1;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.acs-urgency {
		display: none;
	}

	.acs-special-days {
		padding: 14px 0 12px;
	}

	.acs-special-day {
		min-width: 130px;
		padding: 9px 10px;
	}

	.acs-special-day__icon {
		width: 27px;
		height: 27px;
	}

	.acs-special-day strong {
		font-size: 10px;
	}

	.acs-special-day small {
		font-size: 9px;
	}

	.acs-spotlights {
		padding-bottom: 18px;
	}

	.acs-spotlight {
		grid-template-columns: minmax(0, 1fr) 82px;
		min-height: 94px;
		padding: 12px;
	}

	.acs-spotlight h3 {
		font-size: 19px;
	}

	.acs-spotlight p {
		margin-bottom: 8px;
		font-size: 10px;
	}

	.acs-spotlight span {
		font-size: 10px;
	}

	.acs-spotlight img {
		width: 82px;
		height: 82px;
	}

	.acs-institutional {
		padding: 22px 0 24px;
	}

	.acs-institutional__inner {
		min-height: 0;
		gap: 14px;
		padding: 18px 16px;
		border-radius: 8px;
	}

	.acs-institutional__image {
		display: none;
	}

	.acs-eyebrow {
		font-size: 9px;
	}

	.acs-institutional h2 {
		font-size: 24px;
	}

	.acs-institutional__copy > p:not(.acs-eyebrow) {
		margin-top: 10px;
		font-size: 11px;
		line-height: 1.55;
	}

	.acs-stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
		margin-top: 14px;
		font-size: 9px;
		text-align: center;
	}

	.acs-stats strong {
		font-size: 14px;
	}

	.acs-call-card {
		min-width: 0;
		min-height: 0;
		padding: 18px 14px;
	}

	.acs-call-card__icon {
		width: 52px;
		height: 52px;
	}

	.acs-call-card h3 {
		margin-top: 8px;
		font-size: 20px;
	}

	.acs-call-card p {
		margin-bottom: 12px;
	}

	.acs-call-card a {
		min-width: 0;
		width: 100%;
	}

	.acs-bottom-benefits__grid {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 12px 0;
	}

	.acs-bottom-benefit {
		min-height: 44px;
	}

	.acs-bottom-benefit__icon {
		width: 30px;
		height: 30px;
	}

	.acs-bottom-benefit h3 {
		font-size: 10.5px;
	}

	.acs-bottom-benefit p {
		font-size: 9.5px;
	}

	.acs-footer__inner {
		gap: 18px;
		padding: 24px 0 18px;
	}

	.acs-site-footer h2,
	.acs-site-footer h3 {
		margin-bottom: 8px;
		font-size: 13px;
	}

	.acs-site-footer p,
	.acs-site-footer a {
		font-size: 11px;
	}

	.acs-newsletter-form input,
	.acs-newsletter-form button {
		min-height: 36px;
		font-size: 11px;
	}

	.acs-fixed-actions {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 70;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0;
		padding-bottom: env(safe-area-inset-bottom);
		border-top: 1px solid var(--acs-border);
		background: #fff;
	}

	.acs-fixed-actions a {
		width: 100%;
		height: 48px;
		border-radius: 0;
		box-shadow: none;
		font-size: 13px;
	}
}

@media (max-width: 360px) {
	.acs-container {
		width: calc(100% - 16px);
	}

	.acs-navrow__inner {
		grid-template-columns: 108px minmax(0, 1fr);
		gap: 6px;
	}

	.acs-all-cats {
		font-size: 8px;
	}

	.acs-product-search input {
		font-size: 10px;
	}

	.acs-category-chip {
		width: 62px;
		flex-basis: 62px;
	}

	.acs-hero__inner {
		min-height: 485px;
	}

	.acs-hero h1 {
		font-size: 29px;
	}

	.acs-hero__visual {
		right: -42px;
		width: 112%;
	}

	.acs-product-grid {
		gap: 8px;
	}

	.acs-product-card__body {
		padding: 7px;
	}

	.acs-product-card h3 {
		font-size: 10px;
	}

	.acs-badge {
		font-size: 7px;
	}
}

/* v1.0.6 interaction, mobile menu and visual polish */
:root {
	--acs-button-gradient: linear-gradient(135deg, #cf2c7f 0%, #a70f5b 100%);
	--acs-button-gradient-hover: linear-gradient(135deg, #b81568 0%, #850b48 100%);
	--acs-focus-ring: 0 0 0 3px rgba(207, 44, 127, .16);
}

.acs-plugin-shell,
.woocommerce {
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	letter-spacing: 0;
}

.acs-plugin-shell button,
.acs-plugin-shell input,
.acs-plugin-shell select,
.acs-plugin-shell textarea,
.woocommerce button,
.woocommerce input,
.woocommerce select,
.woocommerce textarea {
	font-family: inherit;
	letter-spacing: 0;
}

.acs-brand .acs-brand__desktop-logo {
	display: block !important;
}

.acs-brand .acs-brand__mobile-logo {
	display: none !important;
}

.acs-mobile-menu-toggle {
	display: none;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	background: #fff;
	color: var(--acs-primary);
	box-shadow: 0 6px 18px rgba(92, 38, 63, .06);
}

.acs-mobile-menu-toggle svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.acs-mobile-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 998;
	background: rgba(31, 18, 25, .42);
	opacity: 0;
	transition: opacity .22s ease;
}

.acs-mobile-menu-overlay.is-open {
	opacity: 1;
}

.acs-mobile-menu-panel {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 999;
	width: min(330px, calc(100vw - 42px));
	padding: 16px;
	overflow-y: auto;
	background: #fff;
	box-shadow: 18px 0 42px rgba(34, 21, 28, .18);
	transform: translateX(-104%);
	transition: transform .22s ease;
}

.acs-mobile-menu-panel.is-open {
	transform: translateX(0);
}

.acs-mobile-menu-panel__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--acs-border);
}

.acs-mobile-menu-panel__brand img {
	display: block;
	width: 150px;
	height: auto;
}

.acs-mobile-menu-close {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	background: #fff7fb;
	color: var(--acs-heading);
	font-size: 26px;
	line-height: 1;
}

.acs-mobile-menu-links {
	display: grid;
	gap: 6px;
	padding: 16px 0;
}

.acs-mobile-menu-links a {
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	border-radius: 8px;
	color: var(--acs-heading);
	font-size: 14px;
	font-weight: 750;
}

.acs-mobile-menu-links a:hover {
	background: var(--acs-pink-100);
	color: var(--acs-primary);
}

.acs-mobile-menu-panel__actions {
	display: grid;
	gap: 9px;
	padding-top: 14px;
	border-top: 1px solid var(--acs-border);
}

.acs-mobile-menu-panel__actions a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	border-radius: 8px;
	background: #fff7fb;
	color: var(--acs-primary);
	font-size: 13px;
	font-weight: 800;
}

.acs-mobile-menu-panel__actions svg {
	width: 18px;
	height: 18px;
	fill: currentColor;
}

body.acs-mobile-menu-open {
	overflow: hidden;
}

.acs-all-cats,
.acs-button,
.acs-newsletter-form button,
.acs-call-card a,
.acs-product-search button,
.acs-add-cart,
.acs-card-order,
.acs-wa-button,
.acs-fixed-actions a,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .checkout-button,
.woocommerce div.product form.cart .button {
	border: 0 !important;
	border-radius: 8px;
	background: var(--acs-button-gradient) !important;
	color: #fff !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.1;
	text-transform: none;
	box-shadow: 0 8px 20px rgba(181, 18, 103, .16);
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.acs-all-cats:hover,
.acs-button:hover,
.acs-newsletter-form button:hover,
.acs-call-card a:hover,
.acs-product-search button:hover,
.acs-add-cart:hover,
.acs-card-order:hover,
.acs-wa-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .checkout-button:hover,
.woocommerce div.product form.cart .button:hover {
	background: var(--acs-button-gradient-hover) !important;
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(181, 18, 103, .22);
	transform: translateY(-1px);
}

.acs-all-cats:focus-visible,
.acs-button:focus-visible,
.acs-newsletter-form button:focus-visible,
.acs-call-card a:focus-visible,
.acs-product-search button:focus-visible,
.acs-add-cart:focus-visible,
.acs-card-order:focus-visible,
.acs-wa-button:focus-visible,
.woocommerce a.button:focus-visible,
.woocommerce button.button:focus-visible,
.woocommerce input.button:focus-visible {
	outline: 0;
	box-shadow: var(--acs-focus-ring), 0 8px 20px rgba(181, 18, 103, .16);
}

.acs-fixed-actions__whatsapp {
	background: #20b45b !important;
}

.acs-category-menu__frame {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 12px;
	overflow: hidden;
}

.acs-category-scroll {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-start;
	min-width: 0;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.acs-category-scroll::-webkit-scrollbar {
	display: none;
}

.acs-category-menu__control {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--acs-border);
	border-radius: 999px;
	background: #fff;
	color: var(--acs-primary);
	box-shadow: 0 8px 22px rgba(92, 38, 63, .08);
	cursor: pointer;
}

.acs-category-menu__control svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.acs-category-menu__control--prev svg {
	transform: rotate(90deg);
}

.acs-category-menu__control--next svg {
	transform: rotate(-90deg);
}

.acs-hero__viewport {
	position: relative;
	min-height: 470px;
}

.acs-hero__slide {
	position: absolute;
	inset: 0;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	background-size: cover;
	background-position: center;
	transition: opacity .42s ease;
}

.acs-hero__slide.is-active {
	position: relative;
	opacity: 1;
	pointer-events: auto;
}

.acs-hero__inner {
	background-size: cover;
	background-position: center;
}

.acs-hero__control {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(181, 18, 103, .16);
	border-radius: 999px;
	background: rgba(255, 255, 255, .9);
	color: var(--acs-primary);
	box-shadow: 0 10px 24px rgba(92, 38, 63, .12);
	transform: translateY(-50%);
	cursor: pointer;
}

.acs-hero__control svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.acs-hero__control--prev {
	left: 16px;
}

.acs-hero__control--prev svg {
	transform: rotate(90deg);
}

.acs-hero__control--next {
	right: 16px;
}

.acs-hero__control--next svg {
	transform: rotate(-90deg);
}

.acs-slider-dots {
	z-index: 6;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
}

.acs-slider-dots button,
.acs-slider-dots span {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(181, 18, 103, .35);
	cursor: pointer;
}

.acs-slider-dots button.is-active,
.acs-slider-dots span:first-child {
	width: 18px;
	background: var(--acs-primary);
}

.acs-product-card__body {
	display: flex;
	flex-direction: column;
}

.acs-product-card__actions {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 0;
	margin-top: auto;
	padding-top: 8px;
}

.acs-card-order {
	min-height: 34px;
	padding: 0 10px;
	text-align: center;
}

.acs-product-card__image,
.acs-product-card__image img,
.woocommerce div.product div.images img {
	background: #fff;
}

.woocommerce div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, .9fr);
	gap: 34px;
	width: min(1180px, calc(100% - 40px));
	margin: 34px auto 44px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
	float: none !important;
	width: auto !important;
}

.woocommerce div.product div.images {
	padding: 18px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(92, 38, 63, .07);
}

.woocommerce div.product div.summary {
	align-self: start;
	padding: 24px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(92, 38, 63, .07);
}

.woocommerce div.product .product_title {
	margin: 0 0 10px;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3vw, 44px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--acs-primary);
	font-size: 26px;
	font-weight: 850;
}

.woocommerce div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 20px;
}

.woocommerce .quantity .qty {
	width: 76px;
	min-height: 44px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	color: var(--acs-heading);
	font-weight: 800;
	text-align: center;
}

.woocommerce div.product form.cart .button {
	min-height: 44px;
	padding: 0 24px;
}

.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
	grid-column: 1 / -1;
	padding: 20px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(92, 38, 63, .055);
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
	padding-left: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
	border-radius: 8px 8px 0 0;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
	margin-top: 0;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	text-align: center;
}

.woocommerce div.product .related.products ul.products,
.woocommerce div.product .upsells.products ul.products,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.woocommerce ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 12px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(92, 38, 63, .055);
}

.woocommerce ul.products li.product img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #fff;
}

.acs-delivery-form,
.acs-checkout-delivery {
	border-radius: 10px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
	min-height: 42px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	background: #fff;
	color: var(--acs-heading);
	box-shadow: none;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
	outline: 0;
	border-color: rgba(181, 18, 103, .42);
	box-shadow: var(--acs-focus-ring);
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
	width: min(1180px, calc(100% - 40px));
	margin-inline: auto;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
	padding: 20px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(92, 38, 63, .055);
}

@media (max-width: 1023px) {
	.woocommerce div.product {
		grid-template-columns: 1fr;
	}

	.woocommerce div.product .related.products ul.products,
	.woocommerce div.product .upsells.products ul.products,
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.acs-mobile-menu-toggle {
		display: grid;
	}

	.acs-header-main-inner {
		grid-template-columns: 42px minmax(0, 1fr) 42px !important;
		min-height: 62px;
	}

	.acs-brand {
		justify-self: center;
		width: 148px;
		max-width: 46vw;
	}

	.acs-brand .acs-brand__desktop-logo {
		display: none !important;
	}

	.acs-brand .acs-brand__mobile-logo {
		display: block !important;
	}

	.acs-header-info-group--right {
		min-width: 42px;
	}

	.acs-navrow__inner {
		grid-template-columns: minmax(0, 1fr) !important;
	}

	.acs-navrow .acs-all-cats {
		display: none !important;
	}

	.acs-product-search {
		height: 38px;
	}

	.acs-category-menu__frame {
		grid-template-columns: 30px minmax(0, 1fr) 30px;
		gap: 6px;
	}

	.acs-category-menu__control {
		width: 30px;
		height: 30px;
	}

	.acs-category-menu__control svg {
		width: 16px;
		height: 16px;
	}

	.acs-category-scroll {
		gap: 9px;
	}

	.acs-hero__viewport {
		min-height: 500px;
	}

	.acs-hero__inner {
		min-height: 500px;
		background-size: cover !important;
		background-position: center !important;
	}

	.acs-hero__copy {
		padding: 24px 18px 0;
	}

	.acs-hero h1 {
		max-width: 285px;
		font-size: 31px;
	}

	.acs-hero__visual {
		right: -22px;
		bottom: 16px;
		width: 98%;
	}

	.acs-hero__visual img {
		max-height: 250px;
		object-fit: contain;
	}

	.acs-hero__control {
		top: auto;
		bottom: 14px;
		width: 32px;
		height: 32px;
		transform: none;
	}

	.acs-hero__control--prev {
		left: 14px;
	}

	.acs-hero__control--next {
		right: 14px;
	}

	.acs-slider-dots {
		bottom: 20px;
	}

	.acs-product-card__actions {
		padding-top: 6px;
	}

	.acs-card-order {
		min-height: 30px;
		font-size: 10.5px;
	}

	.woocommerce div.product {
		display: block;
		width: calc(100% - 20px);
		margin: 20px auto 28px;
	}

	.woocommerce div.product div.images,
	.woocommerce div.product div.summary,
	.woocommerce div.product .product_meta,
	.woocommerce div.product .woocommerce-tabs,
	.woocommerce div.product .related.products,
	.woocommerce div.product .upsells.products {
		margin-bottom: 14px;
		padding: 14px;
	}

	.woocommerce div.product .product_title {
		font-size: 28px;
	}

	.woocommerce div.product p.price,
	.woocommerce div.product span.price {
		font-size: 22px;
	}

	.woocommerce div.product form.cart {
		display: grid;
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.woocommerce div.product form.cart .button {
		width: 100%;
		padding: 0 12px;
	}

	.woocommerce div.product .related.products ul.products,
	.woocommerce div.product .upsells.products ul.products,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review,
	.woocommerce-checkout #order_review_heading {
		width: calc(100% - 20px);
	}

	.woocommerce-checkout #customer_details,
	.woocommerce-checkout #order_review {
		padding: 14px;
	}
}

@media (max-width: 360px) {
	.acs-brand {
		width: 136px;
	}

	.acs-mobile-menu-toggle,
	.acs-cart-link {
		width: 36px;
		height: 36px;
	}

	.acs-hero__viewport,
	.acs-hero__inner {
		min-height: 485px;
	}

	.acs-hero__visual {
		width: 104%;
	}
}

/* v1.0.7 page shell, direct ordering and order tracking photo */
.acs-page-shell {
	min-height: 58vh;
	padding: 34px 0 54px;
	background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
}

.acs-page-shell__inner {
	display: block;
}

.acs-page-content,
.acs-page-shell .woocommerce {
	padding: 26px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(92, 38, 63, .065);
}

.acs-page-content__header h1,
.acs-page-shell .page-title,
.acs-page-shell .woocommerce-products-header__title {
	margin: 0 0 18px;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 3vw, 44px);
	line-height: 1.1;
	letter-spacing: 0;
}

.acs-page-content__body {
	color: var(--acs-text);
	font-size: 15px;
	line-height: 1.75;
}

.acs-page-content__body > *:first-child {
	margin-top: 0;
}

.acs-page-content__body > *:last-child {
	margin-bottom: 0;
}

.acs-product-card__actions {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 7px;
}

.acs-product-card__actions .acs-card-order {
	min-height: 32px;
	padding: 0 8px;
	white-space: nowrap;
}

.acs-product-card__actions .acs-add-cart {
	border: 1px solid rgba(181, 18, 103, .24) !important;
	background: #fff !important;
	color: var(--acs-primary) !important;
	box-shadow: none;
}

.acs-product-card__actions .acs-add-cart:hover {
	background: #fff4f9 !important;
	color: var(--acs-primary-hover) !important;
	box-shadow: 0 8px 18px rgba(181, 18, 103, .12);
}

.acs-card-order--direct,
.acs-single-direct-order {
	border: 0 !important;
	border-radius: 8px;
	background: var(--acs-button-gradient) !important;
	color: #fff !important;
	font-size: 13px;
	font-weight: 850;
	line-height: 1.1;
	box-shadow: 0 8px 20px rgba(181, 18, 103, .16);
	cursor: pointer;
}

.acs-single-direct-order {
	min-height: 44px;
	padding: 0 24px;
}

.acs-card-order--direct:hover,
.acs-single-direct-order:hover {
	background: var(--acs-button-gradient-hover) !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.woocommerce div.product form.cart .single_add_to_cart_button {
	border: 1px solid rgba(181, 18, 103, .24) !important;
	background: #fff !important;
	color: var(--acs-primary) !important;
	box-shadow: none;
}

.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
	width: min(1180px, calc(100% - 40px));
	margin: 30px auto 48px;
}

.woocommerce-cart table.shop_table,
.woocommerce-checkout table.shop_table,
.woocommerce-account table.shop_table {
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td,
.woocommerce-checkout table.shop_table th,
.woocommerce-checkout table.shop_table td,
.woocommerce-account table.shop_table th,
.woocommerce-account table.shop_table td {
	padding: 14px;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #payment,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	padding: 20px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(92, 38, 63, .055);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 10px 12px;
	border-radius: 8px;
	background: #fff7fb;
	color: var(--acs-heading);
	font-weight: 750;
}

.woocommerce-account .woocommerce-MyAccount-navigation .is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation a:hover {
	background: var(--acs-primary);
	color: #fff;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.acs-page-shell .term-description {
	margin-bottom: 18px;
	color: var(--acs-muted);
}

.acs-order-delivery-box {
	width: min(900px, 100%);
	margin: 24px 0;
	padding: 22px;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff7fb;
	box-shadow: 0 8px 24px rgba(92, 38, 63, .055);
}

.acs-order-delivery-box h2 {
	margin: 0 0 14px;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	line-height: 1.15;
}

.acs-order-delivery-box dl {
	display: grid;
	grid-template-columns: max-content minmax(0, 1fr);
	gap: 8px 14px;
	margin: 0 0 16px;
}

.acs-order-delivery-box dt {
	color: var(--acs-muted);
	font-weight: 800;
}

.acs-order-delivery-box dd {
	margin: 0;
	color: var(--acs-heading);
	font-weight: 700;
}

.acs-prepared-flower-photo {
	margin: 18px 0 0;
}

.acs-prepared-flower-photo img {
	display: block;
	width: min(100%, 620px);
	max-height: 520px;
	object-fit: contain;
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 26px rgba(92, 38, 63, .08);
}

.acs-prepared-flower-photo figcaption {
	margin-top: 8px;
	color: var(--acs-primary);
	font-size: 13px;
	font-weight: 850;
}

@media (max-width: 767px) {
	.acs-page-shell {
		padding: 20px 0 34px;
	}

	.acs-page-content,
	.acs-page-shell .woocommerce {
		padding: 14px;
	}

	.woocommerce-cart .woocommerce,
	.woocommerce-checkout .woocommerce,
	.woocommerce-account .woocommerce {
		width: calc(100% - 20px);
		margin: 18px auto 32px;
	}

	.acs-product-card__actions {
		gap: 5px;
	}

	.acs-product-card__actions .acs-card-order {
		min-height: 28px;
		padding: 0 5px;
		font-size: 9.5px;
	}

	.acs-single-direct-order {
		min-height: 42px;
		padding: 0 12px;
	}

	.woocommerce div.product form.cart {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.woocommerce div.product form.cart .single_add_to_cart_button,
	.woocommerce div.product form.cart .acs-single-direct-order {
		grid-column: 1 / -1;
		width: 100%;
	}

	.acs-order-delivery-box {
		padding: 16px;
	}

	.acs-order-delivery-box dl {
		grid-template-columns: 1fr;
	}
}

/* v1.0.8 managed hero, product carousel and checkout polish */
.acs-product-card .added_to_cart,
.acs-product-card__actions .added_to_cart {
	display: none !important;
}

.acs-product-card__actions .acs-card-order,
.acs-card-order--direct,
.acs-single-direct-order,
.woocommerce div.product form.cart .button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	line-height: 1 !important;
	text-align: center;
}

.acs-card-order--direct,
.acs-single-direct-order {
	min-height: 34px;
	padding-top: 0;
	padding-bottom: 0;
}

.acs-product-section--carousel {
	overflow: hidden;
}

.acs-product-carousel {
	position: relative;
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr) 42px;
	align-items: center;
	gap: 12px;
}

.acs-product-carousel__track {
	display: flex !important;
	gap: 22px;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.acs-product-carousel__track::-webkit-scrollbar {
	display: none;
}

.acs-product-carousel__track .acs-product-card {
	flex: 0 0 calc((100% - 88px) / 5);
	min-width: 192px;
	scroll-snap-align: start;
}

.acs-product-carousel__control {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--acs-border);
	border-radius: 999px;
	background: #fff;
	color: var(--acs-primary);
	box-shadow: 0 8px 22px rgba(92, 38, 63, .08);
	cursor: pointer;
}

.acs-product-carousel__control svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.acs-product-carousel__control--prev svg {
	transform: rotate(90deg);
}

.acs-product-carousel__control--next svg {
	transform: rotate(-90deg);
}

.acs-hero__inner {
	isolation: isolate;
}

.acs-hero__slide {
	background-repeat: no-repeat;
}

.acs-hero__visual {
	display: grid;
	place-items: end center;
}

.acs-hero__visual img {
	max-height: 720px;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 16px 24px rgba(92, 38, 63, .08));
}

.acs-woocommerce-content {
	width: 100%;
}

.acs-woocommerce-content > div.product {
	width: 100%;
	margin-top: 0;
}

.acs-page-shell .woocommerce:empty::before {
	content: "Bu sayfa için içerik hazırlanıyor.";
	display: block;
	padding: 24px;
	border: 1px dashed var(--acs-border);
	border-radius: 10px;
	background: #fff8fb;
	color: var(--acs-primary);
	font-weight: 800;
}

@media (max-width: 1180px) {
	.acs-product-carousel__track .acs-product-card {
		flex-basis: calc((100% - 66px) / 4);
	}
}

@media (max-width: 900px) {
	.acs-product-carousel__track .acs-product-card {
		flex-basis: calc((100% - 44px) / 3);
	}
}

@media (max-width: 767px) {
	.acs-product-carousel {
		grid-template-columns: 32px minmax(0, 1fr) 32px;
		gap: 7px;
	}

	.acs-product-carousel__control {
		width: 32px;
		height: 32px;
	}

	.acs-product-carousel__control svg {
		width: 16px;
		height: 16px;
	}

	.acs-product-carousel__track {
		gap: 10px;
	}

	.acs-product-carousel__track .acs-product-card {
		flex-basis: calc((100% - 10px) / 2);
		min-width: 132px;
	}

	.acs-hero__slide {
		background-size: cover;
	}

	.acs-card-order--direct {
		min-height: 29px;
		line-height: 1 !important;
	}

	.acs-page-shell .woocommerce:empty::before {
		padding: 16px;
	}
}

/* v1.0.10 category dropdown, archive grid and single product shell */
.acs-cats-dropdown {
	position: relative;
	z-index: 40;
}

.acs-cats-dropdown .acs-all-cats {
	cursor: pointer;
}

.acs-cats-dropdown.is-open .acs-all-cats {
	background: var(--acs-primary-hover);
}

.acs-cats-dropdown.is-open .acs-all-cats svg:last-child {
	transform: rotate(180deg);
}

.acs-cats-dropdown__panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	width: 336px;
	max-height: min(72vh, 560px);
	overflow: auto;
	padding: 12px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(92, 38, 63, .14);
}

.acs-cats-dropdown__grid {
	display: grid;
	gap: 6px;
}

.acs-cats-dropdown__item {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	align-items: center;
	gap: 10px;
	min-height: 54px;
	padding: 6px 8px;
	border-radius: 7px;
	color: var(--acs-heading);
	font-size: 13px;
	font-weight: 760;
	line-height: 1.2;
}

.acs-cats-dropdown__item:hover {
	background: #fff5fa;
	color: var(--acs-primary);
}

.acs-cats-dropdown__item img {
	width: 42px;
	height: 42px;
	padding: 3px;
	border: 1px solid #f2dce8;
	border-radius: 999px;
	background: #fff;
	object-fit: contain;
}

.acs-cats-dropdown__all {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	margin-top: 10px;
	border-radius: 7px;
	background: var(--acs-primary);
	color: #fff !important;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
}

.acs-page-shell .term-description,
.acs-product-archive .term-description {
	display: none !important;
}

.acs-product-archive {
	width: 100%;
}

.acs-product-archive__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 22px;
}

.acs-product-archive__head h1 {
	margin: 0;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 3vw, 46px);
	line-height: 1.1;
	letter-spacing: 0;
}

.acs-product-archive__tools {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
	min-width: 280px;
	color: var(--acs-muted);
	font-size: 13px;
}

.acs-product-archive__tools .woocommerce-result-count,
.acs-product-archive__tools .woocommerce-ordering {
	float: none;
	margin: 0;
}

.acs-product-archive__tools select {
	min-height: 38px;
	padding: 0 34px 0 11px;
	border: 1px solid var(--acs-border);
	border-radius: 7px;
	background: #fff;
	color: var(--acs-heading);
	font: inherit;
	font-weight: 650;
}

.acs-product-grid--archive {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
}

.acs-product-grid--archive .acs-product-card {
	min-height: 0;
	height: auto;
}

.acs-product-grid--archive .acs-product-card__image {
	aspect-ratio: 1 / .9;
	min-height: 0;
	background: linear-gradient(180deg, #fff, #fff8fb);
}

.acs-product-grid--archive .acs-product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #fff;
}

.acs-product-grid--archive .acs-product-card__actions {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 7px;
}

.acs-product-archive__pagination {
	display: flex;
	justify-content: center;
	margin-top: 34px;
}

.acs-product-archive__pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	min-height: 34px;
	margin: 0 3px;
	border: 1px solid var(--acs-border);
	border-radius: 7px;
	background: #fff;
	color: var(--acs-heading);
	font-weight: 800;
}

.acs-product-archive__pagination .page-numbers.current,
.acs-product-archive__pagination .page-numbers:hover {
	background: var(--acs-primary);
	color: #fff;
}

.acs-single-product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
	gap: 28px;
}

.acs-single-product__gallery,
.acs-single-product__summary,
.acs-single-product__details {
	border: 1px solid var(--acs-border);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 10px 28px rgba(92, 38, 63, .07);
}

.acs-single-product__gallery {
	padding: 22px;
}

.acs-single-product__gallery a {
	display: grid;
	place-items: center;
	min-height: 440px;
	border-radius: 8px;
	background: linear-gradient(180deg, #fff, #fff8fb);
}

.acs-single-product__gallery img {
	display: block;
	width: 100%;
	max-width: 620px;
	height: auto;
	max-height: 620px;
	object-fit: contain;
	background: #fff;
}

.acs-single-product__summary {
	align-self: start;
	padding: 26px;
}

.acs-single-product__summary .product_title {
	margin: 0 0 12px;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 3vw, 46px);
	font-weight: 750;
	line-height: 1.08;
	letter-spacing: 0;
}

.acs-single-product__price {
	margin-bottom: 14px;
	color: var(--acs-primary);
	font-size: 26px;
	font-weight: 850;
	line-height: 1.2;
}

.acs-single-product__badges {
	margin-bottom: 8px;
}

.acs-single-product__urgency {
	margin: 8px 0 16px;
	font-size: 12px;
	white-space: normal;
}

.acs-single-product__short {
	margin: 0 0 18px;
	color: var(--acs-text);
	font-size: 14px;
	line-height: 1.65;
}

.acs-single-product__cart form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 18px 0 0;
}

.acs-single-product__cart .quantity .qty {
	width: 76px;
	min-height: 46px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	color: var(--acs-heading);
	font-weight: 800;
	text-align: center;
}

.acs-single-product__cart form.cart .button,
.acs-single-product__cart .acs-single-direct-order {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 46px;
	padding: 0 22px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 850;
	line-height: 1 !important;
	text-align: center;
}

.acs-single-product__cart .single_add_to_cart_button {
	border: 1px solid rgba(181, 18, 103, .24) !important;
	background: #fff !important;
	color: var(--acs-primary) !important;
	box-shadow: none !important;
}

.acs-single-product__cart .variations {
	width: 100%;
	margin-bottom: 12px;
}

.acs-single-product__cart .variations th,
.acs-single-product__cart .variations td {
	display: block;
	padding: 0 0 8px;
	text-align: left;
}

.acs-single-product__cart .variations select {
	width: 100%;
	min-height: 42px;
	border: 1px solid var(--acs-border);
	border-radius: 7px;
	background: #fff;
	color: var(--acs-heading);
}

.acs-single-product__details {
	grid-column: 1 / -1;
	padding: 24px 26px;
	color: var(--acs-text);
	font-size: 15px;
	line-height: 1.75;
}

.acs-single-product__details h2 {
	margin: 0 0 12px;
	color: var(--acs-heading);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 28px;
	line-height: 1.15;
	letter-spacing: 0;
}

.acs-single-product__details > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 1180px) {
	.acs-product-grid--archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.acs-product-archive__head {
		display: grid;
	}

	.acs-product-archive__tools {
		justify-content: flex-start;
		min-width: 0;
	}

	.acs-product-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.acs-single-product {
		grid-template-columns: 1fr;
	}

	.acs-single-product__gallery a {
		min-height: 320px;
	}
}

@media (max-width: 767px) {
	.acs-cats-dropdown {
		display: none;
	}

	.acs-product-archive__head h1 {
		font-size: 30px;
	}

	.acs-product-grid--archive {
		gap: 12px;
	}

	.acs-product-grid--archive .acs-product-card__actions {
		grid-template-columns: 1fr !important;
	}

	.acs-single-product {
		gap: 14px;
	}

	.acs-single-product__gallery,
	.acs-single-product__summary,
	.acs-single-product__details {
		padding: 14px;
	}

	.acs-single-product__gallery a {
		min-height: 260px;
	}

	.acs-single-product__summary .product_title {
		font-size: 30px;
	}

	.acs-single-product__cart form.cart .button,
	.acs-single-product__cart .acs-single-direct-order {
		width: 100%;
	}
}

/* v1.0.11 sticky header, archive density and single related carousel */
.acs-site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 8px 24px rgba(92, 38, 63, .06);
}

body.admin-bar .acs-site-header {
	top: 32px;
}

.acs-institutional {
	background: #fff2f8 !important;
}

.acs-institutional__inner {
	background: transparent !important;
}

.acs-product-grid--archive {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 22px;
}

.acs-product-grid--archive .acs-product-card__image {
	aspect-ratio: 1 / 1;
	padding: 14px;
	background: var(--acs-image-background);
}

.acs-product-grid--archive .acs-product-card__actions {
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 7px;
}

.acs-single-product .stock,
.acs-single-product__cart .stock {
	display: none !important;
}

.acs-single-related {
	grid-column: 1 / -1;
	margin-top: 4px;
	padding: 24px 0 0;
	border-top: 1px solid var(--acs-border);
}

.acs-single-related .acs-section-head {
	margin-bottom: 20px;
	padding-bottom: 0;
}

.acs-single-related .acs-section-head h2 {
	font-size: 30px;
}

.acs-single-related .acs-product-carousel {
	grid-template-columns: 42px minmax(0, 1fr) 42px;
}

@media (max-width: 1279px) {
	.acs-product-grid--archive {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media (max-width: 1023px) {
	.acs-product-grid--archive {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 782px) {
	body.admin-bar .acs-site-header {
		top: 46px;
	}
}

@media (max-width: 767px) {
	.acs-site-header {
		box-shadow: 0 6px 18px rgba(92, 38, 63, .08);
	}

	.acs-product-grid--archive {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.acs-product-grid--archive .acs-product-card__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.acs-single-related {
		padding-top: 18px;
	}

	.acs-single-related .acs-section-head h2 {
		font-size: 24px;
	}
}

/* v1.0.12 checkout payment and flower note polish */
.woocommerce-checkout .acs-flower-note-field,
.woocommerce-checkout #order_comments_field {
	padding: 18px;
	border: 1px solid rgba(181, 18, 103, .22);
	border-radius: 10px;
	background: #fff5fa;
	box-shadow: 0 8px 22px rgba(92, 38, 63, .055);
}

.woocommerce-checkout .acs-flower-note-field label,
.woocommerce-checkout #order_comments_field label {
	display: block;
	margin-bottom: 8px;
	color: var(--acs-primary);
	font-size: 15px;
	font-weight: 850;
}

.woocommerce-checkout .acs-flower-note-field textarea,
.woocommerce-checkout #order_comments_field textarea {
	min-height: 118px;
	border: 1px solid var(--acs-border);
	border-radius: 8px;
	background: #fff;
	color: var(--acs-heading);
	font-size: 14px;
	line-height: 1.55;
}

.woocommerce-checkout .acs-flower-note-field textarea:focus,
.woocommerce-checkout #order_comments_field textarea:focus {
	border-color: var(--acs-primary);
	box-shadow: 0 0 0 3px rgba(181, 18, 103, .12);
	outline: 0;
}

.woocommerce-checkout #payment ul.payment_methods li.payment_method_cod {
	display: none !important;
}

.woocommerce-checkout .acs-card-link-gateway-note {
	margin: 8px 0 0;
	padding: 12px;
	border-radius: 8px;
	background: #fff5fa;
	color: var(--acs-text);
	font-size: 13px;
	line-height: 1.55;
}

/* v1.0.13 mobile bottom navigation and same-header polish */
.acs-mobile-bottom-nav {
	display: none;
}

@media (max-width: 767px) {
	body.acs-homepage-active,
	body.acs-page-shell-active,
	.acs-plugin-shell {
		padding-bottom: calc(76px + env(safe-area-inset-bottom));
	}

	.acs-fixed-actions {
		display: none !important;
	}

	.acs-mobile-bottom-nav {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1200;
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		min-height: 66px;
		padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
		border-top: 1px solid rgba(181, 18, 103, .16);
		background: rgba(255, 255, 255, .98);
		box-shadow: 0 -10px 28px rgba(92, 38, 63, .13);
		backdrop-filter: blur(12px);
	}

	.acs-mobile-bottom-nav__item {
		position: relative;
		display: grid;
		align-content: center;
		justify-items: center;
		gap: 3px;
		min-width: 0;
		min-height: 54px;
		padding: 4px 2px;
		border-radius: 12px;
		color: #2c2028 !important;
		font-size: 10px;
		font-weight: 850;
		line-height: 1.05;
		text-align: center;
		letter-spacing: 0;
		text-decoration: none !important;
		transition: background .18s ease, color .18s ease, transform .18s ease;
	}

	.acs-mobile-bottom-nav__item:active,
	.acs-mobile-bottom-nav__item:focus-visible {
		background: #fff0f7;
		color: var(--acs-primary) !important;
		outline: 0;
	}

	.acs-mobile-bottom-nav__item--whatsapp {
		color: #148a48 !important;
	}

	.acs-mobile-bottom-nav__item--phone,
	.acs-mobile-bottom-nav__item--cart {
		color: var(--acs-primary) !important;
	}

	.acs-mobile-bottom-nav__icon {
		position: relative;
		display: grid;
		place-items: center;
		width: 24px;
		height: 24px;
	}

	.acs-mobile-bottom-nav__icon svg {
		display: block;
		width: 21px;
		height: 21px;
		fill: currentColor;
	}

	.acs-mobile-bottom-nav__label {
		display: block;
		max-width: 100%;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.acs-mobile-bottom-nav__cart-count {
		position: absolute;
		top: -7px;
		right: -11px;
		display: grid;
		place-items: center;
		min-width: 18px;
		height: 18px;
		padding: 0 4px;
		border: 2px solid #fff;
		border-radius: 999px;
		background: var(--acs-primary);
		color: #fff;
		font-size: 10px;
		font-weight: 900;
		line-height: 1;
		box-shadow: 0 4px 10px rgba(181, 18, 103, .26);
	}

	.acs-site-header,
	body.admin-bar .acs-site-header {
		top: 0 !important;
	}

	.acs-header-main-inner {
		min-height: 56px !important;
		padding-top: 0;
		padding-bottom: 0;
	}

	.acs-footer-bottom__inner {
		display: grid;
		justify-items: center;
		text-align: center;
	}

	.acs-payment-logos {
		justify-content: center;
	}

	.acs-payment-logos img {
		height: 28px;
	}
}

@media (max-width: 360px) {
	.acs-mobile-bottom-nav__item {
		font-size: 9.4px;
	}

	.acs-mobile-bottom-nav__icon svg {
		width: 20px;
		height: 20px;
	}
}
