/* =========================================================
   WRAPPER
========================================================= */
.swc-wrap{
  width: 100%;

  --swc-gap: 18px;
  --swc-height: 520px;

  --swc-pad-top: 0px;
  --swc-pad-bottom: 0px;

  --swc-bg-color: #ffffff;
  --swc-bg-image: none;
  --swc-bg-size: cover;

  /* arrow colors (per carousel via inline style) */
  --swc-arrow-color: rgba(0,0,0,.8);
  --swc-arrow-hover: rgba(0,0,0,.38);

  padding-top: var(--swc-pad-top);
  padding-bottom: var(--swc-pad-bottom);

  background-color: var(--swc-bg-color);
  background-image: var(--swc-bg-image, none);
  background-repeat: no-repeat;
  background-position: center;
  background-size: var(--swc-bg-size, cover);

  position: relative;
  overflow: hidden;
}

/* prevent ugly “stack then jump” while JS rebuilds the sequences */
.swc-wrap.swc-loading .swc-viewport{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.swc-wrap .swc-viewport{
  transition: opacity .18s ease;
}

/* background repeat option */
.swc-wrap[style*="--swc-bg-size:repeat"]{
  background-repeat: repeat;
  background-size: auto;
}

/* =========================================================
   FULL WIDTH ROW
========================================================= */
.swc-wrap.swc-fullwidth{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* =========================================================
   ARROWS (BIG – CLEAN – NO BORDERS) + COLOR SETTINGS
========================================================= */
.swc-arrows{
  position: absolute;
  left: 50%;
  top: calc(var(--swc-pad-top) * 0.5);
  transform: translateX(-50%);
  display: flex;
  gap: 110px;
  align-items: center;
  z-index: 10;
  pointer-events: auto;
}

.swc-wrap[style*="--swc-pad-top:0px"] .swc-arrows{
  top: 20px;
}

/* button reset */
.swc-arrow{
  width: 140px;
  height: 44px;

  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;

  padding: 0;
  cursor: pointer;
  position: relative;

  -webkit-tap-highlight-color: transparent;

  /* map to per-carousel vars */
  --swc-arrow-color-now: var(--swc-arrow-color);
  --swc-arrow-color-hover: var(--swc-arrow-hover);
}

.swc-arrow:focus,
.swc-arrow:focus-visible{
  outline: none !important;
  box-shadow: none !important;
}

/* smooth transitions */
.swc-arrow::before,
.swc-arrow::after{
  transition:
    background-color .2s ease,
    border-color .2s ease,
    opacity .2s ease,
    transform .2s ease;
}

/* line */
.swc-arrow::before{
  content:"";
  position:absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 2px;
  background: var(--swc-arrow-color-now);
  transform: translateY(-50%);
}

/* arrow head */
.swc-arrow::after{
  content:"";
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* left */
.swc-arrow-left::after{
  left: 0;
  border-right: 14px solid var(--swc-arrow-color-now);
}

/* right */
.swc-arrow-right::after{
  right: 0;
  border-left: 14px solid var(--swc-arrow-color-now);
}

/* hover (desktop only) */
@media (hover:hover){
  .swc-arrow:hover{
    --swc-arrow-color-now: var(--swc-arrow-color-hover);
  }
}

/* active press */
.swc-arrow:active{
  transform: translateY(1px);
  opacity: .9;
}

/* =========================================================
   STRIP MODE VIEWPORT
========================================================= */
.swc-mode-strip .swc-viewport{
  position: relative;
  width: 100%;
  height: var(--swc-height);

  overflow: hidden;

  cursor: grab;
  touch-action: pan-y;
}

.swc-mode-strip .swc-viewport.swc-grabbing,
.swc-mode-strip .swc-viewport.swc-grabbing *{
  cursor: grabbing !important;
  user-select: none;
}

/* =========================================================
   TRACK + LOOP SEQUENCES
========================================================= */
.swc-mode-strip .swc-track{
  display: flex;
  height: 100%;
  will-change: transform;
  gap: var(--swc-gap);
}

.swc-mode-strip .swc-seq,
.swc-mode-strip .swc-seq-clone{
  display: flex;
  height: 100%;
  gap: var(--swc-gap);
}

/* Ensure a seamless gap between the last item of a sequence and the first item of the next sequence */
.swc-seq{
  padding-right: var(--swc-gap);
  box-sizing: content-box;
}


/* =========================================================
   VERTICAL ALIGN
========================================================= */
.swc-mode-strip.swc-valign-bottom .swc-seq,
.swc-mode-strip.swc-valign-bottom .swc-seq-clone{
  align-items: flex-end;
}

.swc-mode-strip.swc-valign-center .swc-seq,
.swc-mode-strip.swc-valign-center .swc-seq-clone{
  align-items: center;
}

/* =========================================================
   ITEMS
========================================================= */
.swc-mode-strip .swc-item{
  flex: 0 0 auto;
  width: var(--swc-w, 320px);
}

.swc-mode-strip .swc-item img{
  width: 100%;
  height: var(--swc-item-h, 320px);
  display: block;

  object-fit: var(--swc-fit, cover);

  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* captions (optional) */
.swc-mode-strip .swc-caption{
  margin-top: 10px;
  font-family: var(--swc-caption-font, inherit);
  font-size: var(--swc-caption-size, 14px);
  font-weight: var(--swc-caption-weight, 400);
  line-height: 1.25;
  text-align: var(--swc-caption-align, center);
  opacity: .85;
  text-transform: var(--swc-caption-transform, none);
  word-break: break-word;
}

.swc-mode-strip .swc-caption a{
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  pointer-events: auto;
}

/* remove browser focus/active outlines ONLY for caption links */
.swc-mode-strip .swc-caption a:focus,
.swc-mode-strip .swc-caption a:focus-visible,
.swc-mode-strip .swc-caption a:active{
  outline: none;
  box-shadow: none;
  border: 0;
}

.swc-mode-strip .swc-cap-icon{
  width: 1.08em;
  height: 1.08em;
  display: inline-block;
  opacity: .75;
  transform: translateY(-0.6px);
  background-color: currentColor;
  /* minimal arrow (black/white via currentColor) */
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17l10-10M10 7h7v7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 17l10-10M10 7h7v7' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / contain;
}

.swc-mode-strip .swc-caption a:hover{
  text-decoration: underline;
}

/* =========================================================
   PER IMAGE BOTTOM OFFSET
========================================================= */
.swc-mode-strip.swc-valign-bottom .swc-item{
  transform: translate3d(0, calc(-1 * var(--swc-bo, 0px)), 0);
}

.swc-mode-strip.swc-valign-center .swc-item{
  transform: none;
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 900px){
  .swc-arrows{
    gap: 70px;
  }

  .swc-arrow{
    width: 120px;
    height: 48px;
  }

  .swc-arrow::before{
    left: 14px;
    right: 14px;
  }

  .swc-mode-strip .swc-viewport{
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    cursor: auto;
  }

  .swc-mode-strip .swc-viewport::-webkit-scrollbar{
    height: 8px;
  }
}

.swc-mode-strip .swc-caption-wrap{
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.swc-mode-strip .swc-subcaption{
  font-size: calc(var(--swc-caption-size, 14px) * 0.92);
  line-height: 1.45;
  text-align: var(--swc-caption-align, center);
  opacity: .72;
  word-break: break-word;
}

.swc-mode-strip .swc-buttons{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  pointer-events: auto;
}

.swc-mode-strip .swc-btn,
.swc-mode-strip .swc-btn:visited{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-family: var(--swc-caption-font, inherit);
  font-size: calc(var(--swc-caption-size, 14px) * 0.92);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: opacity .2s ease, background-color .2s ease, color .2s ease;
}

.swc-mode-strip .swc-btn:hover{
  opacity: .82;
  text-decoration: none;
}

.swc-mode-strip .swc-btn:focus,
.swc-mode-strip .swc-btn:focus-visible,
.swc-mode-strip .swc-btn:active{
  outline: none;
  box-shadow: none;
}

@media (max-width: 767px){
  .swc-mode-strip .swc-buttons{
    flex-direction: column;
    align-items: center;
  }

  .swc-mode-strip .swc-btn{
    width: 100%;
  }
}



/* v2.11.4 compact typography refinement */
.sw-carousel-wrap,
.sw-carousel,
.swc-carousel,
.sw-carousel-admin,
.sw-carousel-item,
.sw-carousel-card {
    font-size: 12px;
    line-height: 1.45;
}

.sw-carousel .sw-caption,
.sw-carousel-wrap .sw-caption,
.swc-carousel .sw-caption,
.sw-carousel [class*="caption"],
.sw-carousel-wrap [class*="caption"],
.swc-carousel [class*="caption"] {
    font-size: 13px !important;
    line-height: 1.35 !important;
    letter-spacing: 0.01em;
}

.sw-carousel .sw-subtext,
.sw-carousel-wrap .sw-subtext,
.swc-carousel .sw-subtext,
.sw-carousel [class*="subtext"],
.sw-carousel-wrap [class*="subtext"],
.swc-carousel [class*="subtext"] {
    font-size: 12px !important;
    line-height: 1.45 !important;
}

.sw-carousel button,
.sw-carousel .button,
.sw-carousel a.button,
.sw-carousel-wrap button,
.sw-carousel-wrap .button,
.sw-carousel-wrap a.button,
.swc-carousel button,
.swc-carousel .button,
.swc-carousel a.button,
.sw-carousel [class*="btn"],
.sw-carousel-wrap [class*="btn"],
.swc-carousel [class*="btn"] {
    font-size: 12px !important;
    line-height: 1.2 !important;
    padding: 8px 12px !important;
}

.sw-carousel input,
.sw-carousel select,
.sw-carousel textarea,
.sw-carousel-wrap input,
.sw-carousel-wrap select,
.sw-carousel-wrap textarea,
.sw-carousel-admin input[type="text"],
.sw-carousel-admin textarea {
    font-size: 13px !important;
}

.sw-carousel-admin .button,
.sw-carousel-admin button,
.sw-carousel-admin .components-button,
.sw-carousel-admin .button-secondary,
.sw-carousel-admin .button-primary {
    font-size: 12px !important;
    min-height: 30px;
    padding: 0 10px !important;
}


/* v2.11.5 stronger caption sizing + inline buttons */
.sw-carousel-caption,
.sw-carousel .sw-carousel-caption,
.sw-carousel-slide-caption,
.sw-carousel .sw-carousel-slide-caption,
.sw-carousel-item-caption,
.sw-carousel .sw-carousel-item-caption,
.sw-carousel .caption,
.sw-carousel-wrap .caption,
.sw-carousel [class*="caption"],
.sw-carousel-wrap [class*="caption"]{
    font-size: 13px !important;
    line-height: 1.3 !important;
}

.sw-carousel-subtext,
.sw-carousel .sw-carousel-subtext,
.sw-carousel-item-subtext,
.sw-carousel .sw-carousel-item-subtext,
.sw-carousel .subtext,
.sw-carousel-wrap .subtext,
.sw-carousel [class*="subtext"],
.sw-carousel-wrap [class*="subtext"]{
    font-size: 11px !important;
    line-height: 1.4 !important;
}

.sw-carousel-buttons,
.sw-carousel .sw-carousel-buttons,
.sw-carousel-wrap .sw-carousel-buttons,
.sw-carousel-actions,
.sw-carousel .sw-carousel-actions,
.sw-carousel-wrap .sw-carousel-actions,
.sw-carousel-btns,
.sw-carousel .sw-carousel-btns,
.sw-carousel-wrap .sw-carousel-btns,
.sw-carousel [class*="button-wrap"],
.sw-carousel [class*="buttons"],
.sw-carousel-wrap [class*="button-wrap"],
.sw-carousel-wrap [class*="buttons"]{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:wrap !important;
    align-items:center !important;
    gap:8px !important;
}

.sw-carousel-buttons a,
.sw-carousel-buttons button,
.sw-carousel-actions a,
.sw-carousel-actions button,
.sw-carousel-btns a,
.sw-carousel-btns button,
.sw-carousel .sw-carousel-buttons a,
.sw-carousel .sw-carousel-buttons button,
.sw-carousel .sw-carousel-actions a,
.sw-carousel .sw-carousel-actions button,
.sw-carousel .sw-carousel-btns a,
.sw-carousel .sw-carousel-btns button,
.sw-carousel .button,
.sw-carousel a.button,
.sw-carousel button,
.sw-carousel [class*="btn"],
.sw-carousel-wrap .button,
.sw-carousel-wrap a.button,
.sw-carousel-wrap button,
.sw-carousel-wrap [class*="btn"]{
    display:inline-flex !important;
    width:auto !important;
    white-space:nowrap !important;
    font-size: 11px !important;
    line-height:1.2 !important;
    padding:7px 11px !important;
}

@media (max-width: 767px){
    .sw-carousel-buttons,
    .sw-carousel .sw-carousel-buttons,
    .sw-carousel-wrap .sw-carousel-buttons,
    .sw-carousel-actions,
    .sw-carousel .sw-carousel-actions,
    .sw-carousel-wrap .sw-carousel-actions,
    .sw-carousel-btns,
    .sw-carousel .sw-carousel-btns,
    .sw-carousel-wrap .sw-carousel-btns{
        justify-content:center !important;
    }
}



/* v2.11.6 minimal caption + buttons */
.swc-mode-strip .swc-caption-wrap{
  margin-top: 8px !important;
  gap: 6px !important;
}

.swc-mode-strip .swc-caption{
  margin-top: 0 !important;
  font-size: 12px !important;
  line-height: 1.25 !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  opacity: .88 !important;
  text-align: var(--swc-caption-align, center) !important;
}

.swc-mode-strip .swc-caption a{
  gap: 4px !important;
  text-decoration: none !important;
}

.swc-mode-strip .swc-cap-icon{
  width: .9em !important;
  height: .9em !important;
  opacity: .6 !important;
}

.swc-mode-strip .swc-subcaption{
  font-size: 10px !important;
  line-height: 1.4 !important;
  opacity: .62 !important;
  margin-top: -2px !important;
}

.swc-mode-strip .swc-buttons{
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 2px !important;
}

.swc-mode-strip .swc-btn,
.swc-mode-strip .swc-btn:visited{
  min-height: 32px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(0,0,0,.16) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: rgba(0,0,0,.78) !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
}

.swc-mode-strip .swc-btn:hover{
  background: #fff !important;
  color: rgba(0,0,0,.95) !important;
  border-color: rgba(0,0,0,.28) !important;
  opacity: 1 !important;
}

.swc-mode-strip .swc-btn-quick{
  background: transparent !important;
}

.swc-mode-strip .swc-btn-book{
  background: #fff !important;
}

@media (max-width: 767px){
  .swc-mode-strip .swc-buttons{
    flex-direction: row !important;
    justify-content: center !important;
  }

  .swc-mode-strip .swc-btn{
    width: auto !important;
    min-width: 0 !important;
  }
}



/* v2.11.7 editorial content style */
.swc-mode-strip .swc-caption-wrap{
  background: #f7f7f5 !important;
  padding: 56px 38px 44px !important;
  margin-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 0 !important;
  text-align: center !important;
}

.swc-mode-strip .swc-caption{
  position: relative !important;
  display: block !important;
  margin: 0 auto !important;
  padding: 0 0 26px !important;
  max-width: 520px !important;
  color: #111 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  text-align: center !important;
}

.swc-mode-strip .swc-caption::after{
  content: "" !important;
  display: block !important;
  width: 52px !important;
  height: 3px !important;
  background: #111 !important;
  margin: 20px auto 0 !important;
}

.swc-mode-strip .swc-caption a{
  color: inherit !important;
  text-decoration: none !important;
  display: inline !important;
}

.swc-mode-strip .swc-cap-icon{
  display: none !important;
}

.swc-mode-strip .swc-subcaption{
     display: block !important;
    max-width: 620px !important;
    margin: 0 auto 28px !important;
    color: #111 !important;
    font-family: 'Roboto' !important;
    font-size: 17px !important;
    line-height: 1.95 !important;
    font-weight: 300 !important;
    letter-spacing: 0.00em !important;
    text-align: center !important;
    opacity: 1 !important;
}

.swc-mode-strip .swc-buttons{
  width: 100% !important;
  max-width: 620px !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: stretch !important;
  gap: 14px !important;
}

.swc-mode-strip .swc-btn,
.swc-mode-strip .swc-btn:visited{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 14px 28px !important;
  border: 1px solid #111 !important;
  border-radius: 0 !important;
  background: #111 !important;
  color: #fff !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.22em !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

.swc-mode-strip .swc-btn:hover{
  background: #1d1d1d !important;
  color: #fff !important;
  border-color: #1d1d1d !important;
  opacity: 1 !important;
}

.swc-mode-strip .swc-btn-quick{
  min-width: 180px !important;
}

.swc-mode-strip .swc-btn-book{
  min-width: 180px !important;
}

.swc-mode-strip .swc-buttons .swc-btn:only-child{
  width: 100% !important;
  max-width: none !important;
}

@media (max-width: 767px){
  .swc-mode-strip .swc-caption-wrap{
    padding: 38px 22px 30px !important;
  }

  .swc-mode-strip .swc-caption{
    font-size: 16px !important;
    letter-spacing: 0.26em !important;
    padding-bottom: 22px !important;
  }

  .swc-mode-strip .swc-caption::after{
    width: 44px !important;
    margin-top: 18px !important;
  }

  .swc-mode-strip .swc-subcaption{
    font-size: 15px !important;
    line-height: 1.8 !important;
    margin-bottom: 22px !important;
  }

  .swc-mode-strip .swc-buttons{
    gap: 10px !important;
  }

  .swc-mode-strip .swc-btn,
  .swc-mode-strip .swc-btn:visited{
    min-height: 42px !important;
    padding: 13px 18px !important;
    font-size: 11px !important;
    letter-spacing: 0.18em !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
  }
}



/* v2.15.0 caption height option */
.swc-mode-strip .swc-caption-wrap{
  min-height: var(--swc-caption-height, 0px);
}

.swc-wrap[style*="--swc-caption-height:0px"] .swc-caption-wrap{
  min-height: 0;
}



/* v2.15.1 subcaption height option */
.swc-mode-strip .swc-subcaption{
  min-height: var(--swc-subcaption-height, 0px);
}

.swc-wrap[style*="--swc-subcaption-height:0px"] .swc-subcaption{
  min-height: 0;
}


/* v2.15.2 center subcaption vertically */
.swc-subcaption{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}


/* v2.15.3 true vertical centering for subcaption */
.swc-mode-strip .swc-subcaption{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  box-sizing:border-box !important;
  width:100% !important;
  margin-left:auto !important;
  margin-right:auto !important;
}

.swc-mode-strip .swc-subcaption > *{
  margin-top:0 !important;
  margin-bottom:0 !important;
}

/* when a fixed subcaption height is set, keep content exactly in the middle */
.swc-wrap[style*="--swc-subcaption-height:"] .swc-subcaption{
  min-height: var(--swc-subcaption-height, 0px) !important;
}

/* if height is zero, keep natural height */
.swc-wrap[style*="--swc-subcaption-height:0px"] .swc-subcaption{
  min-height: 0 !important;
  display:block !important;
}


/* v2.15.4 caption title height */
.swc-caption{
  min-height: var(--swc-caption-title-height, 0px);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.swc-wrap[style*="--swc-caption-title-height:0px"] .swc-caption{
  min-height:0;
  display:block;
}


/* v2.15.6 caption title height visible option */
.swc-caption{
  min-height: var(--swc-caption-title-height, 0px);
  box-sizing: border-box;
}
.swc-wrap[style*="--swc-caption-title-height:0px"] .swc-caption{
  min-height: 0;
}

.swc-item img{height:var(--img-h,auto);object-fit:cover;} .swc-caption-wrap{min-height:var(--cap-h,auto);}