/* ============================================
   Home Features Block - Modern Professional Design
   ============================================ */

.home-features-block {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.home-features-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(220, 53, 69, 0.03) 0%, transparent 50%),
				radial-gradient(circle at 80% 80%, rgba(40, 167, 69, 0.03) 0%, transparent 50%);
	pointer-events: none;
}

.home-features-block .container {
	position: relative;
	z-index: 1;
}

/* Title Section */
.features-title-wrapper {
	text-align: center;
	margin-bottom: 60px;
}

.features-main-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.features-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #dc3545, #28a745);
	border-radius: 2px;
}

.features-subtitle {
	font-size: 1.1rem;
	color: #6c757d;
	margin-top: 25px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

/* Features Grid */
.features-grid {
	margin: 0 -15px;
}

.feature-item {
	padding: 30px 20px;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

.feature-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

.feature-item:hover::before {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-5px);
}

.feature-item:hover {
	transform: translateY(-5px);
}

.feature-item > * {
	position: relative;
	z-index: 1;
}

/* Icon Wrapper */
.feature-icon-wrapper {
	width: 80px;
	height: 80px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
	border-radius: 50%;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:nth-child(2) .feature-icon-wrapper {
	background: linear-gradient(135deg, #28a745 0%, #218838 100%);
}

.feature-item:nth-child(3) .feature-icon-wrapper {
	background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
}

.feature-item:nth-child(4) .feature-icon-wrapper {
	background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
}

.feature-icon-wrapper::before {
	content: '';
	position: absolute;
	top: -5px;
	left: -5px;
	right: -5px;
	bottom: -5px;
	border-radius: 50%;
	background: inherit;
	opacity: 0.2;
	z-index: -1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon-wrapper::before {
	transform: scale(1.2);
	opacity: 0.3;
}

.feature-item:hover .feature-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
}

.feature-icon {
	width: 40px;
	height: 40px;
	color: #ffffff;
	stroke-width: 2.5;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon {
	transform: scale(1.1);
}

/* Feature Content */
.feature-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
	color: #dc3545;
}

.feature-description {
	font-size: 0.95rem;
	line-height: 1.7;
	color: #6c757d;
	margin: 0;
	font-weight: 300;
}

/* Responsive Design */
@media (max-width: 991px) {
	.home-features-block {
		padding: 60px 0;
	}
	
	.features-main-title {
		font-size: 2rem;
	}
	
	.features-subtitle {
		font-size: 1rem;
	}
	
	.feature-item {
		margin-bottom: 25px;
		padding: 25px 15px;
	}
	
	.feature-icon-wrapper {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}
	
	.feature-icon {
		width: 35px;
		height: 35px;
	}
	
	.feature-title {
		font-size: 1.2rem;
	}
}

@media (max-width: 767px) {
	.home-features-block {
		padding: 50px 0;
	}
	
	.features-title-wrapper {
		margin-bottom: 40px;
	}
	
	.features-main-title {
		font-size: 1.75rem;
	}
	
	.features-subtitle {
		font-size: 0.95rem;
		margin-top: 15px;
	}
	
	.feature-item {
		padding: 20px 15px;
		margin-bottom: 20px;
	}
	
	.feature-icon-wrapper {
		width: 65px;
		height: 65px;
		margin-bottom: 18px;
	}
	
	.feature-icon {
		width: 32px;
		height: 32px;
	}
	
	.feature-title {
		font-size: 1.1rem;
		margin-bottom: 12px;
	}
	
	.feature-description {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

/* RTL Support */
.rtl .features-main-title::after {
	left: auto;
	right: 50%;
	transform: translateX(50%);
}

/* Animation on Scroll (optional - can be enhanced with JS) */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.feature-item {
	animation: fadeInUp 0.6s ease-out backwards;
}

.feature-item:nth-child(1) {
	animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
	animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
	animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
	animation-delay: 0.4s;
}

/* ============================================
   Home Stats Block - Statistics with Counter Animation
   ============================================ */

.home-stats-block {
	padding: 100px 0;
	background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	position: relative;
	overflow: hidden;
}

.home-stats-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 10% 20%, rgba(220, 53, 69, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 90% 80%, rgba(40, 167, 69, 0.1) 0%, transparent 50%);
	pointer-events: none;
}

.home-stats-block .container {
	position: relative;
	z-index: 1;
}

/* Stats Grid */
.stats-grid {
	margin: 0;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.stat-item {
	text-align: center;
	padding: 30px 20px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
	transform: translateY(-10px);
}

/* Icon Wrapper */
.stat-icon-wrapper {
	width: 90px;
	height: 90px;
	margin: 0 auto 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:nth-child(1) .stat-icon-wrapper {
	background: linear-gradient(135deg, rgba(220, 53, 69, 0.2) 0%, rgba(220, 53, 69, 0.1) 100%);
	border-color: rgba(220, 53, 69, 0.3);
}

.stat-item:nth-child(2) .stat-icon-wrapper {
	background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
	border-color: rgba(40, 167, 69, 0.3);
}

.stat-item:nth-child(3) .stat-icon-wrapper {
	background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
	border-color: rgba(255, 193, 7, 0.3);
}

.stat-item:nth-child(4) .stat-icon-wrapper {
	background: linear-gradient(135deg, rgba(23, 162, 184, 0.2) 0%, rgba(23, 162, 184, 0.1) 100%);
	border-color: rgba(23, 162, 184, 0.3);
}

.stat-item:hover .stat-icon-wrapper {
	transform: scale(1.15) rotate(5deg);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border-radius: 50%;
	background: inherit;
	opacity: 0.5;
	z-index: -1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-icon-wrapper::before {
	transform: scale(1.2);
	opacity: 0.7;
}

.stat-icon {
	width: 45px;
	height: 45px;
	color: #ffffff;
	stroke-width: 2;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover .stat-icon {
	transform: scale(1.1);
}

/* Number Display */
.stat-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.stat-number-wrapper {
	display: flex;
	align-items: baseline;
	justify-content: center;
	margin-bottom: 15px;
	gap: 5px;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	color: #ffffff;
	line-height: 1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
	display: inline-block;
}

.stat-suffix {
	font-size: 2rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1;
	display: inline-block;
}

.stat-label {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 400;
	letter-spacing: 0.5px;
	margin-top: 10px;
	text-transform: uppercase;
	font-size: 0.95rem;
}

.stat-item:hover .stat-number {
	transform: scale(1.1);
	color: #ffc107;
}

.stat-item:hover .stat-label {
	color: #ffffff;
}

/* Responsive Design */
@media (max-width: 991px) {
	.home-stats-block {
		padding: 80px 0;
	}
	
	.stat-item {
		padding: 25px 15px;
		margin-bottom: 30px;
	}
	
	.stat-icon-wrapper {
		width: 80px;
		height: 80px;
		margin-bottom: 25px;
	}
	
	.stat-icon {
		width: 40px;
		height: 40px;
	}
	
	.stat-number {
		font-size: 3rem;
	}
	
	.stat-suffix {
		font-size: 1.75rem;
	}
	
	.stat-label {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.home-stats-block {
		padding: 60px 0;
	}
	
	.stats-grid {
		flex-wrap: wrap;
	}
	
	.stat-item {
		padding: 20px 15px;
		margin-bottom: 25px;
		width: 50%;
	}
	
	.stat-icon-wrapper {
		width: 70px;
		height: 70px;
		margin-bottom: 20px;
	}
	
	.stat-icon {
		width: 35px;
		height: 35px;
	}
	
	.stat-number {
		font-size: 2.5rem;
	}
	
	.stat-suffix {
		font-size: 1.5rem;
	}
	
	.stat-label {
		font-size: 0.85rem;
		margin-top: 8px;
	}
}

/* Counter Animation */
@keyframes countUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.stat-number {
	animation: countUp 0.8s ease-out backwards;
}

.stat-item:nth-child(1) .stat-number {
	animation-delay: 0.1s;
}

.stat-item:nth-child(2) .stat-number {
	animation-delay: 0.2s;
}

.stat-item:nth-child(3) .stat-number {
	animation-delay: 0.3s;
}

.stat-item:nth-child(4) .stat-number {
	animation-delay: 0.4s;
}

/* Pulse Animation for Icons */
@keyframes pulse {
	0%, 100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.05);
		opacity: 0.9;
	}
}

.stat-icon-wrapper {
	animation: pulse 3s ease-in-out infinite;
}

.stat-item:nth-child(1) .stat-icon-wrapper {
	animation-delay: 0s;
}

.stat-item:nth-child(2) .stat-icon-wrapper {
	animation-delay: 0.75s;
}

.stat-item:nth-child(3) .stat-icon-wrapper {
	animation-delay: 1.5s;
}

.stat-item:nth-child(4) .stat-icon-wrapper {
	animation-delay: 2.25s;
}

/* ============================================
   Home Process Block - How It Works
   ============================================ */

.home-process-block {
	padding: 90px 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	position: relative;
	overflow: hidden;
}

.home-process-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 30% 40%, rgba(220, 53, 69, 0.04) 0%, transparent 60%),
				radial-gradient(circle at 70% 60%, rgba(40, 167, 69, 0.04) 0%, transparent 60%);
	pointer-events: none;
}

.home-process-block .container {
	position: relative;
	z-index: 1;
}

/* Title Section */
.process-title-wrapper {
	text-align: center;
	margin-bottom: 70px;
}

.process-main-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.process-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #dc3545, #28a745);
	border-radius: 2px;
}

.process-subtitle {
	font-size: 1.1rem;
	color: #6c757d;
	margin-top: 25px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

/* Process Steps */
.process-steps {
	position: relative;
	margin: 0 -15px;
	padding-top: 40px;
}

.process-steps::before {
	content: '';
	position: absolute;
	top: 120px;
	left: 12.5%;
	right: 12.5%;
	height: 3px;
	background: linear-gradient(90deg, #dc3545 0%, #28a745 50%, #ffc107 100%);
	border-radius: 2px;
	z-index: 0;
	opacity: 0.3;
}

.process-step {
	text-align: center;
	padding: 0 15px 30px;
	position: relative;
	z-index: 1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
	transform: translateY(-10px);
}

/* Step Number */
.step-number {
	font-size: 4rem;
	font-weight: 800;
	color: rgba(220, 53, 69, 0.1);
	line-height: 1;
	margin-bottom: -20px;
	position: relative;
	z-index: 0;
	transition: all 0.4s ease;
}

.process-step:nth-child(2) .step-number {
	color: rgba(40, 167, 69, 0.1);
}

.process-step:nth-child(3) .step-number {
	color: rgba(255, 193, 7, 0.1);
}

.process-step:nth-child(4) .step-number {
	color: rgba(23, 162, 184, 0.1);
}

.process-step:hover .step-number {
	color: rgba(220, 53, 69, 0.2);
	transform: scale(1.1);
}

.process-step:nth-child(2):hover .step-number {
	color: rgba(40, 167, 69, 0.2);
}

.process-step:nth-child(3):hover .step-number {
	color: rgba(255, 193, 7, 0.2);
}

.process-step:nth-child(4):hover .step-number {
	color: rgba(23, 162, 184, 0.2);
}

/* Icon Wrapper */
.step-icon-wrapper {
	width: 100px;
	height: 100px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
	border-radius: 50%;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:nth-child(2) .step-icon-wrapper {
	background: linear-gradient(135deg, #28a745 0%, #218838 100%);
	box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.process-step:nth-child(3) .step-icon-wrapper {
	background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
	box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.process-step:nth-child(4) .step-icon-wrapper {
	background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
	box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.step-icon-wrapper::before {
	content: '';
	position: absolute;
	top: -8px;
	left: -8px;
	right: -8px;
	bottom: -8px;
	border-radius: 50%;
	background: inherit;
	opacity: 0.2;
	z-index: -1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-icon-wrapper::before {
	transform: scale(1.3);
	opacity: 0.3;
}

.process-step:hover .step-icon-wrapper {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
	width: 50px;
	height: 50px;
	color: #ffffff;
	stroke-width: 2.5;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover .step-icon {
	transform: scale(1.1);
}

/* Step Content */
.step-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 15px;
	transition: color 0.3s ease;
	position: relative;
	z-index: 2;
}

.process-step:hover .step-title {
	color: #dc3545;
}

.process-step:nth-child(2):hover .step-title {
	color: #28a745;
}

.process-step:nth-child(3):hover .step-title {
	color: #ffc107;
}

.process-step:nth-child(4):hover .step-title {
	color: #17a2b8;
}

.step-description {
	font-size: 1rem;
	line-height: 1.7;
	color: #6c757d;
	margin: 0;
	font-weight: 300;
	position: relative;
	z-index: 2;
}

/* Responsive Design */
@media (max-width: 991px) {
	.home-process-block {
		padding: 70px 0;
	}
	
	.process-title-wrapper {
		margin-bottom: 50px;
	}
	
	.process-main-title {
		font-size: 2rem;
	}
	
	.process-subtitle {
		font-size: 1rem;
	}
	
	.process-steps::before {
		display: none;
	}
	
	.process-step {
		margin-bottom: 40px;
	}
	
	.step-number {
		font-size: 3rem;
		margin-bottom: -15px;
	}
	
	.step-icon-wrapper {
		width: 85px;
		height: 85px;
		margin-bottom: 20px;
	}
	
	.step-icon {
		width: 42px;
		height: 42px;
	}
	
	.step-title {
		font-size: 1.3rem;
	}
	
	.step-description {
		font-size: 0.95rem;
	}
}

@media (max-width: 767px) {
	.home-process-block {
		padding: 60px 0;
	}
	
	.process-title-wrapper {
		margin-bottom: 40px;
	}
	
	.process-main-title {
		font-size: 1.75rem;
	}
	
	.process-subtitle {
		font-size: 0.95rem;
		margin-top: 15px;
	}
	
	.process-step {
		margin-bottom: 35px;
		padding: 0 10px 20px;
	}
	
	.step-number {
		font-size: 2.5rem;
		margin-bottom: -12px;
	}
	
	.step-icon-wrapper {
		width: 75px;
		height: 75px;
		margin-bottom: 18px;
	}
	
	.step-icon {
		width: 38px;
		height: 38px;
	}
	
	.step-title {
		font-size: 1.15rem;
		margin-bottom: 12px;
	}
	
	.step-description {
		font-size: 0.9rem;
		line-height: 1.6;
	}
}

/* RTL Support */
.rtl .process-main-title::after {
	left: auto;
	right: 50%;
	transform: translateX(50%);
}

.rtl .process-steps::before {
	left: auto;
	right: 12.5%;
}

/* Animation */
@keyframes processFadeIn {
	from {
		opacity: 0;
		transform: translateY(40px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.process-step {
	animation: processFadeIn 0.7s ease-out backwards;
}

.process-step:nth-child(1) {
	animation-delay: 0.1s;
}

.process-step:nth-child(2) {
	animation-delay: 0.2s;
}

.process-step:nth-child(3) {
	animation-delay: 0.3s;
}

.process-step:nth-child(4) {
	animation-delay: 0.4s;
}

/* ============================================
   Home Meat Types Block - Quality Meat Products
   ============================================ */

.home-meat-types-block {
	padding: 85px 0;
	background: linear-gradient(135deg, #fff5f5 0%, #ffffff 50%, #f0fff4 100%);
	position: relative;
	overflow: hidden;
}

.home-meat-types-block::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: 
		radial-gradient(circle at 15% 30%, rgba(220, 53, 69, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 85% 70%, rgba(40, 167, 69, 0.05) 0%, transparent 50%);
	pointer-events: none;
}

.home-meat-types-block .container {
	position: relative;
	z-index: 1;
}

/* Title Section */
.meat-types-title-wrapper {
	text-align: center;
	margin-bottom: 65px;
}

.meat-types-main-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 15px;
	position: relative;
	display: inline-block;
}

.meat-types-main-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #dc3545, #28a745, #ffc107);
	border-radius: 2px;
}

.meat-types-subtitle {
	font-size: 1.1rem;
	color: #6c757d;
	margin-top: 25px;
	font-weight: 300;
	letter-spacing: 0.5px;
}

/* Meat Types Grid */
.meat-types-grid {
	margin: 0 -10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.meat-type-item {
	padding: 25px 15px;
	margin-bottom: 30px;
	text-align: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	flex: 0 0 auto;
}

.meat-type-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border: 2px solid transparent;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

.meat-type-item:hover::before {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transform: translateY(-8px);
	border-color: rgba(220, 53, 69, 0.2);
}

.meat-type-item:hover {
	transform: translateY(-8px);
}

.meat-type-item > * {
	position: relative;
	z-index: 1;
}

/* Icon Wrapper */
.meat-type-icon-wrapper {
	width: 95px;
	height: 95px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
	border-radius: 50%;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 6px 20px rgba(220, 53, 69, 0.25);
}

.meat-type-item:nth-child(2) .meat-type-icon-wrapper {
	background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
	box-shadow: 0 6px 20px rgba(255, 107, 107, 0.25);
}

.meat-type-item:nth-child(3) .meat-type-icon-wrapper {
	background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
	box-shadow: 0 6px 20px rgba(78, 205, 196, 0.25);
}

.meat-type-item:nth-child(4) .meat-type-icon-wrapper {
	background: linear-gradient(135deg, #feca57 0%, #ff9ff3 100%);
	box-shadow: 0 6px 20px rgba(254, 202, 87, 0.25);
}

.meat-type-item:nth-child(5) .meat-type-icon-wrapper {
	background: linear-gradient(135deg, #a55eea 0%, #8854d0 100%);
	box-shadow: 0 6px 20px rgba(165, 94, 234, 0.25);
}

.meat-type-item:nth-child(6) .meat-type-icon-wrapper {
	background: linear-gradient(135deg, #26de81 0%, #20bf6b 100%);
	box-shadow: 0 6px 20px rgba(38, 222, 129, 0.25);
}

.meat-type-icon-wrapper::before {
	content: '';
	position: absolute;
	top: -6px;
	left: -6px;
	right: -6px;
	bottom: -6px;
	border-radius: 50%;
	background: inherit;
	opacity: 0.15;
	z-index: -1;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.meat-type-item:hover .meat-type-icon-wrapper::before {
	transform: scale(1.25);
	opacity: 0.25;
}

.meat-type-item:hover .meat-type-icon-wrapper {
	transform: scale(1.12) rotate(-5deg);
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

.meat-type-icon {
	width: 48px;
	height: 48px;
	color: #ffffff;
	stroke-width: 2.5;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.meat-type-item:hover .meat-type-icon {
	transform: scale(1.15) rotate(5deg);
}

/* Content */
.meat-type-title {
	font-size: 1.35rem;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 12px;
	transition: color 0.3s ease;
}

.meat-type-item:hover .meat-type-title {
	color: #dc3545;
}

.meat-type-description {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #6c757d;
	margin: 0;
	font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1199px) {
	.meat-type-item {
		flex: 0 0 33.333%;
		max-width: 33.333%;
	}
}

@media (max-width: 991px) {
	.home-meat-types-block {
		padding: 70px 0;
	}
	
	.meat-types-main-title {
		font-size: 2rem;
	}
	
	.meat-types-subtitle {
		font-size: 1rem;
	}
	
	.meat-types-title-wrapper {
		margin-bottom: 50px;
	}
	
	.meat-type-item {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 20px 12px;
		margin-bottom: 25px;
	}
	
	.meat-type-icon-wrapper {
		width: 85px;
		height: 85px;
		margin-bottom: 20px;
	}
	
	.meat-type-icon {
		width: 42px;
		height: 42px;
	}
	
	.meat-type-title {
		font-size: 1.2rem;
	}
	
	.meat-type-description {
		font-size: 0.9rem;
	}
}

@media (max-width: 767px) {
	.home-meat-types-block {
		padding: 60px 0;
	}
	
	.meat-types-title-wrapper {
		margin-bottom: 40px;
	}
	
	.meat-types-main-title {
		font-size: 1.75rem;
	}
	
	.meat-types-subtitle {
		font-size: 0.95rem;
		margin-top: 15px;
	}
	
	.meat-type-item {
		flex: 0 0 50%;
		max-width: 50%;
		padding: 18px 10px;
		margin-bottom: 20px;
	}
	
	.meat-type-icon-wrapper {
		width: 75px;
		height: 75px;
		margin-bottom: 18px;
	}
	
	.meat-type-icon {
		width: 38px;
		height: 38px;
	}
	
	.meat-type-title {
		font-size: 1.1rem;
		margin-bottom: 10px;
	}
	
	.meat-type-description {
		font-size: 0.85rem;
		line-height: 1.5;
	}
}

/* RTL Support */
.rtl .meat-types-main-title::after {
	left: auto;
	right: 50%;
	transform: translateX(50%);
}

/* Animation */
@keyframes meatTypeFadeIn {
	from {
		opacity: 0;
		transform: translateY(30px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.meat-type-item {
	animation: meatTypeFadeIn 0.6s ease-out backwards;
}

.meat-type-item:nth-child(1) {
	animation-delay: 0.1s;
}

.meat-type-item:nth-child(2) {
	animation-delay: 0.15s;
}

.meat-type-item:nth-child(3) {
	animation-delay: 0.2s;
}

.meat-type-item:nth-child(4) {
	animation-delay: 0.25s;
}

.meat-type-item:nth-child(5) {
	animation-delay: 0.3s;
}

.meat-type-item:nth-child(6) {
	animation-delay: 0.35s;
}

