.key-product-card-product {
	background: #ffffff;
	border-radius: 20px;
	margin-bottom: 25px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	height: 100%;
}
.key-product-card-product:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.key-product-card-img-top {
	position: relative;
	overflow: hidden;
	margin: 0;
	aspect-ratio: 3/4;
}
.key-product-hover-zoom-in {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.key-product-hover-zoom-in img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}
.key-product-card-product:hover .key-product-hover-zoom-in img {
	transform: scale(1.1);
}
.key-product-product-flash {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 2;
}
.key-product-product-flash span {
	display: inline-block;
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 30px;
	letter-spacing: 1px;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
	animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}
.key-product-card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-grow: 1;
	background: linear-gradient(180deg, #ffffff 0%, #faf9f8 100%);
}
.key-product-text-body-emphasis {
	display: flex;
	align-items: center;
	gap: 12px;
}
.key-product-text-body-emphasis del {
	color: #a0a0a0;
	font-size: 14px;
	font-weight: 400;
	text-decoration: line-through;
	opacity: 0.8;
	letter-spacing: 1px;
}
.key-product-text-body-emphasis ins {
	color: #2d3436;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 1px;
	text-decoration: none;
	background: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.key-product-product-title {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
	letter-spacing: 1px;
}
.key-product-product-title a {
	color: #2d3436;
	text-decoration: none;
	transition: color 0.3s ease;
	display: block;
}
.key-product-product-title a:hover {
	color: #e17055;
}
.key-product-card-img-top::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.key-product-card-product:hover .key-product-card-img-top::after {
	opacity: 1;
}
.key-quick-view-btn {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%) translateY(20px);
	background: #ffffff;
	color: #2d3436;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 30px;
	opacity: 0;
	transition: all 0.4s ease;
	z-index: 3;
	box-shadow: 0 4px 20px rgba(0,0,0,0.15);
	white-space: nowrap;
	border: none;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	letter-spacing: 1px;
}
.key-quick-view-btn:hover {
	background: #2d3436;
	color: #ffffff;
	text-decoration:none;
}
/* Right Arrow Icon Animation */
.key-quick-view-icon {
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s ease, margin-left 0.3s ease;
  font-size: 13px;
}
.key-product-card-product:hover .key-quick-view-btn {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}
.key-buy-now-section {
	margin-top: 0px;
	padding-top: 18px;
	border-top: 1px solid #e8e8e8;
}
.key-buy-now-text {
	font-size: 14px;
	color: #666;
	font-weight: 500;
	margin-bottom: 12px;
	letter-spacing: 1px;
}
.key-platform-buttons {
	display: flex;
	gap: 10px;
	justify-content: space-between;
}
.key-platform-btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 8px;
	border: 1.5px solid #e8e8e8;
	border-radius: 8px;
	background: #fafafa;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}
.key-platform-btn:hover {
	border-color: #2d3436;
	background: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.key-platform-btn img {
	height: 18px;
	width: auto;
	object-fit: contain;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
	.key-product-card-product {
		margin-bottom: 20px;
	}

	.key-product-card-body {
		padding: 20px;
		gap: 10px;
	}

	.key-product-product-title {
		font-size: 16px;
	}

	.key-product-text-body-emphasis ins {
		font-size: 18px;
	}

	.key-product-text-body-emphasis del {
		font-size: 13px;
	}

	.key-product-product-flash span {
		font-size: 12px;
		padding: 5px 12px;
	}

	.key-quick-view-btn {
		font-size: 13px;
		padding: 10px 20px;
	}
}

/* Small Tablets & Large Mobile (576px - 767px) */
@media (max-width: 767px) {
	.key-product-card-product {
		margin-bottom: 18px;
		border-radius: 16px;
	}

	.key-product-card-product:hover {
		transform: translateY(-8px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	}

	.key-product-card-body {
		padding: 16px;
		gap: 8px;
	}

	.key-product-product-title {
		font-size: 15px;
		font-weight: 600;
		line-height: 1.3;
	}

	.key-product-product-title a {
		color: #2d3436;
	}

	.key-product-text-body-emphasis {
		gap: 8px;
	}

	.key-product-text-body-emphasis ins {
		font-size: 16px;
	}

	.key-product-text-body-emphasis del {
		font-size: 12px;
	}

	.key-product-product-flash {
		top: 12px;
		left: 12px;
	}

	.key-product-product-flash span {
		font-size: 11px;
		padding: 4px 10px;
		border-radius: 20px;
	}

	.key-quick-view-btn {
		font-size: 12px;
		padding: 9px 18px;
		bottom: 15px;
		border-radius: 25px;
	}

	.key-quick-view-icon {
		margin-left: 6px;
		font-size: 12px;
	}

	.key-buy-now-section {
		padding-top: 14px;
		margin-top: 0;
	}

	.key-buy-now-text {
		font-size: 12px;
		margin-bottom: 10px;
	}

	.key-platform-buttons {
		gap: 8px;
	}

	.key-platform-btn {
		padding: 8px 6px;
		border-radius: 6px;
	}

	.key-platform-btn img {
		height: 16px;
	}

	.key-product-hover-zoom-in img {
		width: 100%;
		height: 100%;
	}
}

/* Mobile Devices (max-width 575px) */
@media (max-width: 575px) {
	.key-product-card-product {
		margin-bottom: 16px;
		border-radius: 14px;
		box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	}

	.key-product-card-product:hover {
		transform: translateY(-6px);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
	}

	.key-product-card-img-top {
		aspect-ratio: 3/4;
	}

	.key-product-card-body {
		padding: 14px;
		gap: 6px;
	}

	.key-product-product-title {
		font-size: 18px;
		font-weight: 600;
		line-height: 1.3;
		margin: 0;
	}

	.key-product-product-title a {
		color: #2d3436;
		display: block;
	}

	.key-product-text-body-emphasis {
		gap: 6px;
		flex-wrap: wrap;
	}

	.key-product-text-body-emphasis ins {
		font-size: 17px;
		font-weight: 700;
	}

	.key-product-text-body-emphasis del {
		font-size: 13px;
		opacity: 0.7;
	}

	.key-product-product-flash {
		top: 10px;
		left: 10px;
	}

	.key-product-product-flash span {
		font-size: 10px;
		padding: 3px 8px;
		border-radius: 15px;
		letter-spacing: 0px;
	}

	@keyframes pulse-badge {
		0%, 100% {
			transform: scale(1);
		}
		50% {
			transform: scale(1.03);
		}
	}

	.key-quick-view-btn {
		font-size: 11px;
		padding: 8px 16px;
		bottom: 12px;
		border-radius: 20px;
	}

	.key-quick-view-icon {
		margin-left: 4px;
		font-size: 11px;
	}

	.key-product-card-product:hover .key-quick-view-btn {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}

	.key-buy-now-section {
		padding-top: 12px;
		margin-top: 0;
		border-top: 1px solid #efefef;
	}

	.key-buy-now-text {
		font-size: 15px;
		margin-bottom: 8px;
		letter-spacing: 1px;
	}

	.key-platform-buttons {
		gap: 6px;
	}

	.key-platform-btn {
		padding: 10px 5px;
		border: 1px solid #efefef;
		border-radius: 5px;
	}

	.key-platform-btn:hover {
		border-color: #2d3436;
	}

	.key-platform-btn img {
		height: 20px;
	}
}

/* Extra Small Mobile (max-width 360px) */
@media (max-width: 360px) {
	.key-product-card-product {
		margin-bottom: 14px;
		border-radius: 12px;
	}

	.key-product-card-body {
		padding: 12px;
		gap: 5px;
	}

	.key-product-product-title {
		font-size: 12px;
	}

	.key-product-text-body-emphasis ins {
		font-size: 13px;
	}

	.key-product-text-body-emphasis del {
		font-size: 10px;
	}

	.key-product-product-flash span {
		font-size: 9px;
		padding: 2px 6px;
	}

	.key-platform-btn {
		padding: 6px 4px;
	}

	.key-platform-btn img {
		height: 13px;
	}

	.key-buy-now-text {
		font-size: 10px;
	}

	.key-quick-view-btn {
		font-size: 10px;
		padding: 7px 14px;
	}
}

/* ============================================
   CERTIFICATIONS & STANDARDS SECTION
   ============================================ */

.certifications-section {
	padding: 60px 20px;
	background: linear-gradient(135deg, #faf9f8 0%, #fbfbfb 100%);
	margin-top: 50px;
}

.certifications-container {
	max-width: 1400px;
	margin: 0 auto;
}

.certifications-header {
	text-align: center;
	margin-bottom: 70px;
}

.certifications-title {
	font-size: 42px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 15px;
	letter-spacing: 1px;
}

.certifications-subtitle {
	font-size: 16px;
	color: #64748b;
	font-weight: 400;
	letter-spacing: 1px;
}

.certifications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	row-gap: 50px;
}

.certification-item {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.certification-item:hover {
	transform: translateY(-10px);
}

.cert-badge-wrapper {
	width: 120px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cert-badge-wrapper img {
	width: 100%;
}

.certification-item:hover .cert-badge-wrapper {
	border-color: #856d37;
	box-shadow: 0 8px 30px rgba(133, 109, 55, 0.2);
	transform: scale(1.05);
}

.cert-label {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 12px;
	letter-spacing: 1px;
	line-height: 1.3;
}

.cert-description {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
	letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.certifications-title {
		font-size: 36px;
	}

	.certifications-grid {
		grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
		gap: 35px;
		row-gap: 45px;
	}

	.cert-badge-wrapper {
		width: 110px;
		height: 110px;
	}

	.cert-badge-wrapper img {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.certifications-section {
		padding: 60px 15px;
	}

	.certifications-header {
		margin-bottom: 50px;
	}

	.certifications-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.certifications-subtitle {
		font-size: 14px;
	}

	.certifications-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 30px;
		row-gap: 40px;
	}

	.cert-badge-wrapper {
		width: 100px;
		height: 100px;
	}

	.cert-badge-wrapper img {
		width: 100%;
	}

	.cert-label {
		font-size: 14px;
	}

	.cert-description {
		font-size: 12px;
	}
}

@media (max-width: 480px) {
	.certifications-section {
		padding: 50px 12px;
	}

	.certifications-header {
		margin-bottom: 40px;
	}

	.certifications-title {
		font-size: 25px;
		margin-bottom: 10px;
	}

	.certifications-subtitle {
		font-size: 14px;
	}

	.certifications-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		row-gap: 30px;
	}

	.cert-badge-wrapper {
		width: 85px;
		height: 85px;
	}

	.cert-badge-wrapper img {
		width: 100%;
	}

	.cert-label {
		font-size: 18px;
		margin-bottom: 8px;
	}

	.cert-description {
		font-size: 16px;
		line-height: 1.5;
	}
}