.wcsh-holiday-notice {
	border-left: 4px solid var(--wcsh-accent, #7f54b3);
	background: var(--wcsh-panel-bg, #f7f3fb);
	color: #2f2438;
	margin: 0 0 24px;
	padding: 14px 18px;
}

.wcsh-holiday-notice p {
	margin: 0;
}

.wcsh-shop-holiday {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 420px;
	margin: 0 0 32px;
	padding: 48px clamp(20px, 6vw, 72px);
	border: 1px solid #e2d9ea;
	border-left: 4px solid var(--wcsh-accent, #7f54b3);
	text-align: center;
}

.wcsh-shop-holiday h2 {
	margin: 8px 0 12px;
	color: inherit;
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.2;
	letter-spacing: 0;
}

.wcsh-shop-holiday > p {
	max-width: 620px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.6;
}

.wcsh-holiday-logo {
	display: block;
	width: auto;
	max-width: min(180px, 60%);
	height: auto;
	max-height: 110px;
	margin: 0 auto 16px;
	object-fit: contain;
}

.wcsh-notify {
	width: min(100%, 560px);
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid #d9cee2;
}

.wcsh-notify h3 {
	margin: 0 0 8px;
	color: inherit;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: 0;
}

.wcsh-notify > p {
	margin: 0 0 16px;
}

.wcsh-notify-fields {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.wcsh-notify-fields input[type="email"] {
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
	height: 48px;
	margin: 0;
	padding: 0 14px;
	border: 1px solid #9587a0;
	border-radius: 4px;
	background: #fff;
	color: #2f2438;
	font: inherit;
}

.wcsh-notify-fields button {
	box-sizing: border-box;
	min-height: 48px;
	margin: 0;
	padding: 0 22px;
	border: 1px solid var(--wcsh-button, #5e337f);
	border-radius: 4px;
	background: var(--wcsh-button, #5e337f);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.wcsh-notify-fields button:hover,
.wcsh-notify-fields button:focus {
	filter: brightness(0.84);
}

.wcsh-notify .wcsh-privacy {
	margin: 10px 0 0;
	font-size: 12px;
	opacity: 0.75;
}

.wcsh-form-message {
	margin: 0 0 14px;
	padding: 10px 12px;
	border-radius: 4px;
	font-size: 14px;
	text-align: left;
}

.wcsh-form-message--success {
	background: #e8f5ea;
	color: #205d2b;
}

.wcsh-form-message--error {
	background: #fbe9e7;
	color: #8a2a20;
}

.wcsh-hp {
	position: absolute !important;
	left: -10000px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wcsh-holiday-button {
	opacity: 0.92;
}

.wcsh-upcoming-popup {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;
	box-sizing: border-box;
	width: min(420px, calc(100vw - 32px));
	padding: 26px 56px 24px 26px;
	border: 1px solid color-mix(in srgb, var(--wcsh-accent, #7f54b3) 35%, #fff);
	border-left: 4px solid var(--wcsh-accent, #7f54b3);
	border-radius: 6px;
	background: var(--wcsh-panel-bg, #f7f3fb);
	box-shadow: 0 16px 42px rgba(29, 20, 34, 0.2);
	color: #2f2438;
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 220ms ease, transform 220ms ease;
}

.wcsh-upcoming-popup.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.wcsh-upcoming-popup h2 {
	margin: 4px 0 8px;
	color: inherit;
	font-size: 22px;
	line-height: 1.25;
	letter-spacing: 0;
}

.wcsh-upcoming-popup p {
	margin: 0;
	font-size: 15px;
	line-height: 1.55;
}

.wcsh-popup-date {
	color: var(--wcsh-accent, #7f54b3);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.wcsh-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent;
	color: currentColor;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
}

.wcsh-popup-close:hover,
.wcsh-popup-close:focus {
	background: rgba(0, 0, 0, 0.07);
}

.wcsh-popup-button {
	min-height: 42px;
	margin-top: 18px;
	padding: 0 20px;
	border: 0;
	border-radius: 4px;
	background: var(--wcsh-button, #5e337f);
	color: #fff;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
}

.wcsh-popup-button:hover,
.wcsh-popup-button:focus {
	filter: brightness(0.84);
}

@media (max-width: 560px) {
	.wcsh-shop-holiday {
		min-height: 360px;
		padding: 36px 18px;
	}

	.wcsh-notify-fields {
		grid-template-columns: 1fr;
	}

	.wcsh-notify-fields button {
		width: 100%;
	}

	.wcsh-upcoming-popup {
		right: 16px;
		bottom: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.wcsh-upcoming-popup {
		transition-duration: 0.001ms;
	}
}
