/**
 * Counter Widget Styles
 * Animated number counter with prefix, suffix, and title
 *
 * @package Rakmyat Core
 * @version 1.0.0
 */

/* ========================================
   Base Styles
   ======================================== */

.rmt-counter {
	display: block;
	position: relative;
}

.rmt-counter-number-wrapper {
	display: inline-flex;
	align-items: baseline;
	flex-wrap: wrap;
	justify-content: inherit;
	line-height: 1;
}

.rmt-counter-number {
	display: inline-block;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}

.rmt-counter-prefix {
	display: inline-block;
	line-height: 1;
}

.rmt-counter-suffix {
	display: inline-block;
	line-height: 1;
}

.rmt-counter-title {
	display: block;
	line-height: 1.5;
}

/* ========================================
   RTL Support
   ======================================== */

[dir="rtl"] .rmt-counter {
	/* RTL handled automatically with logical properties */
}

/* ========================================
   Accessibility
   ======================================== */

.rmt-counter:focus {
	outline: 2px solid currentColor;
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	.rmt-counter,
	.rmt-counter * {
		transition: none !important;
		animation: none !important;
	}
}

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

@media (max-width: 768px) {
	.rmt-counter {
		/* Mobile-specific adjustments can be added here if needed */
	}
}

/* ========================================
   Elementor Editor
   ======================================== */

.elementor-editor-active .rmt-counter {
	/* Editor-specific styles if needed */
}
