/* ==========================================================================
   Catchthedeal — design system
   Converted from the Adobe XD prototype (1536px artboards)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

:root {
  /* brand */
  --ink: #000000;
  --nav: #243834;
  --nav-chip: #395751;
  --teal: #02a288;
  --teal-soft: #31b39e;
  --teal-tint: #d5f0eb;
  --navy:#002C52;
  --sky: #d4f8ff;

  /* neutrals */
  --text: #14181a;
  --muted: #5f6b70;
  --faint: #8b979c;
  --line: #e3e8ea;
  --card: #ffffff;
  --shell: #f4f6f7;

  /* section tints */
  --tint-1: #f3ebeb;
  --tint-2: #dcf0ee;
  --tint-3: #e9f8ef;
  --tint-4: #fdf3e0;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;

  --container: 1280px;
  --shadow: 0 2px 10px rgba(16, 32, 40, 0.06);
  --shadow-lg: 0 8px 28px rgba(16, 32, 40, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
font-family: "Poppins", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  background: var(--ink);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.4px;
  flex: none;
}
.logo__mark {
  width: 26px; height: 26px;
  flex: none;
}
.logo__the { color: var(--teal-soft); }

.search {
  flex: 1;
  max-width: 700px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 4px;
  height: 48px;
}
.search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 0 14px;
  font-size: 15px;
  color: var(--text);
}
.search input::placeholder { color: #9aa5aa; }
.search__btn {
  width: 62px;
  height: 40px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  display: grid;
  place-items: center;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: 0;
}
.pill:hover { background: var(--teal); }
.carousel-caption {
    position: absolute;
    left: 50%;
    top:60%;
    color: #fff;
    text-align: center;
    transform: translate(-50%, -50%);
    width: 100%;}
.carousel-caption h2 {   color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
	font-style: italic;}
.nav-toggle {
  display: none;
  width: 40px; height: 36px;
  border: 0; border-radius: var(--radius-sm);
  background: #1e1e1e; color: #fff;
}
.filter-toggle {
  display: none;
  width: 40px; height: 36px;
  border: 0; border-radius: var(--radius-sm);
  /* background: #1e1e1e;  */
  /* background: #643939; 
  color: #1e1e1e;
   border: 1px solid #1e1e1e; */

       background: #ece6e6;
    color: #333131;
    border: 1px solid #d2cdcd;

}
.mobile-filter {
  display: none;
 
}

/* ==========================================================================
   Primary nav
   ========================================================================== */

.mainnav {  color: #fff; }
.mainnav__inner { display: flex; align-items: stretch; gap: 6px; }

.mainnav__chip {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: inherit;
    padding: 0;
    height: 52px;
    font-size: 13.5px;
    border: 0;
    color: #fff;
}

.mainnav__chip svg { transition: transform .18s ease; }
.shops.is-open .mainnav__chip svg { transform: rotate(180deg); }

.shops { position: relative; display: flex; }

/* .shops-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 70;
  min-width: 150px;
  background: #fff;
  color: var(--text);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px 18px;
} */
/* .shops-menu[hidden] { display: none; } */
.container_details{width: 100%; background: #f3f3f3;padding-bottom: 1px;}

.shops-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px 14px;
  margin-bottom: 14px;
}
.shops-menu__grid a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}
.shops-menu__grid a:hover { background: #eefaf7; color: var(--teal); }
.shops-menu__name {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
   /* text-align: center; */
}
.shops-menu__head {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
   /* text-align: center; */
  text-overflow: ellipsis;
}
.shops-menu__off { color: var(--muted); font-size: 13px; white-space: nowrap; }
.shops-menu__all { display: inline-block; }

.mainnav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}
.mainnav__links::-webkit-scrollbar { display: none; }
.mainnav__links a {
  padding: 0 13px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  font-size: 13.5px;
  white-space: nowrap;
  color: #eaf1ef;
}
.mainnav__links a:hover,
.mainnav__links a[aria-current="page"] { color: #fff; background: rgba(255,255,255,.07); }

/* ==========================================================================
   Section furniture
   ========================================================================== */

.section { padding: 44px 0; }
.section--tight { padding: 20px 20px;
    background: #fff;border-radius: 11px;margin: 30px 0; }

.section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 21px;
}
.section-head h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.3px;
}
.section-head--center {
  justify-content: center;
  margin-bottom: 26px;
}
.section-head--center h2 { font-size: 24px; }

.link-teal {
  color: var(--teal);
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0;
  line-height: 25px;position: relative;
  top: -2px;
}
.link-teal:hover { color: #017a67; }

.carousel-nav {
  margin-left: auto;
  display: flex;
  gap: 10px;
  flex: none;
}
.carousel-nav button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 0;
  display: grid;
  place-items: center;
  background: #c8cfd2;
  color: #fff;
}
.carousel-nav button:hover { background: #101418; }
.carousel-nav button:disabled { opacity: .35; cursor: default; }

/* horizontal scroller */
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(232px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  /*padding-bottom: 4px;*/
  scrollbar-width: none;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail--wide { grid-auto-columns: minmax(292px, 1fr); }
.slick-hero-slider  img{
  max-height: 100%;
}
/* ==========================================================================
   Stores
   ========================================================================== */

.stores {
  background: linear-gradient(180deg, var(--sky) 0%, #eafcff 45%, #ffffff 100%);
  padding: 0 0 48px;
}

.stores__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.store-card {
  background: #fff;
  padding: 20px 12px 14px;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
  box-shadow: 0px 3px 10px #0000000F;
  border-radius: 9px;
}
.store-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.store-card__logo {
  /*place-items: center;*/
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #1c2124;
  display: flex;
  width: 100%;
  justify-content: center;
  height: 70px;
}
.store-card__logo img {
  /*height: 100%;*/
  object-fit: contain !important;
  width: 90px;
}
.store-card__logo_details {
  /*place-items: center;*/
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #1c2124;
  display: flex;
  width: 100%;
  justify-content: left;
  height: 45px;
}
.store-card__logo_details img {
  /*height: 100%;*/
  object-fit: contain !important;
  width: 70px;
}

.brand_logo .store-card__logo_details {justify-content: left;}

.store-card__off {
  /*margin-top:10px;*/
  font-size: 13px;
  letter-spacing: 0px;
  color: #0D0D0D;
  display: inline-block;
  width: 100%;
}

.banner-content{
   width: 100%;

}
.banner-content.right{
    right: 20%;

}
.stores {position: relative;}
.stores .carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 9;
    /* transform: translateY(-50%);    */
     width: 100%;

}
.stores .carousel-nav p.right {position: absolute; right: 0;}

  .rail.slick-initialized .slick-track {
    display: flex !important;
   gap: 0;
  }
  .rail .deal-card {
    height: auto !important;
  }

/* ==========================================================================
   Tinted category tiles
   ========================================================================== */

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:2px;
  border-radius: 4px;
  overflow: hidden;
}
.tile { padding:14px 18px; }
.tile:nth-child(1) { background: var(--tint-1); }
.tile:nth-child(2) { background: var(--tint-2); }
.tile:nth-child(3) { background: var(--tint-3); }
.tile:nth-child(4) { background: var(--tint-4); }

.tile h3 {
  margin: 0 0 21px;
  font-size: 20px;
  font-weight: 600;
  line-height: 22px;
  min-height: 44px;
}
.tile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;min-height: 270px;
  margin-bottom: 16px;
}
.tile__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
  height: 90px;
}
.tile__item span {
  display: block;
  margin-top: 7px;
  font-size: 13px;
  color: #000;
  line-height: 20px;
  width: 100%;
  letter-spacing: 0;
}

/* ==========================================================================
   Flight cards
   ========================================================================== */
.slick-slide-item {width: 100% !important;}
.flight-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  color: #fff;
}
.flight-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.flight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.72) 100%);
}
.flight-card__body {
  position: relative;
  z-index: 1;
  padding:0 18px 24px;
  width: 100%;
}
.flight-card__title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 6px;
}
.flight-card__price {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height:39px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn--white { background: #fff; color: var(--text); width: 100%; }
.btn--white:hover { background: #eef1f2; }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { background: #018f78;color: #fff; }
.btn--ghost { background: #fff; color: var(--text); border-color: var(--teal); }
.btn--ghost:hover { background: var(--teal); color: #fff; }
.btn--ghost-teal { background: #fff; color: var(--teal); border-color: var(--teal); }
.btn--ghost-teal:hover { background: var(--teal); color: #fff; }
.btn--pill { border-radius: 999px; height: 46px; padding: 0 34px; }
.btn--block { width: 100%; }

/* ==========================================================================
   Holiday deal cards
   ========================================================================== */

.holiday-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.holiday-card img { border-radius: 10px;width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.holiday-card__body { padding:15px 17px; display: flex; flex-direction: column; flex: 1; }
.holiday-card h3 {  margin: 0 0 10px;  font-size: 18px;  font-weight: 600;  color: #000;  letter-spacing: 0;}
.holiday-card p {  margin: 0 0 10px;  font-size: 15px;  color: #5A5A5A;  min-height: 70px;}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
}
.spec-row span:first-child { color:#5A5A5A; }
.spec-row span:last-child { font-weight:600; }
.holiday-card .btn { margin-top: 16px; align-self: flex-start; }

/* ==========================================================================
   Product / deal cards
   ========================================================================== */

.deal-card {
  background: var(--shell);
  border-radius: 7px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.deal-card__media { background: #fff; }
.deal-card__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: #f4f6f7;
    border-radius: 11px 11px 0 0;padding: 5px; }
.deal-card__body { padding: 12px 14px 18px; display: flex; flex-direction: column; flex: 1; }

.deal-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  width: fit-content;
}
.deal-card__label {
  font-size: 13px;
  color: #01a288;
  line-height: 21px;
  letter-spacing: 0;
  font-weight: 500;
}
.badge {
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 3px;
  white-space: nowrap;
  line-height: 21px;
}

.price { display: flex; align-items: baseline; gap: 9px; margin-bottom: 8px; }
.price__now {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 38px;
  color: #000;
}
.price__was {
  font-size: 13px;
  color: #7B7B7B;
  text-decoration: line-through;
  line-height: 20px;
}

.deal-card__desc {
  font-size: 15px;
  color: #000;
  line-height: 20px;
  margin: 10px 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 39px;
  font-weight: 600;
}
.deal-card .btn {
  max-width: 168px;
  margin: auto;
  height: 39px;
  box-shadow: 0px 3px 6px #0000000F;
  border: 1px solid #02A288;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0px;
} 

/* ==========================================================================
   Brand cards
   ========================================================================== */

.brand-card {
  border-radius: 9px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
max-height: 290px;
}
.brand-card img { width: 100%;  object-fit: cover; max-height: 100%; }
.brand-card__name {
  height: 58px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .5px;
  color: #1b2226;
  aspect-ratio: 1 / 1.02; 
  margin: 0 auto;

}
.brand-card__off {
  background: var(--teal-tint);
  text-align: center;
  padding: 11px;
  font-size: 14.5px;
  font-weight: 700;
}

/* ==========================================================================
   Best sellers (navy panel)
   ========================================================================== */

.bestsellers {
  background: var(--navy);
  border-radius: 4px;
  padding: 26px 24px 30px;
  color: #fff;
}
.bestsellers .section-head h2 { color: #FFF;}
.bestsellers .link-teal { color: #fff; }
.bestsellers .carousel-nav button { background: rgba(255,255,255,.25); }
.bestsellers .carousel-nav button:hover { background: var(--teal); }

.bs-card { position: relative; border-radius: 2px; overflow: hidden; }
.bs-card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 11px; }
.bs-card__price {
  position: absolute;
  left: 0; right: 0; bottom: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}

/* ==========================================================================
   Category boxes
   ========================================================================== */

.cat-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
}
.cat-box { padding: 22px 20px; border-right: 1px solid var(--line); }
.cat-box:last-child { border-right: 0; }
.cat-box h3 { margin: 0 0 18px; font-size: 18px; font-weight: 800; }

/* ==========================================================================
   Blog
   ========================================================================== */

.blog-panel {
  background: var(--shell);
border-radius: 13px;
  padding:30px 29px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 26px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card img {border-radius: 9px; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card__body {border-radius: 9px; padding:21px 17px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;  color: #000;  min-height: 50px;
}
.blog-card__read { font-size: 13px; color: var(--muted); margin-bottom: 12px; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #5A5A5A;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  margin: 0 0 13px;
  line-height: 40px;
}
.blog-card__meta img {
  width: 20px; height: 20px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-card__more {
  margin-top: auto;
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.14px;
}
.blog-panel__cta { text-align: center; }



/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

.faq-item {
  border: 1px solid transparent;
  background: #f5f7f8;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item[open] { background: #fff;
  box-shadow: 0px 3px 10px #0000000F;
  border: 1px solid #2B5D36;
  border-radius: 7px; }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #01a288;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 11px; height: 11px;
  flex: none;
  border-right: 2px solid #22282b;
  border-bottom: 2px solid #22282b;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .18s ease;
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }

.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p {
  margin: 0 0 14px;
  font-size: 14px;
  color: #000;
  line-height: 23px;
}
.faq-item__body p:last-child { margin-bottom: 0; }

.ad-slot {
  /* background: #0e7ba6; */
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
  overflow: hidden;
}
.ad-slot img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { padding: 20px 0 46px; }
.site-footer__panel {
  background: var(--nav);
  color: #e7efec;
  border-radius: var(--radius-lg);
  padding: 34px 44px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.4fr;
  gap: 30px;
}
.site-footer h4 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0;
}
.site-footer li { margin-bottom: 9px; font-size: 14px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-col--cats { display: contents; }

.newsletter p { margin: 0 0 14px; font-size: 14px; }
.newsletter input {
  width: 100%;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid #5b756e;
  background: #1b2c29;
  color: #fff;
  padding: 0 14px;
  outline: 0;
  font-size: 14px;
}
.newsletter input::placeholder { color: #9db2ac; }
.newsletter button {
  margin-top: 16px;
  height: 40px;
  padding: 0 28px;
  border-radius: 999px;
  border: 0;
  background: #4a625c;
  color: #fff;
  font-size: 14px;
}
.newsletter button:hover { background: var(--teal); }

.socials { display: flex; gap: 14px; margin: 22px 0 18px; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #16337a;
  display: grid;
  place-items: center;
  color: #fff;
}
.socials a:hover { background: var(--teal); }
.copyright {
  font-size: 14px;
  color: #FFF;
}

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.breadcrumb {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  padding: 20px 0 6px;
  font-size: 13px;
  font-weight: 400;
}
.breadcrumb span { color: var(--faint); font-weight: 400; }
.breadcrumb [aria-current] { color: var(--teal); }

/* ==========================================================================
   Listing page
   ========================================================================== */

.listing {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 46px;
  padding: 14px 0 50px;
  align-items: start;
}
.listing > * { min-width: 0; }

.filters h1 {
  margin: 0 0 26px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 42px;
}
.filters h3 {
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
}
.range-slider-fill {height: 3px!important;
  background-color: #707070 !important;
}
 .price-slider-wrapper input[type="range"]::-moz-range-thumb {
  background: #fff!important;
  border: 1px solid #707070!important;
}
.price-inputs {
  justify-content: space-between!important;
}
.price-inputs div {
  min-width: 63px;
  height: 24px;
  background: #fff;
  border: 1px solid #CECECE;
  border-radius: 3px;
  text-align: center;
  display: flex;
  padding: 0 10px;
}
.price-inputs input {
  width: 100%;
  max-width: 50px;
  border: 0px solid #ccc;
  border-radius: 4px;
  height: 100%;
}
 .filters-header .btn{
  padding: 0;
  color: #02a288;
}
.filter-group { margin-bottom: 30px; }
.filter-group li { margin-bottom: 7px; font-size: 14px; color: #2f373a; }
.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}
.filter-group input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: var(--teal);
}

.range { margin: 16px 0 12px; }
.range input[type="range"] { width: 100%; accent-color: var(--teal); }
.range__values { display: flex; gap: 12px; margin-top: 12px; }
.range__values input {
  width: 100%;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 0 10px;
  font-size: 13px;
  text-align: center;
}

.results-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.product__desc strong { font-weight: 400;color:#FF9110;}
.results-head h2 {
  margin: 0 0 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 30px;
}
.sort-select {
  border: 0;
  background: transparent;
  color: #4F3667;
  font-size: 16px;padding: 0;
  font-weight: 400;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.is-vertical article {
  display: flex;
  flex-direction: row !important;
   margin-bottom: 20px;
}
/* .holiday-vertical article {
  display: flex;
  flex-direction: row !important;
   margin-bottom: 20px; */
/* } */

.deal-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 36px 0 10px;
}
.pagination a, .pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #3d474b;
}
.pagination .is-active {
  background: #101418;
  border-color: #101418;
  color: #fff;
  font-weight: 700;
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }

.is-vertical .deal-card__media img {
       height: 257px;
    max-height: 300px;
    border-radius: 9px 0 0 9px;
}
.is-vertical .price__was {
    font-size: 13px;
    display: block;
}
.is-vertical .deal-card__body {display: block;}
.is-vertical .deal-card__desc {margin-bottom: 6px; font-size: 16px;
    font-weight: 500; line-height: 22px;
}

/* ==========================================================================
   Details page
   ========================================================================== */

.product {
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  gap: 60px;
  padding: 20px 20px;
  align-items: start;
  border-radius: 9px;
  background-color: #fff;
}
.product > * { min-width: 0; }
.product__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 7px;
}
.product h1 {
  margin: 0 0 15px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.product__price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.product__price .price__now { font-size:30px; }
.product__delivery { color: var(--teal); font-weight: 600; font-size: 15px; }
.product__desc {
  font-size: 16px;
  color: #3B3B3B;
  line-height: 27px;
  margin: 0 0 22px;
}
.shop-at {
  display: inline-block;
  padding: 2px 14px;
  font-size: 16px;
  margin: 30px 0 59px;
  border: 1px dashed #707070;
  line-height: 27px;
}
.shop-at strong { color: var(--teal); }
.product .btn--teal { width: 400px; max-width: 100%; height: 50px; }

/* ==========================================================================
   Redirect page
   ========================================================================== */

.redirect { padding: 70px 0 90px; display: grid; place-items: center; }
.redirect__card {
  border: 1px dashed var(--teal);
  border-radius: 3px;
  padding: 40px 60px 44px;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.redirect__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 26px;
}
.redirect__chip {
  min-width: 108px;
  height: 46px;
  padding: 0 14px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.2px;
  white-space: nowrap;
  color: #fff;
  background: #101418;
}
.redirect__chip--store { background: #1d3350; }
.redirect__arrow { color: #b3161a; font-size: 30px; line-height: 1; }
.redirect h1 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 600;
  line-height:30px;
}
.redirect p { margin: 0; font-size: 16px; }
.redirect__count { color: #f08a24; font-weight: 700; }

/* ==========================================================================
   Responsive
   ========================================================================== */
.section-head.bcfw h2  {
  width: 100%;
  text-align: center;
  font-size: 28px;
  margin: 10px 0 27px;
}


@media (max-width: 1180px) {
  .stores__grid { grid-template-columns: repeat(4, 1fr); }
  .tiles, .cat-boxes { grid-template-columns: repeat(2, 1fr); }
  .cat-box:nth-child(2) { border-right: 0; }
  .product { grid-template-columns: 1fr; gap: 30px; }
  .product__media { max-width: 520px; }
  .listing { grid-template-columns: 210px minmax(0, 1fr); gap: 28px; }
  .product-grid, .deal-grid-5 { grid-template-columns: repeat(3, 1fr); }
         .site-header__inner{ padding: 12px 10px !important;}

}

@media (max-width: 960px) {
  .site-header__inner { height: auto; padding: 12px 0; flex-wrap: wrap; }
  .search { order: 3; width: 100%; max-width: none; flex-basis: 100%; }
  .nav-toggle { display: grid; place-items: center; }
  .filter-toggle { display: grid; place-items: center; }
  .mobile-filter { display: flex; justify-content: space-between; align-items: center; }
  .mainnav__inner { display: none; }
      .mainnav__inner.is-open {
        display: block;
        position: absolute;
        background: var(--nav-chip);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
        height: 100vh;padding: 0 10px;
    }
    .mobileCross { position: relative;}
    .mobileCross .filter-toggle {         background: inherit;
        border: 0;
        position: absolute;
        top: 10px;
        right: -10px;
        z-index: 99;
        color: #fff;}
        .results-head h2 {
    font-size: 13px;
}
.sort-select {
    
    font-size: 13px;
}
  aside.filters ,  aside.filters .filters-header{ display: none; }
      aside.filters.is-open {
        display: block;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        padding: 15px;
        background: #fff;
        z-index: 999;
    }
    .mobileFliter{
    display: flex;
    justify-content: space-between;
}
aside.filters.is-open .filter-toggle{
    background: inherit;
    border: 0;
}
  .shops { display: block; }
  .mainnav__chip, .mainnav__links { width: 100%; }
  .shops-menu {
    position: static;
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 14px 16px;
  }
  .shops-menu__grid { grid-template-columns: minmax(0, 1fr); }
  .mainnav__links { flex-direction: column; align-items: stretch; }
  .mainnav__links a { height: 46px; }
  .faq-layout { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .site-footer__panel { grid-template-columns: 1fr 1fr; padding: 28px 24px 34px; }
  .listing { grid-template-columns: 1fr; }
  .product-grid, .deal-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .blog-panel, .bestsellers { padding-inline: 18px; }
  .stores .search {
    max-width: 80% !important;
    top: 40% !important;
}
}





.category-menu {
  position: relative;
}

.category-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-menu__item {
  position: relative;
}
.category-menu__link{
  display: flex;
  justify-content: space-between;

}

/* Submenu layout */
.brand-submenu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 150px;
  /* margin-left: 10px; */
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
   border-radius: 3px;
}

/* Show brands on category hover */
.category-menu__item:hover .brand-submenu {
  display: block;
}

.shops-menu__gri li:first{
  padding:  7px 10px ;
  text-align: center;
}
.shops-menu__gri li{
  padding:  2px 10px ;
  text-align: center;
}



/* Container rules */
.shops {
  position: relative;
  display: inline-block;
}

/* ------------------------------------
   1. MAIN MENU DROPDOWN (1st Tier)
------------------------------------ */
.shops-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 240px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 0;

  /* HIDE BY DEFAULT & SETUP ANIMATION */
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  pointer-events: none; /* Prevents ghost clicks while hidden */
}

/* SHOW MAIN MENU ON HOVER */

/* ------------------------------------
   2. CATEGORY ITEMS & SUBMENU (2nd Tier)
------------------------------------ */
.category-menu__list,
.shops-menu__gri {
  list-style: none;
  margin: 0;
  padding: 0;
}

.category-menu__item {
  position: relative;
}

.category-menu__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s;
}

.category-menu__item:hover > .category-menu__link {
  background-color: #f4f6f8;
  color: #008080;
}

/* HIDE BRAND SUBMENU BY DEFAULT */
.brand-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 290px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 0;

  /* SETUP SUBMENU ANIMATION */
  visibility: hidden;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}

/* SHOW BRAND SUBMENU ON CATEGORY HOVER */
.category-menu__item:hover .brand-submenu {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* ------------------------------------
   3. BRAND MENU ITEMS & DISCOUNTS
------------------------------------ */
.shops-menu__gri li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 18px;
  text-decoration: none;
  color: #444444;
  transition: background-color 0.2s;
}

.shops-menu__gri li a:hover {
  background-color: #e6f7f5;
  color: #008080;
}

.shops-menu__head {
  font-weight: 700;
  color: #008080;
}

.shops-menu__discount {
  font-size: 0.78rem;
  font-weight: 600;
  background-color: #e0f2f1;
  color: #00796b;
  padding: 2px 8px;
  border-radius: 12px;
}

.shops-menu__all {
  display: block;
  padding: 12px 18px;
  text-align: center;
  border-top: 1px solid #eeeeee;
  text-decoration: none;
  font-weight: 600;
  color: #008080;
}

.shops-menu__all:hover {
  background-color: #f4f6f8;
}





/* Dropdown Container */
.currency-dropdown {
  position: relative;
  display: inline-block;
}

/* Rotate arrow when hovering over container */
.currency-dropdown:hover .currency-btn svg {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

/* Hidden Dropdown Menu */
.currency-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 110px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 6px 0;
  z-index: 1000;
  margin-top: 4px;
}

/* Invisible hover bridge to prevent menu from flickering closed */
.currency-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 8px;
}

/* Show menu on hover */
.currency-dropdown:hover .currency-menu {
  display: block;
}

/* Dropdown Links */
.currency-item {
  display: block;
  padding: 8px 14px;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.currency-item:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Active Currency Highlighting */
.currency-item.active {
  font-weight: 700;
  color: #2563eb;
  background-color: #eff6ff;
}



/* IMPORTANT - left card kabhi cut nahi hoga */
#flightsRail .slick-list {
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 65px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

 

 .shops:hover .shops-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
   display: block !important;
}



/* Tablet */
@media (max-width: 1023px) {
  #flightsRail .slick-list {
    padding-right: 50px !important;
  }
}


/* Mobile */
@media (max-width: 767px) {
  #flightsRail .slick-list {
    padding-right: 45px !important;
  }

  #flightsRail .slick-slide {
    padding-right: 12px;
  }
  .search-box form {
        width: 85% !important;
    }
    
}


.section-head h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
  line-height: 30px;
  letter-spacing: 0;
}

/* Grid Layout */
.flight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .flight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .flight-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Styling */
.flight-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.flight-card__image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.flight-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flight-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.85) 100%);
}

/* Content Alignment */
.flight-card__content {
    position: relative;
    z-index: 2;
    padding: 20px;
    color: #ffffff;
    text-align: left;
    width: 100%;
}

.flight-card__title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom:10px;
  line-height: 30px;
  letter-spacing: 0;
}

.flight-card__price {
  font-size: 25px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 38px;
  letter-spacing: 0;
}

.dealBtn {
  width: 130px;
  box-shadow: 0px 3px 6px #0000000F;
  border: 1px solid #02A288;
  border-radius: 5px;
  height: 39px;
}
.dealBtn.btn--white:hover {
  background: #02A288;
}
.pt-15 {
  padding-top: 15px;
}
 
/* Button Styling */
.btn--get-deal {
  display: inline-block;
  padding: 10px 0;
  background-color: #ffffff;
  color: #111111;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease;
  width: 130px;
  box-shadow: 0px 3px 6px #0000000F;
  border: 1px solid #02A288;
  border-radius: 5px;
  height: 39px;
}
.btn--get-deal:hover {
background: #02A288;
}

.clearFilter {
  margin: -36px 0 0;
}








/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-intro { padding: 26px 0 8px; max-width: 720px; }
.contact-intro h1 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.6px;
}
.contact-intro p { margin: 0; font-size: 16px; line-height: 1.65; color: var(--muted); }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.reason-card {
  background: var(--shell);
  border-radius: var(--radius);
  padding: 22px 22px 24px;
}
.reason-card__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-tint);
  color: #05715f;
  margin-bottom: 14px;
}
.reason-card h2 { margin: 0 0 8px; font-size: 17px; font-weight: 800; }
.reason-card p { margin: 0 0 12px; font-size: 14px; color: var(--muted); line-height: 1.55; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: start;
  padding: 34px 0 50px;
}

.contact-form-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 30px;
}
.contact-form-wrap__title { margin: 0 0 22px; font-size: 21px; font-weight: 800; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 18px; min-width: 0; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.field .req { color: #c8372d; }
.field__opt { font-weight: 400; color: var(--faint); }

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font: inherit;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(2, 162, 136, .14);
}
.field input::placeholder, .field textarea::placeholder { color: #a9b3b8; }

.field__hint { margin: 7px 0 0; font-size: 13px; color: var(--faint); }
.field__error { margin: 7px 0 0; font-size: 13px; color: #c8372d; }
.field__error[hidden] { display: none; }

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea { border-color: #c8372d; }
.field.is-invalid input:focus,
.field.is-invalid select:focus,
.field.is-invalid textarea:focus { box-shadow: 0 0 0 3px rgba(200, 55, 45, .14); }

.check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  color: #3d474b;
  line-height: 1.5;
  cursor: pointer;
  margin-bottom: 6px;
}
.check input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--teal); flex: none; }

.contact-form .btn { margin-top: 20px; }

.form-status {
  margin: 18px 0 0;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14.5px;
  background: var(--teal-tint);
  color: #04624f;
}
.form-status[hidden] { display: none; }
.form-status--error { background: #fdecea; color: #92251d; }

.contact-aside { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.contact-card--tint { background: var(--shell); border-color: transparent; }
.contact-card h2 { margin: 0 0 12px; font-size: 17px; font-weight: 800; }
.contact-card p { margin: 0 0 12px; font-size: 14px; color: var(--muted); line-height: 1.6; }
.contact-card address {
  font-style: normal;
  font-size: 14.5px;
  line-height: 1.7;
  color: #3d474b;
  margin-bottom: 16px;
}

.contact-dl { margin: 0; display: grid; grid-template-columns: 88px minmax(0, 1fr); gap: 8px 12px; }
.contact-dl dt { font-size: 13px; color: var(--faint); }
.contact-dl dd { margin: 0; font-size: 14px; color: var(--text); word-break: break-word; }
.contact-dl a:hover { color: var(--teal); }

.socials--light a { background: var(--teal-tint); color: #05715f; }
.socials--light a:hover { background: var(--teal); color: #fff; }
.contact-card .socials { margin: 0; }

   .carousel-nav button img {
  filter: invert(1);
}

@media only screen and (max-width:767px)	{
  .site-header {
    padding: 0 10px 10px;
  }
.logo {
  justify-content: center;
  width: 35%;
}
.header-actions {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  flex: none;
  justify-content: start;
}
.pill {
           height: 35px;
        padding: 0 15px;
        font-size: 14px;
}
.nav-toggle {
    height: 35px;}
    .site-header__inner {
        flex-wrap: inherit;  gap: 8px;display: flex;
        justify-content: space-between;
    }


}


@media only screen and (min-width:1000px) and (max-width:1200px)	{
.site-header__inner .logo img{ width: 150px;}
.mainnav__chip {    font-size: 12px;}
.mainnav__links a {
    padding: 0 10px;
    font-size: 12px;
}
}


.holidayWrapBoxes .holidayGrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap:28px 12px;
}

/* ===============================
   CARD
================================ */
.holidayWrapBoxes .holidayCard {
    min-width: 0;
    background: #F8F8F8;
    border-radius: 5px;
    overflow: hidden;
    padding: 6px;
}

/* ===============================
   IMAGE
================================ */
.holidayWrapBoxes .holidayImage {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 3px;
}
.holiday-vertical .holidayCard {display: flex; gap: 15px;    margin-bottom: 20px;}
.holiday-vertical .holidayImage {width: 30%;}
.holiday-vertical .holidayBody {width: 70%;    padding: 0 20px;}
.holiday-vertical .holidayDealBtn { margin: 18px 0 !important ;
    width: 30% !important;}
    .results-head .view-toggle{
    background: inherit;
    border-radius: 5px;
    border: 2px solid #00a884;
    /* padding: 5px 10px; */
}
    .results-head button{
    background: inherit;
    border: none;
    /* 
    
    border-radius: 5px;
    border: 2px solid #00a884;
    padding: 5px 10px; */
}
    .results-head button.active{
    background: #00a884;
    color: #ffff;
    /* 
    
    border-radius: 5px;
    border: 2px solid #00a884;
    padding: 5px 10px; */
}

.holidayWrapBoxes .holidayImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* ===============================
   HOTEL TITLE
================================ */
.holidayWrapBoxes .holidayTitle {
  margin-top: 9px;
  min-height: 40px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/* ===============================
   PRICE ROW
================================ */
.holidayWrapBoxes .holidayPriceRow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;

    margin-top: 7px;
}

.holidayWrapBoxes .holidayPrice {
  font-size: 25px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 38px;
}

.holidayWrapBoxes .holidayDuration {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #7B7B7B;
  white-space: nowrap;
  text-align: right;
}

/* ===============================
   INFO ROW
================================ */
.holidayWrapBoxes .holidayInfoRow {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 13px;
}

.holidayWrapBoxes .holidayCancellation {
    color: #00a98f;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
}

.holidayWrapBoxes .holidayRating {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 36px;
    height: 26px;
    padding: 0 7px;

    background: #00a98f;
    color: #fff;

    font-size: 13px;
    font-weight: 500;
    border-radius: 3px;
}
.holidayWrapBoxes .holidayLocation {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}



/* ===============================
   BUTTON
================================ */
.holidayWrapBoxes .holidayDealBtn {
    width: 70%;
    min-width: 150px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 18px auto 0;

    border: 1px solid #00a98f;
    border-radius: 5px;
    background: #fff;

    color: #080808;
    text-decoration: none;

    font-family: inherit;
    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.holidayWrapBoxes .holidayDealBtn:hover {
    background: #00a98f;
    color: #fff;
    transform: translateY(-1px);
}












.hotel-search-bar{
    max-width:1200px;
    margin:40px auto;
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:8px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}

.search-bar-form{
    display:flex;
    align-items:stretch;
}

.search-field{
    position:relative;
    flex:1;
    padding:8px 20px;
}

.search-field label{
    display:block;
    font-size:12px;
    font-weight:600;
    color:#222;
    margin-bottom:3px;
}

.search-field input{
    width:100%;
    border:0;
    outline:0;
    box-shadow:none;
    padding:0;
    background:transparent;
    font-size:14px;
    color:#333;
}

.search-field input::placeholder{
    color:#888;
}

.border-left{
    border-left:1px solid #ddd;
}


/* =========================
   SEARCH BUTTON
========================= */

.btn-search{
    border:0;
    background:#111;
    color:#fff;
    padding:0 28px;
    border-radius:9px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    font-weight:500;
    min-height:60px;
}


/* =========================
   DATE DROPDOWN
========================= */

.datePickerDropdown{
    position:absolute;
    left:0;
    top:calc(100% + 15px);
    z-index:9999;
    background:#fff;
    width:420px;
    border:0;
    border-radius:14px;
    padding:20px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
    display:none;
}

.datePickerDropdown.show{
    display:block;
}

.date-picker-title{
    font-size:16px;
    font-weight:600;
    margin-bottom:16px;
}

.date-picker-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.date-box label{
    font-size:12px;
    color:#777;
    margin-bottom:6px;
}

.date-box .form-control{
    border:1px solid #ddd;
    height:44px;
    border-radius:7px;
    padding:8px 10px;
    background:#fff;
}

.date-actions{
    border-top:1px solid #eee;
    margin-top:18px;
    padding-top:15px;
    display:flex;
    justify-content:flex-end;
    gap:10px;
}


/* =========================
   GUEST DROPDOWN
========================= */

.guest-dropdown{
    position:absolute;
    top:calc(100% + 15px);
    left:0;
    width:350px;
    background:#fff;
    border-radius:14px;
    padding:5px 20px 15px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
    z-index:9999;
    display:none;
}

.guest-dropdown.show{
    display:block;
}

.guest-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding:18px 0;
    border-bottom:1px solid #eee;
}

.guest-info{
    display:flex;
    flex-direction:column;
}

.guest-info strong{
    font-size:14px;
    font-weight:600;
    color:#222;
}

.guest-info span{
    font-size:12px;
    color:#888;
    margin-top:2px;
}

.guest-counter{
    display:flex;
    align-items:center;
    gap:13px;
}

.guest-counter button{
    width:32px;
    height:32px;
    border:1px solid #d7d7d7;
    border-radius:50%;
    background:#fff;
    color:#222;
    font-size:20px;
    line-height:1;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
}

.guest-counter button:hover:not(:disabled){
    background:#111;
    border-color:#111;
    color:#fff;
}

.guest-counter button:disabled{
    opacity:.35;
    cursor:not-allowed;
}

.guest-count{
    min-width:20px;
    text-align:center;
    font-size:14px;
    font-weight:600;
}

.guest-actions{
    padding-top:15px;
    display:flex;
    justify-content:flex-end;
}


/* =========================
   RESPONSIVE
========================= */

.stores .search {
    flex: 1;
    max-width: 700px;
    display: flex;
    align-items: center;
    background: #fff;
       border-radius: 25px;
    padding: 4px;
    height: 48px;
    position: absolute;
    top: 25%;
    left: 50%;
    z-index: 9;
    width: 100%;
    transform: translate(-50%, -50%);
}
.stores .search__btn {
    border-radius: 25px;
}

@media(max-width:767px){

    .hotel-search-bar{
        margin:20px 15px;
    }

    .search-bar-form{
        flex-direction:column;
    }

    .search-field{
        padding:14px 12px;
    }

    .border-left{
        border-left:0;
        border-top:1px solid #eee;
    }

    .btn-search{
        margin-top:8px;
        width:100%;
        height:52px;
    }

    .datePickerDropdown,
    .guest-dropdown{
        width:100%;
        left:0;
    }

    .date-picker-row{
        grid-template-columns:1fr;
    }
}

.stores .carousel-dots{
  position:absolute;
  bottom:20px;
  left:0;
  right:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  z-index:10;
}
.stores .carousel-dots span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  transition:all 0.3s ease;
  display:inline-block;
}
.stores .carousel-dots span.active{
  background:#ffffff;
  width:10px;
  height:10px;
}
.search-overlay.active {
    display: flex;
}
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    z-index: 9999999;
    height: 90px;
}
.search-box {
    width: 75%;
    display: flex;
    gap:70px;
    position: relative;
    margin-top: 10px; align-items: center;
}
.search-box form {
    width: 70%; position: relative;
}
.search-box form {
    width: 70%; position: relative;
}
.search-box .search__btn{
    position: absolute;
    top: 3px;
    right: 3px;
    border-radius: 25px;
}
#searchOverlay .logo {
    width: auto;
}
#searchOverlay .logo img {
    width: 160px;
}
.mobile-close-button {
    position: absolute;
    right: 0;
    border: none;
    background: #000;
    top: 5px;
}
.search-box input {
    outline: none;
    width: 100%;
    padding: 10px 40px 10px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 25px;
}
.autocomplete-items {
    background: #fff;
    width: auto;
    top: 1px;
    position: relative;
    border-radius: 9px;
    box-shadow: 2px 2px 8px 2px rgb(0 0 0 / 10%);
}

@media (max-width: 620px) {
  .stores__grid { grid-template-columns: repeat(2, 1fr); }
  .tiles, .cat-boxes { grid-template-columns: 1fr; }
  .cat-box { border-right: 0; border-bottom: 1px solid var(--line); }
  .product-grid, .deal-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .site-footer__panel { grid-template-columns: 1fr; }
  .footer-col--cats { display: block; }
  .product h1 { font-size: 26px; }
  .redirect__card { padding: 30px 20px 34px; }
  .section-head { flex-wrap: wrap; }
  .slick-hero-slider  img{max-height: 330px; height: 310px;}
  .container  {padding-inline: 10px;}
	.deal-card__top  {display: grid;}
	.section--tight {padding: 0px;}
 .banner-content {
        width: 90%;
        margin: 0 auto;
    }
	.carousel-caption{width: 100%;}
	.carousel-caption h2 {   color: #fff;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;}
	    .btn {
        width: 75%;
    }
    .stores .search {
    max-width: 85% !important;
        top: 30%;
}
.search input::placeholder {
    font-size: 14px;
}
.search-overlay {
    padding: 10px 20px;
    height: 76px;
}
.search-box { width: 100%;}
.mobile-close-button {
    top: 2px;
}
.pill {
           height: 25px;
        padding: 0 8px;
        font-size: 10px;
}
.nav-toggle {
    height: 30px;}
        .search-box input {
        padding: 9px 40px 9px 15px;
        font-size: 12px;
    }
    .search-box .search__btn {
    width: 50px;
    height: 32px;}
}