.glass-wrapper {
  display: flex;
  gap: 10px;
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  background: transparent;
  transition: background 0.3s ease;
}

/* Add semi-transparent bg when any child is hovered */
.glass-wrapper:hover {
  background: rgba(255, 255, 255, 0.15);
}

.glass-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 300;
  border: none;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.glass-btn:hover {
  background: #36bcd4;
  color: black;
}
.getaquote-btn {
  padding: 15px 25px;
}

/* ---------------------------product category---------------------------------- */
.category-glass {
  overflow-x: auto;
  gap: 5px;
  padding: 10px;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  background: #efefefd9;
  backdrop-filter: blur(10px);
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.category-glass::-webkit-scrollbar {
  display: none;
}

.glass-btn-category {
  flex-shrink: 0;
  white-space: nowrap;
  padding: 10px 20px;
  border-radius: 50px;
  border: none;
  min-width: 120px;
  background: transparent;
  color: black;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease, color 0.3s ease;
}

.glass-btn-category:hover,
.glass-btn-category.active {
  background: #36bcd4;
  color: white;
}

/* ------------------------navbar------------------------------- */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  animation: slideIn 0.3s forwards;
}

@keyframes slideIn {
  from {
    right: -300px;
    opacity: 0;
  }
  to {
    right: 0;
    opacity: 1;
  }
}

.offcanvas-content {
  padding: 20px;
  height: 100%;
  position: relative;
}

.close-icon {
  font-size: 28px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

@media (max-width: 575.98px) {
  .glass-wrapper {
    gap: 6px;
    padding: 4px;
    justify-content: center;
  }

  .glass-btn {
    padding: 8px 12px;
    font-size: 10px;
  }

  .category-glass {
    gap: 4px;
    padding: 6px;
  }

  .glass-btn-category {
    padding: 8px 12px;
    font-size: 11px;
    min-width: 90px;
  }
  .getaquote-btn {
    padding: 13px 17px;
  }
   #media-carousel {
      min-height: unset !important;
      height: 400px !important;
    }
}



