:root {
  --card-bg: #ffffff;
  --muted: #090909;
  --accent: #2f8f6b;
  --teal: #63b9c2;
  --border: #eee;
  --shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', system-ui;
  background: #fffbf0;
}
header {
  background: #fff;
  padding: 15px 0px;
}
a:hover {
  color: #63b9c2 !important;
}
.page-width {
  width: 1220px;
  margin: auto;
}
.filterrow .container {
  margin: auto;
  padding: 10px;
}

.filterrow h2 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 600;
}

.filterrow .tab-buttons {
  display: flex;
  gap: 10px;
  margin: 18px 0;
}

.filterrow .tab-buttons a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  border: 2px solid transparent;
  background: #aeeff3;
  color: #0a4a4f;
  font-size: 14px;
}

/* Inactive tab */
.filterrow .tab-buttons a.inactive {
  background: #fff;
  border: 2px solid #000;
  color: #000;
}
#advanced select {
  margin: 5px 0px;
  padding: 10px 15px;
  background: #fffbf0;
}
/* ACTIVE TAB highlight */
#nearby:target ~ .tab-buttons a[href="#nearby"],
#advanced:target ~ .tab-buttons a[href="#advanced"] {
  background: #61d7e5;
  color: #fff;
  border: 2px solid transparent;
}
#advanced input {
  padding: 10px;
  margin-bottom: 10px;
}
/* Hide tab content by default */
.filterrow .tab-content {
  display: none;
  margin-top: 20px;
}
.tab-buttons a {
  padding: 10px 15px;
  text-decoration: none;
  cursor: pointer;
}

.tab-buttons a.inactive {
  opacity: 0.5;
}
 

/* Show selected tab */
#nearby:target,
#advanced:target {
  display: block;
}

/* Default visible tab */
.default {
  display: block;
}

.filterrow input {
  width: 100%;
  padding: 15px 10px;
  border-radius: 5px;
  background: #fdf5e8;
  font-size: 15px;
  margin-bottom: 20px;
  border: 1px solid #f2f2f2;
}
#advanced input {
  padding: 10px;
  margin-bottom: 10px;
}
.filterrow button {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: #61d7e5;
  color: white;
  font-size: 14px;
  cursor: pointer;
}


.headers {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
.meniitem ul {
  padding: 0px;
  margin: 0px;
  display: flex;
}
.meniitem ul li {
  margin: 0px 10px;
  list-style: none;
}
.meniitem ul li a {
  color: #000;
  text-decoration: none;
}
.logo img {
  width: 60%;
}
.slidersection {
  display: flex;
  justify-content: space-between;
  margin: 30px 0px;
}
.filterrow {
  width: 35%;
  background: #fff;
  border-radius: 4px;
  padding: 15px;
}
.maintitle {
  text-align: center;
  margin: 50px 0px;
  font-size: 34px;
  font-weight: normal;
}
.card__body img {
  width: 22px;
}
.share img {
  width: 34px;
}

.card {
  width: 31%;
  background: var(--card-bg);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 0px 13px 30px;
}

.card__header {
  padding: 15px;
  background: linear-gradient(180deg, rgb(255, 255, 255), whitesmoke);
}
.header-flex .title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 2px;
  color: #0b0b0b;
}

.subtle {
  font-size: 12px;
  color: var(--muted);
}

.card__body {
  padding: 22px 24px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.9;
}

.addr {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
}

.meta__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #222;
  margin: 5px 0px;

}
.share {
  min-width: 45px;
  text-align: right;
}
.meta__label {
  color: var(--muted);
  font-size: 14px;
}

.open {
  text-align: center;
  margin: 16px 0 20px;
  color: var(--accent);
  font-weight: normal;
  letter-spacing: 1px;
  font-size: 14px;
}

.actions {
  display: flex;
  gap: 15px;
  padding: 10px 2px 2px;
}
.btn.btn--primary:hover {
  color: #000 !important;
  background: #fff;
  border: 2px solid #ccc;
}
.btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 1px;
  border-radius: 28px;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.btn--primary {
  background: var(--teal);
  color: #fff;
}

.btn--outline {
  background: transparent;
  border-color: #d9d9d9;
  color: #222;
}

.card-wrap {
  position: relative;
  margin: 40px 0px;
  display: flex;
  flex-wrap: wrap;
}
.footerarea {
  background: #68d3e2;
  padding: 20px;
  text-align: center;
  line-height: 30px;
  margin-top: 40px;
}
.fllowuslink {
  border-bottom: 1px solid #30a6b6;
  padding: 0px 0px 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.fllowuslink a {
  color: #000;
}
.fllowuslink a:hover {
  color: #fff !important;
}

/******Cafe Details*****/
.headercafe {
  position: relative;
  width: 54%;
}

.headercafe-img {
  width: 100%;
}

.headercafe-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 15px;
  background: #fff;
  flex-wrap: wrap;
  border-radius: 0px 0px 10px 10px;
  /* box-shadow: 0 3px 8px rgba(0,0,0,0.1); */
}

.headercafe-buttons a {
  padding: 10px 15px;
  background: #5f5f5f;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  border-bottom: 2px solid #272727;
  color: #fff;
  text-decoration: none;
}
.sliderflip img {
  width: 100%;
}

/* MAIN CARD */
.main-card {
  background: #fff;
  padding: 20px 20px 0px;
  border-radius: 10px;
  /* box-shadow: 0 3px 8px rgba(0,0,0,0.1); */
  width: 44%;
}

.info-row p {
  margin: 5px 0;
}

.open-btn {
  margin: 10px 0;
  background: #11aa66;
  display: inline-block;
  padding: 10px 12px;
  color: #fff;
  border-radius: 5px;
  font-size: 13px;
  text-transform: uppercase;
}
.main-card .card__header {
  background: transparent;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-top: 0px;
}
.main-card .card__body {
    padding: 0px;
}
.main-card .row {
  margin-bottom: 5px;
}
.direction-btn {
  background: #00c4ff;
  padding: 10px 30px;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  margin-bottom: 15px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.4px;
}
.direction-btn:hover {
  color: #00c4ff !important;
  border: 2px solid #00c4ff;
  background: transparent;
  padding: 8px 30px;
}

.download-app p {
  margin-bottom: 5px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
}

.qr {
  width: 120px;
}

.store-btn {
  width: 112px;
  margin: 5px 0;
}


.results-box {
  position: fixed;                 /* stay above page */
  left: 0;
  right: 0;
  top: 80px;                       /* starting position */
  transform: translateY(80px);
  transition:
    transform 1.2s ease-in-out,
    box-shadow 0.6s ease;
  z-index: 1;
  background: #fff;
}

.results-box:target {
  transform: translateY(-80px);    /* moves to top */
  z-index: 9999;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}




/* BUSINESS */
.business-section, .facilities, .payment, .about, .near-me, .tags {
  background: #fff;
  margin: 0px;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 3px 8px rgba(0,0,0,0.1); */
}
.bsnesitem {
  display: flex;
  justify-content: space-between;
}

.about {
  line-height: 30px;
  margin: 20px 0px;
  text-align: center;
  padding: 40px 50px;
}
.about h3 {
  margin: 10px auto 20px;
  color: #66c9f0; 
}
.bottomtag {
  background: #fff;
  margin: 0px;
  padding: 20px;
  border-radius: 10px;
  /* box-shadow: 0 3px 8px rgba(0,0,0,0.1); */
  margin: 20px 0px;
}
.hours-grid p {
  border-bottom: 1px dashed #ccc;
  padding: 8px;
  font-size: 14px;
}
.facilities ul li {
  list-style: none;
  margin-left: 0px;
  line-height: 24px;
}
.payment p {
  line-height: 30px;
}
.facilities h3, .payment h3, .business-section h3 {
  margin-bottom: 15px;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 15px;
}

.business-section {
  width: 49%;
}
.facepay {
  width: 49%;
}
.payment {
  margin-top: 15px;
}
.hours-grid p {
  margin: 5px 0;
}

/* FACILITIES */
.facilities ul li {
  margin: 6px 0;
}

/* NEAR ME */
.grid {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 15px;
  margin-top: 15px;
}

.carditem {
  background:#fffbf0;
  padding: 15px;
  border-radius: 8px;
  /* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
  text-align: center;
  line-height: 26px;
  margin: 0px 10px;
}
.carditem h4 {
  margin: 5px 0px 15px;
  font-size: 20px;
  font-weight: normal;
}
.near-me h2 {
  text-align: center;
  margin: 10px 0px 40px;
}
.areacot {
  margin: 20px 0px;
  border-bottom: 1px solid #e0e0e0;
}
.areacot {
  margin: 20px 0px;
  border-bottom: 1px solid #e0e0e0;
  overflow: auto;
  padding-bottom: 5px;
}
.areacot ul li {
  list-style: none;
  padding: 5px 8px !important;
  border: 1px solid #e2d9be;
  margin: 10px;
  border-radius: 4px;
  font-size: 13px;
  min-width: fit-content;
  background: #fffbf0;
}
.bottomtag ul {
  list-style: none;
  display: flex;
  overflow: auto;
}
.upareas li {
  border-right: 1px solid #949494;
  padding: 0px 15px;
  margin: 30px 0px 10px;
}
.upareas li:last-child {
  border-right: 0px;
}
.upareas li:first-child {
  padding-left: 4px;
}
/* TAGS */
.tags p {
  margin: 6px 0;
  color: #555;
}
.topmain {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
}
.sliderrow {
  width: 62%;
}
.slick-dots li button::before {
  font-size: 60px;
}
.slick-dots {
  bottom: 10px;
}
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}
.proitem {
  margin: 10px;
}
.proitem img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  height: 350px;
}
.itemtitle {
  font-size: 32px;
  font-weight: normal;
  margin: 40px 0px 10px 8px;
  border-left: 4px solid #52baeb;
  padding-left: 10px;
  line-height: 30px;
}
.itemtext {
  text-align: center;
  background: #fff;
  padding: 20px;
  border-radius: 0px 0px 2px 2px;
}
.itemtext h4 {
  margin: 0px 0px 10px;
  font-size: 18px;
}
.itemtext p {
  font-size: 14px;
  margin-bottom: 20px;
}
.itemtext .knowmore {
  background: #66c9f0;
  width: 100%;
  display: inline-block;
  padding: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  border: 2px solid;
  text-transform: uppercase;
}
.itemtext .knowmore:hover {
  color: #fff;
}
.itemtext .knowmore:hover {
  color: #0a0a0a !important;
  border: 2px solid #ccc;
  background: transparent;
}
.slick-prev::before, .slick-next::before {
  font-size: 46px;
  color: #05a5d4;
}
.near-me {
  margin-top: 40px;
  padding: 20px 0px 50px;
}
.near-me .slick-prev.slick-arrow {
  left: -32px;
}
.itemtext p i {
  margin: 20px 0px auto;
  display: inline-block;
  font-size: 12px;
}
.copyright-text {
  font-size: 14px;
}
.carditem .phone {
  margin-top: 15px;
  font-size: 15px;
  color: #000;
}
.carditem p {
  font-size: 14px;
}
.open.closed {
  color: red;
}
body .slick-track {
  margin-left: 0;
  margin-right: auto;
}
.download-app a {
  display: inline-block;
}
.carditem h4 a {
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.autocomplete-box {
          position: relative;
          width:100%;
      }

      #search {
          width: 100%;
          padding: 15px;
          font-size: 14px;
      }

      .suggestions {
          position: absolute;
          top: 100%;
          left: 0;
          right: 0;
          background: #fff;
          border: 1px solid #ddd;
          max-height: 200px;
          overflow-y: auto;
          display: none;
          z-index: 999;
      }

      .suggestions li {
          padding: 10px;
          cursor: pointer;
          font-size: small;
      }

      .suggestions li.active,
      .suggestions li:hover {
          background: #f2f2f2;
          font-size: small;
      }


.vp-pagination a {
    color: black;
  }

.localitynm{
  cursor: pointer;
}
.sliderflip .slick-slide {
  height: 100% !important;
}
.searchlocresult {
  margin-left: 17px;
  margin-bottom: -30px;
  display: inherit;
  font-size: 14px;
  background: #fff;
  padding: 14px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(138, 137, 137, 0.08);
}

ul.upareas li.active {
    color: blue;
    font-weight: bold;
  }
ul.upareas li {
    cursor: pointer;
    min-width: fit-content;
  }
.breadcrums {
  padding-top: 20px;
}
.newlaunchslide img {
  background: #fff;
  height: 200px;
  object-fit: contain;
  padding-top: 15px;
}


.reviews-section {
  max-width: 100%;
  margin: 50px auto;
  padding: 50px 20px;
  background: #fff;
}

/* Header */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.reviews-section .title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 28px;
  font-weight: 600;
}

.reviews-section .stars {
  color: #ff8c00;
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-section .rating {
  font-size: 16px;
  font-weight: 500;
}

.reviews-section .header-buttons {
  display: flex;
  gap: 15px;
}

.reviews-section .btn {
  background: #63d1dd;
  flex: auto;
  color: #fff;
  border: none;
  padding: 10px 28px;
  border-radius: 40px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  border: 2px solid;
}
.reviews-section .btn:hover {
  background: #fff;
  color: #000;
  border: 2px solid;
}
.review-stars span.ratingvv {
  color: #000;
  font-size: 16px;
  padding-left: 10px;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.review-card {
  background: #fffbf0;
  padding: 30px;
  border-radius: 18px;
}

.review-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.review-stars {
  color: #ff8c00;
  font-size: 18px;
  margin-bottom: 10px;
}

.posted-date {
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text { 
  font-size: 14px;
  line-height: 1.7;
  color: #111;
}
.turncatep {
  align-content: center;
  line-height: 22px;
}
.starscafe {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffb506;
}
.socialtimelne {
  margin: 50px 0px;
  padding: 50px 0px;
}
.socialtimelne h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: normal;
}
.timelinegrid {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  gap: 15px;
}
.timelineitem img {
  width: 100%;
}
.timelinegrid {
  display: grid;
  grid-template-columns: 32% 32% 32%;
  gap: 20px;
}
.timelineitem {
  background: #fff;
  padding: 15px;
  font-size: 14px;
  line-height: 28px;
  border-radius: 4px;
}
.hashtag {
  margin: 20px 0px;
}
.hashtag span {
  display: block;
}
.sliderflip:not(.slick-initialized) img {
  width: 100% !important;
  height: 100% !important;
}  

/*========media start==========*/ 



@media screen and (min-width: 768px) {
 body .mobile { 
    display: none;
  }
#mobileMenu ul {
  display: flex;
  list-style: none;
}
#mobileMenu li a {
  text-decoration: none;
  padding: 0px 10px;
  color: #000;
}
}

@media screen and (max-width: 767px) {
 body .desktop {
    display: none;
  }
  .page-width {
    width: 100%;
    margin: auto;
    padding: 0px 15px;
  }
  .card {
    width: 100%;
    margin: 0px 0px 30px;
  }
 .menu-toggle {
    display: block;
    width: 22px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}
.menu-toggle.active {
    position: fixed;
    top: 6%;
    right: 4%;
}

.menu-toggle .bar {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000;
    left: 0;
    transition: all 0.4s ease;
}
.menu-toggle .bar1 { top: 0; }
.menu-toggle .bar2 { top: 7px; }
.menu-toggle .bar3 { top: 14px; }

/* Active state - cross */
.menu-toggle.active .bar1 { transform: rotate(45deg); top: 9px; }
.menu-toggle.active .bar2 { opacity: 0; }
.menu-toggle.active .bar3 { transform: rotate(-45deg); top: 9px; }

/* Full-screen menu */
.mobile-fullmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    transition: right 0.2s ease;
    z-index: 1000;
    flex-direction: column;
    padding-left: 0px;
  }

.mobile-fullmenu ul {
    list-style: none;
    text-align: left;
    margin-top: 110px;
    width: 100%;
    border-top: 1px solid #e4e4e4;
    padding-left: 15px;
}

.mobile-fullmenu ul li {
    margin: 10px 0;
}

.mobile-fullmenu ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #000;
    transition: color 0.3s;
}

.mobile-fullmenu ul li a:hover {
    color: #ff6600;
}

/* Active menu slide in */
.mobile-fullmenu.active {
    right: 0;
}
.slidersection {
  display: block;
  justify-content: space-between;
  margin: 30px 0px;
}
.filterrow, .sliderrow {
  width: 100%;
}
.filterrow {
  margin-bottom: 15px;
  padding: 5px;
}
.filterrow h2 {
  font-size: 20px;
}
.maintitle {
  margin: 30px 0px 0px;
  font-size: 28px;
  line-height: 36px;
}
.header-flex .title {
  font-size: 16px;
}
.filterrow .tab-buttons a {
  padding: 8px;
}
.filterrow button {
  font-size: 12px;
}
.logo.active {
  z-index: 9999;
  position: fixed;
  top: 18px;
}
.fllowuslink {
  font-size: 13px;
}
.topmain {
  display: block;
}
.headercafe, .main-card {
  width: 100%;
}
.main-card {
  margin-top: 15px;
}
.open-btn {
  margin: 6px 0;
  padding: 6px 15px;
  font-size: 12px;
}
.direction-btn {
  padding: 8px 20px;
  margin-bottom: 15px;
  font-size: 12px;
}
.download-app {
  margin-top: 15px;
  padding-bottom: 10px;
}
.bsnesitem {
  display: block;
}
.facilities h3, .payment h3, .business-section h3 {
  font-size: 16px;
}
.business-section, .facepay {
  width: 100%;
}
.facilities {
  margin-top: 15px;
}
.itemtitle {
  font-size: 26px;
}
.proitem {
  margin: 5px;
}
.slick-prev::before, .slick-next::before {
  font-size: 34px;
  color: #05a5d4;
}
.slick-next {
  right: -8px;
}
.slick-prev {
  left: -10px;
  z-index: 9;
}
.newlaunchslide {
  padding: 0px 10px;
}
.proitem img {
  height: 220px;
}
.itemtext h4 {
  font-size: 16px;
} 
.about {
  margin: 20px 0px;
  padding: 30px 20px;
}
.about h2 {
  font-size: 18px;
}
.about h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: normal;
}
.about p {
  font-size: 14px;
  line-height: 22px;
}
.near-me h2 {
  margin: 10px 0px 30px;
  font-size: 18px;
  padding: 0px 10px;
}
.near-me .slick-prev.slick-arrow {
  left: -12px;
}
.near-me .slick-next.slick-arrow {
  right: -10px;
}
.bottomtag h3 {
  font-size: 16px;
} 
.searchlocresult {
  margin-left: 0px;
  margin-bottom: -40px;
  font-size: 12px;
  padding: 10px;
  margin-top: 20px;
}
.breadcrums span {
  font-size: 14px;
}
.headercafe-buttons a {
  padding: 6px 10px;
  background: #5f5f5f;
  border-radius: 2px;
  font-size: 12px;
  border-bottom: 1px solid #272727;
  width: 45%;
  text-align: center;
}
.headercafe-buttons {
  gap: 8px;
  padding: 20px 6px;
}
.slick-dots li button::before {
  font-size: 44px;
}
.slick-dots li {
  margin: 0 0px;
}
.near-me {
  padding: 20px 0px 15px;
}
.newlaunchslide img {
    height: 180px;
    border-radius: 0px;
    padding-top: 15px;
  }

.reviews-section {
  padding: 50px 0px;
}
.reviews-section .title {
    font-size: 18px;
}
.reviews-section .stars {
  font-size: 15px;
} 
.reviews-section .reviews-grid {
  grid-template-columns: 1fr;
  gap: 25px;
}
.reviews-section .rating {
  font-size: 14px;
}
.reviews-section .btn {
  padding: 10px 16px;
  font-size: 12px;
}
.review-name {
  font-size: 15px;
}
.review-stars span {
  font-size: 14px;
  padding-left: 5px;
}
.review-stars {
  font-size: 16px;
}
.review-text {
  font-size: 14px;
}
.timelinegrid {
  grid-template-columns: 100%;
}
.carditem h4 a {
  line-height: 18px;
}
.socialtimelne {
  margin: 15px 0px;
  padding: 30px 0px;
}
.socialtimelne h2 {
  margin-bottom: 20px;
  font-size: 24px;
}
ul.upareas li {
  font-size: 14px;
}
.areacot ul li {
  margin: 10px 5px;
}
}


