/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* =========================================================
   Request Button (on product page)
   ========================================================= */
.cf-add-to-cart-buttons-wrapper {
	width: 100%;
	gap: 20px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: space-evenly;
}
.cf-add-to-cart-buttons-wrapper button {
	flex: 1;
	flex-basis: 0 !important;
	text-transform: uppercase;
}
.cf-request-btn {
	display: inline-block;
	padding: 12px 28px;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.25s ease, color 0.25s ease;
	font-family: inherit;
	line-height: 1;
	color: #968A73 !important;
	border-width: 1px !important;
	border-color: #968A73 !important;
	background-color: #ffffff00 !important;

}

.cf-request-btn:hover {
	background-color: #c8a99a;
	color: #fff;
}

/* =========================================================
   Modal Overlay & Container
   ========================================================= */

.cf-modal {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cf-modal.is-active {
	opacity: 1;
	visibility: visible;
}

.cf-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.80);
	cursor: pointer;
}

.cf-modal__container {
	position: relative;
	background: #fff;
	width: 100%;
	max-width: 750px;
	margin: 20px;
	padding: 60px;
	box-sizing: border-box;
	box-shadow: 0px 4px 75px rgb(0 0 0 / 15%);
	z-index: 1;
	transform: translateY(24px);
	transition: transform 0.35s ease;
}

.cf-modal.is-active .cf-modal__container {
	transform: translateY(0);
}

.cf-modal .cf-modal__close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: #888;
	cursor: pointer;
	transition: color 0.2s ease;

	background: transparent;
	display: flex;
	width: 2rem;
	height: 2rem;
	padding: 0;
	margin: 0;
	font-size: 2rem;
	line-height: 1rem;
	justify-content: center;
	align-items: center;
	font-family: Arial;

}

.cf-modal .cf-modal__close:hover, .cf-modal .cf-modal__close:focus {
	color: #333;
	background-color: transparent;
}

/* =========================================================
   Modal Typography
   ========================================================= */

.cf-modal__title {
	margin: 0 0 18px;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.01em;
	font-family: var(--e-global-typography-secondary-font-family, 'Rasa')
}

.cf-modal__desc {
	margin: 0 0 28px;
	font-size: 0.8rem;
	line-height: 1.7;
}

/* =========================================================
   Form Layout
   ========================================================= */

.cf-modal__form {
	width: 100%;
}

.cf-form__row {
	margin-bottom: 16px;
}

.cf-form__row--cols {
	display: flex;
	gap: 16px;
	align-items: flex-end;
}

.cf-form__row--cols .cf-form__group {
	flex: 1;
	min-width: 0;
}

.cf-form__group {
	width: 100%;
}
.cf-form__label {
	font-size: 0.75rem;
}
input[type=date].cf-form__input, input[type=email].cf-form__input, input[type=number].cf-form__input, input[type=password].cf-form__input, input[type=search].cf-form__input, input[type=tel].cf-form__input, input[type=text].cf-form__input, input[type=url].cf-form__input, select.cf-form__input, textarea.cf-form__input {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ddd;
	font-size: 13px;
	font-family: inherit;
	outline: none;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
	border-radius: 0;
	background: transparent;
}

.cf-form__input::placeholder {
	color: #aaa;
}

.cf-form__input:focus {
	border-color: #c8a99a;
	background: #fff;
}

/* =========================================================
   Consent Checkbox
   ========================================================= */

.cf-form__row--consent {
	margin-bottom: 20px;
	flex: 1;
}

.cf-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
}

.cf-form__consent input[type="checkbox"] {
	flex-shrink: 0;
	margin-top: 2px;
	width: 14px;
	height: 14px;
	accent-color: #c8a99a;
	cursor: pointer;
}

.cf-form__consent-text {
	font-size: 0.6rem;
	line-height: 1.6;
}

/* =========================================================
   Submit Row
   ========================================================= */

.cf-form__row--submit {
	display: flex;
	justify-content: flex-end;
	gap: 16px;
	margin-bottom: 0;
	align-items: flex-end;
	flex: 1;
}

.cf-form__message {
	font-size: 13px;
	flex: 1;
	margin-bottom: 16px;
}

.cf-form__message.success {
	color: #5a9e6f;
}

.cf-form__message.error {
	color: #c0392b;
}

/* =========================================================
   Success View (after form submit)
   ========================================================= */

.cf-modal__success {
	text-align: center;
	padding: 20px 0;
}

.cf-modal__success-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 24px;
	border-radius: 50%;
	background-color: var(--e-global-color-accent, #968a73);
	color: #fff;
	font-size: 32px;
	line-height: 64px;
	text-align: center;
}

.cf-modal__success .cf-modal__title {
	margin-bottom: 12px;
}

.cf-modal__success .cf-modal__desc {
	margin-bottom: 32px;
}

.cf-modal__success .cf-form__submit {
	display: inline-block;
	width: auto;
	min-width: 200px;
}

button.cf-form__submit {
	padding: 12px 32px;
	border: none;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	font-family: inherit;
	transition: background-color 0.25s ease;
	white-space: nowrap;
	width: 100%;
	background-color: var(--e-global-color-accent, #968a73);
	border-color: var(--e-global-color-accent, #968a73);
	color: #ffffff !important;
	border-radius: 0;

}

button.cf-form__submit:hover {
	/*background-color: #b8907f;*/
}

button.cf-form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
.cf-form__row--cols--consents {
	align-items: flex-start;
}

/* =========================================================
   Body scroll lock
   ========================================================= */

body.cf-modal-open {
	overflow: hidden;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 600px) {
	.cf-modal__container {
		padding: 36px 24px;
	}

	.cf-form__row--cols {
		flex-direction: column;
		gap: 16px;
	}

	.cf-form__row--submit {
		flex-direction: column;
		align-items: stretch;
	}

	.cf-form__submit {
		width: 100%;
		text-align: center;
	}
}