
    .wrapper { max-width: 1300px; margin: 0 auto; padding: 60px 30px; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; }
    .main { display: flex; align-items: center; justify-content: space-between; }
    .left { width: 30%; }
    .left .category { font-size: 14px; margin-bottom: 12px; text-transform: uppercase; }
    .left h1 { font-size: 42px; line-height: 1.2; margin-bottom: 20px; }
    .left p { font-size: 16px; line-height: 1.6; }
    .center { width: 35%; text-align: center; }
    .center img { width: 100%; max-width: 400px; transition: 0.3s; }
    .right { width: 30%; }
    .options { margin-bottom: 30px; }
    .options h3 { font-size: 16px; margin-bottom: 12px; }
    .sizes, .colors { display: flex; gap: 12px; flex-wrap: wrap; }
    .sizes span, .colors span {
      width: 44px; height: 44px; border-radius: 50%; background: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: transform 0.2s, border 0.2s; color:#000;
    }
    .sizes span.active, .colors span.active { border: 2px solid #000; transform: scale(1.1); }
    .info-buttons { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
    .info-buttons button {
      background: #fff; color: #333; border: 1px solid #ccc;
      padding: 10px 15px; border-radius: 6px; cursor: pointer;
      font-size: 14px; text-align: left; transition: background 0.3s;
    }
    .info-buttons button:hover { background: #f5f5f5; }
    .gallery { margin-top: 20px; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
    .gallery img { width: 100px; border-radius: 12px; cursor: pointer; transition: transform 0.6s ease; padding: 15px; background: #fff; max-width: 84px; }
    .gallery img:hover { transform: scale(1.2) translateY(-20px); }
    .bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-radius: 12px 12px 0 0; padding: 20px 40px; display: flex; align-items: center; justify-content: space-between; color: #333; }
    .bottom-bar .min-order { font-size: 16px; font-weight: bold; display: flex; align-items: center; gap: 10px; }
    .counter { display: flex; align-items: center; gap: 5px; }
    .counter button { width: 28px; height: 28px; border: none; border-radius: 50%; cursor: pointer; font-size: 18px; font-weight: bold; background: #eee; }
    .counter input { width: 50px; text-align: center; border: 1px solid #ccc; border-radius: 6px; font-size: 14px; padding: 5px; }
    .bottom-bar .video { font-size: 16px; cursor: pointer; }
    .bottom-bar .actions { display: flex; gap: 15px; }
    .btn { background: #00b268; color: #fff; padding: 12px 24px; border: none; border-radius: 8px; font-size: 15px; text-decoration: none; transition: background 0.3s; }
    .btn:hover { background: #009655; }
    .btn.secondary { background: #555; }
    .btn.secondary:hover { background: #333; }
    .modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); align-items: center; justify-content: center; z-index: 999; }
    .modal-content { background: #fff; color: #333; padding: 30px; border-radius: 12px; width: 90%; max-width: 600px; max-height: 80vh; overflow-y: auto; position: relative; }
    .modal h2 { margin-bottom: 15px; font-size: 20px; }
    .modal table { width: 100%; border-collapse: collapse; margin-bottom: 15px; }
    .modal table th, .modal table td { border: 1px solid #ddd; padding: 8px; text-align: left; font-size: 14px; }
    .modal table th { background: #f9f9f9; }
    .modal .close { position: absolute; top: 10px; right: 15px; font-size: 28px; color: #333; cursor: pointer; }
.hero-title {
  font-size: 8vw;
  line-height: 1em;
  font-weight: 900;
}

.nav-title {
  font-size: 4em;
}

a {
  transition: all 0.25s ease-in-out;
}

.white,
a.white {
  color: #efefef;
}

.black {
  color: #212121;
}

.pearl,
a.pearl {
  color: #fff;
}

.green,
a.green {
  color: #00bcd4;
}

.pink {
  color: #b73b3b;
}

.blend {
  mix-blend-mode: difference !important;
  color: #efefef;
  position: relative;
  z-index: 2;
}

.bg-black {
  background-color: #212121;
}

.bg-green {
  background-color: #00bcd4;
}

.bg-topographic {
  background-image: url(https://assets.codepen.io/319606/bg-topographic.svg);
  background-size: 5000px;
  opacity: 0.1;
  pointer-events: none;
}

.custom-cursor {
  position: fixed;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: difference;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #00bcd4;
  transition: transform 350ms ease;
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 1000;
}

.custom-cursor--link {
  transform: translate(-50%, -50%) scale(1.25);
}


.sticky-nav {
  top: 20px;
  left: 20px;
  position: fixed;
  width: calc(100% - 40px);
  z-index: 999;
}
.sticky-nav.difference {
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: difference;
}
.sticky-nav.difference #nav-btn {
  filter: invert(0);
}
.sticky-nav .logo {
  width: 220px;
  height: 58px;
  background-image: url(https://maxlevels.net/wp-content/uploads/2025/09/fresh-smilelogo-1.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: left;
  z-index: 998;
}
.sticky-nav #nav-btn {
  width: 60px;
  z-index: 999;
  filter: invert(1);
}
.sticky-nav #nav-btn .icon {
  position: relative;
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
}

#takeover-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  left: 0;
  top: -200%;
  transition: all 0.5s ease-in-out;
  z-index: 996;
}
#takeover-nav.shown {
  top: 0;
}
#takeover-nav .nav-col {
  min-height: 100vh;
}
#takeover-nav .nav-col a {
  color: #efefef;
}
#takeover-nav .nav-col a:hover {
  color: #212121;
}
#takeover-nav .nav-contact .content {
  max-width: 700px;
}
#takeover-nav .nav-items {
  font-size: 2.5em;
  font-weight: 700;
}
#takeover-nav .contact-items {
  font-size: 1.25em;
  font-weight: 700;
}
#takeover-nav .contact-items a:hover {
  color: #00bcd4;
}
#takeover-nav .social {
  font-size: 0.75em;
}
#takeover-nav .social a {
  color: #00bcd4;
}
#takeover-nav .social a:hover {
  color: #efefef;
}

.gradient-overlay {
  bottom: 0;
  height: 50%;
  background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
  background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, #212121 50%);
  background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, #212121 50%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00212121", endColorstr="#212121",GradientType=0 );
  z-index: 1;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

.video-wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-right-radius: 15vw;
  pointer-events: none;
}

#video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  min-width: 100%;
  background-position: center center;
  background-size: cover;
  object-fit: cover;
  transform: rotate(180deg);
}

section {
  /*min-height: 800px;*/
  /*height: 800px;*/
  width: 100%;
  padding-bottom: 100px;
}
section.hero {
  background-color: #212121;
  border-bottom-right-radius: 15vw;
  position: relative;
  height: 800px;
  z-index: 9;
}
section.hero:before {
  content: "";
  background-color: #212121;
  position: absolute;
  top: 100%;
  left: 0;
  width: 15vw;
  height: 15vw;
}
section.hero:after {
  content: "";
  background-color: #efefef;
  position: absolute;
  top: 100%;
  left: 0;
  width: 15vw;
  height: 15vw;
  border-top-left-radius: 15vw;
}
section.two {
  background-color: #efefef;
}
section.three {
  background-color: #e8d1f6;
}
section.four {
  background-color: #00bcd4;
}
section.five {
  background-color: #29639c;
}

@media screen and (min-width: 1200px) {
  .hero {
    height: 75vh;
  }
  .hero #video-bg {
    object-position: 0 5vw;
  }
}
@media screen and (max-width: 1199px) {
  .hero #video-bg {
    object-position: 0 15vw;
  }
}
@media screen and (max-width: 767px) {
  #takeover-nav .nav-menu {
    min-height: 500px;
  }
  #takeover-nav .nav-menu a {
    color: #212121;
  }
  #takeover-nav .nav-menu a:hover {
    color: #efefef;
  }
  #takeover-nav .nav-contact {
    min-height: 600px;
  }
  #takeover-nav .nav-contact .nav-title {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 575px) {
  header .swoosh {
    width: 165px;
    height: 35px;
    top: 10px;
  }
  header .sticky-nav {
    top: 10px;
  }
  header .sticky-nav .logo {
    width: 150px;
    height: 46px;
  }
  header .sticky-nav #nav-btn {
    width: 40px;
  }
  header #takeover-nav .contact-items {
    font-size: 1em;
  }

  .hero {
    min-height: 600px;
    height: 600px;
  }
  .hero .hero-title {
    font-size: 12vw;
  }
  .hero #video-bg {
    object-position: 0 30vw;
  }
}
/*Ticker Section*/
.section-horizontally-scrolling-content {
    overflow: hidden;
    /* background: #fff; */
    margin-top: -36px;
    z-index: 9999999;
    display: block;
    position: relative;
    max-width: 89%;
}
.ticker-item img {
        max-width: 120px;
    min-width: 120px;
    height: 36px;
}
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll 25s linear infinite;
  will-change: transform;
}

.ticker-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    margin: 0 2rem;
    white-space: nowrap;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.top-divider, .section-outer {
    position: relative;
}
.section-outer:before {
    content: "";
    position: absolute;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    max-height: -webkit-fill-available;
    max-height: -moz-available;
    max-width: -webkit-fill-available;
    max-width: -moz-available;
}
/* Hide by default */
.mobile-product-card {
  display: none;
}

/* ======================================================
   MOBILE FULLSCREEN PRODUCT CARD LAYOUT
   ====================================================== */
@media screen and (max-width: 767px) {

  body, html {
    overflow-y: auto !important;
    background: none;
  }

  .main { display: none !important; }

  .mobile-product-card {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding-bottom: 160px;
  }

  /* Hero Image */
  .mobile-center img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 0;
    object-fit: contain;
    display: block;
  }

  .mobile-info h1 {
    font-size: 22px;
    font-weight: 700;
    margin: 10px 15px;
  }

  /* Read More button + collapsible description */
  .read-more-btn {
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    width: 80%;
    margin: 0 auto;
  }

  .mobile-description {
    display: none;
    padding: 0 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
  }

  .mobile-description.show {
    display: block;
    animation: fadeIn 0.5s ease;
  }

  /* Gallery */
  .mobile-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
  }

  .mobile-gallery img {
    width: 70px;
    border-radius: 10px;
    background: #fff;
    padding: 4px;
    cursor: pointer;
  }

  /* Flavors */
  .mobile-flavors h3 { margin-bottom: 10px; }
  
  .mobile-flavors .colors {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .mobile-flavors .colors span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
  }

  /*.mobile-flavors .colors span.active {*/
  /*  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #000;*/
  /*}*/

  /*.mobile-flavors .colors span.active.light {*/
  /*  box-shadow: 0 0 0 3px #000, 0 0 0 6px #fff;*/
  /*}*/

  /* White block */
  .mobile-action-card {
    background: #fff;
    color: #000;
    border-radius: 20px;
    margin: 10px 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .mobile-action-card .quantity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .counter {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .counter button {
    width: 32px;
    height: 32px;
    background: #00b268;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
  }

  .counter input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 5px;
    font-size: 14px;
  }

  .action-buttons {
    display: flex;
    gap: 10px;
  }

  .action-buttons .btn {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .action-buttons .inquiry { background: #00b268; }
  .action-buttons .location { background: #333; }

  /* Info Buttons */
  .info-tiles {
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    margin-top: 10px;
    gap: 8px;
  }

  .info-tiles button {
    flex: 1;
    padding: 10px 0;
    font-size: 14px;
    border-radius: 8px;
    font-weight: bold;
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 1px solid #fff;
  }

  /* Hero Image (fills screen width under header) */
  .mobile-center {
    width: 100%;
    position: relative;
  }

          .mobile-center img {
        width: 100%;
        height: auto;
        max-height: 45vh;
        object-fit: cover;
        display: block;
        min-width: 431px;
    }

    .bottom-bar {
        display: none;
    }
    .wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 30px;
    min-height: auto !important;

 }
}
  
  
  @media screen and (max-width: 767px) {
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
}