    /* ####################################################
    :: Template Name: Essence - Fashion Ecommerce Template
    :: Author: Colorlib
    :: Author URL: https://colorlib.com
    :: Description: Essence is smart & elegant fashion e-commerce Template. It's suitable for all e-commerce business platform.
    :: Version: 1.0.0
    :: Created: April 27, 2018
    :: Last Updated: May 2, 2018
    #################################################### */

    /* ---------------------------------------
    ##### - PLACE YOUR CUSTOM CSS HERE - #####
    --------------------------------------- */
/*Overlay products loading*/
.single-products-catagory {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.single-products-catagory.loaded {
  opacity: 1;
  transform: translateY(0);
}

/*Pagination controls*/
.pagination-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.btn-page {
  background-color: #f2059f;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.btn-page:hover:not(:disabled) {
  background-color: #ba036d;
  transform: translateY(-2px);
}

.btn-page:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
