/* Timberulove Email Cart - front-end styles */

.tec-email-cart-wrap {
	margin: 20px 0;
	text-align: right;
}

.tec-open-modal {
	background: #c8a96a !important;
	color: #fff !important;
	border: none !important;
	padding: 12px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	letter-spacing: 0.02em;
	cursor: pointer;
	border-radius: 3px !important;
	transition: background 0.2s ease;
}

.tec-open-modal:hover,
.tec-open-modal:focus {
	background: #b8995a !important;
}

.tec-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
}

.tec-modal.is-open {
	display: flex;
}

.tec-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(40, 30, 20, 0.55);
}

.tec-modal__dialog {
	position: relative;
	background: #fffdf5;
	width: 90%;
	max-width: 480px;
	border-radius: 6px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
	padding: 28px;
	max-height: 90vh;
	overflow-y: auto;
}

.tec-modal__close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: transparent;
	border: 0;
	font-size: 28px;
	line-height: 1;
	color: #888;
	cursor: pointer;
	padding: 4px 8px;
}

.tec-modal__close:hover {
	color: #222;
}

.tec-modal__title {
	margin: 0 0 16px 0;
	font-size: 22px;
	color: #2a2618;
}

.tec-form .tec-field {
	margin: 0 0 14px 0;
}

.tec-form label {
	display: block;
	font-size: 13px;
	color: #444;
	margin: 0 0 4px 0;
	font-weight: 600;
}

.tec-form .tec-required {
	color: #c0392b;
}

.tec-form input[type="email"],
.tec-form input[type="text"],
.tec-form textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #d4cdb8;
	background: #f7f3e8;
	border-radius: 3px;
	font-size: 14px;
	font-family: inherit;
	box-sizing: border-box;
}

.tec-form input:focus,
.tec-form textarea:focus {
	outline: none;
	border-color: #c8a96a;
	background: #fff;
}

.tec-actions {
	margin: 18px 0 0 0;
	text-align: right;
}

.tec-submit {
	background: #c8a96a !important;
	color: #fff !important;
	border: none !important;
	padding: 12px 24px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	cursor: pointer;
	border-radius: 3px !important;
}

.tec-submit:hover,
.tec-submit:focus {
	background: #b8995a !important;
}

.tec-submit[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
}

.tec-feedback {
	margin-top: 12px;
	font-size: 14px;
	min-height: 1.2em;
}

.tec-feedback.is-success {
	color: #2e7d32;
	padding: 10px 12px;
	background: #e8f5e9;
	border-radius: 3px;
}

.tec-feedback.is-error {
	color: #c62828;
	padding: 10px 12px;
	background: #fdecea;
	border-radius: 3px;
}

@media (max-width: 540px) {
	.tec-modal__dialog {
		padding: 20px 18px;
		width: 94%;
	}

	.tec-email-cart-wrap {
		text-align: center;
	}

	.tec-open-modal {
		width: 100%;
	}
}
