 
    
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: var(--z-dropdown);
  padding-top: 5rem;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-menu {
  margin-bottom: 2rem;
}

.mobile-nav-menu>li {
  border-bottom: 1px solid var(--color-white);
}

.mobile-nav-menu>li>a,
.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 1.25rem 0;
  font-weight: 500;
}

.mobile-dropdown-toggle {
  justify-content: space-between;
  width: 100%;
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  transition: transform var(--transition-normal);
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-dropdown-menu a {
  display: block;
  padding: 0.75rem 0;
  color: var(--color-black);
}

.mobile-actions {
  margin-top: 2rem;
}

.mobile-action-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mobile-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: var(--color-yellow);
  transition: background-color var(--transition-normal);
}

.mobile-btn:hover {
  background-color: var(--color-yellow);
}

.mobile-btn i {
  font-size: 1.25rem;
  color: var(--color-gold);
}

.mobile-search {
  margin-top: 1.5rem;
}

.search-box {
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border-radius: var(--radius-md);
  background-color: var(--color-yellow);
}

.search-box i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-black);
}

    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background-color: #f5f5f5;
    }
    .gallery {
        margin-top: 150px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 15px;
      padding: 20px;
    }
    .gallery img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .gallery img:hover {
      transform: scale(1.05);
    }
    /* Modal styles */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.8);
      justify-content: center;
      align-items: center;
      transition: opacity 0.3s ease;
    }
    .modal.active {
      display: flex;
    }
    .modal-content {
      max-width: 90%;
      max-height: 90%;
      border-radius: 8px;
      box-shadow: 0 0 10px #000;
      position: relative;
    }
    .modal-content img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: #fff;
      border: none;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      cursor: pointer;
      font-size: 18px;
    }
    @media(max-width: 600px) {
      .close-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
      }
    }
  