/* 
                _  __    .  ___   ___  __     __
                | |/ /   .  |   \ | __| \ \   / /
                | ' <    .  | |) || _|   \ \_/ / 
                |_|\_\   .  |___/ |___|   \___/  K . D E V */

                
  .category-main {
    /* padding: 1vh 3vh; */
  }
  .category-main h2 {
    font-size: 2.2vh;
    margin-bottom: 2vh;
    margin-top: 2vh;
  
  }
  .category {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25vh, 1fr));
    gap: 2vh;
    margin-top: 2vh;
  }
  
  .category-card {
    backdrop-filter: blur(0.5vh);
    -webkit-backdrop-filter: blur(0.3vh); 
    border: 0.1vh solid #ffd0006e; 
    border-radius: 1vh;
    overflow: hidden;
    box-shadow: 0 0.6vh 1.2vh rgba(0,0,0,0.4);
    transition: transform 0.3s ease;
  }
  .category-card:hover {
    transform: translateY(-0.5vh);
  }
  
  .category-card img {
    width: 100%;
    height: 100%;
    display: block;
  }
  

  .yellow-icon {
    color: #ffd000c7; 
    font-size: 3vh;
  }
  
.category-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  .category-card:hover .category-info {
    visibility: visible;
    opacity: 1;
  }
  
  .category-name {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 2vh;
    font-weight: bold;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    /* padding: 100%; */
    height: 30vh;
    width: 30vh;
    border-radius: 5px;
  }