/*
Theme Name: Tevily Child
Theme URI: https://gaviaspreview.com/wp/tevily/
Author URI: https://themeforest.net/user/gavias
Author: Gaviasthemes Team
Description: Child theme for the Tevily theme.
Template: tevily
*/
b {
  font-weight: 500 !important;
}
.gallery-filters {
  text-align: center;
  margin-bottom: 20px;
}
.gallery-filters .filter-btn {
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 8px 16px;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  border-radius: 20px;
}
.gallery-filters .filter-btn.active {
  background: #155e5e;
  color: white;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item img {
  width: 100%;
  border-radius: 12px;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.gallery-item {
  width: calc(33.333% - 16px);
}

/* Fix slide tràn, bị lệch trái */
.swiper-container {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}

.swiper-slide {
  flex-shrink: 0;
}
.hide-on-scroll {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

/* Header cố định */
#mainHeader,
.header-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 0.3s ease;
}


