/**
 * Frontend styles for MISC Latest latest-product
 * 
 * @package MISC_Latest_latest-product
 */

/* The styles are handled by Tailwind CSS classes */
/* Additional custom styles if needed */

.misc-latest-product {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.misc-latest-product-image {
	perspective: 2700px;
	perspective-origin: center center;
}

.misc-latest-product-image img {
	max-width: 100%;
	height: auto;
	transform: perspective(2700px) rotateY(-35deg);
	transform-style: preserve-3d;
	transition: transform 0.3s ease;
	display: block;
	margin-left: -10%;
}

.misc-latest-product-title {
	font-size: 2em;
	font-weight: 900;
	line-height: 1.2;
	font-family: var(--font-sans);
	text-align: left;
	text-decoration: none;
}

.misc-latest-product-description {
	font-size: 1.5em;
	font-weight: 300;
	line-height: 1.2;
	font-family: var(--font-sans);
	text-align: left;
	text-decoration: none;
}
/* Price with discount styles */
.misc-latest-product-price {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;

}

.misc-latest-product-price del {
	text-decoration: line-through;
	opacity: 0.6;
	font-size: 1.2em;
	color: #6b7280;
	font-weight: 400;
	margin-top: 1rem;
}

.misc-latest-product-price ins {
	text-decoration: none;
	font-size: 1.5em;
	font-weight: 900;
	color: var(--color-secondary, #A6BF86);
	margin-bottom: 1rem;
	margin-top: -5px;
}

.misc-latest-product-price .woocommerce-Price-amount {
	color: var(--color-secondary, #A6BF86);
	margin-bottom: 1rem;
	margin-top: 1rem;
	font-size: 1.5em;
}

/* When there's a sale, show both prices */
.misc-latest-product-price del + ins {
	margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 578px) {
	.misc-latest-product-title{
		font-size: 1.5em;
	}
	.misc-latest-product-description{
		font-size: 1.2em;
	}
	.misc-latest-product-price{
		font-size: 1.2em;
	}
	.misc-latest-product-price ins{
		font-size: 1.2em;
	}
	.misc-latest-product-price .woocommerce-Price-amount {
		font-size: 1.2em;
	}
	.misc-latest-product-image img{
		margin-left: 0;
	}
	
}
@media (max-width: 420px) {
	.misc-latest-product-title{
		font-size: 1em;
	}
	.misc-latest-product-description{
		font-size: 1em;
	}
	.misc-latest-product-price{
		font-size: 1.05em;
	}
	.misc-latest-product-price ins{
		font-size: 1.05em;
	}
	.misc-latest-product-price .woocommerce-Price-amount {
		font-size: 1.05em;
	}
	.misc-latest-product-price del{
		font-size: .9em;
	}
	
}
