/* menu  Document */

    
        .price{
            display: none;
        }
        
        .home-3 .s-menu .menu-content .block-text .title{
                color: #000000 !important;
                margin-bottom: 40px;
        }
		/* === GENERAL STYLE === */
.s-menu {
  padding: 50px 0;
  font-family: "Barlow", sans-serif;
  color: #222;
}

.s-menu .title {
  font-size: 2rem;
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #3c2f2f;
}

.s-menu .menu-section {
  margin-bottom: 40px;
  border-bottom: 1px dashed #ccc;
  padding-bottom: 40px;
}

.s-menu .menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.s-menu .menu-item {
  border-left: 4px solid #304789;
  padding-left: 15px;
  transition: all 0.2s ease-in-out;
}

.s-menu .menu-item:hover {
  background-color: #faf7f2;
  border-left-color: #304789;
}

 .s-menu .menu-item .name {
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  color: #333;
}

.s-menu .menu-item .desc {
  font-size: 0.95rem;
  color: #666;
  margin-top: 5px;
  line-height: 1.4;
}

/* Optional italic for description emphasis */
.menu-item .desc em {
  color: #444;
  font-style: italic;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .menu-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .s-menu .title {
    font-size: 1.6rem;
  }
}