/*
 Theme Name:   OceanWP Trek Child
 Theme URI:    https://yourwebsite.com/
 Description:  OceanWP Child Theme customized for Trek Website
 Author:       Your Name
 Author URI:   https://yourwebsite.com/
 Template:     oceanwp
 Version:      1.0
*/

/* Optional: Add custom CSS below */
/* ============= SURMOUNT TREK OVERVIEW — LIGHT / BASIC ============= */

.sa-overview-sec{
  /* no extra dark section, let theme card handle background */
  padding:0;
  margin:0 0 20px;
  background:transparent;
  font-family:'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color:#111827;
}

.sa-overview-inner{
  max-width:100%;
  padding:0;
  box-sizing:border-box;
}



/* Body text */
.sa-overview-body p{
  margin:0 0 10px;
  font-size:14px;
  line-height:1.7;
  color:#374151;
}

/* UL reset */
.sa-overview-body ul{
  list-style:none;
  margin:14px 0 0;
  padding:0;
}

/* Basic list item card — light, subtle border */
.sa-overview-body li{
  position:relative;
  padding:10px 14px 10px 34px;
  margin-bottom:8px;
  border-radius:10px;
  background:#ffffff;
  border:1px solid #e5e7eb;
  font-size:14px;
  line-height:1.6;
  color:#111827;
  display:block;
}

/* Small circular bullet using theme orange */
.sa-overview-body li::before{
  content:"";
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  width:10px;
  height:10px;
  border-radius:999px;
  background:#f97316;          /* orange */
}

/* Optional very soft hover (desktop only) */
@media (min-width:769px){
  .sa-overview-body li:hover{
    border-color:#f97316;
    background:#fff7eb;
  }
}

/* Responsive tweaks */
@media (max-width:768px){
  .sa-overview-title{
    font-size:18px;
  }
  .sa-overview-body li{
    font-size:13px;
    padding:8px 12px 8px 32px;
  }
}
/* ============ Surmount Trek Booking Box ============ */

.sa-book-box{
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#ffffff;
  padding:16px 18px 18px;
  box-shadow:0 6px 14px rgba(15,23,42,.04);
  font-family:'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color:#111827;
}

/* Price row */
.sa-book-price-row{
  margin-bottom:14px;
  border-bottom:1px dashed #e5e7eb;
  padding-bottom:10px;
}

.sa-book-label{
  display:block;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#6b7280;
  margin-bottom:4px;
}

.sa-book-topline{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:8px;
}

.sa-book-value{
  font-size:20px;
  font-weight:700;
  color:#111827;
}

.sa-book-unit{
  font-size:11px;
  margin-left:4px;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:#6b7280;
}

/* right side: original price + badge */
.sa-book-right{
  display:flex;
  align-items:center;
  gap:6px;
}

.sa-book-old-price{
  text-decoration:line-through;
  color:#9ca3af;
  font-size:12px;
}

.sa-book-off{
  padding:2px 8px;
  border-radius:999px;
  background:#f97316;
  color:#ffffff;
  font-size:11px;
  font-weight:600;
}

.sa-book-saved{
  margin-top:4px;
  font-size:12px;
  color:#059669;
}

/* Form grid */
.sa-book-form{
  margin-top:8px;
}

.sa-book-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  margin-bottom:14px;
}

/* full-width first field (No. of Person) */
.sa-book-field-full{
  grid-column:1 / -1;
}

.sa-book-field label{
  display:block;
  font-size:12px;
  font-weight:500;
  margin-bottom:4px;
  color:#374151;
}

/* select fields */
.sa-book-field select{
  width:100%;
  padding:7px 9px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:13px;
  outline:none;
  background:#f9fafb;
}
.sa-book-field select:focus{
  border-color:#f97316;
  box-shadow:0 0 0 1px rgba(249,115,22,.15);
  background:#ffffff;
}

/* Quantity with +/- */
.sa-qty-wrap{
  display:flex;
  align-items:center;
  border-radius:8px;
  border:1px solid #d1d5db;
  overflow:hidden;
  background:#f9fafb;
}

.sa-qty-btn{
  width:34px;
  height:34px;
  border:none;
  background:#e5e7eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  padding:0;
  cursor:pointer;
}

.sa-qty-btn:hover{
  background:#d1d5db;
}

.sa-qty-wrap input[type="number"]{
  border:none;
  background:transparent;
  width:60px;
  text-align:center;
  font-size:14px;
  padding:0 4px;
  -moz-appearance:textfield;
}
.sa-qty-wrap input::-webkit-outer-spin-button,
.sa-qty-wrap input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}

/* Buttons */
.sa-book-actions{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:stretch;
}

.sa-book-actions-top{
  display:flex;
  gap:8px;
}

.sa-book-btn-primary,
.sa-book-btn-wa,
.sa-book-btn-pdf{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  border:1px solid transparent;
  text-decoration:none;
  cursor:pointer;
  white-space:nowrap;
}

/* 50:50 buttons */
.sa-book-btn-half{
  flex:1;
}

/* full-width PDF */
.sa-book-btn-full{
  width:100%;
}

/* Book Now */
.sa-book-btn-primary{
  background:#2563eb;
  border-color:#2563eb;
  color:#ffffff;
}

/* WhatsApp */
.sa-book-btn-wa{
  background:#22c55e;
  border-color:#16a34a;
  color:#ffffff;
  gap:6px;
}
.sa-book-btn-wa i{
  font-size:15px;
}

/* PDF */
.sa-book-btn-pdf{
  background:#f9fafb;
  border-color:#d1d5db;
  color:#111827;
}

/* Hover (desktop) */
@media (hover:hover){
  .sa-book-btn-primary:hover{
    background:#1d4ed8;
    border-color:#1d4ed8;
  }
  .sa-book-btn-wa:hover{
    background:#16a34a;
  }
  .sa-book-btn-pdf:hover{
    background:#eef2ff;
    border-color:#c7d2fe;
  }
}

/* Responsive */
@media (max-width:768px){
  .sa-book-grid{
    grid-template-columns:1fr;
  }
  .sa-book-field-full{
    grid-column:auto;
  }
}
/* Quantity wrap – only as wide as its content */
.sa-qty-wrap{
  display:inline-flex;        /* instead of flex */
  align-items:center;
  border-radius:8px;
  border:1px solid #d1d5db;
  overflow:hidden;
  background:#f9fafb;
  width:auto;                 /* not 100% */
  max-width:none;             /* remove earlier max-width */
}

.sa-book-field-full{
  grid-column:1 / -1;
}

.sa-qty-wrap input[type="number"]{
  width:52px;                 /* fixed small width for number */
}


/* Dropdown styling – theme-like select */
.sa-book-field select{
  width:100%;
  padding:7px 32px 7px 10px;
  border-radius:8px;
  border:1px solid #d1d5db;
  font-size:13px;
  outline:none;
  background:#f9fafb;
  color:#111827;

  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(-45deg, transparent 50%, #6b7280 50%),
    linear-gradient(to right, #e5e7eb, #e5e7eb);
  background-position:
    calc(100% - 14px) 11px,
    calc(100% - 9px) 11px,
    calc(100% - 28px) 0;
  background-size:5px 5px, 5px 5px, 1px 100%;
  background-repeat:no-repeat;
}


  .smt-trek-sec2,
  .smt-trek-sec2 *{
    box-sizing:border-box;
  }

  .smt-trek-sec2{
    position:relative;
    padding:70px 20px;
    font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:#111827;
    background:linear-gradient(180deg,#F5F7FA 0%,#E8ECF2 50%,#F5F7FA 100%);
  }

  .smt-trek-inner2{
    max-width:1350px;
    margin:0 auto;
  }

  /* Heading */
  .smt-trek-head2{
    text-align:center;
    margin-bottom:32px;
  }
  .smt-trek-title2{
    margin:0 0 6px;
    font-size:36px;
    font-weight:700;
    color:#000;
  }
  .smt-trek-sub2{
    margin:0;
    font-size:14px;
    color:#000;
  }

/* ================================
   TREK ARCHIVE GRID (SCOPED)
   Section markup: <section class="smt-trek-sec2 smt-trek-archive">
   ================================ */

/* Section shell (archive only) */
.smt-trek-archive{
  position:relative;
  padding:70px 20px;
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:#111827;
  background:linear-gradient(180deg,#F5F7FA 0%,#E8ECF2 50%,#F5F7FA 100%);
}
.smt-trek-archive .smt-trek-inner2{
  max-width:1350px;
  margin:0 auto;
}

/* GRID LAYOUT FOR ARCHIVE */
.smt-trek-archive .smt-trek-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
}
@media (max-width:1024px){
  .smt-trek-archive .smt-trek-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:640px){
  .smt-trek-archive .smt-trek-grid{
    grid-template-columns:1fr;
  }
}

/* Card */
.smt-trek-archive .smt-trek-card2-archive{
  background:#ffffff;
  border-radius:26px;
  border:1px solid #E5E7EB;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  box-shadow:0 10px 26px rgba(15,23,42,.06);
}

/* Clickable image wrapper */
.smt-trek-archive .smt-trek-media2-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* Image area */
.smt-trek-archive .smt-trek-media2{
  position:relative;
  padding-top:62%;
  overflow:hidden;
}
.smt-trek-archive .smt-trek-media2 img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.06);
  transition:transform .7s ease-out;
}
.smt-trek-archive .smt-trek-card2-archive:hover .smt-trek-media2 img{
  transform:scale(1.02);
}

/* Duration pill */
.smt-trek-archive .smt-trek-duration-pill2{
  position:absolute;
  left:18px;
  top:16px;
  padding:6px 12px;
  border-radius:999px;
  background:#ffffff;
  font-size:11px;
  font-weight:500;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

/* Card body */
.smt-trek-archive .smt-trek-body2{
  padding:16px 18px 16px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* Title */
.smt-trek-archive .smt-trek-name2{
  margin:0 0 4px;
  font-size:20px;
  font-weight:600;
}
.smt-trek-archive .smt-trek-name2 a{
  color:#111827;
  text-decoration:none;
}
.smt-trek-archive .smt-trek-name2 a:hover{
  color:#FF7A1A;
}

/* Rating row */
.smt-trek-archive .smt-trek-rating-row2{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:13px;
  color:#4B5563;
}
.smt-trek-archive .smt-trek-rating-row2 .rating-val{
  font-weight:600;
  color:#111827;
}
.smt-trek-archive .smt-trek-rating-row2 .rating-count{
  font-size:12px;
  color:#9CA3AF;
}
.smt-trek-archive .smt-trek-stars2{
  font-size:12px;
  color:#FBBF24;
  margin-left:auto;
}

/* Price block */
.smt-trek-archive .smt-trek-price-wrap2{
  margin-top:4px;
}
.smt-trek-archive .smt-trek-price-wrap2 .from-txt{
  font-size:12px;
  color:#6B7280;
  margin-bottom:-2px;
}
.smt-trek-archive .smt-trek-price-row2{
  display:flex;
  align-items:flex-end;
  gap:6px;
}
.smt-trek-archive .smt-trek-price-main2{
  font-size:22px;
  font-weight:700;
}
.smt-trek-archive .smt-trek-price-sub2{
  font-size:12px;
  color:#EF4444;
  margin-bottom:2px;
}

/* Actions row */
.smt-trek-archive .smt-trek-actions2{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

/* Contact buttons */
.smt-trek-archive .smt-trek-contact2{
  display:flex;
  gap:10px;
}
.smt-trek-archive .smt-trek-icon-btn2{
  width:36px;
  height:36px;
  border-radius:999px;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,0,0,.22);
  text-decoration:none;
}
.smt-trek-archive .smt-trek-icon-btn2.call{
  background:#DC2626;
}
.smt-trek-archive .smt-trek-icon-btn2.whatsapp{
  background:#16A34A;
}

/* Book button */
.smt-trek-archive .smt-trek-book-btn2{
  flex:1;
  border-radius:999px;
  border:none;
  padding:10px 18px;
  background:linear-gradient(120deg,#FF7A1A,#FF4F1A);
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(37,99,235,.35);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
  transition:transform .18s ease, box-shadow .18s ease;
}
.smt-trek-archive .smt-trek-book-btn2:hover{
  background:linear-gradient(120deg,#FF7A1A,#FF4F1A) !important;
  color:#ffffff !important;
  box-shadow:0 14px 35px rgba(255,94,0,.35) !important;
  transform:translateY(-2px);
}

/* Pagination */
.smt-trek-archive .smt-trek-archive-pagination{
  margin-top:40px;
  text-align:center;
}
/* ==== FINAL OVERRIDE: NO BG ON SLIDERS, ONLY ON ARCHIVE ==== */

/* Remove gradient/background from any trek section
   that is NOT the archive grid */
.smt-trek-sec2:not(.smt-trek-archive){
  background:none !important;
}

/* Archive section keeps the gradient background */
.smt-trek-sec2.smt-trek-archive{
  background:linear-gradient(180deg,#F5F7FA 0%,#E8ECF2 50%,#F5F7FA 100%) !important;
}
/* ===========================================
   SURMOUNT – Related Trek Slider (sa-rel-*)
   Completely isolated from archive styles
   =========================================== */

.sa-rel-sec{
  padding:28px 0 10px;
  background:transparent; /* no background from archive */
  font-family:'Poppins',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
}

.sa-rel-inner{
  max-width:1350px;
  margin:0 auto;
  padding:0 16px;
}

/* Slider shell */
.sa-rel-slider{
  position:relative;
  padding-top:6px;
}

/* Arrows – small floating controls in top-right */
.sa-rel-arrows{
  position:absolute;
  right:6px;
  top:-30px;
  display:flex;
  gap:8px;
  z-index:2;
}
.sa-rel-arrow-btn{
  width:32px;
  height:32px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:13px;
  box-shadow:0 8px 18px rgba(15,23,42,.12);
  transition:background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.sa-rel-arrow-btn:hover{
  background:linear-gradient(120deg,#FF7A1A,#FF4F1A);
  color:#ffffff;
  border-color:transparent;
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(15,23,42,.22);
}

/* Track – horizontal scroll */
.sa-rel-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-behavior:smooth;
  padding:4px 4px 10px 4px;
  scroll-snap-type:x mandatory;
}
.sa-rel-track::-webkit-scrollbar{
  height:0;
}

/* Card wrapper */
.sa-rel-card{
  flex:0 0 calc(25% - 12px);
  scroll-snap-align:start;
}
@media (max-width:992px){
  .sa-rel-card{
    flex:0 0 calc(50% - 10px);
  }
}
@media (max-width:640px){
  .sa-rel-card{
    flex:0 0 80%;
  }
}

/* Card */
.sa-rel-card-inner{
  background:#ffffff;
  border-radius:22px;
  border:1px solid #e5e7eb;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .2s ease, box-shadow .2s ease;
}
.sa-rel-card-inner:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(15,23,42,.16);
}

/* Media */
.sa-rel-media{
  position:relative;
  padding-top:60%;
  overflow:hidden;
}
.sa-rel-media img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.05);
  transition:transform .5s ease-out;
}
.sa-rel-card-inner:hover .sa-rel-media img{
  transform:scale(1.01);
}

/* Duration pill */
.sa-rel-duration{
  position:absolute;
  left:14px;
  top:14px;
  padding:5px 10px;
  border-radius:999px;
  background:#ffffff;
  font-size:11px;
  font-weight:500;
  color:#111827;
  box-shadow:0 8px 18px rgba(15,23,42,.26);
}

/* Meta strip (altitude / difficulty) */
.sa-rel-meta-strip{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:6px 10px;
  display:flex;
  gap:8px;
  justify-content:flex-start;
  background:linear-gradient(180deg,rgba(15,23,42,0) 0%,rgba(15,23,42,0.8) 100%);
  font-size:11px;
  color:#e5e7eb;
}
.sa-rel-meta-strip span{
  display:inline-flex;
  align-items:center;
  gap:4px;
}
.sa-rel-meta-strip i{
  font-size:11px;
}

/* Body */
.sa-rel-body{
  padding:12px 14px 12px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* Title */
.sa-rel-title{
  margin:0;
  font-size:16px;
  font-weight:700;
  color:#0f172a;
}

/* Location row */
.sa-rel-location{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#6b7280;
}
.sa-rel-location i{
  font-size:11px;
  color:#ef4444;
}

/* Rating */
.sa-rel-rating{
  display:flex;
  align-items:center;
  gap:6px;
  font-size:12px;
  color:#4b5563;
}
.sa-rel-rating-val{
  font-weight:600;
  color:#111827;
}
.sa-rel-rating-count{
  font-size:11px;
  color:#9ca3af;
}
.sa-rel-stars{
  margin-left:auto;
  font-size:11px;
  color:#fbbf24;
}

/* Price */
.sa-rel-price-wrap{
  margin-top:4px;
}
.sa-rel-from{
  font-size:11px;
  color:#9ca3af;
  margin-bottom:-2px;
}
.sa-rel-price-row{
  display:flex;
  align-items:flex-end;
  gap:6px;
}
.sa-rel-price-main{
  font-size:18px;
  font-weight:700;
  color:#111827;
}
.sa-rel-price-sub{
  font-size:11px;
  color:#ef4444;
  margin-bottom:2px;
}

/* Actions */
.sa-rel-actions{
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}

/* Contact icons */
.sa-rel-contact{
  display:flex;
  gap:8px;
}
.sa-rel-icon-btn{
  width:32px;
  height:32px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-decoration:none;
  font-size:13px;
  box-shadow:0 10px 22px rgba(15,23,42,.26);
}
.sa-rel-call{
  background:#dc2626;
}
.sa-rel-whatsapp{
  background:#16a34a;
}

/* Book button */
.sa-rel-book-btn{
  flex:1;
  border-radius:999px;
  padding:8px 14px;
  border:none;
  background:linear-gradient(120deg,#FF7A1A,#FF4F1A);
  color:#ffffff;
  font-size:13px;
  font-weight:600;
  text-align:center;
  text-decoration:none;
  box-shadow:0 12px 26px rgba(248,113,22,.42);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  transition:transform .18s ease, box-shadow .18s ease;
}
.sa-rel-book-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(248,113,22,.52);
}

/* Mobile tweaks */
@media (max-width:640px){
  .sa-rel-sec{
    padding:20px 0 6px;
  }
  .sa-rel-inner{
    padding:0 10px;
  }
  .sa-rel-arrows{
    right:10px;
  }
}
