/* =========================
   PRODUCT FEATURES
========================= */

.tubuy-product-features {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 50px;
	margin-bottom: 50px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 24px;
	overflow: hidden;
}

.tubuy-product-feature-item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 24px;
	background: #ffffff;
	transition: all 0.25s ease;
}

.tubuy-product-feature-item:hover {
	background: #f8fafc;
}

.tubuy-product-feature-item::after {
	content: "";
	position: absolute;
	top: 24px;
	right: 0;
	width: 1px;
	height: calc(100% - 48px);
	background: #e5e7eb;
}

.tubuy-product-feature-item:last-child::after {
	display: none;
}

.tubuy-product-feature-icon {
	width: 52px;
	height: 52px;
	min-width: 52px;
	border-radius: 16px;
	background: rgba(22, 163, 74, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #16a34a;
}

.tubuy-product-feature-icon svg {
	width: 22px;
	height: 22px;
}

.tubuy-product-feature-content {
	flex: 1;
}

.tubuy-product-feature-title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	color: #111827;
	margin-bottom: 6px;
}

.tubuy-product-feature-subtitle {
	font-size: 13px;
	line-height: 1.6;
	color: #6b7280;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

	.tubuy-product-features {
		grid-template-columns: repeat(2, 1fr);
	}

	.tubuy-product-feature-item:nth-child(2)::after {
		display: none;
	}

	.tubuy-product-feature-item::before {
		content: "";
		position: absolute;
		left: 24px;
		right: 24px;
		bottom: 0;
		height: 1px;
		background: #e5e7eb;
	}

	.tubuy-product-feature-item:last-child::before,
	.tubuy-product-feature-item:nth-last-child(2)::before {
		display: none;
	}

}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

	.tubuy-product-features {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 20px;
		margin-bottom: 20px;
		border-radius: 22px;
	}

	.tubuy-product-feature-item {
		padding: 16px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: 12px;
		min-height: 145px;
		border-radius: 0;
	}

	.tubuy-product-feature-item::after {
		display: none;
	}

	.tubuy-product-feature-item:nth-child(odd)::after {
		content: "";
		display: block;
		position: absolute;
		top: 18px;
		right: 0;
		width: 1px;
		height: calc(100% - 36px);
		background: #e5e7eb;
	}

	.tubuy-product-feature-item::before {
		content: "";
		position: absolute;
		left: 16px;
		right: 16px;
		bottom: 0;
		height: 1px;
		background: #e5e7eb;
	}

	.tubuy-product-feature-item:last-child::before,
	.tubuy-product-feature-item:nth-last-child(2)::before {
		display: none;
	}

	.tubuy-product-feature-icon {
		width: 42px;
		height: 42px;
		min-width: 42px;
		border-radius: 13px;
	}

	.tubuy-product-feature-icon svg {
		width: 18px;
		height: 18px;
	}

	.tubuy-product-feature-title {
		font-size: 14px;
		line-height: 1.4;
		margin-bottom: 4px;
	}

	.tubuy-product-feature-subtitle {
		font-size: 12px;
		line-height: 1.5;
		color: #6b7280;
	}

}