/**
 * Shop stranica — design system
 * Učitava se samo na is_shop().
 */

/* -------------------------------------------------------------------------
   Design tokens
   ------------------------------------------------------------------------- */

.shop-custom-layout {
	--shop-container-width: 1200px;
	--shop-container-gutter: 24px;

	--shop-color-primary: #52612B;
	--shop-color-primary-dark: #455025;
	--shop-color-secondary: #c37136;
	--shop-color-neutral-1: #fff7f0;
	--shop-color-neutral-2: #fffaf4;
	--shop-color-dark: #434343;
	--shop-color-gray: #3B4528;
	--shop-color-white: #ffffff;

	/* Figma inside stroke — boja + debljina, poziv: inset 0 0 0 var(--shop-stroke-width) var(--shop-stroke-secondary-XX) */
	--shop-stroke-width: 1px;
	--shop-stroke-secondary-10: color-mix(in srgb, var(--shop-color-secondary) 10%, transparent);
	--shop-stroke-secondary-40: color-mix(in srgb, var(--shop-color-secondary) 40%, transparent);

	/* Aspect ratio mobilne hero slike (402×745) — menja se ako zameniš asset */
	--shop-hero-mobile-aspect: 402 / 745;

	--shop-marquee-height: 60px;
	--shop-marquee-speed: 28s;
	--shop-marquee-gap: 48px;
	--shop-marquee-loops: 4;

	--shop-font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
	--shop-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--shop-section-spacing: 100px;
	--shop-section-spacing-mobile: 60px;

	--shop-h1-size: 68px;
	--shop-h1-line-height: 70px;
	--shop-h2-size: 36px;
	--shop-h2-line-height: 40px;
	--shop-h3-size: 20px;
	--shop-h3-line-height: 24px;
	--shop-text-size: 16px;
	--shop-text-size20: 20px;
	--shop-text-line-height: 20px;
	--shop-desc-size: 14px;
	--shop-desc-line-height: 16px;

	color: var(--shop-color-dark);
	background-color: var(--shop-color-neutral-2);
	font-family: var(--shop-font-body);
	font-size: var(--shop-text-size);
	line-height: var(--shop-text-line-height);
}

@media (max-width: 767px) {
	.shop-custom-layout {
		--shop-section-spacing: var(--shop-section-spacing-mobile);
		--shop-h1-size: 40px;
		--shop-h1-line-height: 44px;
		--shop-h2-size: 28px;
		--shop-h2-line-height: 32px;
	}
}

/* -------------------------------------------------------------------------
   Layout
   ------------------------------------------------------------------------- */

.shop-container {
	width: 100%;
	max-width: var(--shop-container-width);
	margin-left: auto;
	margin-right: auto;
	padding-left: var(--shop-container-gutter);
	padding-right: var(--shop-container-gutter);
}

.shop-section {
	padding-top: var(--shop-section-spacing);
	padding-bottom: var(--shop-section-spacing);
}

.shop-page__inner {
	width: 100%;
}

.shop-page {
	padding-bottom: var(--shop-section-spacing);
}

.shop-content-anchor {
	display: block;
	height: 0;
	overflow: hidden;
	scroll-margin-top: 100px;
}

/* -------------------------------------------------------------------------
   Dugmad
   ------------------------------------------------------------------------- */

.shop-btn,
.shop-custom-layout .shop-btn {
	position: relative;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border: 0;
	border-radius: 30px;
	background-color: var(--shop-color-primary);
	color: var(--shop-color-white);
	font-family: var(--shop-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: var(--shop-text-line-height);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(82, 97, 43, 0.22);
	transition:
		background-color 0.35s ease,
		color 0.35s ease,
		transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
		box-shadow 0.35s ease;
}

.shop-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -120%;
	width: 55%;
	height: 100%;
	background: linear-gradient(
		105deg,
		transparent 0%,
		rgba(255, 255, 255, 0.28) 45%,
		rgba(255, 255, 255, 0.12) 55%,
		transparent 100%
	);
	transform: skewX(-18deg);
	transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.shop-btn:hover,
.shop-btn:focus-visible,
.shop-custom-layout .shop-btn:hover,
.shop-custom-layout .shop-btn:focus-visible {
	background-color: var(--shop-color-primary-dark);
	color: var(--shop-color-white);
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 32px rgba(82, 97, 43, 0.38);
}

.shop-btn:hover::before,
.shop-btn:focus-visible::before {
	left: 140%;
}

.shop-btn:active {
	transform: translateY(-1px) scale(1.01);
	box-shadow: 0 6px 18px rgba(82, 97, 43, 0.3);
}

@media (prefers-reduced-motion: reduce) {
	.shop-btn,
	.shop-custom-layout .shop-btn {
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.shop-btn::before {
		display: none;
	}

	.shop-btn:hover,
	.shop-btn:focus-visible,
	.shop-custom-layout .shop-btn:hover,
	.shop-custom-layout .shop-btn:focus-visible,
	.shop-btn:active {
		transform: none;
	}
}

/* -------------------------------------------------------------------------
   Tipografija
   ------------------------------------------------------------------------- */

.shop-custom-layout h1,
.shop-custom-layout .shop-h1 {
	font-family: var(--shop-font-heading);
	font-weight: 600;
	font-size: var(--shop-h1-size);
	line-height: var(--shop-h1-line-height);
	color: var(--shop-color-dark);
	margin: 0 0 0.5em;
}

.shop-custom-layout h2,
.shop-custom-layout .shop-h2 {
	font-family: var(--shop-font-heading);
	font-weight: 600;
	font-size: var(--shop-h2-size);
	line-height: var(--shop-h2-line-height);
	color: var(--shop-color-dark);
	margin: 0 0 0.5em;
}

.shop-custom-layout h3,
.shop-custom-layout .shop-h3,
.shop-custom-layout .woocommerce-loop-product__title,
.shop-custom-layout .price {
	font-family: var(--shop-font-body);
	font-weight: 600;
	font-size: var(--shop-h3-size);
	line-height: var(--shop-h3-line-height);
	color: var(--shop-color-dark);
}

.shop-custom-layout p {
	font-size: var(--shop-text-size);
	line-height: var(--shop-text-line-height);
	color: var(--shop-color-dark);
}

.shop-custom-layout .shop-product-desc,
.shop-custom-layout .woocommerce-product-details__short-description {
	font-size: var(--shop-desc-size);
	line-height: var(--shop-desc-line-height);
	color: var(--shop-color-gray);
}

/* Naslovi sekcija (h2) — prirodan prelom preko max-width */
.shop-custom-layout .shop-section-title {
	margin: 0;
	max-width: 100%;
	font-family: var(--shop-font-heading);
	font-size: var(--shop-h2-size);
	font-weight: 600;
	line-height: var(--shop-h2-line-height);
	color: var(--shop-color-dark);
	text-transform: uppercase;
	text-wrap: balance;
}

.shop-packages-intro .shop-section-title,
.shop-cosmetics .shop-section-title {
	margin-inline: auto;
	text-align: center;
}

@media (max-width: 767px) {
	.shop-custom-layout .shop-section-title {
		font-size: 28px;
		line-height: 32px;
	}

	.shop-packages-intro .shop-section-title,
	.shop-cosmetics .shop-section-title {
		max-width: 22em;
	}
}

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.shop-hero {
	height: 586px;
	background-color: var(--shop-color-neutral-1);
	background-image: var(--shop-hero-bg-desktop);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.shop-hero__inner {
	display: flex;
	align-items: center;
	height: 100%;
}

.shop-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 30px;
	height: 353px;
	max-width: 100%;
	margin-top: -10px;
}

.shop-hero__heading {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.shop-hero__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	overflow: visible;
	padding: 10px 20px;
	border-radius: 30px;
	background-color: var(--shop-color-secondary);
	/* border: 1px solid var(--shop-color-secondary); */
	color: var(--shop-color-white);
	font-family: var(--shop-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.shop-hero__badge-year-group {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.shop-hero__badge-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	width: 22px;
	height: 22px;
	flex-shrink: 0;
}

.shop-hero__badge-icon {
	position: relative;
	z-index: 1;
	display: block;
	width: 16px;
	height: 16px;
	animation: shop-hero-sun-glow 2s ease-in-out infinite;
}

.shop-hero__badge-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border: 1.5px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.18);
	box-shadow: 0 0 6px rgba(255, 255, 255, 0.45);
	pointer-events: none;
	transform: translate(-50%, -50%) scale(0.55);
	animation: shop-hero-sun-pulse 2s ease-out infinite;
}

.shop-hero__badge-pulse--delay-1 {
	animation-delay: 0.66s;
}

.shop-hero__badge-pulse--delay-2 {
	animation-delay: 1.32s;
}

@keyframes shop-hero-sun-pulse {
	0% {
		opacity: 0.95;
		transform: translate(-50%, -50%) scale(0.55);
	}

	55% {
		opacity: 0.35;
	}

	100% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(4.2);
	}
}

@keyframes shop-hero-sun-glow {
	0%,
	100% {
		transform: scale(1);
		filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.35));
	}

	50% {
		transform: scale(1.12);
		filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.95));
	}
}

@media (prefers-reduced-motion: reduce) {
	.shop-hero__badge-icon,
	.shop-hero__badge-pulse {
		animation: none;
	}
}

.shop-custom-layout .shop-hero__title {
	display: flex;
	flex-direction: column;
	margin: 0;
	font-family: var(--shop-font-heading);
	font-weight: 600;
	font-size: var(--shop-h1-size);
	line-height: var(--shop-h1-line-height);
}

.shop-hero__title-line {
	display: block;
}

.shop-hero__title-line--dark {
	color: var(--shop-color-dark);
}

.shop-hero__title-line--green {
	color: var(--shop-color-primary);
}

.shop-hero__content .shop-hero__btn {
	padding: 24px 40px;
	font-size: 18px;
}

.shop-hero__text {
	max-width: 400px;
	margin: 0;
	font-family: var(--shop-font-body);
	font-size: 20px !important;
	font-weight: 400;
	line-height: 24px !important;
	color: var(--shop-color-dark);
}

@media (max-width: 767px) {
	.shop-hero {
		height: 620px;
		background-image: var(--shop-hero-bg-mobile);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: center center;
	}

	.shop-hero__inner {
		align-items: flex-start;
		padding-top: 28px;
	}

	.shop-hero__content {
		height: auto;
		margin-top: 0;
		justify-content: flex-start;
	}

	.shop-hero__content .shop-hero__btn {
		padding: 14px 28px;
		font-size: 16px;
	}
}

/* Uži telefoni (~500px) — fokus na donji deo slike (proizvodi) */
@media (max-width: 500px) {
	.shop-hero {
		height: 760px;
		background-position: 50% 108%;
	}
}

/* -------------------------------------------------------------------------
   Marquee (ispod hero)
   ------------------------------------------------------------------------- */

.shop-marquee {
	height: var(--shop-marquee-height);
	background-color: var(--shop-color-neutral-2);
	box-shadow: inset 0 0 0 var(--shop-stroke-width) var(--shop-stroke-secondary-10);
	overflow: hidden;
}

.shop-marquee__viewport {
	display: flex;
	align-items: center;
	height: 100%;
	overflow: hidden;
}

.shop-marquee__track {
	display: flex;
	width: max-content;
	align-items: center;
	animation: shop-marquee-scroll var(--shop-marquee-speed) linear infinite;
	will-change: transform;
}

.shop-marquee__group {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: var(--shop-marquee-gap);
	padding-right: var(--shop-marquee-gap);
}

.shop-marquee__item {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	white-space: nowrap;
}

.shop-marquee__icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.shop-marquee__text {
	font-family: var(--shop-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: var(--shop-color-dark);
}

@keyframes shop-marquee-scroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(calc(-100% / var(--shop-marquee-loops)), 0, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.shop-marquee__track {
		animation: none;
	}
}

/* -------------------------------------------------------------------------
   Packages sekcija (naslov + tri kartice)
   ------------------------------------------------------------------------- */

.shop-packages {
	background-color: var(--shop-color-white);
}

/* -------------------------------------------------------------------------
   Packages intro (naslov iznad proizvoda)
   ------------------------------------------------------------------------- */

.shop-packages-intro {
	padding-top: 50px;
	padding-bottom: 40px;
	scroll-margin-top: 100px;
}

.shop-packages-intro .shop-container {
	display: flex;
	justify-content: center;
}

.shop-packages-intro .shop-section-title {
	width: 100%;
}

.shop-custom-layout .woocommerce-products-header {
	display: none;
}

/* -------------------------------------------------------------------------
   Packages grid (tri kartice)
   ------------------------------------------------------------------------- */

.shop-packages-grid {
	padding-bottom: 0;
}

.shop-packages-grid__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 30px;
}

.shop-package-card {
	position: relative;
	width: 100%;
	border-radius: 10px;
	background-color: var(--shop-color-neutral-2);
}

.shop-package-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 30px 20px;
	text-align: center;
}

.shop-package-card--featured {
	background-color: var(--shop-color-neutral-1);
	box-shadow: inset 0 0 0 var(--shop-stroke-width) var(--shop-stroke-secondary-40);
}

.shop-package-card--featured .shop-package-card__inner {
	padding-top: 38px;
}

.shop-package-card__badge {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	padding: 10px;
	border-radius: 999px;
	background-color: var(--shop-color-primary);
	color: var(--shop-color-white);
	font-family: var(--shop-font-body);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

.shop-package-card .shop-package-card__label {
	margin: 0 0 15px;
	font-family: var(--shop-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: var(--shop-color-gray);
}

.shop-package-card .shop-package-card__title {
	margin: 0 0 15px;
	font-family: var(--shop-font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 24px;
	color: var(--shop-color-dark);
	text-transform: uppercase;
}

.shop-package-card--featured .shop-package-card__title {
	color: var(--shop-color-secondary);
}

.shop-package-card .shop-package-card__desc {
	margin: 0 0 15px;
	max-width: 275px;
	font-family: var(--shop-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--shop-color-gray);
}

.shop-package-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 180px;
	margin-bottom: 4px;
}

.shop-package-card__img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 200px;
	height: auto;
	object-fit: contain;
}

.shop-package-card__divider {
	width: calc(100% - 20px);
	height: 1px;
	margin: 0 10px;
	border: 0;
	background-color: color-mix(in srgb, var(--shop-color-gray) 22%, transparent);
}

.shop-package-card__btn {
	width: 100%;
	max-width: 240px;
	margin-top: auto;
}

.shop-package-card--featured .shop-package-card__btn {
	background-color: var(--shop-color-secondary);
	box-shadow: 0 4px 16px rgba(195, 113, 54, 0.22);
}

.shop-package-card--featured .shop-package-card__btn:hover,
.shop-package-card--featured .shop-package-card__btn:focus-visible {
	background-color: color-mix(in srgb, var(--shop-color-secondary) 82%, #000);
	box-shadow: 0 12px 32px rgba(195, 113, 54, 0.34);
}

@media (max-width: 767px) {
	.shop-packages .shop-packages-grid {
		padding-bottom: 0;
	}

	.shop-packages-grid__list {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.shop-package-card__image {
		min-height: 160px;
	}

	.shop-package-card__img {
		max-height: 180px;
	}

	.shop-package-card__desc {
		max-width: 100%;
	}
}

/* -------------------------------------------------------------------------
   SPF za odrasle (ispod paketa)
   ------------------------------------------------------------------------- */

.shop-spf-adults {
	background-color: var(--shop-color-white);
	padding: 100px 0 50px;
}

.shop-spf-adults__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.shop-spf-adults__grid {
	display: grid;
	grid-template-columns: 390px minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	width: 100%;
	align-self: stretch;
}

.shop-spf-adults__media {
	width: 390px;
	max-width: 100%;
	height: 100%;
	min-height: 0;
	overflow: hidden;
	border-radius: 10px 0 0 10px;
}

.shop-spf-adults__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.shop-spf-adults__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	box-sizing: border-box;
	height: 100%;
	min-height: 0;
	padding-block: 40px;
	padding-inline: 48px;
	border-radius: 0 10px 10px 0;
	background-color: var(--shop-color-neutral-2);
}

.shop-spf-adults .shop-spf-adults__title {
	margin: 0 0 12px;
	font-size: 36px;
	line-height: 40px;
	text-align: left;
	white-space: normal;
}

.shop-spf-adults .shop-spf-adults__eyebrow {
	margin: -5px 0 18px;
	font-family: var(--shop-font-heading);
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	color: var(--shop-color-primary);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.shop-spf-adults .shop-spf-adults__desc {
	margin: 0 0 18px;
	max-width: 560px;
	font-family: var(--shop-font-body);
	font-size: var(--shop-text-size);
	font-weight: 400;
	line-height: var(--shop-text-line-height);
	color: var(--shop-color-dark);
}

.shop-spf-adults__checks {
	order: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	width: 100%;
	margin: 22px 0 40px;
}

.shop-spf-adults__check-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.shop-spf-adults__check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-family: var(--shop-font-body);
	font-size: var(--shop-text-size);
	font-weight: 400;
	line-height: var(--shop-text-line-height);
	color: var(--shop-color-dark);
}

.shop-spf-adults__check-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

.shop-spf-adults__btn {
	order: 2;
	flex-shrink: 0;
	margin-bottom: 0;
}

.shop-spf-adults__highlights {
	order: 3;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 55px;
	width: 100%;
	margin-top: 40px;
}

.shop-spf-adults__highlight {
	display: flex;
	align-items: center;
	gap: 8px;
}

.shop-spf-adults__highlight-icon {
	display: block;
	flex-shrink: 0;
	width: auto;
	height: auto;
	max-width: 38px;
	max-height: 38px;
}

.shop-spf-adults__highlight-text {
	font-family: var(--shop-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--shop-color-dark);
}

@media (max-width: 991px) {
	.shop-spf-adults__grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.shop-spf-adults__media {
		width: 100%;
		max-width: 390px;
		height: auto;
		margin-left: auto;
		margin-right: auto;
		overflow: visible;
		border-radius: 10px;
	}

	.shop-spf-adults__media img {
		height: auto;
		object-fit: contain;
	}

	.shop-spf-adults__content {
		height: auto;
		border-radius: 10px;
		align-items: center;
		text-align: center;
	}

	.shop-spf-adults__highlights {
		justify-content: center;
	}

	.shop-spf-adults .shop-spf-adults__desc {
		max-width: 100%;
	}

	.shop-spf-adults__checks {
		text-align: left;
	}

}

@media (max-width: 767px) {
	.shop-spf-adults {
		padding: 100px 0 60px;
	}

	.shop-spf-adults__content {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"title title"
			"eyebrow eyebrow"
			"desc desc"
			"checks highlights"
			"btn btn";
		align-items: start;
		justify-items: stretch;
		padding-block: 32px;
		padding-inline: 24px;
		text-align: left;
	}

	.shop-spf-adults .shop-spf-adults__eyebrow {
		grid-area: eyebrow;
		justify-self: center;
		width: 100%;
		margin: 0 0 14px;
		font-size: 18px;
		line-height: 22px;
		text-align: center;
	}

	.shop-spf-adults .shop-spf-adults__title {
		grid-area: title;
		justify-self: center;
		width: 100%;
		max-width: 22em;
		margin: 0 0 12px;
		font-size: 24px;
		line-height: 28px;
		text-align: center;
	}

	.shop-spf-adults .shop-spf-adults__desc {
		grid-area: desc;
	}

	.shop-spf-adults__checks {
		grid-area: checks;
		order: unset;
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 20px 0 0;
	}

	.shop-spf-adults__highlights {
		grid-area: highlights;
		order: unset;
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: flex-start;
		align-self: start;
		gap: 16px;
		width: auto;
		margin: 20px 0 0 16px;
	}

	.shop-spf-adults__btn {
		grid-area: btn;
		order: unset;
		justify-self: center;
		margin-top: 28px;
	}

	.shop-spf-adults__highlight {
		flex-shrink: 0;
	}
}

@media (max-width: 520px) {
	.shop-spf-adults__content {
		grid-template-columns: 1fr;
		grid-template-areas:
			"title"
			"eyebrow"
			"desc"
			"checks"
			"highlights"
			"btn";
		text-align: center;
	}

	.shop-spf-adults__checks {
		margin: 20px 0 0;
		text-align: left;
	}

	.shop-spf-adults__highlights {
		width: 100%;
		margin: 40px 0 40px;
		align-items: flex-start;
	}

	.shop-spf-adults__btn {
		margin-top: 0;
	}
}

/* -------------------------------------------------------------------------
   Letnja kozmetika (4 kolone)
   ------------------------------------------------------------------------- */

.shop-cosmetics {
	background-color: var(--shop-color-white);
	padding: 0 0 50px;
}

.shop-cosmetics__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.shop-cosmetics .shop-cosmetics__title {
	width: 100%;
	max-width: none;
	margin: 0 0 40px;
	text-align: center;
}

.shop-cosmetics__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
	width: 100%;
	align-self: stretch;
}

.shop-cosmetics-card {
	position: relative;
	border-radius: 10px;
	background-color: var(--shop-color-white);
	border: 1px solid color-mix(in srgb, var(--shop-color-gray) 22%, transparent);
}

.shop-cosmetics-card__badge {
	position: absolute;
	top: 0;
	z-index: 2;
	pointer-events: none;
	padding: 10px 14px;
	border-radius: 999px;
	font-family: var(--shop-font-body);
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.shop-cosmetics-card__badge--pos-top-center {
	left: 50%;
	transform: translate(-50%, -50%);
}

.shop-cosmetics-card__badge--pos-top-left {
	left: 14px;
	transform: translateY(-50%);
}

.shop-cosmetics-card__badge--pos-top-right {
	right: 14px;
	left: auto;
	transform: translateY(-50%);
}

.shop-cosmetics-card__badge--unavailable {
	background-color: var(--shop-color-gray);
	color: var(--shop-color-white);
}

.shop-cosmetics-card__badge--custom {
	background-color: var(--shop-color-primary);
	color: var(--shop-color-white);
}

.shop-cosmetics-card__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 16px 16px 28px;
	text-align: center;
}

.shop-cosmetics-card__image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 140px;
	margin-bottom: 16px;
}

.shop-cosmetics-card__img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: 160px;
	height: auto;
	object-fit: contain;
}

.shop-cosmetics-card__image-stack {
	position: relative;
	display: inline-block;
	max-width: 100%;
	line-height: 0;
	vertical-align: top;
}

.shop-cosmetics-card__image-stack .shop-cosmetics-card__img--primary {
	position: relative;
	z-index: 1;
}

.shop-cosmetics-card__image-stack .shop-cosmetics-card__img--hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	object-fit: contain;
	object-position: center center;
	opacity: 0;
	pointer-events: none;
	z-index: 2;
}

.shop-cosmetics-card .shop-cosmetics-card__title {
	margin: 0 0 10px;
	font-family: var(--shop-font-body);
	font-size: 18px;
	font-weight: 600;
	line-height: 24px;
	color: var(--shop-color-dark);
	text-transform: uppercase;
}

.shop-cosmetics-card .shop-cosmetics-card__desc {
	margin: 0 0 16px;
	font-family: var(--shop-font-body);
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
	color: var(--shop-color-gray);
	max-width: 200px;
}

.shop-cosmetics-card__divider {
	width: calc(100% - 20px);
	height: 1px;
	margin: 0 10px;
	border: 0;
	background-color: color-mix(in srgb, var(--shop-color-gray) 22%, transparent);
}

.shop-cosmetics-card__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 100%;
	margin-top: 30px;
	padding-inline: 16px;
}

.shop-cosmetics-card__btn-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	filter: brightness(0) saturate(100%) invert(24%) sepia(14%) saturate(800%) hue-rotate(37deg) brightness(0.9) contrast(1.05);
}

/* CTA na grid karticama (letnja kozmetika i sekcije ispod) — outline, hover kao shop-btn */
.shop-cosmetics .shop-cosmetics-card__btn.shop-btn,
.shop-cosmetics .shop-cosmetics-card__btn.shop-btn--no-stock {
	background-color: transparent;
	border: 1px solid var(--shop-color-primary);
	color: var(--shop-color-primary);
	box-shadow: none;
}

.shop-cosmetics .shop-cosmetics-card__btn.shop-btn--no-stock {
	border-color: color-mix(in srgb, var(--shop-color-gray) 45%, transparent);
	color: var(--shop-color-gray);
}

.shop-cosmetics .shop-cosmetics-card__btn.shop-btn:hover,
.shop-cosmetics .shop-cosmetics-card__btn.shop-btn:focus-visible {
	background-color: var(--shop-color-primary-dark);
	border-color: var(--shop-color-primary-dark);
	color: var(--shop-color-white);
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 12px 32px rgba(82, 97, 43, 0.38);
}

.shop-cosmetics .shop-cosmetics-card__btn.shop-btn:hover .shop-cosmetics-card__btn-icon,
.shop-cosmetics .shop-cosmetics-card__btn.shop-btn:focus-visible .shop-cosmetics-card__btn-icon {
	filter: brightness(0) invert(1);
}

.shop-cosmetics .shop-cosmetics-card__btn.shop-btn:active {
	transform: translateY(-1px) scale(1.01);
	box-shadow: 0 6px 18px rgba(82, 97, 43, 0.3);
}

.shop-cosmetics .shop-cosmetics-card__btn.shop-btn--no-stock:hover,
.shop-cosmetics .shop-cosmetics-card__btn.shop-btn--no-stock:focus-visible {
	background-color: transparent;
	border-color: color-mix(in srgb, var(--shop-color-gray) 45%, transparent);
	color: var(--shop-color-gray);
	transform: none;
	box-shadow: none;
}

.shop-cosmetics-card__image-btn,
.shop-cosmetics-card__title-link {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	font: inherit;
	color: inherit;
	text-align: inherit;
	text-decoration: none;
	text-transform: uppercase;
	white-space: normal;
	cursor: pointer;
}

.shop-cosmetics-card__title-part {
	display: inline;
}

.shop-cosmetics-card__title-part + .shop-cosmetics-card__title-part::before {
	content: " ";
	white-space: pre;
}

.shop-cosmetics-card__image-btn {
	height: 100%;
}

.shop-cosmetics-card__image-link {
	height: 100%;
}

.shop-cosmetics-card .lc-learn-more,
.shop-cosmetics-card .lc-online-available {
	color: var(--shop-color-dark);
}

/* -------------------------------------------------------------------------
   Kartica — hover (varijabla --lc-hover-image-scale iz plugina lista-cekanja)
   ------------------------------------------------------------------------- */

.shop-custom-layout .shop-cosmetics-card__image .shop-cosmetics-card__img,
.shop-custom-layout .shop-cosmetics-card__image img {
	transform: scale(1);
	transform-origin: center center;
	transition:
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-custom-layout .shop-cosmetics-card--has-hover-image .shop-cosmetics-card__image .shop-cosmetics-card__img--primary,
.shop-custom-layout .shop-cosmetics-card--has-hover-image .shop-cosmetics-card__image .shop-cosmetics-card__img--hover {
	transform: none;
	transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-custom-layout .shop-cosmetics-card--has-hover-image:hover .shop-cosmetics-card__img--primary {
	opacity: 0;
}

.shop-custom-layout .shop-cosmetics-card--has-hover-image:hover .shop-cosmetics-card__img--hover {
	opacity: 1;
}

.shop-custom-layout .shop-cosmetics-card__image-btn,
.shop-custom-layout .shop-cosmetics-card__title-link,
.shop-custom-layout .shop-cosmetics-card .lc-learn-more {
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	box-shadow: none;
}

.shop-custom-layout .shop-cosmetics-card__image-btn:hover,
.shop-custom-layout .shop-cosmetics-card__image-btn:focus-visible,
.shop-custom-layout .shop-cosmetics-card__image-link:hover,
.shop-custom-layout .shop-cosmetics-card__image-link:focus-visible {
	background-color: transparent;
}

.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-btn:hover .shop-cosmetics-card__img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-btn:focus-visible .shop-cosmetics-card__img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-btn:hover img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-btn:focus-visible img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-link:hover .shop-cosmetics-card__img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-link:focus-visible .shop-cosmetics-card__img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-link:hover img,
.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-link:focus-visible img {
	transform: scale(var(--lc-hover-image-scale, 0.96));
}

.shop-custom-layout .shop-cosmetics-card__title-link {
	display: inline-block;
	width: auto;
	max-width: 100%;
	position: relative;
	text-decoration: none;
}

.shop-custom-layout .shop-cosmetics-card__title-link::after,
.shop-custom-layout .shop-cosmetics-card .lc-learn-more__text::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 1px;
	height: 1px;
	background-color: currentColor;
	opacity: 0;
	transform: scaleX(0);
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.shop-custom-layout .shop-cosmetics-card__title-link::after {
	transform-origin: center center;
}

.shop-custom-layout .shop-cosmetics-card .lc-learn-more__text {
	position: relative;
}

.shop-custom-layout .shop-cosmetics-card .lc-learn-more__text::after {
	transform-origin: left center;
}

.shop-custom-layout .shop-cosmetics-card__title-link:hover,
.shop-custom-layout .shop-cosmetics-card__title-link:focus-visible,
.shop-custom-layout .shop-cosmetics-card .lc-learn-more:hover,
.shop-custom-layout .shop-cosmetics-card .lc-learn-more:focus-visible {
	background-color: transparent;
	color: var(--shop-color-dark);
	box-shadow: none;
}

.shop-custom-layout .shop-cosmetics-card__title-link:hover::after,
.shop-custom-layout .shop-cosmetics-card__title-link:focus-visible::after,
.shop-custom-layout .shop-cosmetics-card .lc-learn-more:hover .lc-learn-more__text::after,
.shop-custom-layout .shop-cosmetics-card .lc-learn-more:focus-visible .lc-learn-more__text::after {
	opacity: 0.4;
	transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
	.shop-custom-layout .shop-cosmetics-card__image .shop-cosmetics-card__img,
	.shop-custom-layout .shop-cosmetics-card__image img,
	.shop-custom-layout .shop-cosmetics-card__title-link::after,
	.shop-custom-layout .shop-cosmetics-card .lc-learn-more__text::after {
		transition: none;
	}

	.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-btn:hover .shop-cosmetics-card__img,
	.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-btn:hover img,
	.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-link:hover .shop-cosmetics-card__img,
	.shop-custom-layout .shop-cosmetics-card:not(.shop-cosmetics-card--has-hover-image) .shop-cosmetics-card__image-link:hover img {
		transform: none;
	}

	.shop-custom-layout .shop-cosmetics-card--has-hover-image:hover .shop-cosmetics-card__img--primary,
	.shop-custom-layout .shop-cosmetics-card--has-hover-image:hover .shop-cosmetics-card__img--hover {
		transition: none;
	}
}

/* -------------------------------------------------------------------------
   Lista čekanja popup — shop dugme (van .shop-custom-layout)
   ------------------------------------------------------------------------- */

.lc-modal--product {
	--shop-color-primary: #3b4528;
	--shop-color-primary-dark: #455025;
	--shop-color-gray: #71737e;
	--shop-color-white: #ffffff;
	--shop-font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--shop-text-line-height: 18px;
}

.lc-modal--waitlist .lc-form__submit.shop-btn {
	width: 100%;
}

.lc-modal--product .lc-modal__actions {
	width: 100%;
}

.lc-modal--product .lc-modal__product-btn.shop-cosmetics-card__btn {
	width: 100%;
	max-width: 100%;
	margin-top: 0;
}

.lc-modal--product .lc-modal__product-btn .shop-cosmetics-card__btn-icon,
.lc-modal--product .lc-modal__product-btn .lc-product-cta__icon {
	filter: brightness(0) invert(1);
}

.lc-modal--product .lc-modal__product-btn.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.shop-btn--no-stock,
.shop-custom-layout .shop-btn--no-stock {
	background-color: color-mix(in srgb, var(--shop-color-gray) 28%, var(--shop-color-white));
	color: var(--shop-color-gray);
	box-shadow: none;
	cursor: not-allowed;
	pointer-events: none;
}

.shop-btn--no-stock::before,
.shop-custom-layout .shop-btn--no-stock::before {
	display: none;
}

.shop-btn--no-stock:hover,
.shop-btn--no-stock:focus-visible,
.shop-custom-layout .shop-btn--no-stock:hover,
.shop-custom-layout .shop-btn--no-stock:focus-visible {
	background-color: color-mix(in srgb, var(--shop-color-gray) 28%, var(--shop-color-white));
	color: var(--shop-color-gray);
	transform: none;
	box-shadow: none;
}

.lc-modal--product .shop-btn--no-stock:disabled {
	opacity: 1;
}

@media (max-width: 991px) {
	.shop-cosmetics .shop-cosmetics__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		row-gap: 10px;
		column-gap: 10px;
	}
}

@media (max-width: 767px) {
	.shop-cosmetics {
		padding-bottom: 60px;
	}

	.shop-cosmetics .shop-cosmetics__inner {
		padding-inline: 10px;
	}

	.shop-cosmetics .shop-cosmetics__title {
		margin-bottom: 32px;
	}

	.shop-cosmetics-card .shop-cosmetics-card__title {
		text-align: center;
		text-wrap: balance;
	}

	.shop-cosmetics-card .shop-cosmetics-card__title-link {
		display: flex;
		flex-direction: column;
		align-items: center;
		width: 100%;
		max-width: 100%;
		margin-inline: auto;
		text-align: center;
		white-space: normal;
	}

	.shop-custom-layout .shop-cosmetics-card .shop-cosmetics-card__title-link {
		display: flex;
		align-items: center;
		width: 100%;
		max-width: 100%;
		margin-inline: auto;
		text-align: center;
	}

	.shop-cosmetics-card__title-part {
		display: block;
	}

	.shop-cosmetics-card__title-part + .shop-cosmetics-card__title-part::before {
		content: none;
	}

	.shop-cosmetics-card .lc-online-available {
		font-size: 13px;
	}
}

@media (max-width: 559px) {
	.shop-cosmetics .shop-cosmetics-card__btn.shop-btn {
		font-size: 11px;
		padding: 10px 6px;
		gap: 5px;
		letter-spacing: 0;
		white-space: nowrap;
	}

	.shop-cosmetics .shop-cosmetics-card__btn-icon {
		width: 14px;
		height: 14px;
	}
}

/* -------------------------------------------------------------------------
   Trust benefits (pre futera)
   ------------------------------------------------------------------------- */

.shop-trust {
	background-color: var(--shop-color-white);
	padding: 30px 0 80px;
}

.shop-trust__grid {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 24px;
}

.shop-trust__item {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	column-gap: 12px;
	align-items: start;
	flex: 0 1 auto;
	min-width: 0;
	max-width: calc((100% - 72px) / 4);
}

.shop-trust__icon-wrap {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
}

.shop-trust__icon {
	display: block;
	width: 36px;
	height: 36px;
}

.shop-trust__body {
	min-width: 0;
}

.shop-trust__title {
	margin: 0 0 8px;
	font-family: var(--shop-font-body);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.25;
	color: var(--shop-color-dark);
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.shop-trust__text {
	margin: 0;
	font-family: var(--shop-font-body);
	font-size: var(--shop-desc-size);
	font-weight: 400;
	line-height: var(--shop-desc-line-height);
	color: var(--shop-color-dark);
}

@media (max-width: 991px) {
	.shop-trust {
		padding: 56px 0 64px;
	}

	.shop-trust__grid {
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 24px;
	}

	.shop-trust__item {
		flex: 0 0 calc(50% - 12px);
		max-width: calc(50% - 12px);
	}
}

@media (max-width: 559px) {
	.shop-trust {
		padding: 0px 0 56px;
	}

	.shop-trust__grid {
		flex-direction: column;
		align-items: center;
		gap: 24px;
	}

	.shop-trust__item {
		flex: 0 0 auto;
		width: 100%;
		max-width: 320px;
	}
}

/* -------------------------------------------------------------------------
   Header
   ------------------------------------------------------------------------- */

.shop-header {
	background-color: var(--shop-color-white);
	border-bottom: 1px solid rgba(67, 67, 67, 0.08);
}

.shop-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	column-gap: 32px;
	min-height: 88px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.shop-header__brand {
	justify-self: start;
}

.shop-header__logo {
	display: inline-flex;
	line-height: 0;
	text-decoration: none;
}

.shop-header__logo-img {
	display: block;
	width: 96px;
	height: auto;
}

.shop-header__nav {
	justify-self: center;
}

.shop-header__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-header__menu a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--shop-font-body);
	font-size: 16px;
	font-weight: 400;
	line-height: var(--shop-text-line-height);
	color: var(--shop-color-dark);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	transition: color 0.2s ease;
}

.shop-header__menu-icon {
	display: block;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.shop-header__menu a:hover,
.shop-header__menu a:focus,
.shop-header__menu .current-menu-item > a,
.shop-header__menu .current_page_item > a {
	color: var(--shop-color-primary);
}

.shop-header__actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 20px;
	justify-self: end;
}

.shop-header__search {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.shop-header__icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--shop-color-dark);
	cursor: pointer;
	text-decoration: none;
	transition: color 0.2s ease;
}

.shop-header__icon-btn:hover,
.shop-header__icon-btn:focus {
	color: var(--shop-color-primary);
}

.shop-header__icon {
	display: block;
	flex-shrink: 0;
}

.shop-header__cart-link {
	display: inline-flex;
}

.shop-header__cart-link a {
	position: relative;
}

.shop-header__cart .woofc-cart-link-inner-subtotal {
	display: none !important;
}

.shop-header__cart .woofc-cart-link a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--shop-color-dark);
	text-decoration: none;
}

.shop-header__cart .woofc-cart-link-inner {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.shop-header__cart .woofc-cart-link-inner i {
	font-size: 22px;
	line-height: 1;
}

/* Sakrij plutajuće Fly Cart dugme na shop header layoutu */
.shop-custom-layout #woofc-count {
	display: none !important;
}

/* Panel logo — samo u mobilnom meniju */
.shop-header__panel-top {
	display: none;
}

/* Hamburger — samo mobil */
.shop-header__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--shop-color-dark);
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance: none;
	appearance: none;
	box-shadow: none;
}

.shop-header__toggle:hover,
.shop-header__toggle:focus,
.shop-header__toggle:active,
.shop-header__toggle:focus-visible {
	background: transparent;
	outline: none;
	box-shadow: none;
}

.shop-header__toggle-box {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 22px;
	height: 22px;
}

.shop-header__toggle-line {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 1px;
	background-color: currentColor;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, width 0.25s ease;
	transform-origin: center;
}

.shop-header.is-menu-open .shop-header__toggle-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.shop-header.is-menu-open .shop-header__toggle-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.shop-header.is-menu-open .shop-header__toggle-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.shop-header__overlay {
	display: none;
}

body.shop-menu-open {
	overflow: hidden;
}

@media (max-width: 991px) {
	.shop-header {
		position: relative;
		z-index: 10002;
	}

	.shop-header__inner {
		grid-template-columns: 1fr auto;
		column-gap: 12px;
		min-height: 72px;
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.shop-header__logo-img {
		width: 72px;
	}

	.shop-header__panel-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-shrink: 0;
		margin-bottom: 24px;
	}

	.shop-header__panel-logo {
		display: inline-flex;
		line-height: 0;
		text-decoration: none;
	}

	.shop-header__panel-logo-img {
		display: block;
		width: 72px;
		height: auto;
	}

	.shop-header__close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		background: transparent;
		color: var(--shop-color-dark);
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		-webkit-appearance: none;
		appearance: none;
		box-shadow: none;
	}

	.shop-header__close:hover,
	.shop-header__close:focus,
	.shop-header__close:active,
	.shop-header__close:focus-visible {
		background: transparent;
		outline: none;
		box-shadow: none;
		color: var(--shop-color-primary);
	}

	.shop-header__close-icon {
		display: block;
	}

	.shop-header__nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10003;
		display: flex;
		flex-direction: column;
		width: min(320px, 88vw);
		height: 100dvh;
		margin: 0;
		padding: 24px 28px 32px;
		background-color: var(--shop-color-white);
		box-shadow: -8px 0 32px rgba(67, 67, 67, 0.12);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		visibility: hidden;
		transform: translateX(100%);
		transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
	}

	.shop-header.is-menu-open .shop-header__nav {
		visibility: visible;
		transform: translateX(0);
	}

	.shop-header__menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.shop-header__menu li {
		opacity: 0;
		transform: translateX(16px);
		border-bottom: 1px solid rgba(67, 67, 67, 0.08);
		transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.shop-header__menu li:last-child {
		border-bottom: 0;
	}

	.shop-header.is-menu-open .shop-header__menu li {
		opacity: 1;
		transform: translateX(0);
	}

	.shop-header.is-menu-open .shop-header__menu li:nth-child(1) { transition-delay: 0.06s; }
	.shop-header.is-menu-open .shop-header__menu li:nth-child(2) { transition-delay: 0.1s; }
	.shop-header.is-menu-open .shop-header__menu li:nth-child(3) { transition-delay: 0.14s; }
	.shop-header.is-menu-open .shop-header__menu li:nth-child(4) { transition-delay: 0.18s; }
	.shop-header.is-menu-open .shop-header__menu li:nth-child(5) { transition-delay: 0.22s; }

	.shop-header__menu a {
		width: 100%;
		padding: 18px 0;
		font-size: 15px;
	}

	.shop-header__toggle {
		display: inline-flex;
	}

	.shop-header__actions {
		gap: 12px;
	}

	.shop-header__overlay {
		display: block;
		position: fixed;
		inset: 0;
		z-index: 10001;
		background-color: rgba(67, 67, 67, 0.45);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.4s ease, visibility 0.4s;
		backdrop-filter: blur(2px);
	}

	.shop-header.is-menu-open .shop-header__overlay {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (max-width: 991px) and (prefers-reduced-motion: reduce) {
	.shop-header__nav,
	.shop-header__overlay,
	.shop-header__toggle-line,
	.shop-header__menu li {
		transition: none;
	}

	.shop-header__menu li {
		opacity: 1;
		transform: none;
	}
}
