/* overlay hidden above image until hover */
.recommended-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  background: #cecece7a;
  padding: 0.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  pointer-events: none;

  /* 
    position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  transition: opacity 0.3s ease-in-out; */
}

.menu-btn {
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1.05rem;
  color: #ffffff;
  background: linear-gradient(135deg, #00b4db, #0083b0);
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  min-width: 200px;
  letter-spacing: 0.5px;
}

.menu-btn:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #4f6ad4, #1a7df1);
  box-shadow: 0 8px 24px rgba(90, 90, 90, 0.341);
}

.btn-wrapper {
  margin: 0 auto;
  padding: 20px;
}

.global-recommended-menu-overlay {
  display: flex;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.25); */
  /* position: absolute; */
  z-index: 999;
  position: absolute;
  inset: 0;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  transition: opacity 0.8s ease-in-out;
  /* height: 100%; */
  flex-wrap: nowrap;
  padding: 10px;
  height: 602px;
}

/* reveal overlay on hover of the parent column */
.elementor-widget-container:hover .recommended-menu-overlay {
  transform: translateY(0);
  pointer-events: auto;
}

/* style your 3 buttons */
.recommended-menu-overlay .menu-btn {
  background: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

/* hide all detail blocks by default */
body:not(.elementor-editor-active) .recommended-menu-details .content-block {
  display: none;
  margin-top: 1rem;
}

/* show only the active one */
body:not(.elementor-editor-active) .recommended-menu-details .content-block.active {
  display: block;
}

body:not(.elementor-editor-active) .recommended-menu-active {
  /* position: absolute;     */
}

body:not(.elementor-editor-active) .recommended-menu-active img {
  opacity: 0.1;
}
.recommended-menu-type > div:first-child {
  /* background-color: red; */
  position: absolute;
  top: 0px;
}

/* style the Add-to-cart link/button */
.recommended-menu-details .add-to-cart {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #0073aa;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.custom-product-list h5 {
  padding: 0px;
  margin: 0px;
  font-size: 1.1rem;
}

.custom-product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-product-list li {
  border-bottom: 1px solid #ddd;
  padding: 0.3em 0;
}
.custom-product-list .description {
  font-style: italic;
  margin: 0.5em 0;
}
.custom-product-list .line-total,
.grand-total {
  font-weight: bold;
}
