/* Kiwi Product Display Grid Widget Styles */

.kiwi-product-grid-wrapper {
	width: 100%;
}

/* Section Title */
.kiwi-product-grid-title {
	margin: 0 0 30px 0;
	font-size: 28px;
	font-weight: 600;
	color: #000000;
	text-align: center;
	letter-spacing: 0.5px;
}

/* Products Grid Container */
.kiwi-product-grid-items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
}

/* Product Card */
.product-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 15px;
	background-color: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
	transition: all 0.3s ease;
}

.product-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-3px);
}

/* Product Image Container */
.product-image {
	position: relative;
	width: 100%;
	margin-bottom: 15px;
	overflow: hidden;
	border-radius: 4px;
	background-color: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Aspect ratio containers */
.product-image[data-aspect="square"] {
	aspect-ratio: 1 / 1;
}

.product-image[data-aspect="portrait"] {
	aspect-ratio: 3 / 4;
}

.product-image[data-aspect="landscape"] {
	aspect-ratio: 4 / 3;
}

.product-image[data-aspect="wide"] {
	aspect-ratio: 16 / 9;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 4px;
	transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.05);
}

/* Product Title */
.product-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	line-height: 1.4;
	flex-grow: 1;
}

.product-title a {
	text-decoration: none;
	color: #000000;
	transition: color 0.3s ease;
}

.product-title a:hover {
	color: #666666;
}

/* Product Rating */
.product-rating {
	margin: 5px 0 10px 0;
	font-size: 14px;
}

.product-rating .star-rating {
	display: inline-block;
}

/* Product Price */
.product-price {
	margin: 0 0 15px 0;
	font-size: 18px;
	font-weight: 700;
	color: #333333;
}

.product-price del {
	color: #999999;
	text-decoration: line-through;
	margin-right: 5px;
	font-weight: normal;
}

.product-price ins {
	text-decoration: none;
	color: #d32f2f;
}

/* Add to Cart Button */
.product-add-to-cart {
	margin-top: auto;
}

.product-add-to-cart .button {
	display: inline-block;
	width: 100%;
	padding: 10px;
	background-color: #333333;
	color: #ffffff;
	text-decoration: none;
	border: none;
	border-radius: 4px;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.product-add-to-cart .button:hover {
	background-color: #000000;
	transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.kiwi-product-grid-items {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.product-title {
		font-size: 14px;
	}

	.product-price {
		font-size: 16px;
	}
}

/* Responsive - Mobile */
@media (max-width: 576px) {
	.kiwi-product-grid-title {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.kiwi-product-grid-items {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.product-card {
		padding: 12px;
	}

	.product-title {
		font-size: 13px;
		margin-bottom: 8px;
	}

	.product-price {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.product-image {
		margin-bottom: 10px;
	}

	.product-add-to-cart .button {
		padding: 8px;
		font-size: 13px;
	}
}
