      :root{
      --text:#111827;
      --muted:#6b7280;
      --line:rgba(17,24,39,.10);
      --shadowSoft: 0 10px 20px rgba(0,0,0,.08);
      --radius: 8px;
      }
      body{
      font-family: "Poppins", sans-serif;
      color:var(--text);
      background:#fff;
      overflow-x:hidden;
      }
      /* Topbar */
      /* ====== HERO WITH OVERLAY HEADER ====== */
      .heroWrap{
      position: relative;
      width: 100%;
      overflow: hidden;
      }
      .heroCard{
      width: 100%;
      min-height: clamp(360px, 60vh, 620px);
      /*background:#e5e7eb;*/
      border-radius: 0;
      box-shadow: none; /* full width banner usually no shadow */
      }
      .heroCard img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      }
      /* Dark overlay for readability (optional) */
      /*.heroOverlay{
      position:absolute;
      inset:0;
      background: linear-gradient(
      180deg,
      rgba(0,0,0,.55) 0%,
      rgba(0,0,0,.25) 35%,
      rgba(0,0,0,.10) 60%,
      rgba(0,0,0,0) 100%
      );
      pointer-events:none;
      }*/
      /* Header on banner */
      .heroHeader{
      position:absolute;
      top:0;
      left:0;
      right:0;
      z-index: 10;
      padding: 38px 0;
      }
      .heroHeader .navLinks a{
      color:#000;
      opacity:.85;
      }
      .heroHeader .navLinks a:hover{ opacity:1; }
      .heroHeader .brandMark{
      background: rgba(185, 225, 75, .95);
      }
      .heroHeader .brand > div div:nth-child(2){
      color: rgba(255,255,255,.8) !important;
      }
      /* Optional: hero text on banner */
      .heroText{
      position:absolute;
      left:0;
      right:0;
      bottom: 26px;
      z-index: 9;
      /*color:#fff;*/
      /*text-align:center;*/
      top: 17%;
      }
      .heroText .kicker{ color: rgba(255,255,255,.75); }
      .heroText .title{ color:#fff; }
      .heroText .desc{ color: rgba(255,255,255,.80); }
      /* Mobile menu button color */
      .heroHeader .menuBtn{
      color:#fff;
      opacity:.9;
      text-decoration:none;
      font-size:12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      }
      .heroHeader .menuBtn:hover{ opacity:1; }
      /* typography */
      .kicker{
      font-size: 44px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #000;
      margin: 0 0 40px;
      font-family: "Teachers", sans-serif;
      line-height:1.1;
      font-weight: 300;
      }
      .title{
      font-family: "Teachers", sans-serif;
      font-size: clamp(22px, 3vw, 34px);
      font-weight: 500;
      margin: 0 0 10px;
      line-height: 1.15;
      }
      .desc{
      color: #000;
      font-size: 14px;
      line-height: 1.9;
      margin: 0;
      }
      .desc-about {
      font-size: 16px;
      }
      /*.rule{ border-top: 1px solid var(--line); }*/
      .section{ padding: 26px 0; }
      .about-section { padding-bottom:90px; padding-top:90px; }
      /* HERO */
      /* Gallery big + two small */
      .galleryGrid{
      display:grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 20px;
      align-items:start;
      }
      .box{
      border-radius: var(--radius);
      overflow:hidden;
      background:#e5e7eb;
      box-shadow: var(--shadowSoft);
      }
      .box img{ width:100%; height:100%; object-fit:cover; display:block; }
      .galleryBig{ aspect-ratio: 16/10; }
      .gallerySmall{ aspect-ratio: 16/10; }
      /* Amenities strip */
      /* ===== Amenities: line + square cards ===== */
      .amenities-sec{
      padding: 40px 0;
      background: #fff;
      }
      .amenities-track{
      position: relative;
      padding: 22px 0;
      }
      /* horizontal grey line behind cards */
      .amenities-line{
      position: absolute;
      left: 8px;
      right: 0;
      top: 50%;
      height: 3px;
      background: #7a8086;
      transform: translateY(-50%);
      opacity: .75;
      z-index: 0;
      width: 98%;
      }
      /* cards row */
      .amenities-row{
      position: relative;
      z-index: 1;
      display: flex;
      gap: 36px;
      justify-content: center;
      align-items: center;
      overflow-x: auto;
      padding: 0 6px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      }
      /* hide scrollbar cleanly */
      .amenities-row::-webkit-scrollbar{ height: 0; }
      .amenities-row{ scrollbar-width: none; }
      /* square card */
      .amenity-card{
      width: 150px;
      height: 150px;
      border: 1px solid rgba(35, 110, 255, .0);
      background: #f5ffe6;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 12px;
      text-align: center;
      padding: 14px;
      border-radius: 0; /* squared like screenshot */
      box-shadow: none;
      cursor: pointer;
      scroll-snap-align: center;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      }
      .amenity-card:hover{
      transform: translateY(-2px);
      }
      /* active (blue outline) */
      .amenity-card.is-active{
      border-color: #1b66ff;
      box-shadow: 0 0 0 2px rgba(27, 102, 255, .15);
      }
      /* icon box */
      .amenity-ic{
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      }
      .amenity-ic img{
      width: 40px;
      height: 40px;
      object-fit: contain;
      display: block;
      }
      /* text */
      .amenity-txt{
      font-size: 16px;
      line-height: 1.15;
      color: #111;
      font-weight: 500;
      }
      /* responsive tweak */
      @media (max-width: 576px){
      .amenities-row{
      justify-content: flex-start;
      gap: 18px;
      padding: 0 10px;
      display: block;
      column-count: 2;
      }
      .amenity-card{
      width: 138px;
      height: 138px;
      margin-bottom: 10px;
      margin-left: auto;
      margin-right: auto;
      }
      .amenities-line {
      display: none;
      }
      .cta-strip__btn {
      padding: 8px 20px;
      font-size: 12px;
      }
      .logo-width {
          width: 20% !important;
      }
      .heroCard img{ height:85vh !important; }
      }
      /* Location */
      .locationGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 20px;
      align-items:center;
      }
      .locationBox{ 
      width: 85%;
      height: auto; 
      }
      /* Map (full bleed) */
      .mapBox{
      width:100%;
      aspect-ratio: 16/9;
      background:#dbeafe;
      overflow:hidden;
      }
      .mapBox iframe, .mapBox img{
      width:100%;
      height:100%;
      border:0;
      display:block;
      object-fit:cover;
      }
      .footer{
      padding: 14px 0 20px;
      text-align:center;
      color:#000;
      font-size: 11px;
      letter-spacing:.18em;
      text-transform: uppercase;
      }
      /* responsive */
      @media (max-width: 992px){
      .galleryGrid{ grid-template-columns: 1fr; }
      .locationGrid{ grid-template-columns: 1fr; }
      .amenitiesRow{ grid-template-columns: repeat(3, minmax(0,1fr)); }
      .mapBox{ aspect-ratio: 4/3; }
      .banner-font-style {
      font-size: 22px !important;
      }
      .banner-subfont-style {
      font-size: 16px;
      }
      .heroText {
      top: 26% !important;
      }
      }
      .navLinks{
      display:flex; gap:18px; align-items:center;
      font-size:16px; letter-spacing:.08em; text-transform:uppercase;
      }
      .navLinks a{ color:#000; text-decoration:none; opacity:.7; }
      .navLinks a:hover{ opacity:1; }
      .logo-width { width:12%; }
      .banner-font-style { 
      font-size: 65px;
      color: #000 !important;
      }
      .banner-subfont-style {
      font-weight: 200;
      }
      .w-100 {
      width: 100%;
      }
      .height-100 {
      height: -webkit-fill-available;
      }
      /* ===== Full width CTA strip (like screenshot) ===== */
      .cta-strip{
      position: relative;
      width: 100%;
      min-height: 450px;            /* height similar to your image */
      display: grid;
      place-items: center;
      overflow: hidden;
      }
      /* background image */
      .cta-strip__bg{
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.02);       /* tiny zoom like a hero crop */
      }
      /* dark overlay */
      .cta-strip__overlay{
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,.55);
      }
      /* content */
      .cta-strip__content{
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 34px 16px;
      }
      /* title like your image */
      .cta-strip__title{
      margin: 0 0 45px;
      color: #fff;
      font-weight: 300;
      text-transform: uppercase;
      letter-spacing: 5px;
      font-size: clamp(20px, 3vw, 42px);
      line-height: 1.2;
      }
      /* button style like your image */
      .cta-strip__btn{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 34px;
      background: #000;
      color: #fff;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 2px;
      font-size: 16px;
      letter-spacing: .06em;
      transition: transform .15s ease, background .15s ease;
      }
      .cta-strip__btn:hover{
      background: #111;
      transform: translateY(-1px);
      }
      /* mobile height adjust */
      @media (max-width: 576px){
      .cta-strip{ min-height: 180px; }
      .cta-strip__title{ letter-spacing: .16em; }
      }
      img.social-media-img {
      padding: 5px;
      width: 45px;
      }
      /* ===== Gallery slider ===== */
      .gallery-slider{
      position: relative;
      width: 100%;
      aspect-ratio: 4/ 3;   /* keeps height consistent */
      overflow: hidden;
      }
      .gallery-slider img{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      /*object-fit: cover;*/
      opacity: 0;
      transition: opacity .6s ease;
      }
      .gallery-slider img.active{
      opacity: 1;
      }
      /* other gallery images */
      .gallery-img{
      aspect-ratio: 4 / 3;
      object-fit: cover;
      }
      .gallery-slider1{
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;   /* keeps height consistent */
      overflow: hidden;
      }
      .gallery-slider1 img{
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity .6s ease;
      }
      .gallery-slider1 img.active1{
      opacity: 1;
      }
      /* other gallery images */
      .gallery-img1{
      aspect-ratio: 4 / 3;
      object-fit: cover;
      }
      .enquiry-strip{
      background:#f4f6f8;
      padding:48px 0;
      }
      .enquiry-card{
      max-width:980px;
      margin:0 auto;
      }
      .enq-title{
      font-size:35px;
      letter-spacing:.08em;
      text-transform:uppercase;
      color:#000000;
      font-weight:600;
      }
      .enq-sub{
      max-width:70ch;
      font-size:16px;
      line-height:1.7;
      color:#6b7480;
      }
      .enq-form{
      display:grid;
      /*grid-template-columns: 1fr 1fr 220px;*/
      gap:18px;
      align-items:center;
      /*padding: 30px;*/
      }
      .enq-input{
      width:100%;
      height:44px;
      border:0;
      background:#e9edf1;
      padding:0 16px;
      font-size:14px;
      outline:none;
      }
      .enq-input::placeholder{ color:#8a95a3; }
      .enq-btn{
      height:44px;
      border:0;
      background:#000;
      color:#fff;
      font-weight:600;
      letter-spacing:.02em;
      cursor:pointer;
      transition:.2s ease;
      }
      .enq-btn:hover{ transform: translateY(-1px); }
      /* Responsive */
      @media (max-width: 991px){
      .enq-form{ grid-template-columns: 1fr 1fr; }
      .enq-btn{ grid-column: 1 / -1; }
      }
      @media (max-width: 575px){
      .enquiry-strip{ padding:36px 0; }
      .enq-form{ grid-template-columns: 1fr; gap:12px; }
      .enq-title{ font-size:18px; }
      .inq-form {padding-top: 30px !important;padding-bottom: 15px !important;}
      .zoomHero__img {height:auto !important;}
      .zoomHero {height:auto !important;}
      }
      .why-section {
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      }
      .why-section ul {
      list-style: none;
      }
      /* ===== ZOOM SECTION (fixed) ===== */
      .zoomHero{
        position: relative;
        height: 220vh;          /* IMPORTANT: gives scroll room */
        width: 100%;
        background: #f5ffe6;       /* no white gaps */
      }

      .zoomHero__img{
        position: sticky;       /* THIS IS THE KEY */
        top: 0;
        width: 100%;
        height: 100vh;
        object-fit: cover;
        border-radius: 0;
        transform: scale(0.45);
        transform-origin: center center;
        will-change: transform;
      }



      /* ===== HAMBURGER ===== */
/* ===== HAMBURGER ===== */
.menuBtn{
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.menuBtn span{
  width: 28px;
  height: 2px;
  background: #000;
  display: block;
  transition: all .3s ease;
}

/* ===== OVERLAY (mobile only visually) ===== */
.menuOverlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1001;
}
.menuOverlay.active{
  opacity: 1;
  pointer-events: all;
}

/* ===== MENU COMMON ===== */
.mobileMenu{
  position: fixed;
  background: #fff;
  z-index: 1003;
  transition: all .35s ease;
}

/* links */
.mobileNav{
  display: flex;
}
.mobileNav a{
  text-decoration: none;
  color: #000;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* close button */
.closeBtn{
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 34px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ================= DESKTOP MENU ================= */
@media (min-width: 992px){

  .mobileMenu{
    top: 90px;                     /* below header */
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 22px 40px;
    opacity: 0;
    pointer-events: none;
    border: 1px solid #e5e7eb;
  }

  .mobileMenu.active{
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .mobileNav{
    flex-direction: row;
    gap: 32px;
  }

  .mobileNav a{
    font-size: 14px;
  }

  .closeBtn{
    display: none;
  }

  /* no overlay on desktop */
  .menuOverlay{
    display: none;
  }
}

/* ================= MOBILE MENU ================= */
@media (max-width: 991px){

  .mobileMenu{
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    padding: 80px 32px;
    transform: translateX(100%);
  }

  .mobileMenu.active{
    transform: translateX(0);
  }

  .mobileNav{
    flex-direction: column;
    gap: 26px;
  }

  .mobileNav a{
    font-size: 20px;
  }
}
/* ===== DESKTOP NAV ===== */
.desktopNav{
  display: flex;
  gap: 32px;
}

.desktopNav a{
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: capitalize;
  position: relative;
}

.desktopNav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #000;
  transition: width .25s ease;
}

.desktopNav a:hover::after{
  width: 100%;
}
/* DESKTOP */
@media (min-width: 992px){
  .menuBtn{
    display: none;        /* hide hamburger */
  }
}

/* MOBILE */
@media (max-width: 991px){
  .desktopNav{
    display: none;        /* hide desktop menu */
  }
}



/* ===== STICKY INQUIRE BUTTON ===== */
/* ===== VERTICAL INQUIRE BUTTON ===== */
.inquireBtn{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: none;
  cursor: pointer;
  z-index: 999;
  border-radius: 6px 0 0 6px;
}

/* letters */
.inquireBtn span{
    font-size: 12px;
    /* letter-spacing: .12em; */
    text-transform: uppercase;
    line-height: 6px;
    font-family: "Teachers", sans-serif;
    transform: rotate(90deg);
}


/* ===== MODAL ===== */
.inquireModal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 1000;
}

.inquireModal.active{
  opacity: 1;
  pointer-events: all;
}

/* modal box */
.inquireModal__content{
  background: #fff;
  width: 420px;
  max-width: 90%;
  padding: 36px 28px;
  position: relative;
  animation: modalUp .35s ease;
}

@keyframes modalUp{
  from{ transform: translateY(30px); opacity: 0; }
  to{ transform: translateY(0); opacity: 1; }
}

/* close */
.inquireClose{
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* title */
.inquireTitle{
  margin-bottom: 22px;
  font-size: 22px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* form */
.inquireForm{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inquireForm input,
.inquireForm select{
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  outline: none;
}

.inquireSubmit{
  height: 46px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.card {
    box-shadow: 0px 1px 6px -1px #5a5a5a5e;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
}
.card-des {
  font-weight: 600; margin-bottom: 5px; margin-top: 10px; font-size: 20px; line-height: 1.3;
}
.inq-form {
  background: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 0;
} 

/* ===== FLOOR PLAN SECTION ===== */
.plan-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.plan-card{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.plan-card img{
  width: 100%;
  height: auto;
  display:block;
  filter: blur(4px);
  transform: scale(1.02); /* avoids edges showing due to blur */
}

.plan-card::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.1);
}

.plan-btn{
  position:absolute;
  inset:auto 16px 16px 16px;
  z-index: 2;
  display:flex;
  justify-content: center;
}

.plan-btn button{
  border:0;
  background:#000;
  color:#fff;
  padding: 12px 22px;
  border-radius: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 14px;
  cursor:pointer;
}

.plan-btn button:hover{ transform: translateY(-1px); }

/* responsive */
@media (max-width: 768px){
  .plan-grid{ grid-template-columns: 1fr; }
  .mbl-row { display: contents !important; }
  .mbl-display-none { display:none; }
}

/* ===== CUSTOM MODAL ===== */
.planModal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}

.planModal.active{ display:flex; }

.planModal__box{
  width: min(980px, 96vw);
  max-height: 90vh;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  display:flex;
  flex-direction: column;
}

.planModal__head{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.planModal__title{
  margin:0;
  font-size: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.planModal__close{
  border:0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}

.planModal__body{
  padding: 12px;
  overflow: auto;
}

.planModal__body img{
  width: 100%;
  height: auto;
  display:block;
  border-radius: 10px;
}
.kicker-sub {
    font-size:28px;
    font-weight: 300;
    text-transform: uppercase;
    margin-top: -32px;
    margin-bottom: 40px;
}

.gallery-dots,
.gallery-dots1{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery-dots span,
.gallery-dots1 span{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all .3s ease;
}

.gallery-dots span.active-dot,
.gallery-dots1 span.active-dot{
  background: #000;
  transform: scale(1.2);
}

/* ===== Reviews section like screenshot ===== */
.gt-reviews{
  background: #f5ffe6; /* warm beige like screenshot */
  padding: 90px 0;
}

.gt-reviews__title{
  font-family: "Teachers", sans-serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.gt-reviews__sub{
  max-width: 75ch;
  color: rgba(0,0,0,.65);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 auto 40px;
}

.gt-reviews__grid{
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: center;
}

/* LEFT SUMMARY CARD */
.gt-reviews__summary{
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.gt-summary__brand{
  display: flex;
  gap: 14px;
  align-items: center;
}

.gt-summary__logo{
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.gt-summary__name{
  font-weight: 600;
  font-size: 18px;
}

.gt-summary__stars .star{
  color: #f6b100;
  font-size: 18px;
  line-height: 1;
}
.gt-summary__stars .half{
  position: relative;
  display: inline-block;
  color: #f6b100;
  opacity: .45;
}

.gt-summary__count{
  margin-top: 4px;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}

.gt-summary__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid rgba(0,0,0,.25);
  background: transparent;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: .2s ease;
}
.gt-summary__btn:hover{
  background: rgba(0,0,0,.06);
}

/* RIGHT SLIDER */
.gt-reviews__sliderWrap{
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 44px; /* left arrow | track | right arrow */
  align-items: center;
  gap: 12px;
}

.gt-reviews__track{
  overflow: hidden;               /* hide extra cards */
}
.gt-reviews__track::-webkit-scrollbar{ height:0; }

.gt-reviews__trackInner{
  display: flex;
  gap: 18px;
  overflow-x: auto;               /* scrollable */
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;  /* snaps per card */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 10px 6px;
}

.gt-reviews__trackInner::-webkit-scrollbar{ height:0; }

/* Review card */
.gt-reviewCard{
    flex: 0 0 calc((100% - (18px * 2)) / 3); /* 3 cards with 2 gaps */
    scroll-snap-align: start;
    background: rgba(255,255,255,.55);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 16px 16px 14px;
    min-width: 260px; /* safety for small screens */
  }

.gt-reviewCard__top{
  display: flex;
  align-items: center;
  gap: 10px;
}

.gt-avatar{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e9e9e9;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.gt-who{ flex: 1; }
.gt-name{ font-weight: 700; font-size: 14px; }
.gt-time{ font-size: 12px; color: rgba(0,0,0,.55); }

.gt-gIcon{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,.12);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
}

.gt-reviewCard__stars{
  margin: 10px 0 8px;
}
.gt-reviewCard__stars .star{
  color: #f6b100;
  font-size: 16px;
  line-height: 1;
}

.gt-reviewCard__text{
  font-size: 14px;
  line-height: 1.8;
  color: rgba(0,0,0,.75);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gt-reviewCard__more{
  color: rgba(0,0,0,.55);
  text-decoration: none;
  font-size: 13px;
}
.gt-reviewCard__more:hover{ text-decoration: underline; }

/* arrows */
.gt-arrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.8);
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
  z-index: 2;
}
.gt-arrow:hover{ transform: translateY(-1px); }

.gt-reviews__track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:10px 6px;
  scrollbar-width:none;
  -webkit-overflow-scrolling:touch;
}
.gt-reviews__track::-webkit-scrollbar{ height:0; }

.gt-reviewCard{
  flex: 0 0 auto;      /* IMPORTANT */
  width: 320px;        /* IMPORTANT */
}


/* responsive */
@media (max-width: 992px){
  .gt-reviews__grid{
    grid-template-columns: 1fr;
  }
  .gt-reviews__summary{
    align-items: center;
    text-align: center;
  }
  .gt-summary__brand{
    justify-content: center;
  }
  /*.gt-reviews__sliderWrap{
    gap: 10px;
  }*/
  /*.gt-reviewCard{ width: 280px; }*/
}
/* responsive: 2 cards */
@media (max-width: 992px){
  .gt-reviewCard{
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

/* responsive: 1 card */
@media (max-width: 576px){
  .gt-reviews__sliderWrap{
    grid-template-columns: 1fr; /* hide arrows on small if you want */
  }
  .gt-arrow{ display:none; }
  .gt-reviewCard{
    flex: 0 0 100%;
  }
}