@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Open+Sans:wght@400;600;700&display=swap");
:root {
  --primary: #ffbe33;
  --primary-dark: #e69c00;
  --secondary: #222831;
  --accent: #ff6b6b;
  --light: #f8f9fa;
  --text: #0c0c0c;
  --text-light: #dbdbdb;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background-color: #ffffff;
  overflow-x: hidden;
  line-height: 1.7;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.layout_padding2-top {
  padding-top: 75px;
}

.layout_padding2-bottom {
  padding-bottom: 75px;
}

.layout_padding-top {
  padding-top: 90px;
}

.layout_padding-bottom {
  padding-bottom: 90px;
}

h1, h2 {
  font-family: 'Dancing Script', cursive;
  position: relative;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: bold;
  display: inline-block;
}

.heading_container h2 span {
  color: var(--primary);
}

.heading_container h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--primary);
  margin: 15px 0;
  border-radius: 2px;
  transition: width 0.5s ease;
}

.heading_container:hover h2:after {
  width: 120px;
}

.heading_container p {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.1rem;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container.heading_center h2:after {
  margin: 15px auto;
}

a, a:hover, a:focus {
  text-decoration: none;
  transition: var(--transition);
}

.btn, .btn:focus {
  outline: none !important;
  box-shadow: none;
  transition: var(--transition);
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* Header section */
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-box:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(255,190,51,0.25) 0%,
    rgba(255,225,168,0.25) 100%
  );
}


.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 10s ease;
}

.hero_area:hover .bg-box img {
  transform: scale(1.15);
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.header_section {
  padding: 15px 0;
  background: rgba(34,40,49,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-family: 'Dancing Script', cursive;
}

.navbar-brand span {
  font-weight: bold;
  font-size: 2.5rem;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  padding: 8px 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: var(--transition);
  position: relative;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary);
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link:after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link:after {
  width: calc(100% - 30px);
}

.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: #ffffff;
  margin: 0 10px;
}

.custom_nav-container .nav_search-btn:hover {
  color: var(--primary);
}

.user_option {
  display: flex;
  align-items: center;
}

.user_option a {
  margin: 0 10px;
}

.user_option .user_link {
  color: #ffffff;
}

.user_option .user_link:hover {
  color: var(--primary);
}

.user_option .order_online {
  display: inline-block;
  padding: 8px 30px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.user_option .order_online:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 37px;
  height: 42px;
  transition: var(--transition);
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 35px;
  height: 4px;
  background-color: #ffffff;
  margin: 7px 0;
  transition: var(--transition);
  position: relative;
  border-radius: 5px;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  top: -10px;
  border-radius: 5px;
  transition: var(--transition);
}

.food_section .box .options a {
  display: none !important;
}

.custom_nav-container .navbar-toggler span::after {
  top: 10px;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.location_section .heading_container h2 {
  /* eredita il font e stile dei titoli */
}

.slider_overlay,
.slider-overlay,
.slider_section .slider-overlay {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 15px;
  color: #000 !important;
  padding: 30px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}

.slider-overlay .btn1 {
  background-color: var(--secondary);
  color: #fff;
  border-radius: 45px;
  padding: 10px 30px;
  text-transform: uppercase;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.slider-overlay .btn1:hover {
  background-color: var(--primary);
  color: #222;
  transform: translateY(-3px);
}

.location_box {
  background-color: var(--secondary);
  color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.location_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.location_name {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.location_address,
.location_zip {
  font-size: 1rem;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* Slider section */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 45px 0 75px 0;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: #ffffff;
  margin-bottom: 145px;
}

.slider_section .detail-box h1 {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 15px;
  text-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.slider_section .detail-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.slider_section .detail-box a {
  display: inline-block;
  padding: 12px 45px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  margin-top: 10px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.slider_section .detail-box a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

.slider_section .img-box img {
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 0;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
}

.slider_section .carousel-indicators li {
  background-color: #ffffff;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  opacity: 1;
  margin: 0 8px;
  transition: var(--transition);
}

.slider_section .carousel-indicators li.active {
  width: 28px;
  border-radius: 10px;
  background-color: var(--primary);
}

/* Offer section */
.offer_section {
  position: relative;
  padding-top: 45px;
}

.offer_section .box {
  display: flex;
  align-items: center;
  margin-top: 45px;
  border-radius: 15px;
  padding: 25px;
  background-color: var(--secondary);
  color: #ffffff;
  transition: var(--transition);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.offer_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.offer_section .box .img-box {
  width: 175px;
  min-width: 175px;
  height: 175px;
  margin-right: 15px;
  position: relative;
  border-radius: 100%;
  border: 5px solid var(--primary);
  overflow: hidden;
  flex-shrink: 0;
}

.offer_section .box .img-box img {
  width: 100%;
  transition: transform 0.5s ease;
}

.offer_section .box .detail-box h5 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  margin: 0;
}

.offer_section .box .detail-box h6 {
  font-family: 'Dancing Script', cursive;
  margin: 10px 0;
}

.offer_section .box .detail-box h6 span {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary);
}

.offer_section .box .detail-box a {
  display: inline-block;
  padding: 10px 30px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  margin-top: 15px;
  font-weight: 600;
}

.offer_section .box .detail-box a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.offer_section .box .detail-box a svg {
  width: 20px;
  height: auto;
  margin-left: 5px;
  fill: #ffffff;
}

.offer_section .box:hover .img-box img {
  transform: scale(1.1);
}

/* Food section */
.food_section .filters_menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 45px 0 20px 0;
}

.food_section .filters_menu li {
  padding: 10px 30px;
  cursor: pointer;
  border-radius: 45px;
  transition: var(--transition);
  margin: 5px;
  font-weight: 600;
  background: var(--light);
  box-shadow: var(--shadow);
}

.food_section .filters_menu li.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 7px 15px rgba(0,0,0,0.1);
}

.food_section .box {
  position: relative;
  margin-top: 25px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(to bottom, #f1f2f3 25px, var(--secondary) 25px);
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.food_section .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.food_section .box .img-box {
  background: #f1f2f3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 215px;
  border-radius: 0 0 0 45px;
  margin: -1px;
  padding: 25px;
}

.food_section .box .img-box img {
  max-width: 100%;
  max-height: 145px;
  transition: transform 0.5s ease;
}

.food_section .box .detail-box {
  padding: 25px;
}.food_section .box .detail-box h5 {
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffffff; /* Titolo bianco */
}

.food_section .box .detail-box p {
  font-size: 0.95rem;
  opacity: 0.9;
  color: #e0e0e0; /* Descrizione grigio chiaro */
}


.food_section .box .detail-box h6 {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.food_section .box .options {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.food_section .box .options a {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.food_section .box .options a svg {
  width: 18px;
  height: auto;
  fill: #ffffff;
}

.food_section .box:hover .img-box img {
  transform: scale(1.1);
}

.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.food_section .btn-box a {
  display: inline-block;
  padding: 12px 55px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.food_section .btn-box a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}

/* About section */
.about_section {
  background: var(--secondary);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.about_section:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  z-index: 0;
}

.about_section .row {
  align-items: center;
  position: relative;
  z-index: 1;
}

.about_section .img-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.about_section .img-box img {
  width: 100%;
  max-width: 445px;
  position: relative;
  z-index: 2;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.about_section .detail-box p {
  margin-top: 15px;
  font-size: 1.1rem;
}

.about_section .detail-box a {
  display: inline-block;
  padding: 12px 45px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  margin-top: 15px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.about_section .detail-box a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Book section */
.book_section {
  position: relative;
}

.book_section .heading_container {
  margin-bottom: 25px;
}

.book_section .form_container {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.book_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 55px;
  margin-bottom: 25px;
  padding-left: 25px;
  border: 1px solid #ddd;
  outline: none;
  color: var(--text);
  border-radius: 10px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.book_section .form_container .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,190,51,0.2);
}

.book_section .form_container .form-control::placeholder {
  color: #666;
}

.book_section .form_container .nice-select .current {
  font-size: 16px;
}

.book_section .form_container button {
  margin-top: 15px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.book_section .form_container button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.book_section .map_container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.book_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* Client section */
.client_section .heading_container {
  margin-bottom: 30px;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 15px;
  transition: var(--transition);
}

.client_section .box:hover {
  transform: translateY(-5px);
}

.client_section .box .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 115px;
  position: relative;
  margin-top: 30px;
  z-index: 2;
}

.client_section .box .img-box img {
  border-radius: 100%;
  border: 5px solid var(--primary);
  position: relative;
  box-shadow: var(--shadow);
}

.client_section .box .img-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  transform: rotate(45deg) translateX(-50%);
}

.client_section .box .detail-box {
  background-color: var(--secondary);
  color: #ffffff;
  padding: 25px 25px 20px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.client_section .box .detail-box h6 {
  font-weight: 700;
  font-size: 1.3rem;
  margin: 15px 0 5px 0;
}

.client_section .box .detail-box p {
  margin-bottom: 0;
  font-size: 1rem;
  margin-bottom: 10px;
  font-style: italic;
}

.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 45px;
  padding: 0 15px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 55px;
  height: 55px;
  background-color: var(--primary);
  color: #ffffff;
  outline: none;
  font-size: 24px;
  margin: 0 10px;
  border-radius: 100%;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Contact section */
.contact_section .heading_container {
  margin-bottom: 45px;
}

.contact_section .form_container .form-group {
  margin-bottom: 25px;
}

.contact_section .form_container input {
  width: 100%;
  border: none;
  height: 55px;
  padding-left: 25px;
  background-color: transparent;
  border: 1px solid #ddd;
  outline: none;
  color: var(--text);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact_section .form_container input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,190,51,0.2);
}

.contact_section .form_container input::placeholder {
  color: #666;
}

.contact_section .form_container input.message-box {
  height: 150px;
  border-radius: 10px;
  padding-top: 15px;
}

.contact_section .form_container .btn-box {
  display: flex;
  justify-content: center;
}

.contact_section .form_container button {
  margin-top: 10px;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 55px;
  background-color: var(--primary);
  color: #ffffff;
  border-radius: 45px;
  transition: var(--transition);
  border: none;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.contact_section .form_container button:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Footer section */
.footer_section {
  background: linear-gradient(to top, #1A1A2E 0%, var(--secondary) 100%);
  color: #ffffff;
  padding: 100px 0 40px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer_section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon points="0,0 100,100 0,100" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
  z-index: 0;
}

.footer_section > .container {
  position: relative;
  z-index: 1;
}

.footer_section h4 {
  font-size: 2.2rem;
  margin-bottom: 25px;
}

.footer_section h4,
.footer_section .footer-logo {
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Dancing Script', cursive;
}

.footer_section p {
  color: var(--text-light);
}

.footer_section .footer-col {
  margin-bottom: 40px;
}

.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 8px 0;
  color: #ffffff;
  font-size: 1.05rem;
  transition: var(--transition);
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 10px;
  color: var(--primary);
}

.footer_section .footer-logo {
  display: block;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer_section .footer_social {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 15px;
}

.footer_section .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  width: 45px;
  height: 45px;
  border-radius: 100%;
  background-color: #ffffff;
  margin: 0 8px;
  font-size: 20px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.footer_section .footer_social a:hover {
  color: var(--primary);
  transform: translateY(-5px);
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer_section .footer-info p {
  color: rgba(255,255,255,0.7);
  margin: 0;
  font-size: 0.95rem;
}

.footer_section .footer-info p a {
  color: var(--primary);
}

/* Fix immagine panino */
.burger_section .img-box img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

/* Menu card layout */
.menu_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  position: relative;
  z-index: 0;
}

.menu_container .box {
  flex: 0 0 calc(33.333% - 30px);
  background: var(--secondary);
  padding: 20px;
  border-radius: 15px;
  box-sizing: border-box;
  overflow: hidden;
  min-height: 350px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.menu_container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.food_section {
  position: relative;
  overflow: visible;
  z-index: 0;
}

.custom-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--secondary);
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  opacity: 0;
  z-index: 9999;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
  pointer-events: none;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border-left: 4px solid var(--primary);
}

.custom-toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stili per le promozioni */
.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.object-fit-cover {
  object-fit: cover;
  object-position: center;
}

.promo-product-card {
  transition: var(--transition);
}

.promo-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-pulse:hover {
  animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.badge.bg-light {
  background-color: rgba(255,255,255,0.9) !important;
  color: #333 !important;
}

.promo-card .detail-box .price-line {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-card .detail-box .text-muted {
  font-size: 0.95rem;
}

.promo-card .detail-box .fw-bold.text-success {
  font-size: 1.4rem;
  margin-top: 10px;
  color: var(--primary) !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .menu_container .box {
    flex: 0 0 calc(50% - 20px);
  }
  
  .slider_section .detail-box h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .menu_container .box {
    flex: 0 0 100%;
  }
  
  .offer_section .box {
    flex-direction: column;
    text-align: center;
  }
  
  .offer_section .box .img-box {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .custom_nav-container .navbar-nav {
    padding-left: 0;
    background: rgba(34,40,49,0.95);
    border-radius: 10px;
    margin-top: 15px;
    padding: 15px;
  }
  
  .header_section .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.tab-selector {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--light);
  border: none;
  color: var(--secondary);
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 45px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.tab-btn:hover {
  background: var(--primary);
  color: #fff;
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}
/* Modal custom styling */
#eventsModal .modal-content {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  color: #222;
  padding: 20px;
}

#eventsModal .modal-header {
  background: linear-gradient(90deg, #ffbe33, #ff9e02);
  color: #fff;
  border-bottom: none;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 2px 10px rgba(255,158,2,0.6);
}

#eventsModal .modal-body {
  max-height: 300px;
  overflow-y: auto;
  padding: 1rem 0;
}

#eventsModal .card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

#eventsModal .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#eventsModal .card-title {
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #333;
}

#eventsModal .card-text {
  font-size: 1rem;
  color: #555;
}

#eventsModal .text-muted {
  font-style: italic;
  font-size: 0.85rem;
  color: #888;
}

#eventsModal .modal-footer {
  border-top: none;
  padding-top: 0;
}

#eventsModal .btn-secondary {
  background-color: #ff9e02;
  border: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

#eventsModal .btn-secondary:hover {
  background-color: #ffbe33;
  color: #222;
}
#eventsModal .modal-content {
  background: linear-gradient(135deg, #7b4de1, #a278ff);
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 10px 25px rgba(123, 77, 225, 0.7);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#eventsModal .modal-header {
  border-bottom: none;
  justify-content: center;
  padding: 1rem 1.5rem 0 1.5rem;
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  color: #ffe6ff;
  font-weight: 600;
}

#eventsModal .btn-close {
  filter: brightness(150%);
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#eventsModal .btn-close:hover {
  opacity: 1;
}

#eventsModal .modal-body {
  padding: 1rem 2rem 2rem 2rem;
  background: #f4f0ff;
  color: #3a3a3a;
  border-radius: 0 0 15px 15px;
}

#eventsModal .card {
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(123, 77, 225, 0.2);
  cursor: pointer;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1rem;
}

#eventsModal .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(123, 77, 225, 0.35);
}

#eventsModal .card-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #5a2ab1;
}

#eventsModal .card-text {
  font-size: 0.95rem;
  color: #555;
}

#eventsModal .text-muted {
  font-size: 0.8rem;
  color: #888 !important;
}
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.popup-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Contenitore popup */
.popup-container {
  background-color: #fff;
  border-radius: 15px;
  padding: 25px 30px;
  width: 90%;
  max-width: 460px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  font-family: 'Open Sans', sans-serif;
  color: #222831;
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-container {
  transform: translateY(0);
}

/* Titolo */
.popup-content h2 {
  font-family: 'Great Vibes', cursive; /* come il menu */
  font-size: 2rem;
  color: #f6b93b; /* giallo-arancio */
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
}

/* Lista eventi */
.events-list {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Singolo evento */
.event-item {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

.event-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.event-item h3 {
  font-weight: 700;
  color: #222831;
  margin-bottom: 6px;
  font-size: 1.25rem;
}

.event-item p {
  color: #555;
  margin-bottom: 6px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.event-item time {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* Bottone chiusura */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #f6b93b;
  cursor: pointer;
  transition: color 0.2s ease;
  font-weight: 700;
  line-height: 1;
}

.close-btn:hover {
  color: #d18c0f;
}

/* Scrollbar personalizzata per lista eventi */
.events-list::-webkit-scrollbar {
  width: 8px;
}

.events-list::-webkit-scrollbar-thumb {
  background-color: #f6b93b;
  border-radius: 8px;
}

.events-list::-webkit-scrollbar-track {
  background: #f0f0f0;
}

#promoSummary {
  max-width: 400px;
  margin: 1rem auto 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #FFB347, #FFCC33);
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(255, 179, 71, 0.4);
  color: #2b1d00;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  font-weight: 600;
}

#promoSummary p {
  margin: 0.4rem 0;
  font-size: 1.05rem;
  line-height: 1.3;
}

#promoSummary strong {
  font-weight: 700;
  display: inline-block;
  min-width: 160px;
  text-align: right;
  margin-right: 0.8rem;
  font-size: 1.1rem;
}

/* Colori distinti per valori */
#promoSummary .without-discount {
  color: #4b3b00;
  text-decoration: line-through;
  font-weight: 600;
}

#promoSummary .with-discount {
  color: #0a8000;
  font-weight: 700;
  font-size: 1.2rem;
}

#promoSummary .saving {
  color: #c70000;
  font-weight: 700;
  font-size: 1.2rem;
}
.location_box {
  position: relative;
}

.map-container {
  width: 100%;
  max-width: 400px;  /* Limita larghezza massima */
  margin: 0 auto;    /* Centra orizzontalmente */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.map-container iframe {
  width: 100%;
  height: 300px;    /* Altezza fissa ma puoi cambiarla */
  border: 0;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
}
/* ===== Promo: single card list ===== */
.promo-list-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 36px rgba(0,0,0,.12);
  border:1px solid rgba(0,0,0,.06);
  overflow:hidden;
}

.promo-list-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 18px;
  background:linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color:#222; font-weight:900; letter-spacing:.2px;
}

.promo-items{ list-style:none; margin:0; padding:0; }

.promo-item{
  display:grid;
  grid-template-columns: 64px 1fr auto;
  gap:14px;
  align-items:center;
  padding:14px 18px;
  border-top:1px solid rgba(0,0,0,.06);
}
.promo-item:first-child{ border-top:none; }

.promo-thumb{
  width:64px; height:64px; border-radius:12px;
  background:#f1f2f3; display:grid; place-items:center; overflow:hidden;
}
.promo-thumb img{ width:100%; height:100%; object-fit:cover; }

.promo-info h5{
  margin:0 0 2px; font-size:1.05rem; font-weight:800; color:#111;
}
.promo-info .meta{ color:#666; font-weight:600; font-size:.9rem; }

.promo-prices{
  display:flex; align-items:baseline; gap:10px; white-space:nowrap;
}
.promo-prices .old{ color:#9aa0a6; text-decoration:line-through; font-weight:700; }
.promo-prices .badge{
  background:#e63946; color:#fff; font-weight:900; padding:2px 8px;
  border-radius:999px; font-size:.8rem;
}
.promo-prices .new{ color:var(--primary-dark); font-weight:900; font-size:1.15rem; }

/* footer totals dentro la card */
.promo-totals{
  padding:14px 18px 16px;
  background:linear-gradient(135deg, #ffbe331a, #ff9e021a);
  border-top:1px dashed rgba(0,0,0,.14);
}
.promo-totals .line{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:12px; margin:.35rem 0; font-weight:700;
}
.promo-totals .without-discount{ color:#5c4d12; text-decoration:line-through; }
.promo-totals .with-discount{ color:#0c8a00; font-size:1.15rem; font-weight:900; }
.promo-totals .saving{ color:#c70000; font-size:1.1rem; font-weight:900; }

/* responsive */
@media (max-width:560px){
  .promo-item{ grid-template-columns: 56px 1fr; }
  .promo-prices{ grid-column:1 / -1; justify-self:end; }
}
/* Hero area: centratura verticale e orizzontale */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0; /* tolgo padding che lo spingeva in basso */
  min-height: 100vh; /* altezza pieno schermo */
}

/* Box centrale */
.slider_section .detail-box {
  background: rgba(0, 0, 0, 0.55);
  padding: 50px 40px;
  border-radius: 20px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  max-width: 650px;
}

/* Titolo */
.slider_section .detail-box h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Dancing Script', cursive;
  color: #ffbe33;
  text-shadow: 0 3px 6px rgba(0,0,0,0.4);
}

/* Slogan */
.slider_section .detail-box p {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: #f1f1f1;
  font-weight: 500;
}

/* Bottoni centrati */
.slider_section .detail-box .btn1 {
  display: inline-block;
  padding: 12px 40px;
  margin: 8px;
  border-radius: 45px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.slider_section .detail-box .btn1:first-child {
  background-color: var(--primary);
  color: #222;
}

.slider_section .detail-box .btn1:last-child {
  background-color: #28a745;
  color: #fff;
}

.slider_section .detail-box .btn1:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}
/* l’hero occupa lo schermo e tiene il bg sotto */
.hero_area { position: relative; min-height: 75vh; }
@media (max-width: 576px){ .hero_area { min-height: 65vh; } }

.bg-box{
  position:absolute; inset:0; z-index:-1; overflow:hidden;
}

/* forza l’altezza a 100% in owl */
.bg-box .owl-stage-outer,
.bg-box .owl-stage,
.bg-box .owl-item,
.bg-box .item { height:100%; }

/* immagine adattiva che copre tutto lo schermo */
.bg-box .item img{
  width:100%; height:100%;
  object-fit:cover;       /* riempie senza deformare */
  object-position:center; /* centrata */
  display:block;
}

/* opzionale: rimuovi dots/frecce nello sfondo */
#heroCarousel .owl-dots, #heroCarousel .owl-nav { display:none !important; }
