* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  --brand: #9b3a5d;
  --bg: #f6f7f2;
  --text: #333;
  --card: #ffffff;
  --muted: #777;
  --radius: 20px;
}


    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background-color: #eff0eb;
    }

    /* Phone frame */
    .phone {
      width: 100%;
    height: auto;
    border-radius: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    }

    /* Header */
    .header {
      background: var(--brand);
      color: #fff;
      padding: 10px;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0px;
      line-height: 0;
    }

    /* Content */
    .content {
      padding: 20px;
      overflow-y: auto;
      margin-bottom: 70px;
    }

    h1, h2 {
      margin: 0 0 8px;
    }

    p {
      font-size: 16px;
      color: #393939;
      line-height: 1.3;
      padding: 10px 20px 20px;
      margin: 0;
    }

    /* Cards */
    .card {
      background: var(--card);
      border-radius: var(--radius);
      padding: 0px;
      margin-bottom: 16px;
      box-shadow: 0 10px 20px rgba(0,0,0,.08);
      position: relative;
    }
    
    
    .card-home{
      border-radius: 15px;
      padding: 0px;
      margin-bottom: 0px;
      height: auto;
      float: left;
      position: relative;
      width: 100%;
    }
    .card-home img{
      width: 100%;
      border-radius: 16px;
      margin-bottom: 0px;
    }

    .card img {
      width: 100%;
      border-radius: 16px 16px 0 0;
      margin-bottom: 0px;
    }

    .card-home-title {
      font-weight: bold;
      margin-bottom: 0px;
      position: absolute;
      top: 20px;
      text-transform: uppercase;
      left: 20px;
      font-size: 20px;
      width: 150px;
      line-height: 20px;
      color: #fff;
    }
    .card-home-p{
      position: absolute;
      top: 75px;
      left: 20px;
      padding: 0;
      max-width: 200px;
      color: #ffffff73;
      font-size: 16px;
    }

    .card-title {
        font-weight: bold;
        margin-bottom: 0px;
        position: absolute;
        top: 30px;
        text-transform: uppercase;
        left: 30px;
        font-size: 26px;
        width: 150px;
        line-height: 25px;
        color: #fff;
    }
    .item-title {
      font-weight: 600;
      margin-bottom: 0px;
      position: relative;
      text-transform: capitalize;
      font-size: 14px;
      line-height: 1.2;
      color: #3a4112;
      min-height: 30px;
    }

    .cta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
    }

    .btn {
      background: #ffffff69;
      border: none;
      border-radius: 999px;
      padding: 6px 15px;
      font-weight: 600;
      cursor: pointer;
      position: absolute;
      top: 140px;
      left: 30px;
      color: #fff;
      font-size: 35px;
      line-height: 6px;
      text-decoration: unset;
    }
    
    .btn.home {
        top: unset;
      bottom: 25px;
      left: 20px;
    }

    /* Menu grid */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .menu-item {
      background: var(--card);
      border-radius: var(--radius);
      padding: 12px 15px;
      text-align: center;
      /* box-shadow: 0 8px 16px rgba(0,0,0,.02); */
      position: relative;
      margin-top: 55px;
    }

    .menu-item img {
      width: 100%;
      border-radius: 14px;
      margin-top: -60px;
    }

    .contact-grid .menu-item{
      margin-top: 65px;
      padding: 20px 20px 30px 20px;
    }
    .contact-grid .menu-item img {
      margin-top: -75px;
    }
    .contact-grid .menu-item .para_items{
      font-size: 12px;
      color: var(--muted);
      line-height: 1.3;
      padding: 0px 0px;
      margin: 0;
      text-align: center;
      min-height: unset;
      padding-bottom: 20px;
    }
    .contact-grid .menu-item .item-title {
      min-height: 18px;
      padding-bottom: 10px;
    }
    .map_btn{
      background-color: #9b3a5d;
      padding: 7px 20px;
      color: #fff;
      border-radius: 20px;
      outline: none;
      border: none;
      font-size: 14px;
        text-decoration: none;
    }
    .order-links{
      width: 100%;
      float: left;
      padding-bottom: 10px;
    }
    .order-links .link{
      background-color: #fff;
      width: 100%;
      float: left;
      border-radius: 15px;
      padding: 10px;
      margin-bottom: 15px;
    }
    .order-links .link img{
      width: 70px;
      border-radius: 10px;
      float: left;
    }
    h3.head-contact{
      text-align: center;
      margin-bottom: 0px;
      color: #9b3a5d;
      font-weight: 500;
    }

    .price {
      font-size: 13px;
      color: var(--muted);
    }

    /* Bottom nav */
    .nav {
      background: #fff;
      border-top: 1px solid #eee;
      display: flex;
      justify-content: space-around;
      padding: 10px 0;
      font-size: 12px;
      position: fixed;
      bottom: 0;
      width: 100%;
    }

    .nav a {
      color: var(--muted);
    }

    .nav .active {
      color: var(--brand);
      font-weight: 600;
      
    }
    .nav a{
      text-align: center;
    }
    .nav a img{
      height: 30px;
      width: 100%;
    }
    .nav a h5{
      outline: none;
      text-decoration: none;
      position: relative;
      float: left;
      width: 100%;
      text-align: center;
    }
    .nav .active h5{
    color: #9b3a5d;
    }
    .header img{
      width: auto;
      height: 40px;
    }
    h5{
      margin: 0;
    }

    .para_items{
      font-size: 10px;
      color: var(--muted);
      line-height: 1;
      padding: 10px 2px;
      margin: 0;
      text-align: left;
      min-height: 100px;
    }
    .price .regular{
      width: 40px;
      text-align: left;
      float: left;
      padding-bottom: 10px;
    }
    .price .large{
      width: 40px;
      text-align: left;
      float: left;
      padding-left: 10px;
      padding-bottom: 10px;
    }

    .price .regular .text, .price .large .text{
      font-size: 10px;
    }
    .price .regular .amount, .price .large .amount{
      line-height: 1;
    font-weight: 600;
    color: #000;
    }


/* ABOUT CARD */
.bl_bobalive_about_card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  margin: 0;
      position: relative;
    float: left;
    padding-bottom: 10px;
}

.bl_bobalive_card_img img {
  width: 100%;
  border-radius: 14px;
}

.bl_bobalive_title {
  color: #b13b6a;
  margin: 0px;
  line-height: 1;
  font-size: 20px;
  padding-bottom: 5px;
}

.bl_bobalive_desc {
  font-size: 11px;
  color: #555;
  padding: 0;
}

/* BUTTON */
.bl_bobalive_btn {
  margin-top: 10px;
  background: #b13b6a;
  color: #fff;
  border: none;
  padding: 7px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 12px;
  transition: 0.3s;
}

.bl_bobalive_btn:hover {
  background: #922c56;
}

/* OVERLAY */
.bl_bobalive_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 99;
}

/* MODAL */
.bl_bobalive_modal {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: end;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  transition: 0.3s;
  bottom: 20px;
}

.bl_bobalive_modal_content {
  background: #fff;
  width: 90%;
  max-width: 420px;
  padding: 25px 0 0;
  border-radius: 22px;
  text-align: center;
  position: relative;
  animation: blModalPop 0.4s ease;
}

@keyframes blModalPop {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.bl_bobalive_modal_img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 0px;
  margin-top: -100px;
}

.bl_bobalive_modal h2 {
  color: #b13b6a;
  margin-bottom: 0px;
}

.bl_bobalive_modal p {
  font-size: 14px;
  color: #555;
  padding: 15px;
}

/* CLOSE BUTTON */
.bl_bobalive_close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  cursor: pointer;
  color: #999;
}

.bl_bobalive_close:hover {
  color: #000;
}

/* ACTIVE STATES */
.bl_bobalive_overlay.active,
.bl_bobalive_modal.active {
  opacity: 1;
  visibility: visible;
}

.video-wrapper {
    width: 100%;
    float: left;
    position: relative;
    overflow: hidden;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-overlay h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.card.offers{
    position: relative;
    background: unset;
    height: 160px;
}
.card.offers img{
    border-radius: 16px;
}
.card.offers .card-title{
    color: #a53861;
}
.card.offers a{
    background: #a53861;
    padding: 15px;
    color: #fff;
    font-size: 16px;
    line-height: 6px;
    text-decoration: unset;
    font-weight: 400;
}

.contact-icon-btn{
  background-color: #ffffff;
    padding: 10px;
    color: #fff;
    border-radius: 10px;
    outline: none;
    border: none;
    width: 50px;
    height: 46px;
    text-decoration: none;
    position: relative;
    float: left;
    margin-right: 15px;
    box-shadow: 0 8px 16px rgb(0 0 0 / 9%);
    border: 1px solid #dddddd;
}
.contact-icon-btn img{
 border-radius: 0 !important;
    margin-top: 0px !important;
}

.contact-icon-order-btn {
    background-color: #ffffff;
    padding: 0px;
    color: #fff;
    border-radius: 10px;
    outline: none;
    width: 66px;
    height: 46px;
    text-decoration: none;
    position: relative;
    float: left;
    margin-right: 15px;
    box-shadow: 0 8px 16px rgb(0 0 0 / 9%);
    border: 1px solid #dddddd;
}
.contact-icon-order-btn img{
 border-radius: 10px !important;
    margin-top: 0px !important;
}

.contact-grid .menu-item.comingsoon {
    margin-top: 65px;
    padding: 20px 20px 30px 20px;
}
.our-story{
  max-height: 400px;
  overflow-y: auto;
  margin-bottom: 20px;
}
.contact_buttons{
    display:flex;
    justify-content: center;
}


.contact-email-box{
    display:flex;
    align-items:center;
    background:#ffffff;
    padding:22px 30px;
    border-radius:12px;
    max-width:420px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    /*border-left:6px solid #e63946;*/
    transition:0.3s ease;
    font-family: "Segoe UI", sans-serif;
        margin-top: 20px;
}

.contact-email-box:hover{
    transform: translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.email-icon{
    font-size:42px;
    margin-right:18px;
    color:#e63946;
}

.email-content h3{
    margin: 0;
    font-size: 16px;
    color: #222;
    letter-spacing: 0.5px;
    font-weight: 400;
    line-height: 1;
}

.email-content a{
    display:block;
    font-size:20px;
    font-weight:600;
    margin:6px 0;
    color:#9b3a5d;
    text-decoration:none;
}

.email-content a:hover{
    text-decoration:underline;
}

.email-content p{
    margin:0;
    font-size:13px;
    color:#777;
        padding: 0px;
}
/* Desktop */
@media (min-width: 768px) {
    .video-wrapper {
        height: 450px;
    }
  }
@media screen and (max-width: 400px) {

}
    