:root {
  --primary:   #6FDCEB;
  --secondary: #e8cbad;
  --accent:    #FEDF17;
  --bg-section: #eab6b6;
}

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

@font-face {
  font-family: 'Londrina';
  src: url('../font/LondrinaSolid-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
  font-family: 'Londrina', sans-serif;
  font-size: 20px;
  background-color: var(--secondary);
}

section {
    padding: 100px 0;
}

h1, .h1 { font-size: clamp(2.5rem,  0.875rem + 8.125vw, 6rem);     margin-top: 0; margin-bottom: 0.5rem; word-break: break-word; line-height: 1.1; }
h2, .h2 { font-size: clamp(2rem,    0.875rem + 6.125vw, 3.75rem);   margin-top: 0; margin-bottom: 0.5rem; }
h3, .h3 { font-size: clamp(1.75rem, 0.875rem + 4.375vw, 2.75rem);   margin-top: 0; margin-bottom: 0.5rem; }
h4, .h4 { font-size: clamp(1.5rem,  0.875rem + 3vw,     2.125rem);  margin-top: 0; margin-bottom: 0.5rem; }
h5, .h5 { font-size: clamp(1.25rem, 0.875rem + 2vw,     1.625rem);  margin-top: 0; margin-bottom: 0.5rem; }
h6, .h6 { font-size: clamp(1rem,    0.775rem + 1.125vw, 1.25rem);   margin-top: 0; margin-bottom: 0.5rem; }

/* Start Container */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 576px)  { .container { max-width: 540px;  } }
@media (min-width: 768px)  { .container { max-width: 720px;  } }
@media (min-width: 992px)  { .container { max-width: 960px;  } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }
/* End Container */

/* Start Utility */
.text-center { text-align: center; }
.text-uppercase { text-transform: uppercase; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -0.75rem;
}

[class^="col"] {
  padding-inline: 0.75rem;
  width: 100%;
}

.col-1  { width: 8.333%;  }
.col-2  { width: 16.666%; }
.col-3  { width: 25%;     }
.col-4  { width: 33.333%; }
.col-5  { width: 41.666%; }
.col-6  { width: 50%;     }
.col-7  { width: 58.333%; }
.col-8  { width: 66.666%; }
.col-9  { width: 75%;     }
.col-10 { width: 83.333%; }
.col-11 { width: 91.666%; }
.col-12 { width: 100%;    }

@media (min-width: 768px) {
  .col-md-1  { width: 8.333%;  }
  .col-md-2  { width: 16.666%; }
  .col-md-3  { width: 25%;     }
  .col-md-4  { width: 33.333%; }
  .col-md-5  { width: 41.666%; }
  .col-md-6  { width: 50%;     }
  .col-md-7  { width: 58.333%; }
  .col-md-8  { width: 66.666%; }
  .col-md-9  { width: 75%;     }
  .col-md-10 { width: 83.333%; }
  .col-md-11 { width: 91.666%; }
  .col-md-12 { width: 100%;    }
}

@media (min-width: 992px) {
  .col-lg-1  { width: 8.333%;  }
  .col-lg-2  { width: 16.666%; }
  .col-lg-3  { width: 25%;     }
  .col-lg-4  { width: 33.333%; }
  .col-lg-5  { width: 41.666%; }
  .col-lg-6  { width: 50%;     }
  .col-lg-7  { width: 58.333%; }
  .col-lg-8  { width: 66.666%; }
  .col-lg-9  { width: 75%;     }
  .col-lg-10 { width: 83.333%; }
  .col-lg-11 { width: 91.666%; }
  .col-lg-12 { width: 100%;    }
}

.d-flex         { display: flex;        }
.d-inline-flex  { display: inline-flex; }
.d-none         { display: none;        }
.d-block        { display: block;       }
.d-grid         { display: grid;        }

@media (min-width: 576px) {
  .d-sm-flex  { display: flex;  }
  .d-sm-none  { display: none;  }
  .d-sm-block { display: block; }
}

@media (min-width: 768px) {
  .d-md-flex  { display: flex;  }
  .d-md-none  { display: none;  }
  .d-md-block { display: block; }
}

@media (min-width: 992px) {
  .d-lg-flex  { display: flex;  }
  .d-lg-none  { display: none;  }
  .d-lg-block { display: block; }
}

.flex-row      { flex-direction: row;            }
.flex-column   { flex-direction: column;         }
.flex-row-rev  { flex-direction: row-reverse;    }
.flex-col-rev  { flex-direction: column-reverse; }
.flex-wrap     { flex-wrap: wrap;   }
.flex-nowrap   { flex-wrap: nowrap; }

.justify-content-start   { justify-content: flex-start;    }
.justify-content-end     { justify-content: flex-end;      }
.justify-content-center  { justify-content: center;        }
.justify-content-between { justify-content: space-between; }
.justify-content-around  { justify-content: space-around;  }
.justify-content-evenly  { justify-content: space-evenly;  }

.align-items-start    { align-items: flex-start; }
.align-items-end      { align-items: flex-end;   }
.align-items-center   { align-items: center;     }
.align-items-stretch  { align-items: stretch;    }
.align-items-baseline { align-items: baseline;   }

.self-start  { align-self: flex-start; }
.self-end    { align-self: flex-end;   }
.self-center { align-self: center;     }

.flex-grow-1   { flex-grow: 1;   }
.flex-grow-0   { flex-grow: 0;   }
.flex-shrink-1 { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-1        { flex: 1;        }

.gap-0  { gap: 0;       }
.gap-1  { gap: 0.25rem; }
.gap-2  { gap: 0.5rem;  }
.gap-25 { gap: 0.65rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem;    }
.gap-5  { gap: 1.5rem;  }
.gap-6  { gap: 2rem;    }
.gap-8  { gap: 3rem;    }

.mt-0 { margin-top: 0;       }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem;  }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem;    }
.mt-5 { margin-top: 1.5rem;  }
.mt-6 { margin-top: 1.5rem;  }
.mt-7 { margin-top: 2rem;    }
.mt-8 { margin-top: 3rem;    }

.h-25     { height: 25%;    }
.h-50     { height: 50%;    }
.h-75     { height: 75%;    }
.h-80     { height: 80%;    }
.h-85     { height: 85%;    }
.h-90     { height: 90%;    }
.h-100    { height: 100%;   }
.h-auto   { height: auto;   }
.h-screen { height: 100vh;  }

.w-25     { width: 25%;    }
.w-50     { width: 50%;    }
.w-75     { width: 75%;    }
.w-100    { width: 100%;   }
.w-auto   { width: auto;   }
.w-screen { width: 100vw;  }

@media (min-width: 576px) {
  .w-sm-25     { width: 25%;   }
  .w-sm-50     { width: 50%;   }
  .w-sm-75     { width: 75%;   }
  .w-sm-100    { width: 100%;  }
  .w-sm-auto   { width: auto;  }
  .w-sm-screen { width: 100vw; }
}

@media (min-width: 768px) {
  .w-md-25     { width: 25%;   }
  .w-md-50     { width: 50%;   }
  .w-md-75     { width: 75%;   }
  .w-md-100    { width: 100%;  }
  .w-md-auto   { width: auto;  }
  .w-md-screen { width: 100vw; }
}

@media (min-width: 992px) {
  .w-lg-25     { width: 25%;   }
  .w-lg-50     { width: 50%;   }
  .w-lg-75     { width: 75%;   }
  .w-lg-100    { width: 100%;  }
  .w-lg-auto   { width: auto;  }
  .w-lg-screen { width: 100vw; }
}

@media (min-width: 1200px) {
  .w-xl-25     { width: 25%;   }
  .w-xl-50     { width: 50%;   }
  .w-xl-75     { width: 75%;   }
  .w-xl-100    { width: 100%;  }
  .w-xl-auto   { width: auto;  }
  .w-xl-screen { width: 100vw; }
}

@media (min-width: 1400px) {
  .w-xxl-25     { width: 25%;   }
  .w-xxl-50     { width: 50%;   }
  .w-xxl-75     { width: 75%;   }
  .w-xxl-100    { width: 100%;  }
  .w-xxl-auto   { width: auto;  }
  .w-xxl-screen { width: 100vw; }
}

.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.order-6 { order: 6; }

@media (min-width: 576px) {
  .order-sm-1 { order: 1; }
  .order-sm-2 { order: 2; }
  .order-sm-3 { order: 3; }
  .order-sm-4 { order: 4; }
  .order-sm-5 { order: 5; }
  .order-sm-6 { order: 6; }
}

@media (min-width: 768px) {
  .order-md-1 { order: 1; }
  .order-md-2 { order: 2; }
  .order-md-3 { order: 3; }
  .order-md-4 { order: 4; }
  .order-md-5 { order: 5; }
  .order-md-6 { order: 6; }
}

@media (min-width: 992px) {
  .order-lg-1 { order: 1; }
  .order-lg-2 { order: 2; }
  .order-lg-3 { order: 3; }
  .order-lg-4 { order: 4; }
  .order-lg-5 { order: 5; }
  .order-lg-6 { order: 6; }
}

@media (min-width: 1200px) {
  .order-xl-1 { order: 1; }
  .order-xl-2 { order: 2; }
  .order-xl-3 { order: 3; }
  .order-xl-4 { order: 4; }
  .order-xl-5 { order: 5; }
  .order-xl-6 { order: 6; }
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
/* End Utility */

/* Start Buttons */
.icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    border: 2px solid var(--accent);
    color: black;
    padding: 10px;
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.icon-btn:hover {
    background-color: var(--accent);
    border: 2px solid white;
}

button {
  font-family: 'Londrina', sans-serif;
}

.primary-btn {
    font-size: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding: 10px 30px;
    background-color: var(--accent);
    border: 2px solid transparent;
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.primary-btn:hover {
    background-color: white;
    border: 2px solid var(--accent);
}

.secondary-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding: 10px 30px;
    border: 2px solid var(--accent);
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.secondary-btn:hover {
    background-color: var(--accent);
    border: 2px solid white;
}

.accent-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: fit-content;
    padding: 10px 30px;
    border: 2px solid transparent;
    background-color: black;
    color: var(--accent);
    border-radius: 50px;
    transition: all .3s ease-in-out;
}

.accent-btn:hover {
    background-color: var(--accent);
    color: black;
    border: 2px solid var(--accent);
}
/* End Buttons */

/* Start Nav */
.navbar-toggle {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.navbar-nav li {
  list-style: none;
}

.nav-container {
  margin-right: 40px;
}

.nav-bg {
    backdrop-filter: blur(10px);
    height: 100vh;
}

.navbar {
    position: absolute;
    padding: 40px 0;
    width: 100%;
    z-index: 10000;
    transition: background 0.3s ease-in-out;
}

.navbar-animate-in {
  opacity: 0;
  animation: fadeIn .5s ease forwards;
}

.navbar.sticky {
    position: fixed!important;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to   { transform: translateY(0);     opacity: 1; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.navbar .nav-wave {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: auto;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

a {
    color: black;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 20px;
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.open {
    display: block;
    height: 70vh;
  }

  .navbar-collapse.open .navbar-nav {
    flex-direction: column;
  }

  .navbar-toggle {
    display: flex;
  }
}

@media (min-width: 991px) {
  .navbar-toggle {
    display: none;
  }

  .navbar-collapse {
    display: block !important;
  }
}
/* End Nav */

/* Start Hero */
#hero {
    position: relative;
    height: 110vh;
    padding-bottom: 0!important;
}

#hero h1 {
  margin: 0;
}

#hero p {
    width: 50%;
    margin-top: 10px;
}

@media (max-width: 767px) {
  #hero p {
    width: 100%;
  }
}

#hero p, h1 {
    text-transform: uppercase;
}

#hero .logo {
    width: 100px;
    height: 100px;
    object-fit: inherit;
    margin-bottom: 10px;
}

#hero .bowl1 {
    position: absolute;
    bottom: 200px;
    left: -50px;
    width: 30%;
    height: auto;
    object-fit: contain;
    z-index: -1;
}

@media (max-width: 991px) {
    #hero .bowl1 {
      position: absolute;
      top: 0;
      left: 0;
      object-fit: contain;
      z-index: -1;
      width: 40%;
  }

  #hero .bowl2 {
    width: 100%;
    height: auto;
  }
}

#hero .bowl2 {
    position: absolute;
    bottom: 0px;
    right: 0;
    object-fit: contain;
    z-index: -2;
}

#hero .hero-wave-top {
    position: absolute;
    bottom: 0;
    left: 0;
    object-fit: contain;
    z-index: -1;
}
/* End Hero */

/* Start Healthy */
#healthy {
    position: relative;
    padding-top: 0!important;
    background-color: var(--primary);
    height: 200vh;
}

#healthy p {
  margin: 0;
}

#healthy .creation {
  border-left: 5px solid white;
  padding-left: 1rem;
  width: 30%;
}

#healthy .lecker {
  width: fit-content;
  background: cadetblue;
  color: white;
  padding: 20px;
  border-radius: 20px;
}

#healthy .healthy-corn {
  width: fit-content;
  background: cadetblue;
  color: white;
  padding: 20px;
  border-radius: 20px;
}

#healthy .hero-wave-bottom {
    position: absolute;
    top: -170px;
    left: 0;
    z-index: 1;
}

#healthy .healthy-bowl-top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 40%;
    height: 100%;
    object-fit: contain;
}

#healthy .healthy-flake {
    position: absolute;
    top: 10%;
    left: 0;
    width: 40%;
    height: auto;
}

@media (max-width: 575px) {
  #healthy .healthy-flake,
  #healthy .healthy-bowl-top {
    width: 60%;
  }
  #healthy {
    height: 150vh;
  }
}
/* End Healthy */

/* Start Variety */
#variety {
  position: relative;
  background-color: white;
}

#variety .card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 991px) {
  #variety .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  #variety .card-wrapper {
    grid-template-columns: auto;
    gap: 100px;
  }
  #variety .card .card-description {
    width: 200px!important;
    left: 20%!important;
  }
}

#variety .card {
  width: 390px;
  height: 390px;
  border-radius: 100px;
  padding: 50px;
  background-color: var(--primary);
  position: relative;
}

#variety .card .variety-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#variety .card .card-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: fit-content;
  padding: 20px 30px;
  background-color: #FEDF17;
  border-radius: 50px;
  font-size: 30px;
}

#variety .card .card-description p {
  margin: 0;
}

#variety .variety-wave-top {
  position: absolute;
  top: -226px;
  left: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
}

#variety .variety-flake {
  position: absolute;
  right: 150px;
  top: -90px;
}
/* End Variety */

/* Start Breakfast */
#breakfast {
  position: relative;
  background-color: var(--bg-section);
}

#breakfast .container {
  margin-top: 400px;
}

#breakfast .breakfast-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#breakfast .breakfast-body {
  position: relative;
}

#breakfast .breakfast-description {
  width: 300px;
  height: 300px;
  padding: 50px;
  border-radius: 50%;
  background-color: var(--accent);
  position: absolute;
  top: -70px;
  right: -70px;
  transform: rotate(-20deg);
}

#breakfast .breakfast-natural {
  position: absolute;
  bottom: 100px;
  left: 100px;
}

#breakfast p {
  margin: 0;
  font-size: 30px;
}

#breakfast .breakfast-flake {
  position: absolute;
  top: 26%;
  right: 25%;
}

#breakfast .variety-bottom-wave {
  position: absolute;
  top: -8%;
  left: 0;
}
/* End Breakfast */

/* Start Hero Config */
#hero-config {
  background-image: url("../images/waves/hero-config.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  height: 100vh;
  padding-bottom: 0!important;
  background-color: #fcdccc;
}

#hero-config .hero-wave-top {
  position: absolute;
  bottom: -70px;
  left: 0;
}
/* End Hero Config */

/* Start Configurator */
#configurator {
  position: relative;
  background-color: white;
  overflow: hidden;
}

#configurator .configurator-tabs {
  width: 100%;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  height: fit-content;
  padding: 0px 30px;
  border-radius: 50px;
  background-color: var(--primary);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 991px) {
  #configurator .configurator-tabs {
    gap: 20px;
    overflow-x: scroll;
  }
}

#configurator .configurator-tab {
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, padding 0.3s ease;
}

#configurator .configurator-tab.active {
  background-color: var(--accent);
  border-radius: 50px;
  padding: 10px 50px;
}

#configurator .configurator-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: stretch;
  align-items: center;
  gap: 30px;
  width: 100%;
}

@media (max-width: 991px) {
  #configurator .configurator-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  #configurator .configurator-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  #configurator .configurator-wrapper {
    grid-template-columns: auto;
  }
}

#configurator .configurator-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 300px;
  background-color: var(--primary);
  border-radius: 50px;
  text-align: center;
  padding: 20px 0 20px 0;
}

#configurator .configurator-description {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#configurator .configurator-controls {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

#configurator .configurator-btn-wrapper {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  align-items: center;
  background-color: #B8CF63;
  width: 130px;
  height: 100%;
  z-index: 2;
  left: -10px;
  bottom: 0;
  border-radius: 20px;
}

#configurator .configurator-price-wrapper {
  width: 100%;
  height: 100%;
  font-size: 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px 30px 10px 10px;
  position: absolute;
  z-index: 1;
  background-color: var(--accent);
  right: -10px;
  bottom: 0;
  border-radius: 20px;
}

#configurator .configurator-price {
  font-size: 25px;
}

#configurator .configurator-btn-minus,
#configurator .configurator-btn-plus {
  background: transparent;
  border: none;
  font-size: 20px;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

#configurator .configurator-img {
  width: 100%;
  height: 130px;
  object-fit: contain;
}

#configurator .configurator-panel {
    display: none;
}

#configurator .configurator-panel.active {
    display: block;
}
/* End Configurator */

/* Start Cart */
.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: red;
  color: white;
  font-size: 12px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.nav-link.icon-btn {
  position: relative;
}

.cart-modal {
  width: 100%;
  height: 100%;
  max-width: 50vw;
  max-height: 50vh;
  display: flex;
  flex-direction: column;
}

.cart-empty {
  text-align: center;
  font-size: 20px;
  opacity: 0.6;
  margin: auto;
}

.cart-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background-color: white;
  border-radius: 20px;
  padding: 15px;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.cart-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cart-item-name {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.cart-item-weight {
  font-size: 14px;
  opacity: 0.6;
}

.cart-item-price {
  font-size: 18px;
  font-weight: 700;
}

.cart-item-unit {
  font-size: 13px;
  opacity: 0.5;
}

.cart-item-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart-item-quantity {
  font-size: 18px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.cart-btn-minus,
.cart-btn-plus {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.cart-btn-minus:hover,
.cart-btn-plus:hover {
  background-color: var(--primary);
}

.cart-btn-remove {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #e05c5c;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
  color: #e05c5c;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
  margin-left: 4px;
}

.cart-btn-remove:hover {
  background-color: #e05c5c;
  color: white;
}

.cart-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.cart-total-label {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

.cart-total-price {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.cart-checkout-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--accent);
  color: black;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
  background-color: white;
  color: black;
  border: 2px solid var(--accent);
}
/* End Cart */

/* Start Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background-color: white;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: var(--primary);
}

.modal-header h2 {
  margin: 0;
  font-size: clamp(1.5rem, 1rem + 2vw, 2rem);
  text-transform: uppercase;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.modal-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-footer {
  padding: 20px 30px;
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: white;
}
/* End Modal */

/* Start Error Modal */
.error-modal {
  width: 360px;
  max-width: 95vw;
}

.error-modal .modal-header {
  background-color: #e05c5c;
}

.error-modal .modal-body {
  text-align: center;
  padding: 30px;
}

.error-modal .modal-body p {
  margin: 0;
  font-size: 20px;
}
/* End Error Modal */