/*
Theme Name: WoodMart Child - TETECH
Theme URI: http://www.tetech.com
Description: Custom child theme for TETECH preserving all mystile customizations
Author: TETECH
Author URI: http://www.tetech.com
Template: woodmart
Version: 1.0.0
Text Domain: woodmart-child
*/

/* ============================================
   TETECH Calculator Loading Spinner
   ============================================ */

.tetech-loader-container {
	text-align: center;
	padding: 60px 20px;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.tetech-loader-container p {
	margin-top: 20px;
	font-size: 16px;
	color: #002577;
	font-weight: 500;
}

.tetech-loader {
	border: 4px solid #f3f3f3;
	border-top: 4px solid #002577;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	animation: tetech-spin 1s linear infinite;
}

@keyframes tetech-spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.tetech-loader-container {
		padding: 40px 15px;
		min-height: 150px;
	}

	.tetech-loader {
		width: 40px;
		height: 40px;
	}

	.tetech-loader-container p {
		font-size: 14px;
	}
}
