@import url('https://fonts.googleapis.com/css2?family=Alice&family=Noto+Serif+Ethiopic+Condensed:wght@400;500;600;700&display=swap');

:root{
  --st-primary:#27B1B2;
  --st-navy:#0A3D5A;
  --st-secondary:#147A91;
  --st-gold:#B9833B;
  --st-blue:#1C347D;
  --st-white:#FFFFFF;

  /* Map non-prefixed variables to fix hero, filter, and planner styles */
  --primary: var(--st-primary);
  --navy: var(--st-navy);
  --secondary: var(--st-secondary);
  --gold: var(--st-gold);
  --royal: var(--st-blue);
  --white: var(--st-white);
}

/* =========================
   MAIN WRAPPER
========================= */

.st-tour-wrap{
  width:100%;
  max-width:1380px;
  margin:0 auto;
  padding:28px 20px 35px;
  box-sizing:border-box;
  font-family:'Noto Serif Ethiopic Condensed', serif;
}

/* =========================================================
   HERO
   ========================================================= */

.stp-hero{
    position:relative;

    padding:95px 30px 75px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(39,177,178,.15),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #FFFFFF 0%,
            #FFFFFF 55%,
            rgba(39,177,178,.06) 100%
        );

    border-bottom:1px solid rgba(10,61,90,.08);
}

.stp-hero-inner{
    max-width:1180px;
    margin:auto;

    text-align:center;
}

.stp-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:8px 14px;

    border:2px solid rgba(39,177,178,.3);
    border-radius:30px;

    color:var(--secondary);

    font-size:11px;
    font-weight:700;

    letter-spacing:.15em;
    text-transform:uppercase;

    background:rgba(39,177,178,.05);
}

.stp-eyebrow::before{
    content:"";
    width:7px;
    height:7px;

    border-radius:50%;

    background:var(--primary);
}

.stp-hero h1{
    max-width:850px;
    margin:22px auto 14px;

    color:var(--navy);

    font-family:"Alice",Georgia,serif;

    font-size:45px;
    line-height:1.05;
    font-weight:400;
text-transform:uppercase;
    letter-spacing:-.025em;
}

.stp-hero h1 span{
    color:var(--primary);
}

.stp-hero p{
    max-width:650px;
    margin:0 auto;
    color:var(--secondary);
font-weight:500;
    font-size:15px;
    line-height:1.5;
}


/* =========================================================
   FILTER BAR
   ========================================================= */

.stp-filter-wrap{
    max-width:1180px !important;

    margin:-26px auto 0 !important;

    padding:0 22px !important;

    position:relative !important;
    z-index:5 !important;
}

.stp-filter{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:center !important;

    gap:8px !important;

    padding:10px !important;

    background:var(--white) !important;

    border:1px solid rgba(10,61,90,.12) !important;

    border-radius:16px !important;

    box-shadow:
        0 16px 40px rgba(10,61,90,.11) !important;

    overflow-x:auto !important;

    scrollbar-width:none !important;
    -webkit-overflow-scrolling:touch !important;
}

.stp-filter::-webkit-scrollbar{
    display:none !important;
}

.stp-filter button{
    flex:0 0 auto !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:auto !important;

    min-height:40px !important;

    padding:0 17px !important;

    border:0 !important;
    border-radius:9px !important;

    background:var(--white) !important;

    color:var(--navy) !important;

    font-family:'Noto Serif Ethiopic Condensed', serif;

    font-size:12px !important;
    font-weight:600 !important;

    cursor:pointer !important;

    transition:.2s ease !important;
    box-shadow:none !important;
    text-transform:none !important;
}

.stp-filter button:hover{
    background:rgba(39,177,178,.1) !important;
    color:var(--navy) !important;
}

.stp-filter button.active{
    background:var(--navy) !important;

    color:var(--white) !important;

    box-shadow:
        0 5px 15px rgba(10,61,90,.16) !important;
}

.stp-filter button.active:hover{
    background:var(--navy) !important;
    color:var(--white) !important;
}


/* =========================
   GRID
========================= */

.st-tour-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
  align-items:stretch;
  margin-top: 40px;
}

/* =========================
   CARD
========================= */

.st-tour-card{
  position:relative;
  min-width:0;
  background:var(--st-white);
  border:1px solid rgba(10,61,90,.14);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(10,61,90,.10);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.st-tour-card:hover{
  transform:translateY(-5px);
  border-color:var(--st-primary);
  box-shadow:0 15px 34px rgba(10,61,90,.17);
}

/* =========================
   IMAGE
========================= */

.st-tour-image{
  position:relative;
  height:205px;
  overflow:hidden;
  background:var(--st-navy);
}

.st-tour-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .5s ease;
}

.st-tour-card:hover .st-tour-image img{
  transform:scale(1.045);
}

/* =========================
   CATEGORY BADGE
========================= */

.st-tour-category{
  position:absolute;
  top:13px;
  right:13px;
  z-index:3;

  display:inline-flex;
  align-items:center;

  padding:7px 12px;
  border-radius:999px;

  background:var(--st-primary);
  color:var(--st-white);

  font-size:10px;
  font-weight:700;
  letter-spacing:.7px;
  text-transform:uppercase;

  box-shadow:0 5px 12px rgba(10,61,90,.18);
}

/* =========================
   SAVED BUTTON
========================= */

.st-save-btn{
  position:absolute !important;
  left:13px !important;
  bottom:13px !important;
  z-index:4 !important;

  width:34px !important;
  height:34px !important;
  min-width:34px !important;
  min-height:34px !important;

  border:none !important;
  outline:none !important;
  border-radius:50% !important;

  background:var(--st-white) !important;
  color:var(--st-primary) !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:0 !important;
  margin:0 !important;

  cursor:pointer !important;

  box-shadow:0 5px 14px rgba(10,61,90,.18) !important;

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease !important;
}

.st-save-btn svg{
  width:16px !important;
  height:16px !important;
  stroke:currentColor !important;
  stroke-width:2 !important;
  background:transparent !important;
  margin:0 !important;
  display:block !important;
}

.st-save-btn svg path{
  fill:none !important;
}

.st-save-btn:hover, .st-save-btn:focus, .st-save-btn:active{
  transform:scale(1.08) !important;
  background:var(--st-white) !important;
  color:var(--st-primary) !important;
  border:none !important;
  outline:none !important;
}

.st-save-btn.saved{
  background:var(--st-primary) !important;
  color:var(--st-white) !important;
}

.st-save-btn.saved:hover{
  background:var(--st-primary) !important;
  color:var(--st-white) !important;
}

.st-save-btn.saved svg path{
  fill:currentColor !important;
}

/* =========================================================
   ULTIMATE PINK COLOR & ELEMENTOR RESET FOR CARD
   ========================================================= */
#saawariya-tours *, 
#saawariya-tours *::before, 
#saawariya-tours *::after,
.st-tour-wrap *,
.st-tour-card * {
  -webkit-tap-highlight-color: transparent !important;
}
#saawariya-tours button,
.st-tour-wrap button,
.st-tour-card button {
  outline: none !important;
  border-color: transparent !important;
}
#saawariya-tours button:focus,
#saawariya-tours button:active,
#saawariya-tours button:hover,
.st-tour-wrap button:focus,
.st-tour-wrap button:hover,
.st-tour-card button:focus,
.st-tour-card button:hover {
  outline: none !important;
}
html body #saawariya-tours .st-tour-arrow,
html body .st-tour-card .st-tour-arrow {
  border: none !important;
  outline: none !important;
}
html body #saawariya-tours .st-tour-card,
html body .st-tour-card {
  outline: none !important;
}
html body #saawariya-tours .st-tour-card:hover,
html body .st-tour-card:hover {
  border-color: var(--st-primary) !important;
}

/* =========================
   CONTENT
========================= */

.st-tour-content{
  padding:18px 17px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.st-tour-accent{
  width:38px;
  height:3px;
  border-radius:999px;
  background:var(--st-primary);
  margin:0 0 12px;
}

.st-tour-title{
  margin:0 0 7px;

  color:var(--st-navy);
  font-family:'Alice',serif;

  font-size:20px;
  line-height:1.18;
  font-weight:400;

  min-height:47px;
}

.st-tour-description{
  margin:0 0 13px;

  color:var(--st-secondary);

  font-size:12.5px;
  line-height:1.5;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;

  min-height:38px;
  flex-grow: 1;
}

//* =========================
   INFO PILLS
========================= */

.st-tour-info{
  display:flex;
  flex-direction:column;
  gap:7px;
  margin-top: auto;
}

.st-tour-pill{
  display:flex;
  align-items:center;
  gap:8px;

  width:fit-content;
  max-width:100%;

  padding:7px 10px;

  border:1px solid rgba(39,177,178,.42);
  border-radius:999px;

  color:var(--st-navy);
  font-family:'Alice', serif !important;
  background:var(--st-white);

  font-size:11.5px;
  line-height:1.2;
  font-weight:400; /* Alice font sirf 400 (regular) weight me aata hai */

  box-sizing:border-box;
}

.st-tour-pill svg{
  flex:0 0 auto;
  width:15px;
  height:15px;
  stroke:var(--st-primary);
  fill:none;
  stroke-width:2;
}

.st-tour-pill span{
  font-family:'Alice', serif !important;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

/* =========================
   FOOTER / VIEW TOUR
========================= */

.st-tour-footer{
  border-top:1px solid rgba(10,61,90,.10);

  min-height:63px;

  padding:10px 15px;

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

  box-sizing:border-box;
  margin-top: auto;
}

.st-view-tour{
  border:0;
  background:none;

  padding:0;

  color:var(--st-navy);

  font-family:'Alice',serif;
  font-size:16px;

  cursor:pointer;

  transition:color .25s ease;
}

.st-tour-card:hover .st-view-tour,
.st-view-tour:hover{
  color:var(--st-primary) !important;
  background:none !important;
  box-shadow:none !important;
}

/* =========================
   ARROW BUTTON
========================= */

.st-tour-arrow{
  width:38px;
  height:38px;

  border-radius:50%;
  border:0;

  background:var(--st-primary);
  color:var(--st-white);

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

  cursor:pointer;

  transition:
    transform .25s ease,
    background .25s ease;
  padding: 0;
}

.st-tour-arrow svg{
  width:17px;
  height:17px;
  stroke:currentColor;
  fill:none;
  stroke-width:2.3;
}

.st-tour-card:hover .st-tour-arrow,
.st-tour-arrow:hover{
  transform:translateX(3px) !important;
  background:var(--st-secondary) !important;
  color:var(--st-white) !important;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .st-tour-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
  }

  .st-tour-image{
    height:190px;
  }

}

/* =========================
   SMALL TABLET
========================= */

@media(max-width:820px){

  .st-tour-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:15px;
  }

  .st-tour-heading h2{
    font-size:26px;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:560px){

  .st-tour-wrap{
    padding:22px 12px 30px;
  }

  .st-tour-grid{
    grid-template-columns:1fr;
    gap:15px;
  }

  .st-tour-image{
    height:220px;
  }

  .st-tour-title{
    font-size:21px;
  }

}

/* =========================
   VERY SMALL MOBILE
========================= */

@media(max-width:380px){

  .st-tour-image{
    height:200px;
  }

  .st-tour-content{
    padding:16px 14px 14px;
  }

}

/* CARD FOOTER */

.stp-card-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:12px;

    margin-top:auto;
}

.stp-flexible{
    display:flex;
    align-items:center;

    gap:7px;

    color:var(--secondary);

    font-size:8px;
    font-weight:700;
}

.stp-flexible-dot{
    width:7px;
    height:7px;

    border-radius:50%;

    background:var(--primary);
}

.stp-card-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:40px;

    padding:0 15px;

    border-radius:8px;

    background:var(--primary);

    color:var(--white) !important;

    font-size:9px;
    font-weight:700;

    transition:.2s ease;
}

.stp-card-btn:hover{
    background:var(--secondary) !important;
    color:var(--white) !important;
    transform:translateY(-2px) !important;
}


/* =========================================================
   DARK CTA / PLANNER
   ========================================================= */

.stp-planner{
    margin-top:40px;

    padding:65px 30px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(39,177,178,.22),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            var(--navy),
            var(--royal)
        );

    border-radius:22px;

    text-align:center;

    overflow:hidden;
}

.stp-planner-kicker{
    color:#87FEFF;

    font-size:11px;
    font-weight:600;

    letter-spacing:.18em;
    text-transform:uppercase;
}

.stp-planner h2{
    max-width:650px;

    margin:13px auto 10px;

    color:var(--white);

    font-family:"Alice",Georgia,serif;

    font-size:39px;
    line-height:1.15;
    font-weight:400;
}

.stp-planner p{
    max-width:540px;

    margin:0 auto 25px;

    color:rgba(255,255,255,.90);
font-weight:500;
    font-size:11px;
    line-height:1.8;
}

.stp-planner-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-height:45px;

    padding:0 22px;

    border-radius:9px;

    background:var(--primary);

    color:var(--white) !important;
font-family:'Noto Serif Ethiopic Condensed', serif;
    font-size:12px;
    font-weight:600;

    box-shadow:
        0 8px 22px rgba(0,0,0,.18);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.stp-planner-btn:hover{
    background:var(--secondary) !important;
    color:var(--white) !important;
}


/* =========================================================
   NO RESULTS / EMPTY STATE
   ========================================================= */

.stp-empty{
    grid-column:1/-1;

    padding:65px 25px;

    border:1px dashed rgba(10,61,90,.18);

    border-radius:16px;

    text-align:center;

    background:rgba(39,177,178,.025);
    display: none;
}

.stp-empty.is-visible {
    display: block;
}

.stp-empty h3{
    margin:0 0 7px;

    color:var(--navy);

    font-family:"Alice",Georgia,serif;

    font-size:23px;
    font-weight:400;
}

.stp-empty p{
    margin:0;

    color:var(--secondary);

    font-size:10px;
}


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

@media(max-width:1000px){

    .st-tour-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .stp-hero h1{
        font-size:46px;
    }
}


@media(max-width:820px){
    .stp-filter{
        flex-wrap: wrap !important;
        justify-content: center !important;
        overflow-x: visible !important;
        gap: 6px !important;
        padding: 12px !important;
    }
}

@media(max-width:700px){

    .stp-hero{
        padding:65px 18px 60px;
    }

    .stp-hero h1{
        font-size:38px;
    }

    .stp-hero p{
        font-size:12px;
    }

    .stp-filter-wrap{
        padding:0 14px;
    }

    .stp-filter button{
        padding:0 12px !important;
        min-height:36px !important;
        font-size:9.5px !important;
    }

    .st-tour-grid{
        grid-template-columns:1fr;
    }

    .stp-planner{
        padding:50px 20px;
        border-radius:16px;
    }

    .stp-planner h2{
        font-size:31px;
    }
}

/* =========================================================
   FLUID TYPOGRAPHY OVERRIDE (For perfect mobile scaling)
   ========================================================= */
.st-tour-title { font-size: clamp(16px, 4.5vw, 20px) !important; line-height: 1.25 !important; }
.st-tour-description { font-size: clamp(11.5px, 3vw, 13px) !important; line-height: 1.5 !important; }
.st-tour-pill { font-size: clamp(9.5px, 2.5vw, 11.5px) !important; }
.stp-card-footer .st-ask-btn { font-size: clamp(11.5px, 3vw, 14px) !important; }
.stp-card-footer .st-btn-pri { font-size: clamp(11.5px, 3vw, 14px) !important; }

/* FORCE SHOW ALL PILLS ON MOBILE */
.st-tour-card .st-tour-info .st-tour-pill, .st-tour-pill.stp-destination-display { display: flex !important; }


/* STRICT SAVED BTN COLORS */
.st-tour-card .st-save-btn.saved { background: #27B1B2 !important; background-color: #27B1B2 !important; color: #FFFFFF !important; }
.st-tour-card .st-save-btn.saved svg path { fill: currentColor !important; stroke: currentColor !important; }
.st-tour-card .st-save-btn:not(.saved) { background: #FFFFFF !important; background-color: #FFFFFF !important; color: #27B1B2 !important; }
.st-tour-card .st-save-btn:not(.saved) svg path { fill: none !important; stroke: currentColor !important; }

