:root {
  --brand-green: #008638;
  --brand-gold: #ffbe00;
  --text-dark: #0b0b0b;
  --muted: #666666;
  --max-width: 1440px;
  --max-legal-width: 95%;
  --page-padding: 1rem;
  --container-gap: 1.25rem;
  /*--focus:3px solid #ffeb99;*/
  --focus: #173f35;
}

/* Reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  color: var(--text-dark);
  background: #ffffff;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-gutter: stable !important;
  overflow-y: scroll;
}

a {
  color: inherit;
  text-decoration: underline;
}
a:focus,
button:focus {
  outline: none;
  border: 2px solid #000;
  /*color: #fff;*/
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 0.75rem;
  background: black;
  color: white;
  z-index: 1000;
  border-radius: 4px;
}

.nowrap {
  white-space: nowrap;
}

header {
  padding: 0.75rem var(--page-padding);
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand {
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brand img {
  height: 36px;
  width: auto;
}

main {
  display: block;
}

/* Hero */
.hero {
  color: #fff;
  padding: 0rem;
}

.hero-inner {
  max-width: var(--max-width);
  background: var(--brand-green);
  background-image: url("../images/header-bg-mobile.png");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.hero-content {
   margin:44% auto 110% auto;
   text-align: center;
}

.holiday-tag {
  display: block;
  width:80%;
  margin: 0 auto;
}

h1.hero-title {
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  font-weight: 800;
  font-size: 9.5vw;
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 2vw auto 5vw auto;
}

.hero-title sup {
  top: -1vw !important;
  margin-left: 2px;
  font-size: 87%;
}
.hero-actions {
  text-align: center;
  display: block;
  margin: 0 auto;
  width: 60%;
}

.btn {
  display: block !important;
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  padding: 0.4rem 0.9rem 0.2rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  font-size: 4vw;
  /*margin: 0 auto;*/
}

.btn-primary {
  background: var(--brand-gold);
  color: #000;
  border-color: #ffffff;
  margin-bottom: 4vw;

}
.btn-primary:hover {
  background: #fff;
  border-color: var(--brand-gold);
}

.btn-primary:focus {
  box-shadow: var(--focus);
}

.btn-link {
  background: transparent;
  color: #e6f7e9;
  text-decoration: underline;
  padding: 0.4rem 0.3rem;
  
}
.btn-link:hover {
  color: #EBFFF2;
  text-decoration: none;

}
/* Middle white band with features */
.features-band {
  background: #fff;
  color: #000;
  padding: 2.5rem .5rem;
}
.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  padding: 1rem;
}

.features-title {
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  font-size: 10vw;
  line-height: 1.12;
  margin: 0.25rem auto 0.75rem auto;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.features-sub {
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  margin: 0 auto 1.25rem auto;
  font-size: 4.5vw;
  line-height: 1.75;
  font-weight: 500;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.25rem;
  align-items: start;
  margin: 1rem 0 1.5rem 0;
}

.feature {
  padding: 0.5rem;
}

.feature .icon {
  display: inline-block;
  height: 64px;
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature .icon img {
  height: 130px;
}

.feature h3 {
  margin: 0.4em auto 1em auto;
  font-size: 6vw;
  font-weight: 800;
  line-height: 1.14;
}

.find-store {
  width: 50%;
  margin: 1rem auto;
}

.services-slider {
  background: var(--brand-green);
  max-width: var(--max-width);
  min-height: 320px;
  margin: 0 auto;
}

footer.site-footer {
  background: #fff;
  color: #000;
  padding: 1rem var(--page-padding);
  font-size: 0.75rem;
}

.legal {
  max-width: var(--max-width);
  margin: 0 auto !important;
  display: grid;
  grid-template-columns: 100%;
  gap: 0rem;
  align-items: center;
}

.legal-inner {
  font-size:3.125vw;
  margin: 0 auto 3vw auto;
  line-height: 1.5;  /* figma = 1.83 */
}

.legal-inner a:hover, .legal-inner a:active {
  color: var(--brand-green);
}
.legal-inner sup {
  font-size: 60%;
}
.footer-logo {
  text-align: center;
}

.footer-logo img {
  width: 80%;
  max-width: 275px;
}
sup.footnote {
  font-size:75% !important;
  top:3em;
}

.visible-xs {
  display: block !important;
}

.hidden-xs {
  display: none !important;
}
/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */
/* SLIDER */


/* Slider wrapper */
.slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding:0rem;
  background-image: url("../images/slider-bg-mobile.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: bottom;
}

/* Slide track */
.slides {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

/* Individual slides (stacked for mobile) */
.slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  gap: 0rem;
  color: #FFFFFF;
}

.slide img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
}

.content {
  width: 80%;
}

h2 {
  font-family: 'UPS Berlingske Sans';
  font-size:8.85vw;
  line-height: 1.105;
  font-weight: 800;
  color: #FFFFFF;
  margin:1em 0 1em 0;
}

.fa-arrow-right-long {
  color: var(--brand-gold) !important;
}

ul.arrows {
  padding-left: 6.2vw;
  margin: 0 auto;

}

ul.arrows li {
  list-style-image: url('../images/right_arrow.svg');
  font-family: 'UPS Berlingske Sans';
  font-weight: 800;
  text-align: left;
  padding-bottom: .75em !important;
  font-size: 5vw;
  line-height: 1.4;
}

ul.arrows li::marker{
   font-size:2.9em !important;
   line-height: 0;
}

ul.arrows li sup {
  font-size: 50%;
}
.content .btnContain {
  width: 40vw;
  text-align: center;
  margin: 1vw auto 1em auto;
}

/* -------------------------
   Navigation buttons
------------------------- */
.nav {
  display: none;
}

/* Dots (pagination) */
.dots {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 180px
}

.dot {
  margin: 0 .25vw;
  border:none;
  cursor: pointer;
  width:8px !important;
  height: 12px !important;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: .4;
  -webkit-transform: scale(.7);
  -ms-transform: scale(.7);
  transform: scale(.7);
  /*position: relative*/
}

.dot.active,
.dot:hover,
.dot:focus {
  background: white;
  border:none;
}









/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
/* Layout for larger screens */
@media (min-width: 769px) {

  .hero-inner {
    max-width: var(--max-width);
    background: var(--brand-green);
    background-image: url("../images/header-bg-desktop.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: start;
    gap: 0rem;
  }

  .text-wrap div.btnContain {
    width: 5vw;
    text-align: center;
  }

  .hero {
    /*padding: 0rem var(--page-padding);*/
  }
  .hero-content {
    position: relative;
    margin: 26% 0 12% 17%;
  }

  .holiday-tag {
    display: block;
    min-width: 200px;
    width: 36%;
    max-width: 260px;
    margin: 0 0 0 -3px !important;

  }

  h1.hero-title {
    font-family: "UPS Berlingske Sans", Arial, sans-serif;
    font-weight: 800;
    font-size: 38px;
    font-size: clamp(30px, 2.9vw, 48px);
    line-height: 1.12;
    text-align: left;
    letter-spacing: -0.02em;
    margin:2% 0 4% 0;
  }

  .hero-title sup {
    top: -.8vw !important;
    margin-left: 2px;
    font-size: 67%;
  }

  .hero-actions {
    display: flex;
    gap: 0.75rem;
    align-items: left;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .btn {
    display: inline-block;
    padding: .5rem 0.9rem 0.3rem 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    font-size: clamp(12px, 1.05vw, 16px);
    margin: 0;
  }

  .btn-primary {
    background: var(--brand-gold);
    color: #000;
    border-color: #ffffff;
  }

  .btn-primary:focus {
    box-shadow: var(--focus);
  }

  .btn-link {
    background: transparent;
    color: #e6f7e9;
    text-decoration: underline;
    padding: 0.4rem 0.3rem;
    margin: 0;
  }

  .features-title {
    font-size: 50px;
    margin-top: .05rem;
  }

  .features-sub {
    font-size: clamp(12px, 1vw, 16px);
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .feature h3 {
    font-size: 21px;
  }

  .brand img {
    height: 44px;
  }

  .find-store {
    width: 18vw;
    max-width: 131px !important;
    margin: 1rem auto;
  }

  .legal {
    max-width: var(--max-width);
    margin: 0 auto !important;
    display: grid;
    grid-template-columns: 75% 25%;
    gap: 0rem;
    align-items: start;
  }

  .legal-inner {
    font-size: 12px;
    /*font-size:.85vw;*/
    margin: 0 auto 3vw auto;
    line-height: 1.5;  /* figma = 1.83 */
  }

  sup.footnote {
    font-size:75% !important;
    top:0vw !important;
  }

  .slider {
    padding: 2rem;
    background-image: url("../images/slider-bg-desktop.png");
  }

  .slide {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 2rem;
  }

  .slide img {
    width: 55%;
    max-width: none;
  }

  .content {
   width: 40%;
  }

  h2 {
    font-size: clamp( 24px, 2vw, 38px);
    margin-bottom: 20px;
  }

  ul.arrows {
    padding-left: 32px;
  }

  ul.arrows li {
    font-size: clamp( 18px, 1.22vw, 21px);
  }

  .content .btnContain {
    width: 160px;
    text-align: center;
    margin: 1vw 0;
  }

  .nav, .nav:focus {
    display: block;
    position: absolute;
    /*bottom: 1rem;*/
    transform: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
    top: 50%;
    padding: 1rem;
    opacity: .5;
    transition: opacity 0.4s ease;
    pointer-events: none; /* prevent interaction until visible */
    z-index: 500;
  }

  /* Fade in on hover/tap */
  .slider:hover .nav,
  .slider:active .nav {
    opacity: 1;
    pointer-events: all;
    box-shadow: none;
  }


  /* Disabled state */
  .nav:disabled {
    opacity: 0 !important;
    cursor: default;
    pointer-events: none;
  }

/* make this match your existing nav rules; this is the class used by JS */
/*.slider .nav-visible*/
 .nav:enabled {
  /*opacity: 1;*/
  pointer-events: all;
}

  .nav.prev {
    left: 0rem; 
    background-image: url('../images/arrow-right.png') !important;
    background-repeat: no-repeat;
    background-size: 16px 24px !important;
    transform: rotate(180deg);
  }

  .nav.next {
    right: 0rem;
    background-image: url('../images/arrow-right.png') !important;
    background-repeat: no-repeat;
    background-size: 16px 24px !important;
  }

  .dots {
    margin-bottom: 2rem;
  }

  .visible-xs {
    display: none !important;
  }

  .hidden-xs {
    display: block !important;
  }

}



/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
/* Very wide screens center content within max width */
.centered {
  max-width: var(--max-width);
  margin: 0 auto;
}
.centered-legal {
  max-width: var(--max-legal-width);
  margin: 0 auto;
}

/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
/* Accessibility helpers */
.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
/* Modal styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.modal-backdrop.active {
  display: flex;
}

.modal {
  background: var(--brand-green) url("../images/modal-top.png") no-repeat top center / contain;
  color: #ffffff;
  padding: 1.5rem;
  max-width: 400px;
  width: 90%;
  box-shadow: 0px 4px 24px 10px rgba(0, 0, 0, 0.25);
}

.modal header {
  border: none;
  justify-content: right;
  padding: 0;
  margin-bottom: 1rem;
  background: none !important;
}
.modal h2 {
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  margin: 0 0 1.5em 0;
  font-size: 1.25rem;
  background: none !important;
  text-align: center;
}
.modal h2 sup {
  font-size: 70%;
  padding-left: 1px;
}

.modal .modal-logo {
  width: 57%;
  margin: 3rem auto 1.5rem auto;
}
.modal .modal-button {
  width: 70%;
  margin: 1rem auto;
  text-align: center;
}
.modal .modal-button button {
  margin: 0 auto;
}
@media (min-width: 769px) {
    .modal .modal-button {
      width: 50%;
      margin: 1rem auto;
    }
  }

.modal form {
  background: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
/*.modal label {
  font-weight: 600;
}*/
.modal input[type="email"] {
  font-family: "UPS Berlingske Sans", Arial, sans-serif;
  padding: 0.7rem 0 .5rem 0;
  border: 2px solid #999999;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.125;
  letter-spacing: 0.01em;
  width: 100%;
  margin: 0 auto !important
}
.modal input::placeholder {
  color: #cfcfcf;
}

.modal input[type="email"]:focus {
  border: 2px solid #999999;
  outline: none;
}

.modal .btn-primary {
  align-self: flex-start;
}
.modal .close-btn {
  background: none !important;
  border: none;
  color:#FFFFFF;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
  border: 1px solid #ffffff;
  border-radius: 50%;

}
.modal .modal-disclaimer {
  text-align: center;
  font-weight: 500;
  font-size: clamp(8px, .7vw, 12px);
}
.modal .modal-disclaimer strong {
  font-weight: 700;
}

.modal hr {
  width: 100%;
  border: none;
  height: 1px;
  background-color: #fff;
}

.modal .checkbox-parent {
  display: flex;
  align-items: center;    
  padding: 0;
  gap: 0px;
}

.modal .checkbox-parent > div{
  padding: 6px;
}

.modal .checkbox-parent .item2 { 
  flex-shrink:1;
  align-self:auto;
  font-size: .8em;
  line-height: 1.75;
  font-weight: 500;
}

.modal input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  background-color: #008638;
  margin: 0;
  font: inherit;
  color: #FFFFFF;
  width: 1.8em;
  height: 1.8em;
  border: 0.15em solid #FFFFFF;
  border-radius: 0.5em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

.modal input[type="checkbox"]::before {
  content: "";
  width: .8em;
  height: .8em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  background-color: #FFFFFF;
}

.modal input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.modal input[type="checkbox"]:focus {
  outline: max(2px, 0.15em) solid #FFF;
  outline-offset: max(2px, 0.15em);
}

.modal input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);

  color: var(--form-control-disabled);
  cursor: not-allowed;
}

.modal .success-message,
.modal .fail-message,
.modal .error-message {
  text-align: center;
  font-weight: 700;
}

.modal .fail-message,
.modal .error-message {
  border: 1px solid #f00;
  background-color: #c00;
  padding: .2rem .2rem 0rem .2rem;
  font-size: 16px;
  display: none;
}

.modal .success-message {
  font-size: 1.5em;
  padding: .7em 0 2em 0;
}
