:root {
    --red-wine: radial-gradient(100% 100% at 50% 0%, #D51F39 0%, #A91E32 25%, #B31329 94.79%);
    --coffee-platone: #D7282F;
    --whiteBeige: radial-gradient(50.01% 50.01% at 49.99% 50.01%, #FFFFFF 76.56%, #FDF7E7 100%);
    --btn: linear-gradient(114.95deg, #E62A2C 15.88%, #AD2533 84.12%);
    --florida-red: linear-gradient(0deg, #C2222E 0%, #E93E3A 23.96%, #ED683C 100%);
    --florida-footer: linear-gradient(0deg, #FEDCAE 0%, #FFEED8 100%);
    --florida-yellow: linear-gradient(180deg, #FFEAB5 0%, #FFC907 50%);
    --florida-yellow-2: linear-gradient(180deg, #FFEAB5 0%, #FFC907 70%);
}

* {
    font-family: 'Lora';
    padding: 0px;
    margin: 0px;
}

.far-coffee-bg {
    background-image: url(../assets/far-coffee/far-coffee-landing.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}
/* navbar */
.nav-bg {
    background: var(--coffee-platone);
    padding: 10px 0px;
    position: sticky;
    top: 0;
    width: 100%;
    top: 0px;
    box-shadow: 0px 1px 5px 1px rgba(0, 0, 0, 0.3)
}
.navbar a{
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 5px 0;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.navbar a:hover::after {
    transform: scaleX(1);
}
.navbar a.active::after {
    transform: scaleX(1);
}
nav a.logo-link {
    text-decoration: none;
    position: static;
}

nav a.logo-link::after {
    display: none;
}
.nav-title{
    color: black;
    padding-left: 30px;
}

.navbar img{
    width: 15rem;
}
.navbar {
    width: 70%;
}

.btn-logo{
    width: 35px;
}

.btn-login{
    background: var(--whiteBeige);
    font-weight: bold;
    border-radius: 20px;
    height: 2.5rem;
    width: 8rem;
}

.dashboard-btn-login {
    min-width: 10rem;
}

.mb-menu-right #userContent.active{
    transform: translate(0, 0vh);
    position: fixed;
    top: 60px;
    transition: transform 330ms ease-in-out;
    z-index: 32;
    width: auto;
    margin: 0px;
}

.mb-menu-right #userContent{
    transform: translate(0, -124vh);
    position: fixed;
}

.mb-menu-group{
    background: var(--whiteBeige);
    box-shadow: 6px 14px 19px -7px rgb(0 0 0 / 45%);
    width: 310px;
    position: relative;
    padding: 10px;
    border-radius: 20px;
    opacity: 1;
    float: right;
}
.mobile-box a{
    color: black;
}
.mobile-box a:hover{
    background: #e9ecef;
    color: #000000;
    border-radius: 10px;
}
.cover-bg {
    background: #000f1fb3;
    width: 100%;
    height: 100%;
    position: fixed;
    padding: 0;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 98;
    display: block;
    overflow: hidden;
    outline: 0;
}
.mb-menu-right {
    display: flex;
    flex-direction: row-reverse;
}
.mb-nav-btn{
    background: white;
    border-radius: 50%;
    color:var(--coffee-platone);
    border:none;
    width: 50px;
    height: 50px;
}




/* main-layout */
.content-bg{
    background: var(--red-wine);
    height: auto;
    padding: 30px 30px 0px 30px;

}
.body-florida .content-bg {
    min-height: 60vh;
}
.inner-content{
    background: var(--whiteBeige);
    height: auto;
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 50vh;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
}

.footer-content{
    margin: 20px 0px 0px;
    background: white;
    height: 24rem;
    border-radius: 30px 30px 0px 0px;
}
.body-florida .footer-content,
.body-pweb-florida .footer-content{
    height: 17rem;
}
.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Aligns both sections at the top */
    gap: 20px; /* Add space between the two boxes if needed */
}

.contact-box {
    background: var(--whiteBeige);
    width: 45%; /* Adjust the width */
    padding: 20px; /* Padding is fine */
    margin: 50px; /* Remove margin if it causes layout issues */
    flex: 1; /* Allows the box to grow if needed */
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}

.contact-border {
    position: relative;
}

.contact-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(131.89deg, #DB0505 3.05%, rgba(243, 109, 33, 0.6) 22.68%, rgba(250, 167, 62, 0) 50.65%, rgba(243, 109, 33, 0.75) 71.75%, rgba(219, 5, 5, 0.86) 97.26%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.contact-box .form-control {
    font-size: 0.8em; /* Make input fields smaller */
    padding: 5px; /* Reduce padding inside inputs */
}

.contact-box h2 {
    font-size: 30px; /* Adjust heading size */
    color: #D50000;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 50px;
}

.contact-box h5 {
    font-size: 13px;
    line-height: 20px;
    height: 32px;
}

.contact-box input, .contact-box select {
    border-radius: 15px;
    height: 40px;
}

.contact-box textarea {
    border-radius: 15px;
    height: 80px;
}

.contact-box .form-group {
    position: relative;
}

.contact-box .form-control {
    padding: 5px 10px 5px 13px;
    border-radius: 30px; /* Rounded corners */
    appearance: none; /* Remove default arrow for select */
}

.contact-box .form-control:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.dropdown-arrow {
    position: absolute;
    top: 67%;
    right: 0px;
    transform: translateY(-50%);
    pointer-events: none;
    background-color: var(--coffee-platone);
    width: 40px;
    height: 40px;
    border-top-right-radius: 30px;
    display: flex;
    border-bottom-right-radius: 30px;
    justify-content: center;
    align-items: center;
}

.dropdown-arrow::before {
    content: "\25BC"; /* Unicode for down arrow */
    color: white;
    font-size: 1.2em;
}

.contact-box label {
    margin-left: 13px;
    font-size: 0.85em;
}

.contact-box .btn-submit {
    background: var(--btn);
    font-weight: bold;
    font-size: 16px;
    color: white;
    border-radius: 20px;
    margin: auto;
    width: 224px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: 'Libre Baskerville', serif;
    border: 1px;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
    height: 44px;
}

.contact-content {
    width: 45%; /* Adjust width to fit content */
    margin-top: 35px;
}

.contact-content h2 span {
    font-size: 100%;
    color: #D50000;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 50px;
    height: 50px;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.mb-1 p {
    max-width: 450px; /* Adjust as needed */
    text-align: left; /* Align text to the left */
    font-size: 0.9em;
    font-weight: bold;
}

.content-row .read-more-button{
    background: var(--btn);
    font-weight: bold;
    font-size: 0.7em;
    color: white;
    border-radius: 20px;
    margin: auto;
    width: 36%; /* Ensure button spans full width of form */
    display: flex;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: 'Libre Baskerville', serif;
    border: 1px;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
}

.copyright{
    background: var(--coffee-platone);
    position: relative;
    bottom: 0;

}

.footer-title{
    padding-top: 50px;
    color: var(--coffee-platone);
    letter-spacing: 8px;
    font-weight: 700;
}
.footer-link{
    text-align: left;
}
.footer-link a{
    color: black;
    padding: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}
.body-florida .footer-link a,
.body-pweb-florida .footer-link a{
    color: #C2222E;
}
.footer-contact{
    text-align: end;
}
.footer-line{
    color: var(--coffee-platone);
    padding: 2px;
    width: 40%;
    opacity: 1;
}
.footer-contact .text{
    font-size: 14px;
    font-weight: bold;
    /* width: 80%; */
    margin-left: auto;
}
.body-florida .footer-contact p,
.body-pweb-florida .footer-contact p{
    color: #C2222E;
}
.footer-social .footer-logo{
    padding-top: 20px;
    width: 100%;
    margin: 20px 0px;
}
.footer-social .florida-logo{
    padding: 35px 0px 15px 0px;
}
.body-pweb-florida .coffee-footer,
.body-florida .coffee-footer{
    background: var(--florida-footer);
    padding: 0px calc(15% - (5vw));
}
.coffee-footer{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    padding: 0px 30px;
}
.coffee-footer-inner{
    display: flex;
}
.florida-outside-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.florida-outside-footer p{
    margin: 9px 0px;
}
.footer-quick-links{
    width: 40%;
}
.footer-quick-links h2{
    padding-top: 35px;
    text-align: start;
}
.footer-contact-us{
    width: 40%;
}
.footer-contact-us h2{
    padding-top: 35px;
    text-align: end;
}
.footer-contact-us hr{
    margin-left: auto;
    margin-right: 0.5rem;
}

/* copyright claims */
.copyright p{
    margin: 0px;
    font-size: 14px;
}
.copyright{
    display: flex;
    justify-content: space-around;

}
.titleBox{
    padding: 0px;
    margin-bottom: 20px;
}
.titleBox-bg{
    background: lightgrey;
    height: 10rem;
    border-radius: 30px;
}
.titleBox-content {
    display: flex;
    height: 10rem;
    border-radius: 30px;
    background-image: url('../assets/far-coffee/background/background-about.png');
    background-size: cover;
}
.titleBox-content-area {
    background: linear-gradient(270deg, rgba(217, 217, 217, 0) -24.02%, #000000 100%);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0 60px;
    border-radius: 30px 0 0 30px;
}
.titleBox-line{
    color: var(--coffee-platone);
    padding: 1px;
    width: 100px;
    opacity: 1;
    margin: 0 auto;
}

.titlebox-text{
    color:  rgb(255, 255, 255);
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-weight: 700;
}

/* CONTENT */
.title{
    color: var(--coffee-platone);
    letter-spacing: 8px;
    font-weight: 700;
}

/* News */
.news-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.news-header-container .logo {
    width: 32px;
    height: 38px;
    margin-right: 15px;
}

.news-header-container h3 {
    margin: 0;
    font-size: 30px;
    color: #DB0505;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 40px;
    text-align: left;
}

.news-container {
    max-width: 100%;
    margin: auto;
    height: auto;
    margin-top: 20px;
    position: relative;
}

.news-item {
    display: flex;
    border: 1px solid #ccc;
    flex-direction: row;
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
    min-height: 240px;
    background: #FFDD9C3D;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
}

.news-logo-container {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0px 35px;
    object-fit: cover;
}

.news-item-full {
    display: flex;
    justify-content: center;
    padding: 20px 0px 0px 0px;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
}

.news-item-img img {
    flex-shrink: 0;
    margin-right: 15px;
    height: 507px;
    width: 400px;
    margin-bottom: 15px;
    border-radius: 10%;
    object-fit: cover;
}

.news-item-content {
    flex: 1;
    width: calc(100% - 415px);
    background: var(--whiteBeige);
    border-radius: 30px;
    padding: 40px;
    font-size: 14px;
    font-weight:700;
    word-break: break-word;
    min-height: 442px;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
}

.news-image-container {
    flex-shrink: 0;
    width: 240px;
    height: auto;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    overflow: hidden;
    background: var(--whiteBeige);
}

.news-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px;
    height: auto;
    width: calc(100% - 240px);
}

.news-content-header {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-content-header h2{
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    word-wrap: break-word;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 30px;
}

.news-content-header p {
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.updated-date h6 {
    font-weight: bold;
    margin-bottom: 0;
}

.read-more-button a {
    color: #ffffff;
    text-decoration: none;
}

.read-more-button:hover {
    color: #ffffff;
}

.read-more-button {
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    width: 168px;
    background: var(--btn);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    font-family: 'Libre Baskerville', serif;
    border: 1px;
    box-shadow: 3px 2px 4px 3px rgb(0, 0, 0,0.2);
}
.homepage-content{
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
    justify-content: space-around;
}
.news-content-span{
    margin-left: 8px;
}

.btn-submit {
    background: var(--btn);
    font-weight: bold;
    font-size: 16px;
    color: white;
    border-radius: 20px;
    margin: auto;
    width: 224px;
    display: flex;
    justify-content: center;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: 'Libre Baskerville', serif;
    border: 1px;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
    height: 44px;
}

.slider{
    border-radius: 30px;
    width: 50%;
}

.whatsappButton {
    display: flex;
    justify-content: flex-end;
}
.assistance {
    font-size: 14px;
    letter-spacing: 0.7px;
    padding-right: 5px;
}
.assist {
    color: white;
    width: 341px;
    background-color: #D7282F;
    border-radius: 25px;
    padding: 5px 55px 6px 8px;
    position: relative;
    font-size: 11px;
}
.assist::after {
    content: '';
    width: 46px;
    height: 46px;
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('../assets/images/whatsapp-new-coffee.png');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
}
.body-pweb-florida .assist {
    background: linear-gradient(0deg, #C2222E 0%, #E93E3A 23.96%, #ED683C 100%);
    color: white !important;
}
.body-pweb-florida .assist::after {
    background-image: url('../assets/images/whatsapp-new-florida.png');
}
.image-box{
    width: auto;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background-color: rgba(0, 0, 0, 0.2);

}

.image-box img{
    width: 100%;
    /* height: 100%; */
    object-fit: contain;
    border-radius: 15px;
}


 /* Slider */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }

  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }

  .slick-list:focus {
    outline: none;
  }

  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }

  .slick-slider .slick-track,
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
  }

  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .slick-track:before,
  .slick-track:after {
    content: "";
    display: table;
  }

  .slick-track:after {
    clear: both;
  }

  .slick-loading .slick-track {
    visibility: hidden;
  }

  .slick-slide {
    float: left;
    /* height: 100%;
     min-height: 1px;  */
    display: none;
  }

  [dir="rtl"] .slick-slide {
    float: right;
  }

  .slick-slide.slick-loading img {
    display: none;
  }

  .slick-slide.dragging img {
    pointer-events: none;
  }

  .slick-initialized .slick-slide {
     /* display: block;  */
  }

  .slick-loading .slick-slide {
    visibility: hidden;
  }

  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }

  .slick-arrow.slick-hidden {
    display: none;
  }


  /* Dots */

  .slick-dots {
    /* position: absolute;
    bottom: -25px; */
    /* list-style: none; */
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    padding-top: 5px;
    background: #FFFFFF;
    box-shadow: none;
  }

  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }

  .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
  }

  .slick-dots li button:hover,
  .slick-dots li button:focus {
    outline: none;
  }

  .slick-dots li button:hover:before,
  .slick-dots li button:focus:before {
    opacity: 1;
  }

  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\2022";
    width: 20px;
    height: 20px;
    /* font-family: "slick"; */
    font-size: 20px;
    line-height: 20px;
    text-align: center;
    color: var(--coffee-platone);
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .slick-dots li.slick-active button:before {
    color: var(--coffee-platone);
    opacity: 1;
  }

.featured-drinks {
    width: 38%;
    padding: 0px;

}
.drink-1{
    margin-right: 17px;
}
.feature{
    width: 50%;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 10px;
}
.feature img{
    width: 100%;
    height: auto;
    /* object-fit: cover; */
    object-position: center;

}
.feature-text{
    margin:0px;
    font-size:25px;
    color: var(--coffee-platone);
    letter-spacing: 8px;
    font-weight: 700;
}

.merchandise {
    overflow: hidden;
    padding: 0px;
    background: url(../assets/far-coffee/merchandise.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* margin:0px 10px; */
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;

}
.merchandise p{
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 8px;
    word-break: break-all;
    text-align: center;
}
.app{
    overflow: hidden;
    margin-top: 20px;
    border-radius: 15px;

}

.homepage-title{
    color: var(--coffee-platone);
    letter-spacing: 2px;
    font-weight: 700;
    margin:0px;
    text-transform: uppercase;
    /* font-size:30px;  */
    padding: 0px 10px;

    font-size:25px;

}
.about{
    overflow: hidden;
    padding: 0px 5px;
    border-radius: 30px;
}
.about img{
    width: 100%;
}
.coffee-download{
    padding: 0px;
    width: 38%;
}

.contact-btn{
    background: var(--btn);
    border-radius: 5rem;
}
.booking-details{
    border-radius: 1rem;
    padding: 20px;
    background: var(--whiteBeige);
}
.booking-details::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(131.89deg, #DB0505 3.05%, rgba(243, 109, 33, 0.6) 22.68%, rgba(250, 167, 62, 0) 50.65%, rgba(243, 109, 33, 0.75) 71.75%, rgba(219, 5, 5, 0.86) 97.26%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.booking-details p{
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
}
.form-check-input{
    border-radius: 50% !important;
    /* background: var(--coffee-platone);
    border-color: var(--coffee-platone); */
}
.form-check-input:checked {
    background: var(--coffee-platone);
    border-color: var(--coffee-platone);
    background-image: none !important;
}
.event-book-btn{
    margin-top: 30px;
    padding:0px;
    border-radius: 30px;
    width: 10rem;
    background: linear-gradient(114.95deg, #E62A2C 15.88%, #AD2533 84.12%);
}
.mb-product{
    padding: 0px 3rem;
}


.floating-circle {
    width: 70px;
    height: 70px;
    background-color: var(--coffee-platone);
    border-radius: 50%;
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 1000;
    text-align: center;
    line-height: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

.floating-circle img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    vertical-align: middle;
}

.floating-circle .circle-text {
    color: white; /* Text color */
    font-size: 14px; /* Adjust font size */
    margin-top: 5px; /* Space between image and text */
}


.outlet-container {
    border-radius: 30px;
    width: auto;
    height: auto;
    padding-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.outlet-item {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    border-radius: 30px;
    width: 598.65px;
    overflow: hidden;
    box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.2);
    margin: auto;
}

.outlet-image-container {
    flex-shrink: 0;
    width: 231px;
    height: 243px;
    overflow: hidden;
    object-fit: cover;
}

.outlet-image-container img {
    width: 100%; /* Ensure the image fits the container width */
    height: 100%; /* Maintain aspect ratio */
    object-fit: cover; /* Adjusts image fitting */
}

.outlet-content-container {
    overflow: hidden;
    height: auto;
    background: #FDF7E7;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    width: 100%;
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.outlet-content-container p {
    margin-top: 0;
    margin-bottom: 0rem;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    width: 296.95px;
}

.outlet-content-container-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.outlet-content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.outlet-content-container .direction-btn {
    background: var(--btn);
    font-weight: bold;
    font-size: 0.7em;
    color: white;
    border-radius: 20px;
    width: 150px;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: 'Libre Baskerville', serif;
    border: 1px;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    text-align: center;
}

.header-container .logo {
    width: 32px;
    margin-right: 15px;
    height: 38px;
}

.header-container h3 {
    text-align: center;
    margin: 0;
    text-align: center;
    color: #A91E32;
    font-weight: bold;
}

.header-container h2 {
    font-size: 34px; /* Adjust heading size */
    color: #DB0505;
    font-weight: bold;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 50px;
}

.logo-container {
    object-fit: cover;
}

.outlet-content-container h2 {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: 50px;
}

.career-content {
    width: 42%;
    height: auto;
    margin-right:50px;
}

.career-content h2{
    font-size: 1.8em;
    color: #D50000;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 50px;
}

.career-content p {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75em;
    margin-left: 50px;
    margin-top: 28px;
}

.career-clearfix {
    display: flex;
    align-items: center;
}

.career-content .btn-contact {
    background: var(--btn);
    font-weight: bold;
    font-size: 0.7em;
    color: white;
    border-radius: 20px;
    width: 195px;
    text-decoration: none;
    letter-spacing: 0.05em;
    font-family: 'Libre Baskerville', serif;
    border: 1px;
    box-shadow: 3px 2px 4px 3px rgba(0, 0, 0, 0.2);
    margin-top: 35px;
    margin-left: 50px;
}

.career-image-container {
    width: 500px;
    height: 550px;
    overflow: hidden;
    margin-top: 20px;
}

.career-display {
    display:flex;
    justify-content: space-around;
}
.mb-about {
    display: flex;
}
.mb-about-img {
    width: 50%;
}
.mb-about-desc {
    width: 50%;
}
.info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 10px 10px 30px;
}
.banner-mobile{
    padding-top: 20px;
}

.about-content-item {
    margin-bottom: 20px;
}
.about-content-item img {
    padding-right: 30px;
}

.about-content-item p {
    flex-grow: 1;
    font-weight: bold;
}
.about-content-text {
    padding-top: 10px;
}
.abt-text {
    margin:0px;
    font-size:25px;
}

.booking-card {
    width: 290px;
    border-radius: 30px;
    padding: 0px;
    margin: 0px 10px 10px;
    height: 490px;
    box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.2);
}


.booking-mess{
    width: 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    height: 81px;
}

.booking-btn{
    background: var(--btn);
    border-radius: 20px;
    width: 15rem;
    text-decoration: none;
    width: fit-content;
    color: white;
}
a.booking-btn {
    color: white;
}
a.quick-links-btn-florida {
    color: black;
}
.pweb-new-order {
    border-left: 5px solid #BE1E2D;
}
.pweb-register-now-coffee {
    background: #D7282F;
}
.pweb-register-now-florida {
    background: linear-gradient(180deg, #FFEAB5 0%, #FFC907 100%);
}
.card-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 27px;
}

.card-img-top {
    height: 230px;
    object-position: center;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.card-text {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    height: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.contact-address p, .contact-info p{
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    margin-top: 15px;
}
.modal-title{
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: bold;
}

.mb-menu-group::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: 2px;
    background: linear-gradient(131.89deg, #DB0505 3.05%, rgba(243, 109, 33, 0.6) 22.68%, rgba(250, 167, 62, 0) 50.65%, rgba(243, 109, 33, 0.75) 71.75%, rgba(219, 5, 5, 0.86) 97.26%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.product-img img{
    object-fit: contain;
    width: 100%;
    border-radius: 30px;
    /* height: 100%; */
}
.box-shadow{
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}
.bookinLogin{
    cursor: pointer;
}
.linkless, .linkless:any-link, .linkless a:hover, .linkless a:active, .linkless a:visited{
    text-decoration:none;
}
.fml-head.nav-height, .harimau-menu-right {
    display: none;
}
ul.mb-nav-coffee img {
    width: unset;
}
.navbar ul.mb-nav-coffee a {
    padding: 0;
    font-weight: 300;
}
.menu-list-with-session#userContent.active {
    width: 80%;
    margin-top: 20px;
    margin-right: 5%;
}
.menu-list-with-session.mb-menu-group {
    width: unset;
}
.header-check {
    justify-content: space-between;
}
.footer-contact-us .footer-contact .whatsapp {
    text-decoration: none;
    color: #000000;
}
.footer-contact-us .footer-contact .whatsapp img{
    width: 53px;
    margin: 0px -4px;
}
.body-pweb-florida.far-coffee-bg{
    background: none;
}
.body-pweb-florida .content-bg{
    background: var(--florida-red);
    padding: 0px 30px;
}
.body-pweb-florida .inner-content,
.body-pweb-florida .inner-content .container,
.body-pweb-florida .banner-area,
.body-pweb-florida .image-box,
.body-pweb-florida .image-box img,
.body-pweb-coffee .inner-content .container,
.body-pweb-coffee .banner-area,
.body-pweb-coffee .image-box,
.body-pweb-coffee .image-box img{
    border-radius: 0px;
    padding: 0px;
    width: 100%;

}

.body-pweb-coffee .inner-content,
.body-pweb-florida .inner-content{
    min-height: 68vh;
    padding: 0px;
    width: 100%;
}

.body-pweb-florida .nav-bg{
    background: var(--florida-footer);
}
.body-pweb-florida .navbar,
.body-pweb-florida .logo-link{
    padding: 0px;
}

.body-pweb-florida .navbar .logo-link img{
    width: 7rem;
}

.body-pweb-florida .coffee-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 3px;
    background:  linear-gradient(180deg, #FFEAB5 0%, #FFC907 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;

}
.body-pweb-florida .coffee-border::before{
    border-radius: 1rem;
}
.body-pweb-florida .outlet-btn {
    background: var(--florida-red);
    border-radius: 50px;
}
.body-pweb-florida .header-check .logo-link img, .dashboard-florida .logo img{
    width: 7rem;
}
.body-pweb-florida .order-text,
.body-pweb-coffee .order-text{
    margin: 20px 10px;
}
.body-pweb-florida .welcome{
    background: var(--florida-yellow);
    padding: 10px;
}
.body-pweb-florida .welcome span{
    font-weight: bold;
}
.body-pweb-coffee .welcome{
    background: var(--red-wine);
    padding: 10px;
}
.body-pweb-coffee .welcome span{
    color: white;
}
.body-pweb-florida .border-box{
    padding:  20px;
    position: relative;

}
.body-pweb-coffee .border-box{
    padding:  20px;
    position: relative;

}
.body-pweb-coffee .content-bg{
    padding: 0px 30px 0px 30px;
}
.body-pweb-coffee .inner-content{
    box-shadow: none;
    border-radius: 30px;
}
.body-pweb-coffee .banner-area {
    background: var(--red-wine);
}
.body-pweb-coffee .image-box {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.body-pweb-coffee .image-box {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.body-pweb-coffee .slick-dots{
    display: block;
}

.florida-outside-footer{
    text-align: left;
}
.body-pweb-florida .mb-menu-group::before{
    background: var(--florida-yellow);
}
.body-pweb-florida .temp::after{
    background: var(--florida-yellow);
}

.titleBox.florida {
    padding: 20px;
}
.login-to-book {
    padding: 20px;
}
.whatsapp-box {
    width: 18rem;
    border: 1px solid white;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
}
.whatsapp-box .text-Whatsapp {
    text-transform: none;
    line-height: 41px;
}
.whatsapp-box .img-whatsapp {
    margin: 0px 8px 3px 15px;
    width: 24px;
    height: 24px;
}
.chat-box-booking {
    display: flex;
    width: 278px;
}
.chat-box-booking .whatsapp-box {
    width: 16rem;
}
.chat-box-booking .event-book-btn {
    margin-top: 10px;
}
.chat-box-booking .whatsapp-box .img-whatsapp {
    margin: 0px 8px 3px 15px;
}
.chat-box-booking .whatsapp-box .text-Whatsapp {
    font-size: 14px;
}
.body-pweb-florida .chat-box-booking .event-book-btn {
    background: var(--florida-red);
}
.body-pweb-florida .chat-box-booking .whatsapp-box .text-Whatsapp {
    font-size: 16px;
}
.card-body {
    background: #FFDD9C3D;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    }
.dashboard-btn-img{
    height: 100%;
}
.count-number-box {
    padding: 10px;
}
.count-member-title {
    line-height: 1;
}
.count-member-text-coffee, .count-member-text-florida {
    font-size: 55px;
    line-height: 1;
}
.member-number-box {
    padding: 10px;
}
.member-number-box-coffee, .member-number-box-florida {
    border-left: 2px solid black;
    height: 100px;
}
.member-number-text {
    font-size: 55px;
}
@media (max-width:1400px){
    .outlet-item{
        width: 508px;
    }

    .outlet-container > .outlet-item:only-child {
        flex-basis: auto;
        width: auto;
        min-width: 750px;
        margin: auto;
        min-height: 245px;
    }

    .outlet-container > .outlet-item:only-child .outlet-image-container {
        min-width: 243px;
        min-height: 243px;
    }

    .outlet-image-container {
        width: 200px;
    }
}

@media (max-width: 1200px){
    .navbar a{
        font-size: 13px;
    }
    .navbar img{
        width: 10rem;
    }

    .career-image-container {
        margin-top: 100px;
    }

    .contact-content {
        width: 400px;
    }

    .abt-text {
        margin:0px;
        font-size:20px;
    }

    .titlebox-text{
        font-size: 33px;
    }

    .outlet-item {
        width: 48.6%;
        margin-left: 1px;
    }

    .outlet-container > .outlet-item:only-child .outlet-image-container {
        min-width: 231px;
        min-height: 243px;
    }

    .outlet-container > .outlet-item:only-child {
        min-width: 700px;
    }

    .outlet-image-container {
        width: 160px;
    }

    .featured-drinks {
        width: 37%;
    }
    .homepage-title{
        font-size:18px;
    }
    .merchandise p{
        letter-spacing: 4px;
    }
    .assist {
        width: 327px;
        padding: 5px 47px 6px 1px;
    }
}

@media (max-width: 1024px) {
    .outlet-content-container .direction-btn {
        width: 150px;
    }

    .contact-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .contact-box{
        width: 100%;
    }

    .contact-address {
        position: relative;
    }

    .contact-info {
        position: relative;
        top: 0;
    }

    .contact-content{
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        width: 95%;
        margin: auto;
    }

    .contact-address,
    .contact-info {
        flex: 1 1 calc(50% - 20px); /* Two items per row, adjust gap */
        box-sizing: border-box;
    }

    .career-image-container {
        height: 550px;
        width: 400px;
        margin-top: 120px;
    }

    .abt-text {
        margin:0px;
        font-size:18px;
    }

    .news-item-full {
        flex-direction: column;
        align-items: center;
    }

    .news-item-img img {
        margin-right: 0;
        margin-bottom: 20px;
        height: auto;
    }

    .news-header-container h3 {
        font-size: 22px;
    }

    .news-item-content {
        width: 100%;
        padding: 16px;
        min-height: 0;
    }

    .read-more-button {
        height: 41px;
    }

}

@media (max-width: 992px){
    .far-coffee-bg {
        background: var(--red-wine);
        width: 100%;
        min-height: 100vh;
    }
    .footer-social{
        width: 100%;
        padding: 0px;
    }
    .body-pweb-coffee .footer-social .footer-logo,
    .body-coffee .footer-social .footer-logo{
        width: 163px;
        height: 195px;
    }
    .body-pweb-coffee .footer-content,
    .body-coffee .footer-content{
        margin: 20px 19px 0px;
    }
    .mb-footer-content{
        margin-top: 20px;
        background: white;
        border-radius: 30px 30px 0px 0px;
        margin: 0px 10px;
    }
    .copyright{
        display: block;
        text-align: center;
    }
    .copyright p{
        font-size: 12px;
    }
    p.coffee-nav-mb{
        font-size: 10px;
    }
    .inner-content{
        margin: 20px 9px;
        height: auto;

    }
    .news-item-full {
        padding: 0px 0px 0px 0px;
    }

    .news-item-img img {
        margin-top: 22px;
    }

    .news-header-container h3 {
        font-size: 18px;
    }

    .news-content-row .btn-logo {
        margin: 0;
    }

    .news-item-content .btn-logo {
        margin: 0;
    }

    .outlet-item {
        width: 47%;
        margin: auto;
    }
    .outlet-image-container {
        width: 32%;
    }
    .mb-event-booking{
        display: flex;
        flex-direction: column;
    }
    .mb-product,.mb-product-detail{
        width: 100%;
        padding: 0px;
    }

    .titleBox-content {
        justify-content: center;
    }
    .titleBox-content-area {
        width: 100%;
        border-radius: 30px;
        align-items: center;
        text-align: center;
    }
    .mb-about{
        flex-direction: column;
    }
    .about {
        text-align: center;
    }
    .about img {
        width: 100%;
        max-width: 500px;
    }
    .mb-about-img {
        width: 100%;
        margin-bottom: 20px;
    }
    .mb-about-desc {
        width: 100%;
    }
    .featured-drinks {
        width: 100%;
        margin: 10px 0px;
    }

    .merchandise{
        width: 100%;
        height: 29rem;
        background-size: contain;
        margin: 10px 0px;
        padding: 0px 30px;
        box-shadow: 0px 5px 15px grey;
        /* padding-bottom: 56.25%; */
        background-size: 100% 100%;
    }
    .app{
        margin-top: 10px;
    }
    .coffee-download{
        width: 100%;
        margin: 10px 0px;
    }

    .homepage-title{
        padding: 0px 20px;
        font-size: 30px;
    }
    .coffee-footer{
        display: flex;
        justify-content: space-around;
        flex-direction: column;
        padding: 0px 15px;
    }
    .body-pweb-coffee .footer-quick-links,
    .body-coffee .footer-quick-links {
        width: 60%;
    }
    .footer-quick-links h2{
        padding-top: 20px;
        text-align: left;
        font-size: 25px;
    }
    .footer-contact-us h2{
        padding-top: 20px;
        text-align: left;
        font-size: 25px;
        float:none;

    }
    .footer-contact-us hr{
        margin-left: 0px;
        margin-right: 0px;
    }
    .footer-contact{
        text-align: left;
    }
    .body-florida .footer-contact-us,
    .body-pweb-florida .footer-contact-us {
        /* width: 100%; */
        margin-left: 42px;
    }
    .body-pweb-coffee .footer-link,
    .body-coffee .footer-link{
        display: flex;
        flex-direction: row;
    }
    .body-pweb-coffee .footer-contact-us,
    .body-coffee .footer-contact-us{
        width: 55%;
        margin-left: 40px;
    }
    .footer-line{
        width: 50%;
    }
    .product-img{
        text-align: center;
    }
    .product-img img{
        width: 50%;

    }
    .image-box{
        /* width: 25rem; */
        height: 100%;
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        background-color: rgba(0, 0, 0, 0.2);

    }
    .image-box img {
        width: 100%;
        border-radius: 15px;
    }

    .merchandise p{
        font-size: 35px;
        letter-spacing: 8px;
    }
    .banner-mobile{
        display: flex;
        justify-content: center;
    }
    .div-whatsapp {
        text-align:center;
        margin-bottom: 9px;
    }
    .div-whatsapp .text {
        text-decoration: none;
        font-weight: bold;
        color: #ffffff;
        font-size: 18px;
    }
    .div-whatsapp .text img {
        width: 71px;
        margin: 0px -5px;
        filter: gray;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }
    .body-florida .copyright,
    .body-pweb-florida .copyright {
        background: #dcdada;
    }
    .body-pweb-florida.far-coffee-bg,
    .body-florida.far-coffee-bg{
        background: #FFFAF6;
    }
    .body-pweb-florida .inner-content {
        background: none;
        box-shadow: none;
        margin: 0px;

        border-radius: 30px; /* Ensure this applies to the background */
    }
    .body-pweb-florida .border-box{
        margin: 20px;
        padding: 10px;
    }
    .body-pweb-florida .border-box::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 30px;
        padding: 3px;
        background:  linear-gradient(180deg, #FFEAB5 0%, #FFC907 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;

    }
    .inner-content .container{
        margin: 0px;
        width: 100%;
        max-width: none;
    }
    .body-florida .div-whatsapp .text,
    .body-pweb-florida .div-whatsapp .text {
        color: black;
    }
    .image-box{
        /* width: 100%; */
        /* height: 100%; */
        border-radius: 15px;
        overflow: hidden;
        position: relative;
        background-color: rgba(0, 0, 0, 0.2);

    }
    .body-pweb-coffee .inner-content{
        margin: 0px;
        background: var(--red-wine);
    }
    .body-pweb-coffee .border-box{
        background: var(--whiteBeige);
        margin:  20px;
        padding:  1px;
        position: relative;
        border-radius: 30px;

    }
    .body-pweb-coffee .banner-area,
    .body-pweb-coffee .image-box,
    .body-pweb-coffee .image-box img{
        border-radius: 0px;
    }
    .body-pweb-coffee .slick-dots {
        background: var(--red-wine);
    }
    .body-pweb-coffee .slick-dots li button:before {
        color: white;
      }

    .body-pweb-coffee .slick-dots li.slick-active button:before {
        color: white;
    }
    .body-florida .div-whatsapp .text,
    .body-pweb-florida .div-whatsapp .text {
        color: black;
    }
    .body-pweb-coffee .footer-content,
    .body-coffee .footer-content {
        height: 21rem;
    }
    .body-florida .coffee-footer,
    .body-pweb-florida .coffee-footer{
        padding: 0px 30px;
    }
    .whatsappButton {
        justify-content: flex-start;
    }
    .assist {
        width: 233px;
        padding: 5px 26px 7px 24px;
    }
    .assist::after {
        width: 60px;
        height: 60px;
        border-radius: 30px;
    }
}


@media only screen and (max-width: 768px) {
    .harimau-menu-right {
        display: flex;
        flex-direction: row;
    }

    .mb-menu-right #userContent.active,
    .mb-menu-right #userContent{
        width: 50%;
    }
    .event-book-btn{
        /* width: 100%; */
    }

    .header-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        text-align: center;
    }

    .header-container .logo {
        margin-right: 15px;
    }

    .header-container h3 {
        text-align: center;
        margin: 0;
        text-align: center;
        font-family: 'Lora';
        color: #A91E32;
    }

    .logo-container {
        object-fit: cover;
    }

    .outlet-item {
        height: 260px;
        flex: 1 1 100%;
    }

    .outlet-content-container .direction-btn {
        width: 145px;
    }

    .contact-info {
        flex: 1 1 100%;
    }

    .career-display {
        display:block;
    }

    .career-content {
        width: 85%;
        margin-left: 30px;
        margin-right:0px;
    }

    .career-content .btn-contact {
        width: 190px;
    }

    .career-image-container {
        height: 500px;
        width: 400px;
        margin: auto;
        margin-top: 100px;
    }

    .news-item {
        min-height: 200px;
    }

    .news-image-container {
        height: auto;
        width: 200px;
    }

    .news-image-container img {
        width: 200px;
    }

    .news-content-container {
        height: auto;
        width: calc(100% - 200px);
    }

    .news-content-header h2 {
        font-size: 20px;
    }

    .news-content-header p {
        -webkit-line-clamp: 3;
    }

    .news-content-span {
        margin-right: 24px;
    }

    .read-more-button {
        width: 165px;
    }
    .titlebox-text{
        font-size: 30px;
    }
    .booking-mess{
        width: 100%;
        font-size: 15px;
    }

    .contact-content {
        width: 400px;
    }
    .merchandise p {
        font-size: 25px;
        letter-spacing: 6px;
    }

    .outlet-container > .outlet-item:only-child .outlet-image-container {
        min-width: auto;
        height: auto;
    }

    .outlet-container > .outlet-item:only-child {
        min-width: auto;
    }

    .outlet-image-container {
        height: 259px;
    }
    .fml-head.nav-height {
        display: block;
    }
    .fml-head ul {
        display: flex;
        width: max-content;
        margin: 0 auto;
        padding: 10px 30px;
        position: fixed;
        right: 0;
        bottom: 0;
        width: 100%;
        background: radial-gradient(100% 100% at 50% 0%, #ffffff 0%, #ffdcad 100%);
        box-shadow: 0px -6px 7px rgba(0, 0, 0, 0.3);
        justify-content: space-evenly;
        z-index: 100;
    }
    .mb-coffee .fml-cart-wish, .mb-florida .fml-cart-wish {
        font-size: 13px;
        border-radius: 100%;
        width: 20px;
        height: 20px;
        line-height: 20px;
        position: absolute;
        top: -10px;
        right: -10px;
        background: #fff;
        color: #D7282F;
    }
    .header-check {
        justify-content: center;
    }
    .header-check .menuMain, .header-check .empty-header-div {
        display: none;
    }
    .mb-menu-right-logged {
        align-items: center;
        justify-content: center;
    }
    .mb-menu-right-logged #userContent.active {
        width: 330px;
        margin: 0 auto;
        top: 80px;
    }
    .mb-menu-right-logged #userContent.active .mb-menu-group {
        width: 100%;
    }
    .pweb-btn-login-register {
        display: none !important;
    }
    .booking-btn{
        width: 100%
    }
    .body-pweb-florida .outlet-btn {
        width: 100%
    }
    .body-pweb-coffee .custom-footer,
    .body-coffee .custom-footer {
        background-image: url('../assets/far-coffee/far_coffee-footer.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 240px;
    }
    .body-florida .custom-footer,
    .body-pweb-florida .custom-footer {
        background-image: url('../assets/florida/florida-footer.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 240px;
    }
    .dashboard-btn-img{
        position: absolute;
        object-fit: contain;
        height: auto;
    }
    .pre-order-btn{
        width: 140px;
        bottom: 5px;
        margin: auto;
    }
    .event-booking-btn{
        width: 140px;
        bottom: 20px;
        margin: auto;
    }
    .qr-scan-btn{
        bottom: 10px;
        width: 100px;
        margin: auto;
    }
    .whatsappButton {
        justify-content: flex-end;
        padding: 3px 25px 6px 0px;
    }
    .assist {
        color: #BE1E2D;
        width: 261px;
        background-color: #ffffff;
        border-radius: 30px;
        padding: 4px 0px 6px 25px;
        font-size: 12px;
        position: relative;
    }
    .assist::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 2rem;
        padding: 1px;
        background: linear-gradient(131.89deg, #DB0505 3.05%, rgba(243, 109, 33, 0.6) 22.68%, rgba(250, 167, 62, 0) 50.65%, rgba(243, 109, 33, 0.75) 71.75%, rgba(219, 5, 5, 0.86) 97.26%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }
    .assist::after {
        width: 70px;
        height: 70px;
        border-radius: 35px;
    }
    .body-pweb-florida .assist {
        box-shadow: 2px 4px 9px 1px rgba(0, 0, 0, 0.3);
    }
    .body-pweb-florida .assist::before {
        background: white;
        padding: 2px;
    }
    .body-pweb-florida .welcome{
        background: linear-gradient(0deg, #FEDCAE 0%, #FFEED8 100%);
    }
    .body-pweb-florida .header-check .logo-link img, .dashboard-florida .logo img{
        width: 5rem;
    }
}

@media (max-width: 767px) {

}

@media (max-width: 650px) {
    .updated-date h6 {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .outlet-item {
        width: 100%;
        margin-bottom: 15px;
    }

    .outlet-container {
        width: 100%;
    }

    .outlet-content-container .direction-btn {
        width: 145px; /* Ensure button spans full width of form */
    }

    .career-image-container {
        height: 350px;
        width: auto;
    }

    .news-item {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .news-content-container {
        width: 100%;
    }

    .news-image-container {
        width: 100%;
        height: auto;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 0;
    }

    .news-header-container h3 {
        font-size: 16px;
        line-height: 2;
    }

    .news-image-container img {
        width: 100%;
        height: auto;
    }

    .news-item-content {
        padding: 18px;
    }

    .feature-text{
        font-size:30px;
    }
    .coffee-download-text{
        font-size:30px;
    }
    .merchandise {
        height: 20rem;
    }
    .outlet-item {
        height: 285px;
    }

    .outlet-container > .outlet-item:only-child {
        flex-basis: auto;
        width: auto;
        margin: auto;
    }

    .merchandise {
        height: 17rem;
    }

    .homepage-title {
        font-size: 20px;
    }
    .product-img img{
        width: 70%;
    }

    .outlet-image-container {
        height: 284px;
    }
    .inner-content{
        padding: 5px;
    }
    .banner-mobile{
        padding-top: 5px;
    }
    .pre-order-btn{
        width: 115px;
        bottom: 25px;
    }
    .event-booking-btn{
        width: 115px;
        bottom: 30px;
    }
    .qr-scan-btn{
        width: 90px;
        bottom: 20px;
    }

}

@media (max-width: 500px) {
    .outlet-item {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .outlet-image-container {
        width: 100%;
        height: 425px;
    }

    .outlet-container > .outlet-item:only-child .outlet-image-container {
        min-width: auto;
        height: 243px;
    }
    .pre-order-btn{
        width: 115px;
        bottom: 5px;
    }
    .event-booking-btn{
        width: 115px;
        bottom: 20px;
    }
    .qr-scan-btn{
        width: 90px;
        bottom: 5px;
    }
}

/* Media query for very small devices (small phones) */
@media (max-width: 425px) {
    .outlet-content-container .direction-btn {
        width: 145px;
    }

    .contact-info {
        height: 500px;
    }

    .contact-address {
        height: 350px;
    }

    .outlet-container {
        width: auto;
    }

    .career-content .btn-contact {
        width: 190px;
    }

    .inner-content {
        margin: 9px;
        height: auto;
    }

    .news-container {
        padding-top: 10px;
    }

    .news-content-img{
        margin-left: 33%;
    }

    .read-more-button {
        width: 166px;
    }

    .contact-box {
        margin: 0;
        margin-top: 150px;
    }

    .titlebox-text{
        font-size: 20px;
    }
    .merchandise {
        height: 14rem;
    }
    .merchandise p {
        font-size: 18px;
        letter-spacing: 6px;
    }
    /* .image-box-mb {
        width: auto;
    } */
}

@media (max-width: 375px) {
    .outlet-content-container .direction-btn {
        width: 150px;
    }

    .career-image-container {
        width: auto;
        height: 300px;
    }

    .career-content .btn-contact {
        width: 190px;
        margin: auto;
        margin-top: 50px;
    }

    t-btn{
        background: var(--btn);
        border-radius: 5rem;
    }

    .news-item-content {
        padding: 16px;
        margin-top: 0;
    }

    .news-content-header {
        margin-top: 10px;
    }

    .news-content-header p {
        margin-top: 8px;
    }

    .read-more-button{
        width: 122px;
    }

    .career-content h2 {
        font-size: 1.3em;
    }

    .contact-box .btn-submit {
        margin-bottom: 10px;
        height: 42px;
    }

    .coffee-download-text{
        padding-left: 10px;
        font-size:19px
    }
    .homepage-title {
        font-size: 17px;
    }
    .merchandise p {
        font-size: 18px;
        letter-spacing: 2px;
    }
}
