/**
 * Products Styles
 *
 * @package Snehdhara
 */

.snehdhara-products-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	margin: 20px 0;
}

.snehdhara-product-item {
	border: 1px solid #ddd;
	padding: 15px;
	border-radius: 5px;
	background: #fff;
	transition: box-shadow 0.2s;
}

.snehdhara-product-item:hover {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.snehdhara-product-image {
	width: 100%;
	height: 200px;
	padding: 1rem 0;
	overflow: hidden;
	border-radius: 5px;
	margin-bottom: 15px;
	background: #fff7f1;
	border: 1px solid #ffe7dc;
}

.snehdhara-product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.snehdhara-product-content {
	display: flex;
	flex-direction: column;
	gap:0.5rem;
}

.snehdhara-product-item h3 {
	font-size: 18px;
	margin: 0;
}

.snehdhara-product-description {
	font-size: 14px;
	color: #666;
	flex: 1;
}

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

.snehdhara-product-price .snehdhara-sale-price {
	color: var(--wp--preset--color--contrast, #68210f);
	margin-left: 8px;
}

.snehdhara-product-expiry {
	font-size: 12px;
	color: #666;
}

.snehdhara-product-actions {
	margin-top: 15px;
}

.snehdhara-action-buttons {
	display: flex;
	justify-content: center;
}

.snehdhara-add-to-cart-btn {
	width: 100%;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
	text-transform: uppercase;
	background-color: var(--wp--preset--color--base, #ffe7dc);
	color: var(--wp--preset--color--contrast, #68210f);
}

.snehdhara-add-to-cart-btn:hover {
	background-color: var(--wp--preset--color--base, #ffe7dc);
	opacity: 0.9;
}

.snehdhara-quantity-selector {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}

.snehdhara-qty-btn {
	width: 35px;
	height: 35px;
	border: none;
	background-color: #68210f;
	color: #fff;
	cursor: pointer;
	border-radius: 4px;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	padding: 0;
}

.snehdhara-qty-btn:hover:not(:disabled) {
	background: #68210f;
	opacity: 0.9;
}

.snehdhara-qty-btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	background-color: #68210f;
	color: #fff;
}

.snehdhara-qty-input {
	width: 60px;
	min-width: 60px;
	padding: 8px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background: #fff;
	-moz-appearance: textfield;
	flex-shrink: 0;
}

.snehdhara-qty-input::-webkit-outer-spin-button,
.snehdhara-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.snehdhara-cart-message {
	display: block;
	margin-top: 8px;
	font-size: 12px;
	font-weight: 600;
	min-height: 16px;
	text-align: center;
}

@media (max-width: 768px) {
	.snehdhara-products-list {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}
}
