/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme/
Template: betheme
Author: Muffin group
Author URI: https://muffingroup.com/
Description: The biggest WordPress Theme ever
Version: 28.1.11.1763038595
Updated: 2025-11-13 13:56:35

*/
/* CARTE MENU */ 

.scroll-wrapper {
  overflow-x: auto;
  padding: 2rem 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-container {
  display: flex;
  gap: 1.5rem;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
}

.menu-card {
  scroll-snap-align: start;
  width: 250px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  flex: 0 0 auto;
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.image-container {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.fancy-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 40px;
  display: block;
}

.menu-info {
  padding: 20px 15px 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
}

.menu-info .title {
  font-size: 1.1em;
  color: #7B3F3F;
  font-weight: bold;
  margin-bottom: 10px;
}

.menu-info p {
  font-size: 0.9em;
  color: #444;
  margin-bottom: auto;
  line-height: 1.4;
}

.menu-info .price {
  display: inline-block;
  background: #7B3F3F;
  color: white;
  padding: 12px;
  border-radius: 50%;
  font-size: 0.85em;
  width: 50px;
  height: 50px;
  line-height: 26px;
  text-align: center;
  margin: 15px auto 0;
}

