/* =====================================================
   RISTORANTE BAMBÙ - COMPONENTS STYLESHEET
   Componenti riutilizzabili per tutte le pagine
   ===================================================== */

/* ==================== CSS VARIABLES ==================== */
:root {
  --bs-primary: rgb(138, 176, 0);
  --bs-primary-dark: rgb(110, 140, 0);
  --bs-primary-light: rgb(160, 200, 30);
  --bs-dark: #131313;
  --bs-gray-dark: #2d2d2d;
  --bs-gray: #6c757d;
  --bs-light: #f8f9fa;
  --bs-white: #ffffff;
  
  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --container-padding: 1.5rem;
  
  /* Transitions */
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== GLOBAL STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--bs-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background-color: var(--bs-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--bs-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--bs-gray-dark);
}

a {
  text-decoration: none;
  transition: var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== UTILITIES ==================== */
.text-primary { color: var(--bs-primary) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.text-lime { color: var(--bs-primary) !important; }

.section-padding {
  padding: var(--section-padding);
}

.bg-dark{
  background-color: var(--bs-dark) !important;
}

/* ==================== NAVIGATION ==================== */
.navbar {
  background-color: rgba(26, 26, 26, 0.87);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: var(--transition-base);
}

.navbar-brand img {
  transition: var(--transition-base);
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-base);
}


.nav-link:hover,
.nav-link.active {
  color: var(--bs-primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

/* ==================== BUTTONS ==================== */
.btn {
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  padding: 0.875rem 2rem;
  border-radius: 0;
  border: none;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-dark {
  background-color: var(--bs-dark);
  color: var(--bs-white);
}

.btn-dark:hover {
  background-color: var(--bs-gray-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-outline-dark {
  border: 2px solid var(--bs-dark);
  color: var(--bs-dark);
  background-color: transparent;
}

.btn-outline-dark:hover {
  background-color: var(--bs-dark);
  color: var(--bs-white);
  transform: translateY(-2px);
}

.btn-light {
  background-color: var(--bs-white);
  color: var(--bs-dark);
}

.btn-light:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 176, 0, 0.3);
}

.btn-outline-light {
  border: 2px solid var(--bs-white);
  color: var(--bs-white);
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: var(--bs-white);
  color: var(--bs-dark);
  transform: translateY(-2px);
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
  height: 100vh;
  min-height: 600px;
  position: relative;
}

.hero-slider2 {
  height: 75vh;
  min-height: 600px;
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bs-white);
}

.hero-subtitle {
  display: inline-block;
  color: var(--bs-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  background-color: rgba(90, 116, 0, 0.671);
  border-left: 3px solid var(--bs-primary);
}

.hero-slider h1 {
  color: var(--bs-white);
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}

.hero-slider .lead {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigation Buttons */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  color: var(--bs-white);
  width: 55px;
  height: 55px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: var(--transition-base);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 1.3rem;
  font-weight: bold;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  background-color: var(--bs-primary);
  transform: scale(1.1);
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination {
  bottom: 30px;
}

.heroSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--bs-white);
  opacity: 0.5;
  transition: var(--transition-base);
}

.heroSwiper .swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
  opacity: 1;
  width: 30px;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slider {
    height: 800px;
  }
  
  .hero-slider2 {
    height: 600px;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
  
  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
  
  .heroSwiper .swiper-button-next::after,
  .heroSwiper .swiper-button-prev::after {
    font-size: 1.1rem;
  }
}

/* ==================== SECTIONS ==================== */
section {
  position: relative;
  overflow: hidden;
}

.section-title {
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--bs-primary);
}

/* ==================== CARDS ==================== */
.feature-card {
  background: var(--bs-white);
  padding: 2rem;
  border-radius: 0;
  transition: var(--transition-base);
  border-left: 3px solid transparent;
  height: 100%;
}

.feature-card:hover {
  border-left-color: var(--bs-primary);
  transform: translateX(10px);
  box-shadow: -5px 5px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}

strong{
  font-weight: 500;
}
/* ==================== IMAGES ==================== */
.img-hover {
  overflow: hidden;
  position: relative;
}

.rounded-custom {
  border-radius: 0 !important;
}

.shadow-custom {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* ==================== FOOTER ==================== */
.footer-modern {
  background: var(--bs-dark) !important;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0 0;
  position: relative;
  overflow: hidden;
}


.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: var(--transition-base);
}

.footer-brand:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.footer-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.footer-title {
  color: var(--bs-white);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  transition: var(--transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  transform: translateY(-3px);
  border-color: var(--bs-primary);
  box-shadow: 0 5px 15px rgba(138, 176, 0, 0.3);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition-base);
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--bs-primary);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--bs-primary);
  padding-left: 8px;
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Hours */
.footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-hours li:last-child {
  border-bottom: none;
}

.footer-hours .day {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  min-width: 80px;
}

.footer-hours .time {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.footer-hours .time.closed {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--bs-primary);
  margin-right: 0.75rem;
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 18px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  line-height: 1.6;
}

.footer-contact a:hover {
  color: var(--bs-primary);
  padding-left: 5px;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  margin: 2rem 0 1.5rem 0;
}

/* Footer Bottom Modern */
.footer-bottom-modern {
  padding: 1.5rem 0 2rem 0;
}

.footer-bottom-modern p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-legal {
  font-size: 0.85rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-base);
}

.footer-legal a:hover {
  color: var(--bs-primary);
}

.footer-legal .separator {
  margin: 0 0.5rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Footer Responsive */
@media (max-width: 991px) {
  .footer-modern {
    padding: 3rem 0 0 0;
  }
  
  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .footer-bottom-modern .row {
    text-align: center !important;
  }
  
  .footer-bottom-modern .col-md-6 {
    text-align: center !important;
  }
  
  .footer-legal {
    margin-top: 0.5rem;
  }
  
  .footer-hours li {
    font-size: 0.85rem;
  }
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 1000;
  transition: var(--transition-base);
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: var(--bs-primary-dark);
  color: var(--bs-white);
}

/* ==================== SWIPER CUSTOMIZATION ==================== */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.swiper-slide:hover img {
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--bs-white);
  background-color: rgba(0, 0, 0, 0.5);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bs-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

.swiper-pagination-bullet {
  background-color: var(--bs-white);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background-color: var(--bs-primary);
  opacity: 1;
}

/* ==================== CONTACT INFO LIST ==================== */
.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--bs-primary);
}

.contact-info a {
  color: var(--bs-dark);
  transition: var(--transition-base);
}

.contact-info a:hover {
  color: var(--bs-primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem;
    margin-top: 1rem;
  }
  
  .nav-link {
    padding: 0.75rem 0 !important;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ==================== ACCESSIBILITY ==================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus states for accessibility */
a:focus,
button:focus,
.btn:focus {
  outline: 2px solid var(--bs-primary);
  outline-offset: 2px;
}

/* ==================== CTA CONTATTI CON IMMAGINE ==================== */
.cta-contact-image {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.cta-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(26, 26, 26, 0.95) 0%, 
    rgba(26, 26, 26, 0.85) 50%,
    rgba(26, 26, 26, 0.75) 100%
  );
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(138, 176, 0, 0.03) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(138, 176, 0, 0.03) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(138, 176, 0, 0.03) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(138, 176, 0, 0.03) 75%);

  z-index: 1;
}

.cta-contact-image .container {
  position: relative;
  z-index: 2;
}

/* Content */
.cta-content-image {
  color: var(--bs-white);
}

.cta-badge-image {
  display: inline-block;
  background-color: var(--bs-primary);
  color: var(--bs-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0% 100%);
}

.cta-title-image {
  color: var(--bs-white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-description-image {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* Info Grid */
.cta-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.info-card-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-left: 3px solid var(--bs-primary);
  transition: var(--transition-base);
}

.info-card-cta:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.info-card-cta i {
  font-size: 1.8rem;
  color: var(--bs-primary);
  min-width: 35px;
}

.info-label-cta {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}

.info-value-cta {
  display: block;
  color: var(--bs-white);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-base);
}

.info-card-cta a.info-value-cta:hover {
  color: var(--bs-primary);
}

/* CTA Card */
.cta-card-image {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 3rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cta-card-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, var(--bs-primary-light) 100%);
}

.cta-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(138, 176, 0, 0.3);
}

.cta-card-icon i {
  font-size: 2rem;
  color: var(--bs-white);

  }

   /* Category Nav Sticky */
    .cat-nav {
      position: sticky;
      top: 79px;
      z-index: 1020;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      padding: 0.1rem 0;
    }

    .cat-nav a {
      white-space: nowrap;
      font-weight: 500;
      padding: 0.4rem 1rem;
      display: inline-block;
      color: rgba(0, 0, 0, 0.7);
      transition: var(--transition-base);
      border-bottom: 2px solid transparent;
    }

    .cat-nav a:hover,
    .cat-nav a.active {
      color: var(--bs-primary);
    }

    /* Menu Items */
    .menu-item {
      padding: 1rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      transition: var(--transition-base);
    }

    .menu-item:hover {
      padding-left: 10px;
    }

    .menu-item:last-child {
      border-bottom: none;
    }

    .menu-price {
      color: var(--bs-primary);
      font-weight: 600;
      font-size: 1.1rem;
    }

    .menu-note {
      font-size: 0.9rem;
      color: var(--bs-gray);
      font-style: italic;
      margin-top: 0.25rem;
    }

    /* Section Scroll Margin */
    section[id] {
      scroll-margin-top: 150px;
    }

     /* Meat Cards */
    .meat-card {
      background: var(--bs-white);
      border-left: 4px solid var(--bs-primary);
      transition: var(--transition-base);
      height: 100%;
      overflow: hidden;
    }

    .meat-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .meat-card-header {
      background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-light) 100%);
      padding: 1.5rem;
    }

    .meat-card-header h3 {
      margin: 0;
      font-size: 1.75rem;
      font-weight: 700;
      color: var(--bs-light);
    }

    .meat-card-body {
      padding: 2rem;
    }

    .meat-spec {
      display: flex;
      justify-content: space-between;
      padding: 0.75rem 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .meat-spec:last-child {
      border-bottom: none;
    }

    .meat-spec-label {
      font-weight: 600;
      color: var(--bs-gray-dark);
    }

    .meat-spec-value {
      color: var(--bs-primary);
      font-weight: 600;
    }

    .price-badge {
      display: inline-block;
      background-color: rgba(138, 176, 0, 0.1);
      border: 2px dashed var(--bs-primary);
      padding: 0.75rem 1.5rem;
      border-radius: 0;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--bs-dark);
      margin: 0.5rem 0;
    }

    .meat-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 0;
    }

    /* Info Boxes */
    .info-box {
      background: var(--bs-white);
      padding: 2rem;
      border-left: 4px solid var(--bs-primary);
      margin-bottom: 2rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    }

    .info-box h4 {
      color: var(--bs-primary);
      margin-bottom: 1rem;
    }

        /* Room Gallery Swiper */
    .room-swiper {
      width: 100%;
      height: 500px;
    }

    .room-swiper .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #f8f9fa;
    }

    .room-swiper .swiper-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .room-swiper .swiper-button-next,
    .room-swiper .swiper-button-prev {
      color: var(--bs-white);
      background-color: rgba(0, 0, 0, 0.5);
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .room-swiper .swiper-button-next::after,
    .room-swiper .swiper-button-prev::after {
      font-size: 1.2rem;
    }

    .room-swiper .swiper-button-next:hover,
    .room-swiper .swiper-button-prev:hover {
      background-color: var(--bs-primary);
    }

    .room-swiper .swiper-pagination-bullet {
      background-color: var(--bs-white);
      opacity: 0.5;
    }

    .room-swiper .swiper-pagination-bullet-active {
      background-color: var(--bs-primary);
      opacity: 1;
    }

    /* Feature Icons */
    .feature-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .feature-icon i {
      font-size: 2rem;
      color: var(--bs-dark);
    }

    /* Feature Cards */
    .feature-box {
      background: var(--bs-white);
      padding: 2.5rem 2rem;
      text-align: start;
      transition: var(--transition-base);
      height: 100%;
      border-left: 4px solid transparent;
      border-left-color: var(--bs-primary);

    }


    @media (max-width: 768px) {
      .room-swiper {
        height: 350px;
      }
    }

        /* Contact Cards */
    .contact-card {
      padding: 2.5rem 2rem;
      background: #fff;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
      transition: var(--transition-base);
      height: 100%;
      border-left: 4px solid var(--bs-primary);
    }


    .contact-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-primary-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      box-shadow: 0 10px 30px rgba(138, 176, 0, 0.3);
    }

    .contact-icon i {
      font-size: 2rem;
      color: var(--bs-white);
    }

    .contact-card h4 {
      font-size: 1.5rem;
      color: var(--bs-dark);
    }

    .contact-card p {
      color: var(--bs-gray);
      margin-bottom: 1rem;
    }

    .contact-link {
      color: var(--bs-dark);
      font-weight: 600;
      font-size: 1.1rem;
      transition: var(--transition-base);
      display: inline-block;
    }

    .contact-link:hover {
      color: var(--bs-primary);
      transform: scale(1.05);
    }

    .opening-hours-compact {
      text-align: left;
      display: inline-block;
    }

    .opening-hours-compact p {
      font-size: 0.95rem;
      margin-bottom: 0.5rem;
    }

    /* Map Container */
    .map-container {
      overflow: hidden;
      border-radius: 0;
    }

    .map-container iframe {
      display: block;
      width: 100%;
    }

    /* Contact Form */
    .contact-form .form-label {
      font-weight: 600;
      color: var(--bs-dark);
      margin-bottom: 0.5rem;
      font-size: 0.95rem;
    }

    .contact-form .form-control {
      border: 2px solid #e0e0e0;
      border-radius: 0;
      padding: 0.875rem 1rem;
      font-size: 1rem;
      transition: var(--transition-base);
    }

    .contact-form .form-control:focus {
      border-color: var(--bs-primary);
      box-shadow: 0 0 0 0.2rem rgba(138, 176, 0, 0.1);
    }

    .contact-form .form-check-input {
      border: 2px solid #e0e0e0;
      border-radius: 0;
      width: 1.25rem;
      height: 1.25rem;
    }

    .contact-form .form-check-input:checked {
      background-color: var(--bs-primary);
      border-color: var(--bs-primary);
    }

    .contact-form .form-check-label {
      margin-left: 0.5rem;
      color: var(--bs-gray);
    }

    .contact-form .form-check-label a {
      color: var(--bs-primary);
      font-weight: 600;
    }

    /* CTA Contact Image Styles (già presenti nell'index) */
    .cta-contact-image {
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
      min-height: 500px;
      display: flex;
      align-items: center;
    }

    .cta-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: 0;
    }

    .cta-background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, 
        rgba(26, 26, 26, 0.95) 0%, 
        rgba(26, 26, 26, 0.85) 50%,
        rgba(26, 26, 26, 0.75) 100%
      );
      z-index: 1;
    }

    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(45deg, rgba(138, 176, 0, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(138, 176, 0, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(138, 176, 0, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(138, 176, 0, 0.03) 75%);
      z-index: 1;
    }

    .cta-contact-image .container {
      position: relative;
      z-index: 2;
    }

    .cta-content-image {
      color: var(--bs-white);
    }

    .cta-title-image {
      color: var(--bs-white);
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
    }

    .cta-description-image {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.1rem;
      line-height: 1.7;
    }

    @media (max-width: 768px) {
      .contact-card {
        padding: 2rem 1.5rem;
      }

      .contact-icon {
        width: 70px;
        height: 70px;
      }

      .contact-icon i {
        font-size: 1.75rem;
      }

      .map-container iframe {
        height: 350px;
      }

      .cta-contact-image {
        padding: 4rem 0;
        min-height: 400px;
      }
    }