.com-sample-request-menu-link {
	display: inline-flex;
	align-items: center;
	gap: 7.5px;
	text-decoration: none;
}

.com-sample-request-menu-item .com-sample-request-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	min-height: 22px;
	padding: 2px 6px;
	border-radius: 999px;
	background: #CB9347;
	color: #ffffff;
	font-size: 13px;
	line-height: 1;
}

.com-sample-request-add {
	width: fit-content;
}

.com-sample-request-add.is-added {
	background: #7AC36F;
}

.com-sample-request-layout {
	margin: var(--large) 0;
}

.com-sample-request-notice {
	padding: var(--extrasmall) var(--small);
	margin: var(--small) 0;
	border-radius: 15px;
	overflow: hidden;
	opacity: 1;
	transform: translateY(0);
	max-height: 180px;
	transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.25s ease, margin 0.25s ease, padding 0.25s ease;
}

.com-sample-request-notice[hidden] {
	display: none;
}

.com-sample-request-notice[data-com-sample-request-message]:not(.is-visible) {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
	transform: translateY(-6px);
	max-height: 0;
}

.com-sample-request-notice.is-visible {
	margin: var(--small) 0;
	padding: var(--extrasmall) var(--small);
	opacity: 1;
	transform: translateY(0);
	max-height: 180px;
}

.com-sample-request-notice p,
.com-sample-request-notice--inline {
	margin-bottom: 0;
}

.com-sample-request-notice--success {
	background: #e8f6e6;
	color: #225b1f;
}

.com-sample-request-notice--error,
.com-sample-request-error {
	background: #fbe9e9;
	color: #7b1111;
}

.com-sample-request-products {
	min-height: 100%;
}

.com-sample-request-empty {
	padding: var(--small);
	border-radius: 15px;
	background: #FDF6ED;
}

.com-sample-request-empty p {
	margin-bottom: 0;
}

.com-sample-request-items {
	display: flex;
	flex-direction: column;
	gap: var(--small);
}

.com-sample-request-item {
	position: relative;
	display: flex;
	align-items: center;
	gap: var(--small);
	padding: var(--extrasmall) calc(var(--small) + 32px) var(--extrasmall) var(--extrasmall);
	border-radius: 15px;
	background: #FDF6ED;
}

.com-sample-request-items article.com-sample-request-item img {
	flex: 0 0 88px;
	width: 88px ;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 12px;
}

.com-sample-request-item h3 {
	margin-bottom: 5px;
}

.com-sample-request-item p {
	margin-bottom: 0;
}

.com-sample-request-remove {
	position: absolute;
	top: var(--tiny);
	right: var(--tiny);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border-radius: 999px;
	background: #c93f3f;
	color: #ffffff;
	line-height: 1;
	cursor: pointer;
	transition: background 0.3s;
}

.com-sample-request-remove span {
	display: block;
	font-size: 24px;
	line-height: 1;
}

.com-sample-request-remove:hover {
	background: #a92f2f;
}

.com-sample-request-form {
	padding: var(--small);
	border-radius: 15px;
	background: #FDF6ED;
}

.com-sample-request-form h2 {
	margin-bottom: var(--small);
}

.com-sample-request-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: bold;
}

.com-sample-request-field.is-invalid input,
.com-sample-request-consent.is-invalid .com-sample-request-checkbox__box {
	border-color: #c93f3f;
}

.com-sample-request-consent {
	margin: var(--extrasmall) 0;
}

.com-sample-request-checkbox {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 0;
	font-weight: normal;
	cursor: pointer;
}

.com-sample-request-checkbox input {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.com-sample-request-checkbox__box {
	position: relative;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	margin-top: 0;
	border: 0.5px solid #CB9347;
	border-radius: 7px;
	background: #FFFCF6;
	transition: background 0.3s, border-color 0.3s;
}

.com-sample-request-checkbox__box:after {
	content: "";
	position: absolute;
	top: 4px;
	left: 7px;
	width: 6px;
	height: 10px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	opacity: 0;
	transform: rotate(45deg);
	transition: opacity 0.3s;
}

.com-sample-request-checkbox input:checked + .com-sample-request-checkbox__box {
	border-color: #87C97D;
	background: #87C97D;
}

.com-sample-request-checkbox input:checked + .com-sample-request-checkbox__box:after {
	opacity: 1;
}

.com-sample-request-checkbox input:focus + .com-sample-request-checkbox__box {
	border-color: #000000;
}

.com-sample-request-submit {
	margin-top: var(--extrasmall);
}

.cf-turnstile {
	margin: var(--extrasmall) 0;
}

@media (max-width: 767px) {
	.com-sample-request-item {
		align-items: flex-start;
	}

	.com-sample-request-item img {
		flex-basis: 72px;
		width: 72px;
	}
}
