.product-archive-section {
    padding: 60px 15px;
	direction:rtl;
}

.product-archive-row {
    display: flex;
    flex-wrap: nowrap;
}

.product-archive-sub-col {
    width: 280px;
    display: flex;
    justify-content: flex-end;
    padding-bottom: 20px;
}

.product-archive-sub-col a,
.product-archive-sub-col a img {
    display: block;
    height: 30px;
	max-width: 120px;
    object-fit: contain;

}

.product-archive-main-col {
	direction: ltr;
    width: calc(100% - 280px);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
	position:relative;

}

.product-archive-main-col a {
    display: block;
    text-decoration: none;
    width: calc((100% - 40px) / 3);
}

.product-archive-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    margin-bottom: 20px;
    padding-top: 73.5%;
}

.product-archive-title {
    color: #19222E;
    font-family: 'Simona', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.product-archive-load-more {
    padding-top: 30px;
    display: flex;
    justify-content: center;
	position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;

}

.product-archive-load-more button {
	display: flex;
	align-items: center;
	justify-content: center;

    text-align: center;
    width: 84px;
    height: 32px;
    border: 1px solid #19222E;
    line-height: 30px;
    border-radius: 24px;
    padding: 0 12px 0 29px;
    position: relative;
    text-decoration: none;
    color: #19222E;
    font-family: 'Simona', sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    background-size: 14px 9px;
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 1.00022L7 7.72217L1 1.00022' stroke='%2319222E' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
}

.product-archive-load-more button.button-loading
{
	transition:none;
	padding: 0 12px;
	background:none;
}

.product-archive-load-more button:hover,
.product-archive-load-more button:focus,
.product-archive-load-more button:active {
    background-color: #ffffff;
    color: #19222E;
    outline: none;
}

.loading-animation {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top: 2px solid var(--e-global-color-061ee8f );
    border-radius: 50%;
    animation: spin 1s linear infinite; /* Apply the spinning animation */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



@media screen and (max-width: 1200px) {
    .product-archive-sub-col {
        order: -1;
        width: 100%;
    }

    .product-archive-main-col {
        width: 100%;
    }

    .product-archive-row {
        flex-wrap: wrap;
    }

    .product-archive-title {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .product-archive-section {
		padding: 30px 0px;
		padding-bottom:80px;
    }

    .product-archive-sub-col {
        padding-bottom: 15px;
		justify-content: center;

    }

    .product-archive-main-col {
        gap: 15px;
    }

    .product-archive-main-col a {
		width: calc((100% - 15px) / 2);
    }
}