/*
Theme Name: Motta Child Theme
Theme URI: http://motta.uix.store/
Author: UIX Themes
Author URI: http://uix.store
Description: A fully responsive Premium WordPress Theme with a pixel perfect design and extensive functionality
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: motta
Tags: one-column, two-columns, right-sidebar, custom-colors, custom-menu, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready
Template: motta
*/

.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.custom-product-card {
/*   width: 250px; */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
}

.custom-product-image {
  position: relative;
  background: #eeeeee;
  padding: 15px;
  text-align: center;
}

.custom-product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.custom-product-title {
  position: absolute;
  top: 15px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  letter-spacing: 1px;
}

.custom-product-footer {
  background-color: #81d742;
  padding: 10px;
  text-align: center;
}

.custom-product-name {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

/* nav.main-navigation.primary-navigation .sub-menu {
  width: 100% !important ;
  position: fixed !important ;
  top: 80px !important ;
  max-width: 1150px !important ;
  left: auto !important ;
  display: flex !important ;
  padding: 0 15px !important ;
  flex-flow: wrap !important ;
}
 
nav.main-navigation.primary-navigation .sub-menu li{
	width: 33.33% !important;
} */
 /* Submenu in two columns */
nav.main-navigation.primary-navigation .sub-menu {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  gap: 10px 30px;
  padding: 15px 20px;
  background: #fff;
  min-width: 400px;
  z-index: 999;
  position: absolute;
}

/* Make sure sub-menu items are stacked nicely */
nav.main-navigation.primary-navigation .sub-menu > li {
      margin: 0;
    /* padding: 5px 0; */
    padding-top: unset !important;
}

/* Optional: Ensure submenu appears on hover */
/* nav.main-navigation.primary-navigation :hover > .sub-menu {
  display: grid !important;
} */

/* Container styling */
.viho-flavour-collections {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Individual flavour box/card */
.viho-flavour-box {
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Hover effect */
.viho-flavour-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Flavour image */
.viho-flavour-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Flavour name */
.viho-flavour-box h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 20px 0 10px;
    color: #333;
}

/* Visit button */
/*.viho-flavour-box a.button {*/
/*    display: inline-block;*/
/*    margin-bottom: 20px;*/
/*    padding: 10px 18px;*/
/*    background-color: #000;*/
/*    color: #fff;*/
/*    border-radius: 30px;*/
/*    text-decoration: none;*/
/*    font-size: 14px;*/
/*    transition: background-color 0.3s ease;*/
/*}*/

/*.viho-flavour-box a.button:hover {*/
/*    background-color: #444;*/
/*}*/

