.clear-attribute-filter {
    display: inline-block;
    margin-top: 8px;
    background: #e74c3c;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
}
.products-loading {
    position: relative;
    opacity: 0.4;
    pointer-events: none;
}

.products-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
}

.products-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #ccc;
    border-top: 4px solid #d54e21;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
