@charset "UTF-8";
/* CSS Document */
/* =========================
   KLASSETURER
   ========================= */

.hero{
  height: clamp(360px, 42vw, 540px);
  min-height: 360px;
  margin-bottom: 0;
}

.hero-slider{
  position:relative;
  width:100%;
  height:100%;
  overflow:hidden;
}

.hero-slider .slide{
  position:absolute;
  inset:0;
  opacity:0;
  background-size:cover;
  background-position:center var(--pos, 50%);
  transition:opacity .9s ease;
}

.hero-slider .slide.active{
  opacity:1;
}

/* FILTER */
#filter{
  padding:14px 0 18px;
}

.sectionTitle h2{
  font-size:20px;
  font-weight:650;
  letter-spacing:-.2px;
  color:var(--navy);
}

.sectionLead{
  margin:0 0 12px;
  max-width:78ch;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
}

.surface{
  background:#fff;
  border:1px solid rgba(15,31,51,.14);
  border-radius:8px;
  padding:20px;
  box-shadow:0 18px 42px rgba(10,25,45,.08);
}

.filterTop{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:22px;
  margin-bottom:18px;
}

.field label{
  display:block;
  margin-bottom:6px;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.control{
  height:46px;
  border:1px solid rgba(15,31,51,.14);
  border-radius:8px;
  padding:0 14px;
  background:#fff;
  color:var(--text);
  font:inherit;
}

#days{
  min-width:150px;
  font-size:14px;
  font-weight:500;
}

.searchWrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.search{
  width:330px;
  font-weight:600;
}

.resetBtn{
  height:46px;
  padding:0 18px;
  border:1px solid rgba(0,138,136,.35);
  border-radius:8px;
  background:rgba(0,138,136,.08);
  color:var(--navy);
  font-weight:800;
  cursor:pointer;
}

.resetBtn:hover{
  background:var(--teal);
  color:#fff;
}

/* Filterchips */
.filterRow{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:16px 24px;
}

.chipGroup{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
}

.chipLegend{
	font-size: 11.5px;
  color:var(--navy);
  font-weight:900;
}

.chipCheck{
  position:relative;
}

.chipCheck input{
  position:absolute;
  opacity:0;
}

.chipCheck .label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:36px;
  padding:7px 13px;
  border:1px solid rgba(15,31,51,.14);
  border-radius:8px;
  background:#f7f9fb;
  color:#34475e;
  font-size:12px;
  font-weight:800;
  cursor:pointer;
}

.chipCheck .label::before{
  content:"";
  width:9px;
  height:9px;
  border:2px solid #9badbd;
  border-radius:8px;
  background:#fff;
}

.chipCheck:has(input:checked) .label{
  border-color:rgba(0,138,136,.38);
  background:rgba(0,138,136,.10);
  color:var(--teal-dark);
}

.chipCheck:has(input:checked) .label::before{
  border-color:var(--teal);
  background:var(--teal);
}

.hint{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
}

.emptyState{
  display:none;
  margin-top:14px;
  padding:12px 14px;
  border-radius:8px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
}

/* SEKSJONER */
#anbefalt,
#turer,
#results{
  padding:10px 0 26px;
}

#recommendedGrid,
#tripGrid,
#resultsGrid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  margin-top:4px !important;
  gap:18px;
}

/* TURKORT */
#recommendedGrid .tripCard,
#tripGrid .tripCard,
#resultsGrid .tripCard{
  display:flex;
	flex-direction: column;
	height: 100%;
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 14px 34px rgba(10,25,45,.10);
}

.tripCard__img{
  height:205px;
  background-size:cover;
  background-position:center;
}

.tripCard__img.pos-top{ background-position:center top; }
.tripCard__img.pos-mid{ background-position:center center; }
.tripCard__img.pos-low{ background-position:center 70%; }

.tripCard__body{
  display:flex;
  flex-direction:column;
  flex:1;
  padding:16px 18px 0;
}

.tripTitle{
  margin:0 0 12px;
  color:var(--navy);
  font-size:17px;
  line-height:1.2;
  font-weight:850;
}

.tripMeta{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin:0 0 14px;
  padding:0;
  list-style:none;
}

.badge,
.tag{
  display:inline-flex;
  align-items:center;
  min-height:25px;
  padding:4px 10px;
  border-radius:6px;
  border:1px solid rgba(15,31,51,.12);
  font-size:12px;
  font-weight:800;
}

.badge{
  background:rgba(0,138,136,.12);
  border-color:rgba(0,138,136,.25);
  color:var(--teal-dark);
}

.tag{
  background:#f3f6f9;
  color:#52677d;
}

.tripDesc{
  margin:0 0 10px;
  color:#41566d;
  font-size:13.5px;
  line-height:1.5;
}

.tripBottom{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-left: -18px;
  margin-right:-18px;
  padding:14px 18px;
  border-top:1px solid rgba(15,31,51,.08);
  background:#fff;
}

.priceWrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  line-height:1.2;
}

.specialPrice{
  margin-bottom:3px;
  color:var(--teal-dark);
  font-size:11px;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.priceBadge{
  color:var(--navy);
  font-size:15px;
  font-weight:750;
  letter-spacing:-.1px;
}



.specialPriceInfo{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-top:auto;
  padding:14px 0;
}

.priceSeason{
  margin-top:2px;
  color:var(--muted);
  font-size:11px;
  font-weight:400;
  line-height:1.35;
}

.priceOther{
  margin-top:8px;
  color:var(--navy);
  font-size:13px;
  font-weight:700;
  line-height:1.35;
}

.priceIncluded{
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
  font-weight:400;
  line-height:1.4;
}

.priceIncluded strong{
  color:var(--navy);
  font-weight:700;
}


.readMore{
  color:var(--navy);
  font-size:13px;
  font-weight:650;
}
.readMore:hover{
  color:var(--teal-dark);
  text-decoration:underline;
}




/* RESPONSIV */
@media (max-width:1200px){
  #recommendedGrid,
  #tripGrid,
  #resultsGrid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }
}

@media (max-width:900px){
  #recommendedGrid,
  #tripGrid,
  #resultsGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .filterTop{
    align-items:stretch;
  }

  .searchWrap{
    width:100%;
  }

  .search{
    width:100%;
  }
}

@media (max-width:640px){
  .hero{
    height:260px;
    min-height:260px;
  }

  #recommendedGrid,
  #tripGrid,
  #resultsGrid{
    grid-template-columns:1fr;
  }

  .filterTop,
  .searchWrap{
    display:block;
  }

  .control,
  .resetBtn,
  .search{
    width:100%;
    margin-top:8px;
    font-size:14px;
  }

  .filterRow{
    display:grid;
    gap:14px;
  }
}
/* =========================================
   SNARVEI – KLASSETUR STEG FOR STEG
   ========================================= */

.planningShortcut {
  padding: 20px 0 4px;
}

.planningShortcut__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;

  padding: 18px 22px;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

/* Liten overtekst */
.planningShortcut__eyebrow {
  margin: 0 0 5px;

  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Bevisst liten – skal ikke konkurrere med sidens innhold */
.planningShortcut h2 {
  margin: 0 0 5px;

  color: var(--navy);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 800;
}

.planningShortcut p:last-child {
  margin: 0;

  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Lenken */
.planningShortcut__link {
  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 14px;

  border: 1px solid var(--navy);
  border-radius: 6px;

  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.planningShortcut__link:hover {
  background: var(--navy);
  color: #fff;
}

/* Mobil */
@media (max-width: 720px) {
  .planningShortcut__inner {
    display: block;
  }

  .planningShortcut__link {
    margin-top: 14px;
  }
}