/* GRID LAYOUT */
.ars-grid-2606645d {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	transition: opacity 0.3s ease;
}

.ars-grid-2606645d.loading {
	opacity: 0.4;
	pointer-events: none;
}

/* CARD LAYOUT - FLEXBOX MAGIC */
.ars-item-2606645d {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	overflow: hidden;
}

/* IMAGE */
.ars-item-image-2606645d {
	flex-shrink: 0;
	margin-bottom: 15px;
}

.ars-item-image-2606645d img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.ars-item-image-2606645d a {
	display: block;
}

/* TITLE */
.ars-item-title-2606645d {
	flex-grow: 0;
	margin-bottom: 10px;
	font-weight: bold;
}

.ars-item-title-2606645d a {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* PRICE */
.ars-item-price-2606645d {
	flex-grow: 0;
	margin-bottom: 15px;
	font-weight: 600;
	color: #333;
}
.ars-item-price-2606645d del {
	opacity: 0.5;
	font-weight: 400;
	margin-right: 5px;
}
.ars-item-price-2606645d ins {
	text-decoration: none;
}

/* BUTTON WRAPPER - PUSHES TO BOTTOM */
.ars-item-btn-wrap-2606645d {
	margin-top: auto; /* This forces the button to the bottom */
}

/* BUTTON */
.ars-item-btn-2606645d {
	display: inline-block;
	padding: 10px 20px;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	text-align: center;
}

.ars-item-btn-2606645d:hover {
	background-color: #333;
	color: #fff;
}

/* FALLBACK */
.ars-placeholder-img-2606645d {
	width: 100%;
	height: 200px;
	background: #f5f5f5;
}

/* PAGINATION STYLINGS */
.ars-pagination-container-2606645d {
	width: 100%;
	clear: both;
}

.ars-pagination-2606645d {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.ars-pag-btn-2606645d {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.ars-pag-btn-2606645d.disabled {
	opacity: 0.4;
	cursor: not-allowed;
	pointer-events: none;
}

.ars-pag-dots-2606645d {
	display: inline-flex;
	padding: 8px 10px;
	color: #888;
}

/* RESPONSIVE PADDING REDUCTION FOR MOBILE */
@media (max-width: 767px) {
	.ars-pagination-2606645d {
		gap: 5px !important;
	}
	.ars-pag-btn-2606645d {
		padding: 6px 12px !important;
		font-size: 13px !important;
	}
}
