/* ==========================================================================
   Egg Break Counter / Stats Section Elementor Widget Styling
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

.elementor-widget-egg_break_counter {
	display: block;
	width: 100%;
}

.egg-break-counter-container {
	background-color: #7AC143;
	border-radius: 28px;
	padding: 24px;
	box-sizing: border-box;
	width: 100%;
	position: relative;
	overflow: hidden;
}

/* Inner frame outline matching screenshot */
.egg-break-counter-frame {
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	border-radius: 20px;
	padding: 32px 16px;
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	width: 100%;
}

.egg-break-counter-grid {
	display: flex;
	width: 100%;
	align-items: flex-start;
	justify-content: space-between;
}

.egg-break-counter-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 16px;
	position: relative;
	box-sizing: border-box;
}

/* Vertical Divider Lines */
.egg-break-counter-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 10%;
	height: 80%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.35);
}

/* Icon Styling */
.egg-break-counter-icon-wrap {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	color: #FFFFFF;
	font-size: 18px;
	transition: transform 0.3s ease;
}

.egg-break-counter-icon-wrap svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.egg-break-counter-item:hover .egg-break-counter-icon-wrap {
	transform: scale(1.1);
	background-color: rgba(0, 0, 0, 0.18);
}

/* Number & Unit Typography */
.egg-break-counter-value-wrap {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.15;
	color: #FFFFFF;
	margin-bottom: 8px;
	display: flex;
	align-items: baseline;
	justify-content: center;
	white-space: nowrap;
}

.egg-break-counter-prefix,
.egg-break-counter-suffix {
	display: inline;
}

/* Description / Label Typography */
.egg-break-counter-description {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.35;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	max-width: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
	.egg-break-counter-grid {
		flex-wrap: wrap;
	}
	.egg-break-counter-item {
		flex: 0 0 33.333%;
		margin-bottom: 24px;
	}
	.egg-break-counter-item:nth-child(3n)::after {
		display: none;
	}
	.egg-break-counter-value-wrap {
		font-size: 28px;
	}
}

@media (max-width: 767px) {
	.egg-break-counter-container {
		border-radius: 20px;
		padding: 16px;
	}
	.egg-break-counter-frame {
		border-radius: 16px;
		padding: 24px 12px;
		flex-direction: column;
	}
	.egg-break-counter-grid {
		flex-direction: column;
	}
	.egg-break-counter-item {
		flex: 0 0 100%;
		padding: 16px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.25);
		margin-bottom: 0;
	}
	.egg-break-counter-item::after {
		display: none !important;
	}
	.egg-break-counter-item:last-child {
		border-bottom: none;
	}
	.egg-break-counter-value-wrap {
		font-size: 26px;
	}
	.egg-break-counter-description {
		font-size: 13px;
	}
}
