/* Section background */
.cl-menu-section {
    padding: 64px 0;
    background: #fbfbfd; /* soft premium white */
  }
  
  /* Top bar */
  .cl-menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  }
  
  .cl-menu-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: #0b66ff;
    color: #fff;
    box-shadow: 0 10px 24px rgba(11, 102, 255, 0.18);
  }
  
  /* Language toggle cluster */
  .cl-lang {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .cl-lang-label {
    font-weight: 600;
    color: rgba(15, 23, 42, 0.55);
    font-size: 14px;
    user-select: none;
  }
  
  .cl-lang-label.is-active {
    color: rgba(15, 23, 42, 0.92);
  }
  
  /* Toggle switch */
  .cl-switch {
    position: relative;
    width: 44px;
    height: 24px;
    display: inline-block;
  }
  
  .cl-switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .cl-slider {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.15);
    border-radius: 999px;
    transition: 0.2s ease;
  }
  
  .cl-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.2s ease;
    box-shadow: 0 6px 16px rgba(0,0,0,0.16);
  }
  
  .cl-switch input:checked + .cl-slider {
    background: #0b66ff;
  }
  
  .cl-switch input:checked + .cl-slider:before {
    transform: translateX(20px);
  }
  
  /* Menu card */
  .cl-menu-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    overflow: hidden;
  }
  
  .cl-menu-card-inner {
    padding: 22px;
    background: linear-gradient(to bottom, #ffffff, #fbfbfd);
  }
  
  /* Image fits nicely (no cut off) */
  .cl-menu-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  }
  
  /* Actions */
  .cl-menu-actions {
    display: flex;
    justify-content: center;
    padding: 18px 18px 24px;
    background: #fff;
  }
  
  .cl-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: #0b66ff;
    box-shadow: 0 14px 34px rgba(11, 102, 255, 0.22);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }
  
  .cl-menu-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 46px rgba(11, 102, 255, 0.28);
  }
  
  /* Mobile */
  @media (max-width: 576px) {
    .cl-menu-bar {
      flex-direction: column;
      align-items: flex-start;
    }
    .cl-menu-card-inner {
      padding: 14px;
    }
  }
  