/**
 * Shop page styles.
 */

.fyeen-shop-page .shop-sidebar .card {
	z-index: 2;
}

.shop-filters__list {
	max-height: 220px;
	overflow-y: auto;
}

.shop-toolbar .woocommerce-ordering select {
	width: 100%;
}

.shop-view-toggle .btn.active {
	background: var(--fyeen-primary);
	border-color: var(--fyeen-primary);
	color: #fff;
}

/* Product card actions */
.product-card--shop {
	position: relative;
}

.product-card__actions {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.product-card--shop:hover .product-card__actions,
.product-card--shop:focus-within .product-card__actions {
	opacity: 1;
}

@media (max-width: 991.98px) {
	.product-card__actions {
		opacity: 1;
	}
}

.product-card__wishlist.is-active {
	color: #dc3545;
	border-color: #dc3545 !important;
}

.product-card__badge--stock {
	top: auto;
	bottom: 0.5rem;
	left: 0.5rem;
}

/* Grid view (default) */
.fyeen-products-wrap ul.products {
	display: flex;
	flex-wrap: wrap;
}

/* List view */
.fyeen-products-wrap.is-list-view ul.products {
	display: block;
}

.fyeen-products-wrap.is-list-view ul.products > li.product {
	width: 100%;
	max-width: 100%;
	flex: 0 0 100%;
	margin-bottom: 1rem;
}

.fyeen-products-wrap.is-list-view .product-card--shop {
	display: flex;
	flex-direction: row;
	align-items: stretch;
}

.fyeen-products-wrap.is-list-view .product-card__media {
	width: 140px;
	flex-shrink: 0;
}

.fyeen-products-wrap.is-list-view .product-card__media .card-img-top {
	height: 100%;
	min-height: 140px;
	border-radius: 0.375rem 0 0 0.375rem;
}

.fyeen-products-wrap.is-list-view .product-card__body {
	flex: 1;
}

.fyeen-products-wrap.is-list-view .product-card__excerpt {
	display: block !important;
}

.fyeen-products-wrap.is-list-view .product-card__footer {
	width: auto;
	display: flex;
	align-items: center;
	padding-left: 0 !important;
}

.fyeen-products-wrap.is-list-view .product-card__actions {
	flex-direction: row;
	top: 0.75rem;
}

/* Pagination */
.fyeen-shop-pagination .page-numbers {
	display: inline-flex;
	gap: 0.35rem;
	list-style: none;
	padding: 0;
	margin: 0;
	justify-content: center;
	flex-wrap: wrap;
}

.fyeen-shop-pagination .page-numbers li {
	display: inline-block;
}

.fyeen-shop-pagination .page-numbers a,
.fyeen-shop-pagination .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	min-height: 40px;
	padding: 0 0.75rem;
	border-radius: 0.375rem;
	border: 1px solid #dee2e6;
	text-decoration: none;
}

.fyeen-shop-pagination .page-numbers .current {
	background: var(--fyeen-primary);
	border-color: var(--fyeen-primary);
	color: #fff;
}

/* Quick view */
.quick-view-product .single_add_to_cart_button {
	width: 100%;
}
