/**
 * Phytest Icon Boxes Styles
 * Clean, modern icon boxes with purple accents
 */

/* Wrapper */
.phytest-icon-boxes-wrapper {
	width: 100%;
	padding: 60px 20px;
	position: relative;
}

/* Container */
.phytest-icon-boxes-container {
	margin: 0 auto;
	position: relative;
}

/* Grid */
.phytest-icon-boxes-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	justify-content: space-between;
}

/* Individual Box */
.phytest-icon-box {
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 12px;
	padding: 40px 24px;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1 1 calc(25% - 18px);
	min-width: 250px;
	font-family: 'Open Sans', Helvetica, Arial, Lucida, sans-serif;
}

.phytest-icon-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Icon Container */
.phytest-icon-box-icon {
	width: 80px;
	height: 80px;
	background: #f0ecf9;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	flex-shrink: 0;
}

.phytest-icon-box-icon svg {
	width: 32px;
	height: 32px;
	display: block;
}

/* Text */
.phytest-icon-box-text {
	font-size: 16px;
	font-weight: 400;
	color: #333333;
	line-height: 1.6;
	margin: 0;
}

/* Responsive Design */
/* Tablet - 2 boxes per row */
@media (max-width: 1024px) {
	.phytest-icon-boxes-wrapper {
		padding: 50px 20px;
	}
	
	.phytest-icon-boxes-grid {
		gap: 20px;
	}
	
	.phytest-icon-box {
		flex: 1 1 calc(50% - 10px);
		min-width: calc(50% - 10px);
		max-width: calc(50% - 10px);
	}
}

/* Mobile - 1 box per row */
@media (max-width: 768px) {
	.phytest-icon-boxes-wrapper {
		padding: 40px 20px;
	}
	
	.phytest-icon-boxes-grid {
		gap: 16px;
	}
	
	.phytest-icon-box {
		flex: 1 1 100%;
		min-width: 100%;
		max-width: 100%;
		padding: 32px 20px;
	}
	
	.phytest-icon-box-icon {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}
	
	.phytest-icon-box-icon svg {
		width: 28px;
		height: 28px;
	}
	
	.phytest-icon-box-text {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.phytest-icon-boxes-wrapper {
		padding: 30px 15px;
	}
	
	.phytest-icon-box {
		padding: 28px 16px;
	}
	
	.phytest-icon-box-icon {
		width: 64px;
		height: 64px;
		margin-bottom: 16px;
	}
	
	.phytest-icon-box-icon svg {
		width: 24px;
		height: 24px;
	}
	
	.phytest-icon-box-text {
		font-size: 14px;
	}
}

