/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.product-description{
    width:100% !important;
}
#loading-overlay {
  position: fixed;
    top: 50%;
    left: 50%;

  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loader_main {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #c00;
 border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.popcontainer{
        display: flex;
    justify-content: center;
}
.innerConteiner{
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    grid-gap: 30px; 
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    .subcategory-image h3{
        color:black;
        word-break: break-word;
        padding-left: 10px;
    }
    
    .subcategory-image{
      
        background: white;
        border: 1px solid #ededed;
        border-radius: 5px;
        margin: 2px;
        box-shadow: 2px 2px 2rem 0px rgba(0, 0, 0, .2);
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    } 
    .subcategory-image:hover{
            scale: 1.04;
    }
}
.featured-products[data-type="popcat"]{
    background: linear-gradient(90deg, #7b0404, #cc0000, #e43333, #cc0000, #7b0404);
    padding: 60px 0;
    .h2{
        color:white;    
        font-weight: 700;
        font-size: xxx-large;
        margin: 0px;
        padding-bottom: 50px;
    }
}
@media (max-width: 991px) {
.innerConteiner{
	display: flex !important;
	overflow-x: auto;
        flex-wrap: nowrap;
	width:90%;
	justify-content: flex-start;
a{min-width:150px;}
}
}
