*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --ff-primary: 'Montserrat', sans-serif;
    --ff-secondary: 'Source Code Pro', monospace;
    
    --fw-reg: 300;
    --fw-bold: 600;
    
    --clr-light: #fff7f1;
    --clr-dark: #303030;
    --clr-accent: #E4D5B7;
    --clr-dark-accent: #B69656;
    --clr-light-accent: #F6EEE5;

    --fs-h1: 5rem;
    --fs-h2: 1.7rem;
    --fs-h3: 1rem;
    --fs-body: 1rem;

    --bs: 0.25em 0.25em 0.75em rgba(0,0,0.25), 0.125em 0.125em 0.25em rgba(0,0,0,.15);
}

@media (min-width: 800px) {
    :root {
        --fs-h1: 4.5rem;
        --fs-h2: 2rem;
        --fs-h3: 1.2rem;
        --fs-body: 1.125rem;
    }
}


/* General styles */

html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior:smooth;
    overflow-x: hidden;
}
body {
    display: flex;
    flex-direction: column;
    background: var(--clr-light);
    color: var(--clr-dark);
    margin: 0;
    font-family: var(--ff-primary);
    font-size: var(--fs-body);
    line-height: 1.6;
    background-image: url("img/bg.webp");
}

a {
    text-decoration:none;
}

.landing-bg-img {
    height: 104vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: repeat-y;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(50%);
}

section {
    padding: 3em 2em 0em;
    transform-style: flat;
}

img {
    max-width: 100%;
    -webkit-user-drag: none;
}

strong { font-weight: var(--fw-bold) }

/* Buttons */

.btn {
    display: inline-block;
    padding: .5em 2.5em;
    background: var(--clr-accent);
    color: var(--clr-dark);
    text-decoration: none;
    cursor: pointer;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: var(--fw-bold);
    transition: transform 200ms ease-in-out;
}

.btn:hover{
    transform: scale(1.1);
}

/* Typography */

h1,
h2,
h3 {
    line-height: 1;
    margin: 0;
}

h1 { font-size: var(--fs-h1) }
h2 { font-size: var(--fs-h2) }
h3 { font-size: var(--fs-h3) }


.section__title {
    font-size:var(--fs-h2)
}

.section__title--intro {
    font-family: "Ms Madi";
    font-weight: 400;
    text-align: center;
    font-size:8rem;
    margin-bottom: 0;
}

.section__title--intro strong {
    display: inline;
}

.section__title--subintro {
    font-family: "Nothing You could do";
    font-size:2rem;
}

.no-select {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* @media (max-height: 700px) {

    .section__title--intro {
        margin-top: calc(20vh - 30px);
    }
} */

@media (max-width: 900px) {

    .section__title--intro {
        font-size:4rem;
    }

    .section__title--subintro {
        font-size:1.3rem;
    }
}

/* 
@media (max-height: 400px) {

    .section__title--intro {
        margin-top: 0vh;
    }
} */

.section__subtitle {
    margin: 0 auto;
    font-size: var(--fs-h3);
}

.section__subtitle--intro,
.section__subtitle--about {
    padding: .25em 1em;
    font-family: var(--ff-secondary);
    margin-bottom: 1em;
}

/* header */

header {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    z-index: 1;
    width: 100%;
    transition-duration: 0.5s;
    background-color: var(--clr-accent);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.hamburger-wrapper {
    display: flex;
    position: absolute;
    right: 1em;
    gap: 10px;
}

.wide-nav{
    display: flex;
    justify-content: space-between;
    gap: 2em;
}

.mobile-book {
    color: var(--clr-accent);
}

.svg-underline-wrapper {
    display: inline-block;
    position: relative;
    font-weight: bold;
}

.svg-underline {
    color: var(--clr-dark-accent);
    position: absolute;
    left: 0;
    bottom: -0.9em;
    width: 100%;
    height: auto;
}

.logo {
    border-radius: 50%;
    height:300px;
    background-color: white;
}

@media (max-width: 1400px) {

    header {
        background-color: rgba(0,0,0,.8);
        /* background-color: var(--clr-accent); */
        top:1%;
        left:2%;
        width:96%;
        border-radius: 10px;
        transition-duration: 0.5s;
    }
    .wide-nav {
        display: none;
    }
    .social-wrapper {
        display: none;
    }

    .nav-logo {
        display: none;
    }
    .svg-underline {
        bottom: -0.6em;
    }
    .logo{
        height: 200px;
    }
    .shop-link-web i, .shop-link-web h3 {
        display: none;
    }
}

@media (min-width: 1400px) {
    .hamburger-wrapper {
        display: none;
    }
    .mobile-book {
        display: none;
    }
}

.sign {
    height: 50px;
    position: absolute;
    bottom: 5px;
    left: 5px;
    border: 1px solid var(--clr-dark-accent);
    border-radius: 4px;
}


.nav {
    position: fixed;
    background: var(--clr-dark);
    color: var(--clr-light);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index:100;

    transform:translateX(100%);
    transition: transform 250ms cubic-bezier(.5, 0, .5, 1);
}

/* applies to book appointment text in header */
.nav__item {
    color: var(--clr-dark);
    font-weight: 600;
}

.nav__list {
    list-style: none;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding:0;
}

.nav__link {
    color: inherit;
    font-weight: var(--fw-bold);
    font-size: var(--fs-h3);
    text-decoration: none;
}

.nav__link__mobile {
    color: var(--clr-accent);
}

.nav__item:hover{
    color: var(--clr-dark-accent);
}

.nav-toggle {
    padding: .5em;
    background: transparent;
    border: 0;
    cursor: pointer;
    /* position: absolute; */
    right: 1em;
    top: 1.2em;
    z-index: 1000;
}

.nav-open .nav{
    transform: translatex(0);
}

.nav-open .nav-toggle {
    position: fixed;
    margin:9px 0.7em;
}

.nav-open .hamburger {
    transform: rotate(.625turn);
}

.nav-open .hamburger::before {
    transform: rotate(90deg) translateX(-6px);
}

.nav-open .hamburger::after {
    opacity: 0;
}

/* .calendly-starter:hover {
    cursor:pointer;
} */

.hamburger {
    display: block;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    background: var(--clr-accent);
    width: 2em;
    height:3px;
    border-radius: 1em;
    transition: transform 250ms ease-in-out;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
}

.hamburger::before {top: 6px;}
.hamburger::after { bottom: 6px;}


/* Go to top button */
.go-to-top {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 1; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    width:40px;
    height:40px;
    background-color: var(--clr-dark-accent); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    border-radius: 10px;
    padding:10px;
    font-size: 18px; /* Increase font size */
  }
.go-to-top:active {
    color: var(--clr-dark-accent);
}
  
.go-to-top:hover {
    background-color: #555; /* Add a dark-grey background on hover */
}

/*  Intro section  */

.intro {
    position: relative;
    text-align: center;
    color:white;
    display:flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.intro button {
    background-color: var(--clr-accent);
    width:15em;
    border-radius: 30px;
    border-color: white;
    padding:5px 10px;
    border-width: thick;
    font-family: "Montserrat";
    font-weight: 600;
    font-size:16px;
}

#home {
    width: 100%;
    height: 100svh;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 1;
    overflow: hidden;
    display:flex;
    flex-direction: column;
    justify-content: center;
    gap:1em;
    border-width:0;
    padding: 0;
}

.home-page-prices {
    font: inherit;
    text-align: justify;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 10px;
}

.intro {
    padding:0;
    margin-bottom:2em;
}

@media(max-width: 1000px){
    section.services{
        padding-top:1em;
    }
}

/* Services section */

#services {
    display: flex;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-direction: column;
}

.services-content-wrapper {
    margin-bottom: 4em;
}

.service {
    width: 100%;
    margin: 20px auto;
}

.service-desc {
    margin: 0;
}

.service-img {
    height:500px;
    width:100%;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.service-question {
    margin-bottom:0;
    background: #e4d5b779;
    border-radius: 10px;
    padding: 5px;
}

.service-answer{
    margin-top:0;
}

.service-img-wrapper {
    position: relative;
    display: inline-block;
}

.service-decoration {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.service-decoration-wrapper {
    text-align: center;
}

#view-our-gallery {
    color: black;
    font-size: 20px;
    padding: 10px;
}

.service-img-background-spa, .service-img-background-facial {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 100%;
    height: 100%;
    background-color: #75706b28;
    z-index: -1;
}

.service-img {
    position: relative;
    display: block;
}

.subtitle {
    color:var(--clr-dark-accent);
    margin:5px 0;
}
@media (min-width: 1000px) {
    #services {
        display: flex;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        gap:3%;
        flex-direction: row-reverse;
    }
    .service {
        margin-left: 2em;
    }
}

@media (max-width:1000px) {
    .service-img-wrapper {
        width:70%;
        height:50%;
        margin-top:40px;
    }

    .service-img {
        height: 50%;
        height:inherit;
    }
    /* .service-img {
        width:50%;
        height:200px;
        margin: 0 auto;
    } */
}

.discover-more-button {
    outline: none;
    color:black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:10px;
    height:60px;
}

/* Contact Us section */

banner {
    width: 100vw;
    position: relative;
    left: calc(-50vw + 50%);
    width: 100vw;
    background-color: #f5e7d686;
    text-align: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    margin-bottom:40px;
    padding: 21px 0px 10px 0px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info {
    width: 100%;
    margin: 0 auto;
    background-color: #f5e7d686;
    padding:1em;
    margin-bottom:2em;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-map {
    min-height: 200px;
}

@media (min-width: 1200px) {
    .contacts {
        display: flex;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        gap:2%;
    }
    .contact-info + .contact-info {
        margin-left: 2em;
    }
}

.contact-business-hours-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.contact-reach-us-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 20px;
}

.contact-reach-us-item {
    width:100%;
    display:flex;
    align-items: center;
    gap:15px;
}

.contact-reach-us-img {
    height: 50px;
}

.footnote {
    font-size: 10px;
    color: var(--clr-dark);
    display: flex;
    position: relative;
    top: 15px;
}

@media (max-width: 500px) {
    .contact-reach-us-img {
        height:30px
    }
}
.contact-review-link {
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
}

/* FAQ section*/

.accordion {
    background-color: var(--clr-accent);
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    margin-top:10px;
    border-radius:6px;
    font-family: "Montserrat";
    display: flex;
    justify-content: space-between;
  }

  .accordionODD {
    background-color: var(--clr-light-accent);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .accordion.active, .accordion:hover {
    background-color: #ccc;
    background-color: var(--clr-dark-accent);

  }
  
  .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .faq-wrapper {
    max-width:800px;
    margin-left:auto;
    margin-right:auto;

  }
  
  .faq .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

.gold-circle {
    background: var(--clr-dark-accent);
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.faq-question-wrapper{
    display:flex;
    align-items: center;
    gap:1em;
}
/* Promotion section */

.promotions .promotion-poster {
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Gallery section */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
  background-color: black;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.gallery-img {
    max-height:70vh;
    width:auto;
    object-fit: contain;
    background-color: black;
}

.gallery-img {
    display: block;
    margin: auto;
    max-width: 100%; /* Ensure it scales properly */
    height: auto; /* Maintain aspect ratio */
}

.gallery-vid {
    background-color: black;
    height: 70vh;
    display: block;
    margin: auto;
    width: 100%;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: var(--clr-accent);
    display: flex;
    justify-content: center;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: var(--fw-bold);
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer .copyright {
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .hours {
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: left;
    gap: 20px;
}

.footer .social-media {
    width: 100%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 20px;
}

.footer .logos {
    display: flex;
    justify-content: end;
    gap: 10px;
}

.footer .logos #icon {
    width: 35px;
}

@media (max-width: 1000px) {
    .footer {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }

    .footer .social-media {
        width: auto; /* Adjust width to fit content */
        text-align: center; /* Center text alignment */
        display: flex;
        flex-direction: row; /* Ensure icons are in a row */
        align-items: center;
        justify-content: center; /* Center horizontally */
        gap: 20px; /* Maintain spacing between icons */
    }

    .footer .hours {
        width: auto; /* Adjust width to fit content */
        text-align: center; /* Center text alignment */
        display: flex;
        flex-direction: column; /* Ensure icons are in a row */
        align-items: center;
        justify-content: center; /* Center horizontally */
        gap:0px;
    }

    .footer p{
        margin: 5px;
    }
}

.header a { 
    color: inherit;
    text-decoration: none;
}

.social-list__link:hover{
    opacity:.7;
}

.social-list {
    list-style: none;
    display:flex;
    justify-content: center;
    align-items: normal;
    margin: 0;
    padding: 0;
    gap:1em;
    height:24px;
}

.social-list__item {
    width:30px;
    margin-top:-2px;
}

.social-list__link {
    width:30px;
}

/* Individual portfolio item styles */

.portfolio-item-individual {
    padding: 0 2em 2em;
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-item-individual p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


svg {
    fill: var(--clr-accent);
    height:22px;
    transform: translateY(2px);
    transition: transform 200ms ease-in-out;
    cursor: pointer;
}

svg:hover {
    transform: translateY(2px) scale(1.2);
}

@media (max-width:800px) {
    svg {
        height:18px;
        transform: translateY(2px);
        transition: transform 200ms ease-in-out;
        cursor: pointer;
    }
    
    svg:hover {
        transform: translateY(2px) scale(1.2);
    }
}

/* Promo modal */
/* .promo-modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.6);
  } */
  
  /* Modal Content/Box */
  .modal-content {
    position: relative;
    display: flex;
    justify-content: flex-end;
    margin: auto;
    width: fit-content;
  }
  
  /* .promo-modal .promotion-poster {
      max-height: 100vh;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
  } */
  
  /* The Close Button */
  .close-modal-button {
    position: absolute;
    color: #aaa;
    padding: 25px;
    height: 50px;
  }
  
  .close-modal-button:hover,
  .close-modal-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }

  /* Modal Fade In Animation */
  /* Hidden: */
/* .promo-modal {
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
} */

/* Active: */
/* .promo-modal.show {
    opacity: 1;
} */

/* QR Code Modal */
.qr-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.15s ease-in;
}

.qr-modal.show {
    display: flex;
    opacity: 1;
}

.qr-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.qr-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.popup-img {
    position: relative;
    cursor: pointer;
    transition: transform 0.2s;
}

.popup-img:hover {
    transform: scale(1.05);
}

.popup-img::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 5px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s;
}

.popup-img:hover::after {
    opacity: 1;
}

/* GIFT CARD SHOP */

.shop-link {
    color: var(--clr-accent);
    font-size: 24px;
}

.shop-link-web {
    font-size: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: baseline;
}

.shop-link-web:hover {
    cursor: pointer;
    color: var(--clr-dark-accent);
}

.shop-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);

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

    user-select: none;
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    background-color: var(--clr-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3rem;
    gap: 10px;
    width: 50%;
    height: auto;
}

.close {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* margin: 30px auto; */
    /* position: relative; */
}
  
.step {
    flex: 1;
    text-align: center;
    position: relative;
    font-weight: bold;
}
  
.step.active .circle {
    background-color: black;
}
  
.label {
    font-size: 16px;
    position: relative;
    bottom: 60px;
}

.step::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid black;
    border-radius: 50%;
    background-color: white;
    display: inline-block;
    z-index: 1;
    position: relative;
}

.step.active::before {
    background-color: black;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    width: 100%;
    height: 3px;
    background-color: black;
    z-index: 0;
}

.shop-button {
    font-family: inherit;
    border: 2px solid #222;
    padding: 10px 30px;
    border-radius: 10px;
    background-color: white;
    color: black;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;

    display: flex;
    flex-direction: column;

    transition: background-color 0.2s ease;
    user-select: none;
  }

.shop-button:hover {
    background-color: #222;
    color: white;
}

.shop-button:disabled {
  background-color: #ccc !important;
  color: #666 !important;
  cursor: not-allowed !important;
  opacity: 0.6;
  pointer-events: none;
}

#etBtn {
    width: 100%;
}

#nextBtn, #backBtn {
    border-radius: 10px;
}

#shopHeading {
    font-weight: bold;
    font-size: 26px;
    text-align: center;
}

.shop-bottom-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    top: 20px;
}

.shop-gift-selection .shop-button small {
    display: flex;
    text-align: center;
    font-weight: 400;
    color: #666;
}

.gift-card-payment {
    width: 50%;
}

.gift-card-confirmation p, .gift-card-payment p {
    text-align: center;
}

#oneTimeBtn, #giftCardBtn {
    height: 20vh;
    width: 40vh;
    justify-content: center;
} /* TODO: fix alignment of these two buttons */

#paypalBtn {
    width: 100%;
    min-height: 8vh;
}

.gift-card-details p {
    text-align: center;
    font-size: 12px;
}

.gift-card-details-field .label {
    font-size: 16px;
    position: relative;
    top: 2px;
}

.gift-card-details-field input[type="text"], input[type="date"] {
    width: 100%;
    min-width: 400px;
    font-family: inherit;
    font-size: 1rem;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#infoOneTime .options {
    display: flex;
    justify-content: space-between;
}

.switch-style {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
}

.switch-option {
  position: relative;
  flex: 1;
  cursor: pointer;
}

.switch-option input[type="radio"] {
  display: none;
}

.switch-option .button-label {
  display: block;
  align-items: center;
  padding: 1rem;
  border: 2px solid #ccc;
  border-radius: 10px;
  text-align: center;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  font-size: 14px;
  height: 100%;
}

.switch-option input[type="radio"]:checked + .button-label {
  background-color: var(--clr-dark);
  color: white;
  border-color: #222;
}

.switch-option input[type="radio"]:checked + .button-label small {
  color: white;
}

.switch-option .button-label small {
  display: block;
  line-height: 1.4;
  margin-top: 0.25rem;
  font-size: 0.85em;
  color: #666;
}

.switch-option:hover .button-label {
  border-color: #888;
  background-color: #eaeaea;
}

#error-message {
    color: red;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1400px) {
    .modal-content {
        width: 100%;
        overflow-x: scroll;
    }

    .progress-container {
        justify-content: center;
    }

    .progress-container .label {
        font-size: 10px;
    }
}