/*﻿﻿.container {*/
/*  padding: 2px 16px;*/
/*}*/

/*.subcategory-shadow{*/
/*box-shadow: 0 1rem 2rem rgba(0,0,0,.25)!important ; */
/*}*/

/*.subcatnav {*/
/*  overflow: hidden;*/
/*  background-color: #3ca23fd4;*/
/*}*/

/*.subcatnav a {*/
/*  float: right;*/
/*  display: block;*/
/*  color: #f2f2f2;*/
/*  text-align: center;*/
/*  padding: 14px 16px;*/
/*  text-decoration: none;*/
/*  font-size: 17px;*/
/*  height:60px;*/
/*}*/

/*.subcatnav a:hover {*/
/*  background-color: #155724;*/
/*  color: black;*/
/*}*/

/*.subcatnav a.active {*/
/*  color: #e9e9ba;*/
/*  font-size: 18px;*/
/*    font-weight: bold;*/
  
  
/*}*/

/*.subcatnav .subcat-icon {*/
/*  display: none;*/
/*}*/

/*@media screen and (max-width: 600px) {*/
/*  .subcatnav a {display: none;}*/
/*  .subcatnav a.subcat-icon {*/
/*    float: right;*/
/*    display: block; */
/*    padding-top:22px;  */
/*  }*/
/*  .subcatnav a.active{*/
/*  display:none;*/
/*  }*/
/*}*/

/*@media screen and (max-width: 600px) {*/
/*  .subcatnav.responsive {position: relative;}*/
/*  .subcatnav.responsive .subcat-icon {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*  }*/
/*  .subcatnav.responsive a {*/
/*    float: none;*/
/*    display: block;*/
/*    text-align: center;*/
/*  }*/
/*}*/

.grid {
  display: grid;
  grid-gap: 10px;
  height: auto;
}


#lightbox {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .8);
  display: none;
}

#lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
  top:45px;
}

#lightbox img {
  max-width: 90%;
  max-height: 80%;
  padding: 4px;
  background-color: black;
  border: 2px solid white;
}

/* New navbar css code */ 

.subcategory-shadow {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25) !important;
}

.subcatnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #b5e48c, #99d98c);
  border-radius: 8px;
  padding: 10px 15px;
  margin: 0 auto 30px;
  max-width: 100%;
  text-align: center;
  transition: background 0.3s ease;
  position: relative;
}

.subcatnav a {
  display: block;
  color: #232323;
  text-align: center;
  padding: 10px 16px;
  margin: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.subcatnav a:hover,
.subcatnav a.active {
  background-color: #74c69d;
  color: white;
  font-weight: bold;
}

/* Hamburger icon */
.subcatnav .subcat-icon {
  display: none;
  font-size: 1.4rem;
  padding: 10px;
  color: #232323;
  cursor: pointer;
  margin-left: auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Mobile styles */
@media screen and (max-width: 600px) {
  .subcatnav {
    flex-direction: column;
    align-items: stretch;
  }

  .subcatnav a {
    display: none;
    width: 100%;
  }

  .subcatnav .subcat-icon {
    display: block;
  }

  .subcatnav.responsive a {
    display: block;
  }
}
