/* Sarebagh Variation Pots */
.sarebagh-variation-pots {
	margin-top: 22px;
	padding: 18px;
	border: 1px solid #e8e8e8;
	background: #fff;
	clear: both;
	direction: rtl;
}

.sarebagh-variation-pots__title {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.sarebagh-pots-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.sarebagh-pot-card {
	border: 1px solid #e5e5e5;
	background: #fff;
	padding: 10px;
	text-align: center;
	transition: box-shadow .2s ease, transform .2s ease;
}

.sarebagh-pot-card:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,.08);
	transform: translateY(-2px);
}

.sarebagh-pot-card__thumb {
	display: block;
	margin-bottom: 8px;
}

.sarebagh-pot-card__image,
.sarebagh-pot-card img {
	width: 100%;
	height: auto;
	display: block;
}

.sarebagh-pot-card__name {
	display: block;
	min-height: 38px;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #222;
	text-decoration: none;
}

.sarebagh-pot-card__price {
	margin-bottom: 9px;
	font-size: 14px;
	color: #333;
}

.sarebagh-pot-card__button.button {
	width: 100%;
	text-align: center;
	font-size: 13px;
	padding: 8px 10px;
}

@media (max-width: 768px) {
	.sarebagh-pots-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {
	.sarebagh-pots-grid {
		grid-template-columns: 1fr;
	}
}
