/*
Theme Name: Hydrogen
Theme URI: http://gantry.org
Author: RocketTheme, LLC
Author URI: http://rockettheme.com
Description: Default Gantry 5 theme. Provides a simple, clean and fast design to get you started on developing your own theme or setting up a quick new site
Version: 5.2.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* Hide grid by default */
.mv-category-grid {
  display: none;
}

@media (max-width: 768px) {
  /* Show grid only on mobile */
  .mv-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    margin: 30px 0;
  }

  .mv-category-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      height: 150px; 
  }

  .mv-category-item img {
      width: 115px;
      height: 115px;
      object-fit: contain;
      display: block;
      margin-bottom: 5px;
      background-color: #fff;
  }

  .mv-category-title {
      display: block;
      font-weight: bold;
      font-size: 14px;
      text-align: center;
      line-height: 1.2;
      margin-bottom: 1.2;
  }
  #g-navigation {
      display: none;
  }
  .g-block.size-27 {
      display: none;
  }
}


/* Hide ReCaptcha */
.grecaptcha-badge {
  display: none !important;
}