/* === KOOK Products Panel Styles === */
.kook-products {
  color: #fff;
  font-family: inherit;
}

.kook-products__title {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-align: center;
}

.kook-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.kook-products__quadrant {
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.kook-products__quadrant:last-child {
  border-right: none;
}

.kook-products__heading {
  text-transform: uppercase;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  color: #fff;
  
    justify-content: space-between;
}

/* Optional external-link arrow */
.kook-products__heading::after {
  content: "↗";
  font-size: 1.5rem;
  margin-left: 0.25rem;
}

/* Image at top */
.kook-products__media {
  margin-bottom: 1rem;
}

.kook-products__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Links */
.kook-products__nav {
  margin: 0;
}

.kook-products__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kook-products__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0;
}

.kook-products__list li:last-child {
  border-bottom: none;
}

.kook-products__list a {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.kook-products__list a:hover,
.kook-products__list a:focus {
  color: #9fe870;
  /* matches Novacorr green */
}

/* Empty state */
.kook-products__empty {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.grid-container {
  position: fixed;
  top: 125px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  left: 0;
  background: #162E46;
  width: 100%;
  padding: 0rem 2rem;
}

ul.gw-mm__content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  gap: 4rem;
}


.wp-block-getwid-megamenu-item.gw-mm-item,
.menu-item {
  list-style: none;
}

.menu-item{  
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.kook-products-panel-quadrant-menu-list li:first-child {
  display: none;
}

#producttab::after{
  content: "▼";
  font-size: 0.8rem;
  margin-left: 0.25rem;
  position: relative;}

#producttab:hover {
  .grid-container {
    display: block;
  }
}

#about-us {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
#about-link{
  &:after{
    content: "▼";
    font-size: 0.8rem;
    margin-left: 0.25rem;
    position: relative;
  }
}

.products__image{
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.5rem;
}

#menu-novacustom, #menu-novamed, #menu-novacare, #menu-novaprotect {
    display: grid;
    justify-items: start;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;    
    padding-inline-start: 0px;
}
#menu-novacare, #menu-novaprotect {
    grid-template-columns: 1fr;
}


/* Only inside the products panel */
.kook-products__inner>br,
.kook-products__title br {
  display: none !important;
  content: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .kook-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .kook-products__grid {
    grid-template-columns: 1fr;
  }
}