/* Sidebar */
.mc-sidebar {
  position: fixed;
  right: -400px;
  top: 0;
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 6px rgba(0,0,0,0.2);
  transition: right 0.3s ease;
  z-index: 9999;
  padding: 20px;
}
.mc-sidebar.active { right: 0; }
.mc-sidebar-header {
  display: flex; justify-content: space-between; align-items: center;
}

.mc-sidebar-header h3{
  font-size: 1.5em !important;
  font-family: var(--e-global-typography-primary-font-family), Sans-serif;
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  line-height: var(--e-global-typography-primary-line-height);
  color: var(--e-global-color-primary);
  }

.mc-close { cursor: pointer; font-size: 20px; }

/* Options */
.mc-options { margin: 20px 0; display: flex; flex-wrap: wrap; gap: 10px; }
.mc-option-btn {
  flex: 1 0 30%; color: #0f0f0f; padding: 10px; border: 1px solid #0f0f0f;
  background: #f8f8f8; cursor: pointer; border-radius: 4px;
}
.mc-option-btn:hover { background: #ffc857; color: #0f0f0f;}


/* Progress */
.mc-progress-wrapper { margin-top: 15px; text-align: center; }
#mc-progress { width: 100%; height: 18px; }

/* Bottom Bar */
.mc-bottom-bar {
  position: fixed; bottom: 0px; left: 0; right: 0;
  background: #202020f3; color: #fff;
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px; transition: bottom 0.3s ease;
  z-index: 9998;

  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
}
.mc-bottom-bar.active { bottom: 0; }
.mc-btn {
  padding: 8px 25px !important; border: none;
  cursor: pointer;
  background-color: transparent;
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  fill: var(--e-global-color-primary);
  color: var(--e-global-color-primary);
  background-image: linear-gradient(220deg, var(--e-global-color-fbcc6ee) 0%, var(--e-global-color-d9eccef) 100%);
}
.mc-btn.hidden { display: none; }

#mc-sidebar-checkout-btn {
  width: 100%;
  margin-top: 15px;
  text-align: center;
}


.mc-qty-control {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 15px !important;
}

.mc-qty-control button {
  background: #333;
  color: #fff;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
}

.mc-qty-control .mc-qty-val {
    min-width: 75px;
    text-align: center;
    font-weight: bold;
    padding: 10px 20px;
    border: solid 1px #3c3c3c;
    box-shadow: inset 0 0 10px 4px #2a2a2a;
    color: #fff;
    border-radius: 5px;
}

.mc-qty-control {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
}

.mc-qty-control button {
  background: #333;
  color: #fff;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
}

.mc-qty-control .mc-qty-val {
  min-width: 22px;
  text-align: center;
  font-weight: bold;
}
.mc-qty-control button{
  width: 100%;
}

/* ---------------- */
.mc-acf-fields.mc-acf-fields {
  display: flex;
  justify-content: center;
  gap: 11px;
  text-align: center;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: var(--e-global-typography-text-font-size);
  font-weight: var(--e-global-typography-text-font-weight);
  color: var(--e-global-color-008da1d);
}

.acf-desc{
  text-align: center;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
  font-size: 13px;
  font-weight: var(--e-global-typography-text-font-weight);
  color: var(--e-global-color-008da1d);
  margin: 10px 0;
}

.mc-qty-control button {
  padding: 12px !important;
  width: 80px !important;
  margin-top: 0px;
  background: #ffc857;
  color: #000;
}
.mc-qty-control button:hover {background: #ffc857;}

.vegans {
    position: absolute;
    padding: 5px;
    border: 3px #fff solid;
    top: 10px;
    right: 10px;
    
}

span.vegans.nonveg {
    background: #f72020; 
    box-shadow: 0 0 0px 2px #f72020;
}
span.vegans.veg {
    background: #07be00; 
    box-shadow: 0 0 0px 2px #07be00;
}

a.woocommerce-LoopProduct-link.woocommerce-loop-product__link {
    pointer-events: none;
}