

 *{
  margin: 0;
padding: 0px;
 }
 .menucaro {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1b1b1b;
  margin: 0;
  padding: 0;
}

.menucaro-wrapper {
  padding: 10px 6%;
  position: relative;
}

.menucaro-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.menucaro-head h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.menucaro-nav {
  display: flex;
  gap: 10px;
}

.menucaro-btn-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.menucaro-btn-arrow:hover {
  background: #e0e0e0;
}
.menucaro-btn-arrow:disabled {
  cursor: default;
  color: #555;
  background: #f5f5f5;
}

/* List */
.menucaro-list {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 12px;
}
.menucaro-list::-webkit-scrollbar {
  display: none;
}

/* Card */
.menucaro-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}
.menucaro-card:hover {
  transform: translateY(-4px);
}
.menucaro-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Info */
.menucaro-info {
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Icons Row */
.menucaro-icons-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fav-icon {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Title + Price */
.menucaro-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menucaro-title-row h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: #222;
}
.menucaro-price {
  font-weight: 600;
  font-size: 15px;
}

/* ✅ Nutrition Row (single line, aligned) */
.menucaro-nutrition {
  display: flex;
  flex-direction: column;
  margin-top: 6px;
}

.nutri-labels,
.nutri-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}

.nutri-labels {
  color: #7c7c7c;
}

.nutri-values {
  font-weight: 600;
}

/* Bottom Row */
.menucaro-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.custom {
  color: #9a9a9a;
  font-size: 13px;
}
.add-btn {
  background: #3c8b90;
  border: none;
  color: white;
  padding: 9px 24px;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.add-btn:hover {
  background: #33767b;
}

/* Progress Bar */
.menucaro-progress {
  width: 120px;
  height: 3px;
  background: #e6e6e6;
  border-radius: 3px;
  margin: 18px auto 0;
  overflow: hidden;
  position: relative;
}
.menucaro-progress-bar {
  width: 0%;
  height: 100%;
  background: #3c8b90;
  transition: width 0.3s;
  border-radius: 3px;
}

@media (max-width: 770px) {
.menucaro-head h2 {
  font-size: 26px;
}
}

@media (max-width: 470px) {
.menucaro-head h2 {
  font-size: 24px;
}
}
@media (max-width: 370px) {
.menucaro-head h2 {
  font-size: 20px;
}
}