ins{
    text-decoration: none;
}

del{
    opacity:0.6;
}

.item-category-search__price{
    gap: 12px;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.hp{position:absolute;left:-9999px;visibility:hidden;height:0;width:0;}


.fixed-main-image{
	position: fixed;
	z-index: -1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	max-width: 720px;
	width: 100%;
	max-height: 600px;
	height: 100%;
}

.fixed-main-image img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.nav-header__list li a {
	white-space: nowrap;
}

@media (max-width: 1329px) {
	.header__search-btn {
		max-width: 12rem;
	}
}

.item-our-social {
	max-width: 100%;
}

.hero-text span {
	animation: unset !important;
	opacity: 1 !important;
	transform: translate(0) !important;
}

@media (min-width: 992px) {
	.hero {
		min-height: 100vh;
		display: flex;
		align-items: center;
		margin-bottom: 8.25rem;
	}
	.hero__content {
		height: fit-content;
		min-height: 100%;
		padding: 200px 0 !important;
	}
	.hero__image {
		height: 100%;
	}
}

/* Universal Show More Functionality */
.show-more-content {
	max-height: 0;
	overflow: hidden;
	padding-bottom: 0;
	transition: max-height 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}

.show-more-content.expanded {
	max-height: 2000px; /* Adjust based on your content */
	padding-bottom: 2rem; /* Adjust padding as needed */
}

.show-more-btn .arrow {
	transition: transform 0.3s ease-in-out;
}

.show-more-btn[data-expanded="true"] .arrow {
	transform: rotate(180deg);
}

.products-list-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

@media (max-width: 992px) {
	.products-list-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.products-list-grid {
		grid-template-columns: 1fr;
	}
}