/*----------------------------------------------------------------------------------- 

Template Name: Bistly - Restaurant & Cafe HTML Template
URI: pixelfit.agency
Description: Bistly is a clean, modern, and fully responsive HTML template designed specifically for restaurants, cafes, bakeries, coffee shops, and food-related businesses. Crafted with attention to detail and built using the latest web technologies, Bistly ensures an exceptional user experience on all devices.
Author: Pixelfit
Author URI: https://themeforest.net/user/pixelfit
Version: 1.0 


------------------------------------------------------
   CSS INDEX
-----------------------------------------------------

    # Common CSS
    # Hero Section CSS
    # About Section CSS
    # Enjoy Section CSS
    # Popular Section CSS
    # Menu Section CSS
    # Team Section CSS
    # Time Section CSS
    # Blog Section CSS

-------------------------------------------------------    */
/* Common CSS */
:root {
  --primary-color: #FF7F00;
  --primary-black-color: #34495E;
  --heading-color: #2C3E50;
  --text-color: #000000;
}

.theme-btn.style-one {
  background-color: var(--primary-black-color);
  color: var(--white-color);
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.theme-btn.style-one:hover {
  background-color: var(--primary-color);
  color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 0, 0.3);
}
.theme-btn.style-two {
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.theme-btn.style-two:hover {
  color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 127, 0, 0.3);
}

@-webkit-keyframes playpopup {
  0% {
    -webkit-transform: translate(-50%, -50%), scale(1);
            transform: translate(-50%, -50%), scale(1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translate(-50%, -50%), scale(1.5);
            transform: translate(-50%, -50%), scale(1.5);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translate(-50%, -50%), scale(2);
            transform: translate(-50%, -50%), scale(2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
  }
}

@keyframes playpopup {
  0% {
    -webkit-transform: translate(-50%, -50%), scale(1);
            transform: translate(-50%, -50%), scale(1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.6;
  }
  50% {
    -webkit-transform: translate(-50%, -50%), scale(1.5);
            transform: translate(-50%, -50%), scale(1.5);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0.3;
  }
  100% {
    -webkit-transform: translate(-50%, -50%), scale(2);
            transform: translate(-50%, -50%), scale(2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
  }
}
/* Hero Section */
.cs-hero-sec {
  padding: 0;
  margin-top: 0;
}

/* Hero Slider CSS */
.hero-slider {
  width: 100%;
  height: 100vh;
}

.hero-slider .slick-track {
  height: 100vh !important;
}

.hero-slide {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-slide:nth-child(1) {
  background-image: url('https://asset.kompas.com/crops/GHYCoTRk-wpbffhtBeHJaZoPUWE=/0x0:500x333/1200x800/data/photo/2023/06/20/649158a94c755.jpg');
}

.hero-slide:nth-child(2) {
  background-image: url('https://healthychoice.co.id/cdn/shop/articles/gula_aren1_1200x1200.jpg?v=1664254566');
}

.hero-slide:nth-child(3) {
  background-image: url('https://img.lazcdn.com/g/ff/kf/S452cadebe11d449eb59bca9f3105b3c4y.jpg_720x720q80.jpg_.webp');
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}

.hero-slider-nav .slider-prev,
.hero-slider-nav .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  font-size: 20px;
  color: var(--primary-black-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.hero-slider-nav .slider-prev:hover,
.hero-slider-nav .slider-next:hover {
  background-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 25px rgba(255, 127, 0, 0.4);
  color: white;
}

.hero-slider-nav .slider-prev {
  left: 30px;
}

.hero-slider-nav .slider-next {
  right: 30px;
}

@media (max-width: 768px) {
  .hero-slider-nav {
    display: none;
  }
}

.hero-slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-slider-dots .slick-dots {
  display: flex !important;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.hero-slider-dots .slick-dots li {
  width: 12px;
  height: 12px;
}

.hero-slider-dots .slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0;
  padding: 0;
}

.hero-slider-dots .slick-dots li.slick-active button {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.hero-slider-dots .slick-dots li button:hover {
  background-color: var(--primary-color);
}
.cs-hero-sec:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  z-index: -1;
}
.cs-hero-sec .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media (max-width: 767.98px) {
  .cs-hero-sec .hero-content {
    text-align: center;
  }
}
.cs-hero-sec .hero-content h1 {
  font-size: 80px;
  color: var(--white-color);
  line-height: 1.1;
  margin-bottom: 20px;
}
@media (max-width: 1650px) {
  .cs-hero-sec .hero-content h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 1199.98px) {
  .cs-hero-sec .hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
  }
}
@media screen and (max-width: 991.98px) {
  .cs-hero-sec .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 767.98px) {
  .cs-hero-sec .hero-content h1 {
    font-size: 40px;
  }
}
.cs-hero-sec .hero-content .text-box {
  position: relative;
  margin-top: 20px;
  max-width: 600px;
}
@media screen and (max-width: 1199.98px) {
  .cs-hero-sec .hero-content .text-box {
    position: relative;
    margin-top: 20px;
    max-width: 100%;
  }
}
.cs-hero-sec .hero-content .text-box p {
  color: var(--white-color);
  font-size: 24px;
  line-height: 35px;
}
@media (max-width: 767.98px) {
  .cs-hero-sec .hero-content .text-box p {
    font-size: 18px;
  }
}
.cs-hero-sec .play-button {
  position: absolute;
  bottom: 95px;
  right: 95px;
}
@media (max-width: 767.98px) {
  .cs-hero-sec .play-button {
    position: relative;
    bottom: auto;
    right: auto;
    text-align: center;
    margin-bottom: 50px;
  }
}
.cs-hero-sec .play-button .video-popup {
  position: relative;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  font-size: 30px;
  color: var(--white-color);
}
.cs-hero-sec .play-button .video-popup:after, .cs-hero-sec .play-button .video-popup:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  content: "";
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  -webkit-animation: playpopup infinite ease-in 2s;
          animation: playpopup infinite ease-in 2s;
  z-index: -1;
}
.cs-hero-sec .play-button .video-popup:before {
  width: 140px;
  height: 140px;
}
.cs-hero-sec .play-button .video-popup:after {
  width: 170px;
  height: 170px;
}

/* About Section */
.cs-about-sec .bistly-content-box {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cs-about-sec .bistly-content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.cs-about-sec .bistly-content-box h2 {
  margin-bottom: 25px;
}
@media screen and (max-width: 1199.98px) {
  .cs-about-sec .bistly-content-box h2 {
    font-size: 32px;
    line-height: 50px;
  }
}
.cs-about-sec .bistly-content-box p {
  margin-bottom: 25px;
}
.cs-about-sec .text-box h2 {
  margin-bottom: 15px;
}
@media screen and (max-width: 1199.98px) {
  .cs-about-sec .text-box h2 {
    font-size: 32px;
    line-height: 50px;
  }
}
.cs-about-sec .text-box .position {
  font-size: 24px;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 20px;
}
@media screen and (max-width: 1199.98px) {
  .cs-about-sec .text-box .position {
    font-size: 18px;
    line-height: 30px;
  }
}
.cs-about-sec .text-box p {
  margin-bottom: 20px;
}

/* Enjoy Section */
.cs-enjoy-coffee {
  background-color: var(--primary-black-color);
  padding: 0 30px;
}
.cs-enjoy-coffee .bistly-image {
  position: absolute;
  z-index: -1;
}
.cs-enjoy-coffee .bistly-image img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cs-enjoy-coffee .bistly-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1650px) {
  .cs-enjoy-coffee .bistly-image img {
    width: 350px;
    height: 350px;
  }
}
@media screen and (max-width: 1199.98px) {
  .cs-enjoy-coffee .bistly-image img {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 991.98px) {
  .cs-enjoy-coffee .bistly-image img {
    width: 200px;
    height: 200px;
  }
}
.cs-enjoy-coffee .bistly-image.image_one {
  left: 100px;
  top: -50px;
}
@media screen and (max-width: 1199.98px) {
  .cs-enjoy-coffee .bistly-image.image_one {
    left: 50px;
  }
}
.cs-enjoy-coffee .bistly-image.image_two {
  right: 100px;
  bottom: -50px;
}
@media screen and (max-width: 1199.98px) {
  .cs-enjoy-coffee .bistly-image.image_two {
    right: 50px;
  }
}
.cs-enjoy-coffee .bistly-content-box .section-title h2 {
  color: var(--white-color);
  margin-bottom: 32px;
}
.cs-enjoy-coffee .bistly-content-box p {
  color: rgba(255, 255, 255, 0.8);
}

/*  Popular Section */
.popular-item-list.item-list-left {
  direction: rtl;
}
@media screen and (max-width: 1199.98px) {
  .popular-item-list.item-list-left {
    direction: ltr;
  }
}

.bistly-popular-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.bistly-popular-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bistly-popular-item .icon {
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 70px;
  height: 70px;
  font-size: 35px;
  color: var(--primary-color);
  background: rgba(255, 127, 0, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.bistly-popular-item:hover .icon {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.bistly-popular-item .content {
  margin-top: -5px;
}
.bistly-popular-item .content h4 {
  margin-bottom: 5px;
}

/* Menu Section CSS */
.bistly-menu-sec .menu-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1199.98px) {
  .bistly-menu-sec .menu-image-wrap {
    display: none;
  }
}
.bistly-menu-sec .menu-logo-thumb {
  position: absolute;
  top: 0;
  right: 16%;
}
.bistly-menu-sec .menu-logo-thumb img {
  border-radius: 0 0 200px 200px;
}
@media screen and (max-width: 1199.98px) {
  .bistly-menu-sec .menu-logo-thumb {
    display: none;
  }
}
.bistly-menu-sec .menu-item-list h3 {
  color: var(--white-color);
}
.bistly-menu-sec .menu-item-list.left-item-list {
  padding-right: 40px;
}
@media screen and (max-width: 991.98px) {
  .bistly-menu-sec .menu-item-list.left-item-list {
    padding-right: 0;
  }
}
.bistly-menu-sec .menu-item-list.item-right-list {
  padding-left: 40px;
}
@media screen and (max-width: 991.98px) {
  .bistly-menu-sec .menu-item-list.item-right-list {
    padding-left: 0;
  }
}
.bistly-menu-sec .menu-item-list.item-right-list:nth-child(2) {
  margin-top: 110px;
}
@media (max-width: 767.98px) {
  .bistly-menu-sec .menu-item-list.item-right-list:nth-child(2) {
    margin-top: 40px;
  }
}

.bistly-menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 25px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.bistly-menu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 127, 0, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.bistly-menu-item:hover .price {
  color: #FFB84D;
  transform: scale(1.05);
}
.bistly-menu-item .content-price-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media (max-width: 767.98px) {
  .bistly-menu-item .content-price-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.bistly-menu-item .thumbnail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 80px;
  height: 80px;
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bistly-menu-item .thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 127, 0, 0.3);
}

.bistly-menu-item .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.bistly-menu-item .thumbnail:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.bistly-menu-item .thumbnail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 127, 0, 0.1), rgba(255, 127, 0, 0.2));
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 12px;
  z-index: 1;
}

.bistly-menu-item .thumbnail:hover::before {
  opacity: 1;
}

.bistly-menu-item .thumbnail::after {
  content: '\f00e';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 18px;
  z-index: 2;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bistly-menu-item .thumbnail:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.bistly-menu-item .content {
  position: relative;
  padding-right: 20px;
  width: 75%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
@media (max-width: 767.98px) {
  .bistly-menu-item .content {
    width: 100%;
    padding-right: 0;
  }
}
.bistly-menu-item .content:after {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 1px;
  height: 55px;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 767.98px) {
  .bistly-menu-item .content:after {
    display: none;
  }
}
.bistly-menu-item .content h4 {
  font-size: 20px;
  color: var(--white-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.bistly-menu-item:hover .content h4 {
  color: var(--primary-color);
  transform: translateX(5px);
}

.bistly-menu-item .content p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.bistly-menu-item:hover .content p {
  color: rgba(255, 255, 255, 0.95);
  transform: translateX(3px);
}
.bistly-menu-item .price {
  padding-left: 20px;
  font-size: 24px;
  color: var(--primary-color);
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .bistly-menu-item .price {
    padding-left: 0;
    margin-top: 20px;
  }
}

/* Image Popup Lightbox Customization */
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.9;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-image-holder .mfp-content {
  max-width: 90%;
  margin: 0 auto;
}

.mfp-image-holder .mfp-img {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-height: 90vh;
  object-fit: contain;
}

.mfp-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 0 0 10px 10px;
  margin-top: -5px;
}

.mfp-counter {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.mfp-arrow {
  background: rgba(255, 127, 0, 0.8) !important;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
}

.mfp-arrow:hover {
  background: rgba(255, 127, 0, 1) !important;
}

.mfp-arrow:before {
  border: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: white;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  width: 100%;
  height: 100%;
  margin: 0;
}

.mfp-arrow-left:before {
  content: '\f104';
}

.mfp-arrow-right:before {
  content: '\f105';
}

.mfp-close {
  background: rgba(255, 127, 0, 0.8) !important;
  border-radius: 50%;
  width: 50px !important;
  height: 50px !important;
  line-height: 50px !important;
  text-align: center;
  color: white !important;
  font-size: 20px !important;
  opacity: 1 !important;
}

.mfp-close:hover {
  background: rgba(255, 127, 0, 1) !important;
}

/* Team Section */
.cs-team-item {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.cs-team-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cs-team-item .member-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}

.cs-team-item:hover .member-image img {
  border-radius: 50%;
  transform: scale(1.1);
}
.cs-team-item .member-image img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.cs-team-item .member-info {
  padding-top: 32px;
}

/*  Time Section */
.cs-time-sec {
  background-color: var(--primary-black-color);
}
.cs-time-sec .bistly-content-box p {
  font-size: 20px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.8);
}
.cs-time-sec .map-box iframe {
  height: 325px;
}
.cs-time-sec .opening-time-box {
  padding: 40px 50px 45px;
  -webkit-margin-start: 70px;
          margin-inline-start: 70px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.cs-time-sec .opening-time-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 127, 0, 0.3);
}
@media screen and (max-width: 1199.98px) {
  .cs-time-sec .opening-time-box {
    padding: 30px 30px 35px;
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
}
.cs-time-sec .opening-time-box h3 {
  color: var(--white-color);
  margin-bottom: 35px;
}
.cs-time-sec .opening-time-box ul li {
  color: var(--white-color);
}
.cs-time-sec .opening-time-box ul li span {
  float: right;
}
.cs-time-sec .opening-time-box ul li .close {
  color: var(--primary-color);
}
.cs-time-sec .opening-time-box ul li:not(:last-child) {
  margin-bottom: 25px;
  padding-bottom: 30px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Blog Section CSS */
.bistly-blog-post {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.bistly-blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bistly-blog-post .post-thumbnail {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.bistly-blog-post .post-thumbnail img {
  width: 100%;
  transition: all 0.3s ease;
}

.bistly-blog-post:hover .post-thumbnail img {
  transform: scale(1.05);
}
.bistly-blog-post .post-content {
  padding-top: 22px;
}
.bistly-blog-post .post-content .post-meta span {
  margin-bottom: 15px;
}
.bistly-blog-post .post-content .post-meta span i {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
}
.bistly-blog-post .post-content .post-meta span:not(:last-child) {
  -webkit-margin-end: 20px;
          margin-inline-end: 20px;
}
.bistly-blog-post .post-content h4 {
  margin-bottom: 10px;
}
.bistly-blog-post .post-content p a {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  -webkit-margin-start: 5px;
          margin-inline-start: 5px;
  text-decoration: underline;
}