/**
 * ShopGlut Sale Products Shortcode Styles
 *
 * @package Shortcodeglut
 * @subpackage ShortcodeShowcase
 */

.shortcodeglut-sale-products-wrapper {
	margin: 20px 0;
}

.shortcodeglut-sale-products-content {
	min-height: 100px;
	display: flex;
	justify-content: center;
}

.shortcodeglut-sale-products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0 -10px;
}

.shortcodeglut-sale-product-item {
	padding: 0 10px;
	margin-bottom: 20px;
}

/* Product Card */
.shortcodeglut-sale-product-card {
	position: relative;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

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

/* Sale Badge */
.shortcodeglut-sale-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #dc2626;
	color: #ffffff;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	z-index: 2;
}

/* Product Image */
.shortcodeglut-sale-product-image {
	position: relative;
	overflow: hidden;
	background: #f9fafb;
}

.shortcodeglut-sale-product-image img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}

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

/* Product Details */
.shortcodeglut-sale-product-details {
	padding: 15px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

/* Product Title */
.shortcodeglut-sale-product-title {
	margin: 0 0 8px 0;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.3;
}

.shortcodeglut-sale-product-title a {
	color: #111827;
	text-decoration: none;
	transition: color 0.2s ease;
}

.shortcodeglut-sale-product-title a:hover {
	color: #3b82f6;
}

/* Product Rating */
.shortcodeglut-sale-product-rating {
	margin-bottom: 8px;
	font-size: 14px;
}

.shortcodeglut-sale-product-rating .star-rating {
	overflow: hidden;
	position: relative;
	height: 1em;
	line-height: 1;
	font-size: 1em;
	color: #d1d5db;
}

.shortcodeglut-sale-product-rating .star-rating:before {
	content: '\73\73\73\73\73';
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	letter-spacing: 2px;
}

.shortcodeglut-sale-product-rating .star-rating span {
	overflow: hidden;
	float: left;
	top: 0;
	left: 0;
	position: absolute;
	padding-top: 1.5em;
}

/* Product Price */
.shortcodeglut-sale-product-price {
	margin-bottom: 10px;
	font-size: 16px;
}

.shortcodeglut-sale-product-price del {
	color: #9ca3af;
	font-size: 14px;
	margin-right: 5px;
}

.shortcodeglut-sale-product-price ins {
	color: #059669;
	text-decoration: none;
	font-weight: 600;
}

.shortcodeglut-sale-product-price .amount {
	color: #059669;
	font-weight: 600;
}

/* Product Button */
.shortcodeglut-sale-product-button {
	margin-top: auto;
}

.shortcodeglut-sale-product-button .button,
.shortcodeglut-sale-product-button .added_to_cart {
	display: inline-block;
	padding: 8px 16px;
	background: #2271b1;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
	width: 100%;
	box-sizing: border-box;
}

.shortcodeglut-sale-product-button .button:hover,
.shortcodeglut-sale-product-button .added_to_cart:hover {
	background: #1a5c8f;
}

.shortcodeglut-sale-product-button .add_to_cart_button.loading {
	opacity: 0.6;
}

.shortcodeglut-sale-product-button .add_to_cart_button.added {
	display: none;
}

/* Pagination */
.shortcodeglut-sale-products-pagination {
	margin-top: 30px;
	text-align: center;
}

.shortcodeglut-sale-products-pagination .page-numbers {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-flex;
	gap: 5px;
}

.shortcodeglut-sale-products-pagination .page-numbers li {
	display: inline-block;
}

.shortcodeglut-sale-products-pagination .page-numbers a,
.shortcodeglut-sale-products-pagination .page-numbers span {
	display: inline-block;
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	line-height: 34px;
	border: 1px solid #d1d5db;
	background: #ffffff;
	color: #374151;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.shortcodeglut-sale-products-pagination .page-numbers a:hover {
	background: #f9fafb;
	border-color: #9ca3af;
}

.shortcodeglut-sale-products-pagination .page-numbers .current {
	background: #2271b1;
	color: #ffffff;
	border-color: #2271b1;
}

/* Responsive */
@media (max-width: 768px) {
	.shortcodeglut-sale-products {
		margin: 0 -5px;
	}

	.shortcodeglut-sale-product-item {
		padding: 0 5px;
		margin-bottom: 10px;
	}

	.shortcodeglut-sale-product-details {
		padding: 10px;
	}

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

	.shortcodeglut-sale-product-price {
		font-size: 14px;
	}
}

@media (max-width: 480px) {
	.shortcodeglut-sale-products .col-6 {
		flex: 0 0 100%;
		max-width: 100%;
	}
}
