    /* CSS from the pen */

    /* Variables (written as Sass in the pen) */
    /* Translating basic ones to CSS */
    @import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap");
    @import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap);@import url(https://use.typekit.net/qjz4gdd.css);@import url(https://use.typekit.net/bsm8clf.css);.page-template-page-home_v2 .version-A {
    display: inline
}
    /* ----------------------
       Design Tokens
    ---------------------- */
    :root{
      --bg-start: #f4f9ff;              /* warm start */
      --bg-end:   #e9f2ff;
      --bg-ice-1: #e6fbff;              /* frosty end */
      --bg-ice-2: #dff3ff;

      --mint-50:  #e7f8ff;
      --mint-200: #bfe9ff;
      --mint-300: #8fd9ff;
      --mint-500: #1fb6ff;
      --mint-600: #0694d9;
      --ink-900:  #0f172a;
      --ink-700:  #334155;
      --ink-500:  #64748b;
      --white:    #ffffff;
      --glass:    rgba(255,255,255,0.55);
      --glass-2:  rgba(255,255,255,0.35);
      --shadow:   0 14px 36px rgba(15,23,42,.16);
       /* Cine section accent colors per flavor */
      --cine-classic: #4cc3ff;
      --cine-lemon:   #9be15d;
      --cine-berry:   #d596ff;
    }
* {
  box-sizing: border-box;
  cursor: none;
}

html,
body {
  background: #efefef;
  color: #212121;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  height: 100%;
  text-decoration: none;
}
h1, p, span, a {
  text-decoration: none;
}
.h2, h2 {
    font-family: ivypresto-headline !important;
}
::selection {
  background: #efefef;
  color: #212121;
  mix-blend-mode: difference;
}

::-moz-selection {
  background: #efefef;
  color: #212121;
}


  @media (min-width: 768px) {
    .h3, h3 {
        font-family: ivypresto-headline;
        font-size: 32px;
        font-style: normal;
        font-weight: 400;
        letter-spacing: .5px;
        text-decoration: none;
        line-height: 115%;
    }
}

h1 {
  font-size: 3em;
}

.hero-title {
  font-size: 8vw;
  line-height: 1em;
  font-weight: 900;
  display:none;
}

.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);
}

.swoosh {
  /*background-image: url("https://assets.codepen.io/319606/2023-logo-swoosh.svg");*/
  background-size: 100%;
  background-repeat: no-repeat;
  top: 20px;
  left: 18px;
  width: 230px;
  height: 45px;
  z-index: 1000;
  background-position: left;
  display: none;
}

.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: 60px;
  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: unset;
  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 0vw;
  }
}
@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: 35px;
  }
  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;
    display:none;
  }
  .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;
}

/*Servises Secton*/

.homepage-v2 .services {
    /*border-top: 1px solid #313438;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

@media (min-width: 1280px) {
    .homepage-v2 .services {
        margin-top:25px
    }
}

@media (min-width: 1440px) {
    .homepage-v2 .services {
        margin-top:0px
    }
}

@media (min-width: 1920px) {
    .homepage-v2 .services {
        margin-top:90px
    }
}

.homepage-v2 .services__overlay {
    border-radius: 0;
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
    width: 100%;
    z-index: -1
}

.homepage-v2 .services__content {
    margin-bottom: 55px;
    text-align: center;
    width: 365px;
    z-index: 2
}

.homepage-v2 .services__content,.homepage-v2 .services__mockup {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    position: relative
}

.homepage-v2 .services__mockup {
    border-radius: 20px 20px 0 0;
    padding: 45px 34px 0;
    width: 470px;
    z-index: 1
}

.homepage-v2 .services__mockup img {
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    max-width: 300px;
}

.homepage-v2 .services__btn {
    background-color: transparent;
    height: 44px;
    padding: 10px 25px
}

.homepage-v2 .services__label {
    margin-bottom: 17px;
    font-size: 32px;
    font-weight: bold;
}

.homepage-v2 .services__text {
    margin-bottom: 28px
}

.homepage-v2 .services__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-bottom: 1px solid #313438;
    border-right: 1px solid #313438;
    border-top-left-radius: 203px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
    min-height: 660px;
    overflow: hidden;
    padding: 80px 25px 0;
    position: relative;
    width: 50%;
    z-index: 1;
}

.homepage-v2 .services__item:hover .services__mockup img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05)
}

.homepage-v2 .services__item:hover .services__btn span {
    left: -10.5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.homepage-v2 .services__item:hover .services__btn .cta__arrow {
    opacity: 1;
    visibility: visible
}

.homepage-v2 .services__item:hover .services__overlay {
    opacity: 1
}

.homepage-v2 .services__item:nth-child(2n),.homepage-v2 .services__item:nth-child(4n) {
    border-right: 0
}

.homepage-v2 .services__item--first {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-items: flex-start;
    background-color: #313438;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 28px;
    justify-content: flex-start;
    padding: 153px 32px 32px 153px
}

.homepage-v2 .services__item--first .services__description,.homepage-v2 .services__item--first .services__title {
    max-width: 100%;
    width: 333px
}

.homepage-v2 .services__item--first .services__description {
    padding-right: 15px
}

.homepage-v2 .services__mockup {
    padding: 45px 99px 0;
    width: 600px
}

@media (max-width: 1919.98px) {
    .homepage-v2 .services__item {
        min-height:600px;
        padding-top: 68px
    }

    .homepage-v2 .services__item--first {
        padding-left: 74px;
        padding-top: 74px
    }

    .homepage-v2 .services__item:nth-child(3n) {
        border-right: 1px solid #313438
    }

    .homepage-v2 .services__item:nth-child(2n),.homepage-v2 .services__item:nth-child(4n) {
        border-right: 0
    }

    .homepage-v2 .services__mockup {
        border-radius: 16px 16px 0 0;
        padding: 46px 74px 0;
        width: 470px
    }
}

@media (max-width: 1439.98px) {
    .homepage-v2 .services__item {
        min-height:500px;
        padding-top: 42px
    }

    .homepage-v2 .services__item--first {
        padding-left: 48px;
        padding-top: 48px
    }

    .homepage-v2 .services__content {
        margin-bottom: 30px
    }

    .homepage-v2 .services__mockup {
        padding: 25px 27px 0;
        width: 376px
    }
}

@media (max-width: 1279.98px) {
    .homepage-v2 .services__item {
        padding-top:82px;
        width: 50%
    }

    .homepage-v2 .services__item:nth-child(2n) {
        border-radius: 0
    }

    .homepage-v2 .services__item:nth-child(3n) {
        border-right: 1px solid #313438
    }

    .homepage-v2 .services__item--first {
        padding-left: 90px;
        padding-top: 90px
    }

    .homepage-v2 .services__mockup {
        width: 376px
    }

    .homepage-v2 .services__content {
        margin-bottom: 40px
    }
}

@media (max-width: 1023.98px) {
    .homepage-v2 .services__item {
        min-height:448px;
        padding-top: 43px
    }

    .homepage-v2 .services__item:nth-child(2n),.homepage-v2 .services__item:nth-child(4n) {
        border-right: 0
    }

    .homepage-v2 .services__item--first {
        padding-left: 40px;
        padding-top: 40px
    }

    .homepage-v2 .services__item--first .services__description,.homepage-v2 .services__item--first .services__title {
        padding-right: 0;
        width: 306px
    }

    .homepage-v2 .services__content {
        width: 313px
    }

    .homepage-v2 .services__label {
        margin-bottom: 14px
    }

    .homepage-v2 .services__text {
        margin-bottom: 18px;
        min-height: 69px
    }

    .homepage-v2 .services__mockup {
        border-radius: 12.8px 12.8px 0 0;
        padding: 19px 23px 0;
        width: 301px
    }
}

@media (max-width: 767.98px) {
    .homepage-v2 .services {
        border:0;
        padding-left: 27.5px;
        padding-right: 27.5px
    }

    .homepage-v2 .services__item {
        border: 0!important;
        gap: 24px;
        margin-bottom: 41px;
        min-height: 0;
        padding: 0;
        width: 100%
    }

    .homepage-v2 .services__item,.homepage-v2 .services__item--first {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-top-left-radius: unset;
        z-index: 99;
    }

    .homepage-v2 .services__item--first {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        background-color: transparent;
        border-bottom: 1px solid #313438!important;
        color: #313438;
        gap: 18px;
        margin-bottom: 35px;
        padding-bottom: 35px
    }

    .homepage-v2 .services__item--first .services__description {
        font-size: 14px;
        line-height: 142.857%
    }

    .homepage-v2 .services__item--first .services__description,.homepage-v2 .services__item--first .services__title {
        text-align: center
    }

    .homepage-v2 .services__item:hover .services__mockup img {
        -webkit-transform: unset;
        transform: unset
    }

    .homepage-v2 .services__mockup {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        align-items: center;
        aspect-ratio: 1/1;
        border-radius: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center;
        padding: 15px;
        width: 100%
    }

    .homepage-v2 .services__content {
        margin-bottom: 34px;
        text-align: left;
        width: 100%
    }

    .homepage-v2 .services__label {
        margin-bottom: 13px
    }

    .homepage-v2 .services__text {
        font-size: 14px;
        line-height: 142.857%;
        min-height: 0;
        padding-bottom: 9px;
    }

    .homepage-v2 .services__btn {
        font-size: 14px
    }

    .homepage-v2 .services__overlay {
        display: none
    }
}
.cta__btn--outline {
    border: 1px solid #313438;
}
.cta__underline {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    gap: 6px;
    height: 40px;
    justify-content: center;
    letter-spacing: 0;
    line-height: 131.25%;
    text-align: center;
    text-decoration: none
}

.cta__underline-title {
    border-bottom: 1px solid #313438
}

.cta__underline-arrow {
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out
}

.cta__underline:hover .cta__underline-arrow {
    -webkit-transform: translateX(4px);
    transform: translateX(4px)
}

@media (max-width: 1279.98px) {
    .cta__underline {
        font-weight:600
    }
}

.cta__btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #fff;
    border-radius: 100px;
    color: #313438;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    height: 40px;
    justify-content: center;
    letter-spacing: .5px;
    line-height: 16px;
    max-width: 100%;
    padding: 10px 20px;
    text-align: center
}

.cta__btn--outline {
    border: 1px solid #313438
}

.cta__btn:hover {
    color: #313438
}

.cta__btn--dark {
    background-color: #313438;
    color: #fff
}

.cta__btn--dark .cta__arrow path {
    fill: #fff
}

.cta__btn--dark:hover {
    color: #fff
}

.cta__btn--arrow>span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    left: 0;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.cta__btn--arrow .cta__arrow {
    height: 15.5px;
    margin-left: 6px;
    opacity: 0;
    position: absolute;
        right: 115px;
    top: 90%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    visibility: hidden;
    width: 15.5px
}

.cta__btn--arrow:hover span {
    left: -10.5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.cta__btn--arrow:hover .cta__arrow {
    opacity: 1;
    visibility: visible
}

@media (max-width: 767.98px) {
    .cta__btn {
        height:45px
    }
}
.yotpo-btn>span {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
    flex-direction: row;
    left: 0;
    position: relative;
}
.yotpo-btn {
    -ms-flex-negative: 0;
        background-color: rgb(0 0 0 / 0%);
    border: 1px solid #000;
    border-radius: 100px;
    color: var(--yotpo-color-white);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-shrink: 0;
    font-family: var(--yotpo-font-family-primary);
    font-size: 16px;
    font-weight: 500;
    height: 44px;
    letter-spacing: .5px;
    line-height: 1;
    max-width: 100%;
    padding: 14px 26px;
    text-align: center;
}
/*Products Section*/
  .frame{
    /*width:min(1200px, 94vw);*/
    height:min(700px, 88vh);
    background: radial-gradient(180% 120% at 50% 30%, var(--theme) 0%, var(--theme-2) 70%);
    border-radius: calc(var(--card-radius) * 1.2);
    box-shadow:
      0 20px 60px #00000033,
      inset 0 0 120px #ffffff0d;
    color:#fff;
    position:relative;
    overflow:hidden;
  }

  /* أعلى: فئات المنتج */
  .cats{
    position:absolute; inset:26px 0 auto 0;
    display:flex; justify-content:center; gap:10px;
  }
  .chip{
    appearance:none; border:0; cursor:pointer;
    padding:10px 18px; border-radius:999px; font-weight:700;
    background:#ffffff1a; color:#fff; transition:.2s;
    backdrop-filter: blur(3px);
  }
  .chip.active{ background:#ffffff; color:#000; }

  /* العنوان يسار */
  .left{
    position:absolute; left:64px; top:150px; width:min(420px, 45%);
  }
  .left h1{
    font-size:46px; line-height:1.02; letter-spacing:-0.5px; margin:0 0 16px;
  }
  .left .mg{ opacity:.85; margin-top:6px; font-size:15px; }

  /* المنتج بالوسط */
  .product{
    position:absolute; left:50%; top:120px; transform:translateX(-50%);
    width:min(320px, 44vw);
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.35));
  }
  .product img{
    width:100%; height:auto; display:block; user-select:none; pointer-events:none;
  }

  /* يمين: جرعات + وصف */
  .right{
    position:absolute; right:54px; top:190px; text-align:left;
  }
  .dose-row{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
  .dose .dot{
    width:42px; height:42px; display:grid; place-items:center; border-radius:999px;
    background:#ffffff1a; font-weight:800; cursor:pointer; transition:.2s;
  }
  .dose .dot.active{ background:#fff; color:#000; }
  .muted{ font-size:12.5px; opacity:.8 }
  .muted i{margin-right:6px; opacity:.7}

  /* أسفل يمين: العداد + زر الاستعلام */
  .bottom-right{
    position:absolute; right:46px; bottom:42px; display:flex; align-items:center; gap:14px;
  }
  .qty{
    display:flex; align-items:center; gap:14px; font-weight:700;
  }
  .qty .btn{
    width:36px; height:36px; border-radius:10px; display:grid; place-items:center; cursor:pointer;
    background:#ffffff1a; color:#fff; font-size:20px; user-select:none; transition:.15s;
  }
  .qty .btn:active{ transform:scale(.96) }
  .qty .count{ min-width:96px; text-align:center; font-size:16px; }
  .min-note{ font-size:12px; opacity:.75; margin-left:2px }

  .cta{
    appearance:none; border:0; cursor:pointer; font-weight:800;
    padding:14px 24px; border-radius:999px; background:#fff; color:var(--theme);
    transition:.2s;
  }
  .cta:hover{ transform:translateY(-1px) }

  /* أسفل: نكهات */
  .flavors{
    position:absolute; left:50%; bottom:34px; transform:translateX(-50%);
    display:flex; gap:12px; align-items:center;
    background:#ffffff14; padding:10px 14px; border-radius:999px; backdrop-filter: blur(3px);
  }
  .flavor{
    width:34px; height:34px; border-radius:999px; border:2px solid #ffffff88;
    cursor:pointer; display:block; transition:.15s;
  }
  .flavor:hover{ transform:scale(1.08) }
  .flavor.active{ outline:3px solid #fff }

  /* استجابة */
  @media (max-width: 980px){
    .left{ left:34px; top:140px; width:55% }
    .product{ top:160px; width:min(280px, 60vw) }
    .right{ right:30px; top:170px }
  }
  @media (max-width: 700px){
    .left{ top:120px; width:calc(100% - 68px) }
    .product{ top:50px }
    .right{ top:auto; bottom:118px; right:32px }
  }
.product {
  position: relative;
  overflow: hidden;
}

.product img {
  max-width: 100%;
  transition: none; /* نوقف الترانزيشن القديم */
  opacity: 0;
  transform-origin: center;
}

.product img.animate-in {
  animation: slideInTilt 0.9s ease forwards;
}

@keyframes slideInTilt {
  0% {
    transform: translateY(120%) rotate(-15deg) scale(0.8);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%) rotate(3deg) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 1;
  }
}
button.flavor {
  -webkit-tap-highlight-color: transparent; /* يمنع صوت/هايلايت أندرويد */
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}
.services__mockup img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
    /* ----------------------
       Cine Chill (scroll-driven video)
    ---------------------- */
    #cine{ padding:0; }
    .cine-wrap{ height:260vh; position:relative; }
    .cine-sticky{ position:sticky; top:0; height:100vh; overflow:hidden; }
    .cine-video{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; filter: contrast(1.05) saturate(1.1); }
    .cine-overlay{ position:absolute; inset:0; display:grid; place-items:center; pointer-events:none; }
    .cine-card{ pointer-events:auto; width:min(760px, 92vw); border-radius:28px; padding:18px; background: rgba(255,255,255,.42); backdrop-filter: blur(8px); border:1px solid rgba(255,255,255,.65); box-shadow: 0 24px 50px rgba(15,23,42,.16); text-align:center }
    .cine-badge{ display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border-radius:999px; background:rgba(255,255,255,.65); border:1px solid rgba(0,0,0,.06); font-size:12px; letter-spacing:.2em; text-transform:uppercase }
    .cine-dot{ width:8px; height:8px; border-radius:50%; background:var(--cine-classic); box-shadow:0 0 0 4px rgba(76,195,255,.18) }
    .cine-title{ font-weight:800; font-size:clamp(22px,4vw,36px); margin:8px 0 6px }
    .cine-copy{ color:#334155; max-width:56ch; margin:0 auto 10px }
    .cine-progress{ height:10px; background:rgba(255,255,255,.8); border-radius:999px; overflow:hidden; border:1px solid rgba(0,0,0,.06); }
    .cine-progress .bar{ height:100%; width:0%; background:linear-gradient(90deg, var(--mint-300), var(--mint-500)); box-shadow: inset 0 0 14px rgba(255,255,255,.8) }
    
    
/* --- Integrations Section Styles --- */

.homepage-v2 .integrations-section {
   border-radius: 20px;
   height: 556px;
   margin: 150px auto 170px;
   max-width: 1600px;
   overflow: hidden;
   position: relative;
   width: 100%
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section {
       height:471px;
       margin-bottom: 160px;
       margin-top: 150px;
       max-width: 1329px
   }
}

@media (max-width: 1439.98px) {
   .homepage-v2 .integrations-section {
       height:458px;
       margin-bottom: 150px;
       margin-top: 130px;
       max-width: 1196px
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section {
       height:400px;
       margin-top: 110px;
       max-width: 940px
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section {
       height:516px;
       margin-bottom: 130px;
       margin-top: 100px;
       max-width: 600px
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section {
       border-radius:0;
       height: 456px;
       margin-bottom: 100px;
       margin-top: 80px;
       max-width: 100%
   }
}

.homepage-v2 .integrations-section__container {
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   height: 100%;
   justify-content: space-between;
   width: 100%
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__container {
       -webkit-box-orient:vertical;
       -webkit-box-direction: normal;
       -ms-flex-direction: column;
       flex-direction: column;
       position: relative
   }
}

.homepage-v2 .integrations-section__content-wrap {
   -webkit-box-align: center;
   -ms-flex-align: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   align-items: center;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-direction: column;
   flex-direction: column;
   height: 100%;
   justify-content: center;
   width: 50%
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__content-wrap {
       -webkit-box-align:start;
       -ms-flex-align: start;
       -webkit-box-pack: start;
       -ms-flex-pack: start;
       align-items: flex-start;
       justify-content: flex-start;
       text-align: left;
       width: 100%
   }
}

.homepage-v2 .integrations-section__content-wrap>* {
   color: var(--yotpo-color-dark)
}

.homepage-v2 .integrations-section__content-wrap-inner {
   padding-left: 120px;
   width: 100%
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section__content-wrap-inner {
               padding-left: 53px;
        padding-right: 237px;

   }
}

@media (max-width: 1439.98px) {
   .homepage-v2 .integrations-section__content-wrap-inner {
       padding-left:59px
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__content-wrap-inner {
       padding-left:44px
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__content-wrap-inner {
       padding-left:41px;
       padding-top: 34px;
       text-align: left
   }
}

@media (max-width: 767.98px) {
       .homepage-v2 .integrations-section__content-wrap-inner {
        margin: 0;
        max-width: 343px;
        padding-left: 28px;
        padding-top: 24px;
        text-align: left;
        padding-right: 29px;
        padding-bottom: 34px;
    }
}

.homepage-v2 .integrations-section__media-mobile {
   margin-bottom: 20px
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__media-mobile {
       margin-bottom:15px
   }
}

@media (min-width: 1024px) {
   .homepage-v2 .integrations-section__media-mobile {
       display:none
   }
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__row {
   margin-bottom: 9px;
   overflow: hidden;
   white-space: nowrap
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__media-mobile .integrations-section__row {
       margin-bottom:7px
   }
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__row .scroll-row {
   -webkit-animation-duration: 35s;
   animation-duration: 35s;
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   animation-timing-function: linear;
   display: -webkit-inline-box;
   display: -ms-inline-flexbox;
   display: inline-flex;
   gap: 9px
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__media-mobile .integrations-section__row .scroll-row {
       gap:7px
   }
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__row.row-1 .scroll-row {
   -webkit-animation-name: scroll-left;
   animation-name: scroll-left
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__row.row-2 .scroll-row {
   -webkit-animation-name: scroll-right;
   animation-name: scroll-right
}

@-webkit-keyframes scroll-left {
   0% {
       -webkit-transform: translateX(0);
       transform: translateX(0)
   }

   to {
       -webkit-transform: translateX(-50%);
       transform: translateX(-50%)
   }
}

@keyframes scroll-left {
   0% {
       -webkit-transform: translateX(0);
       transform: translateX(0)
   }

   to {
       -webkit-transform: translateX(-50%);
       transform: translateX(-50%)
   }
}

@-webkit-keyframes scroll-right {
   0% {
       -webkit-transform: translateX(-50%);
       transform: translateX(-50%)
   }

   to {
       -webkit-transform: translateX(0);
       transform: translateX(0)
   }
}

@keyframes scroll-right {
   0% {
       -webkit-transform: translateX(-50%);
       transform: translateX(-50%)
   }

   to {
       -webkit-transform: translateX(0);
       transform: translateX(0)
   }
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__image {
   -webkit-box-flex: 0;
   -webkit-box-align: center;
   -ms-flex-align: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   align-items: center;
   background: var(--yotpo-color-cream);
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex: 0 0 auto;
   flex: 0 0 auto;
   height: 96px;
   justify-content: center;
   -webkit-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out;
   width: 96px
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__media-mobile .integrations-section__image {
       border-radius:4px;
       height: 70px;
       width: 70px
   }
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__image.bg {
   background: var(--yotpo-color-hard-cream);
   -webkit-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out
}

.homepage-v2 .integrations-section__media-mobile .integrations-section__image img {
   height: auto;
   max-width: 100%
}

.homepage-v2 .integrations-section__media-desktop {
   -webkit-box-pack: end;
   -ms-flex-pack: end;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   gap: 10px;
   justify-content: end;
   margin-right: 56px;
   max-width: 694px;
   position: absolute;
   right: 0;
   top: 0;
   width: 50%
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__media-desktop {
       display:none
   }
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section__media-desktop {
       gap:8px;
       margin-right: 59px;
       max-width: 650px
   }
}

@media (max-width: 1439.98px) {
   .homepage-v2 .integrations-section__media-desktop {
       gap:7px;
       margin-right: 51px;
       max-width: 600px
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__media-desktop {
       gap:6px;
       margin-right: 44px;
       max-width: 471px
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__media-desktop {
       -webkit-box-orient:vertical;
       -webkit-box-direction: normal;
       bottom: 0;
       -ms-flex-direction: column;
       flex-direction: column;
       gap: 9px;
       margin-right: 0;
       top: unset;
       width: 100%
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__media-desktop {
       gap:7px
   }
}

.homepage-v2 .integrations-section__image-wrap {
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   --gap: 10px;
   --image-height: 166px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-direction: column;
   flex-direction: column;
   gap: --gap;
   margin-bottom: 10px;
   overflow: hidden;
   position: relative;
   width: 25%
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section__image-wrap {
       --image-height:156px;
       gap: 9px;
       margin-bottom: 9px
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__image-wrap {
       gap:7px;
       margin-bottom: 7px;
       width: 100%
   }
}

.homepage-v2 .integrations-section__image-wrap .scroll-content {
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-animation-duration: 20s;
   animation-duration: 20s;
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
   -webkit-animation-timing-function: linear;
   animation-timing-function: linear;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-direction: column;
   flex-direction: column;
   gap: 10px
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section__image-wrap .scroll-content {
       gap:9px
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__image-wrap .scroll-content {
       gap:7px
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image-wrap .scroll-content {
       -webkit-box-orient:horizontal;
       -webkit-box-direction: normal;
       -ms-flex-direction: row;
       flex-direction: row;
       gap: 9px
   }
}

@media (min-width: 1024px) {
   .homepage-v2 .integrations-section__image-wrap:nth-child(odd) .scroll-content {
       -webkit-animation-name:scroll-up;
       animation-name: scroll-up
   }

   .homepage-v2 .integrations-section__image-wrap:nth-child(2n) .scroll-content {
       -webkit-animation-name: scroll-down;
       animation-name: scroll-down
   }
}

@-webkit-keyframes scroll-up {
   0% {
       -webkit-transform: translateY(0);
       transform: translateY(0)
   }

   to {
       -webkit-transform: translateY(-50%);
       transform: translateY(-50%)
   }
}

@keyframes scroll-up {
   0% {
       -webkit-transform: translateY(0);
       transform: translateY(0)
   }

   to {
       -webkit-transform: translateY(-50%);
       transform: translateY(-50%)
   }
}

@-webkit-keyframes scroll-down {
   0% {
       -webkit-transform: translateY(-50%);
       transform: translateY(-50%)
   }

   to {
       -webkit-transform: translateY(0);
       transform: translateY(0)
   }
}

@keyframes scroll-down {
   0% {
       -webkit-transform: translateY(-50%);
       transform: translateY(-50%)
   }

   to {
       -webkit-transform: translateY(0);
       transform: translateY(0)
   }
}

.homepage-v2 .integrations-section__image-wrap:first-of-type {
   margin-top: -103px
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image-wrap:first-of-type {
       margin-top:0
   }
}

.homepage-v2 .integrations-section__image-wrap:nth-of-type(2) {
   margin-top: -212px
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image-wrap:nth-of-type(2) {
       margin-top:0
   }
}

.homepage-v2 .integrations-section__image-wrap:nth-of-type(3) {
   margin-top: -106px
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image-wrap:nth-of-type(3) {
       margin-top:0
   }
}

.homepage-v2 .integrations-section__image-wrap:nth-of-type(4) {
   margin-top: -212px
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image-wrap:nth-of-type(4) {
       margin-top:0
   }
}

.homepage-v2 .integrations-section__image {
   -webkit-box-orient: vertical;
   -webkit-box-direction: normal;
   -webkit-box-align: center;
   -ms-flex-align: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   align-items: center;
   background: #fff;
   border: 1px solid #31343833;
   border-radius: 10px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-direction: column;
   flex-direction: column;
   gap: 10px;
   height: 166px;
   justify-content: center;
   opacity: 1;
   -webkit-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out;
   width: 166px;
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section__image {
       height:156px;
       width: 156px
   }
}

@media (max-width: 1439.98px) {
   .homepage-v2 .integrations-section__image {
       height:144px;
       width: 144px
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__image {
       height:113px;
       width: 113px
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image {
       height:96px;
       width: 96px
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__image {
       height:70px;
       width: 70px
   }
}

.homepage-v2 .integrations-section__image.bg {
   background: var(--yotpo-color-hard-cream);
   -webkit-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out
}

.homepage-v2 .integrations-section__image img {
   height: auto;
   -o-object-fit: contain;
   object-fit: contain;
   -webkit-transform-origin: center;
   transform-origin: center;
   width: -webkit-fit-content;
   width: -moz-fit-content;
   width: fit-content
}

@media (max-width: 1919.98px) {
   .homepage-v2 .integrations-section__image img {
       -webkit-transform:scale(.85);
       transform: scale(.85);
       max-width: 100px;
   }
}

@media (max-width: 1439.98px) {
   .homepage-v2 .integrations-section__image img {
       -webkit-transform:scale(.77);
       transform: scale(.77)
   }
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__image img {
       -webkit-transform:scale(.6);
       transform: scale(.6)
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__image img {
       -webkit-transform:scale(.5);
       transform: scale(.5)
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__image img {
       -webkit-transform:scale(.6);
       transform: scale(.6)
   }
}


@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__title {
       font-size:32px;
       font-weight: 400;
       letter-spacing: .5px;
       line-height: 114.99999999999999%
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__title {
       text-align:left
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__title {
       font-size:26px;
       font-weight: 400;
       letter-spacing: .3px;
       line-height: 32px;
       text-align: left
   }
}

.homepage-v2 .integrations-section__content {
   font-size: 14px;
   font-weight: 400;
   letter-spacing: 0;
   line-height: 20px;
   margin-bottom: 36px;
   max-width: 395px
}

@media (max-width: 1279.98px) {
   .homepage-v2 .integrations-section__content {
       margin-bottom:40px;
       max-width: 318px
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__content {
       margin:0 0 40px;
       max-width: 395px;
       text-align: left
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__content {
       margin:0 0 40px;
       max-width: 315px;
       text-align: left
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__cta {
       text-align:left
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__cta {
       text-align:left
   }
}

@media (max-width: 1023.98px) {
   .homepage-v2 .integrations-section__cta .yotpo-btn {
       margin:0 auto
   }
}

@media (max-width: 767.98px) {
   .homepage-v2 .integrations-section__cta .yotpo-btn {
       font-size:16px;
       font-weight: 600;
       letter-spacing: 0;
       line-height: 16px;
       width: -webkit-fit-content;
       width: -moz-fit-content;
       width: fit-content
   }
}
    /* How it works */
    .steps{ display:grid; grid-template-columns: repeat(3,1fr); gap:18px }
    .step{ background:linear-gradient(160deg, rgba(255,255,255,.85), rgba(255,255,255,.55)); border:1px solid rgba(255,255,255,.55); border-radius:22px; padding:18px 18px 20px; box-shadow:var(--shadow); text-align:center; cursor:pointer }
    .step .num{ font-weight:800; font-size: 40px; line-height:1 }
        /* ----------------------
       Generic Sections
    ---------------------- */
    /*section.section{ position:relative; z-index: 2; padding: 84px 0 100px }*/
    h2.section-title{ font-size: clamp(28px, 4vw, 42px); text-align:center; margin:0 0 10px }
    p.lead{text-align:center; color:var(--ink-700); margin:0 0 32px}


/*check*/
/* Footer */
    footer{ color:var(--ink-500); text-align:center; padding: 28px 0 48px; }
    
@media screen and (max-width: 767px) {
    .wholesale-container {
        display: block !important;
    }
    section.hero {
    background-color: #212121;
    border-bottom-right-radius: 15vw;
    position: relative;
    min-height: 300px !important;
    z-index: 9;
 }
 .left h1 {
    font-size: 20px !important;
 }
 .mobileno {
     display:none !important;
 }
 section.services {
    width: 100%;
    padding-bottom: 0px !important;
 }
 .services__mockup {
     background-color: rgb(0 0 0 / 0%) !important;
 }
}
.heroWrapper {
  margin:0; padding:0;
  background:#000;
  overflow-x:hidden;
  font-family:'Staatliches',cursive !important;
  color:#fff;
}

/* spacing before and after hero */
.space-50vh{height:50vh;background:#000;}
.space-100vh{height:100vh;background:#000;}

/* ================= HERO ================= */
.heroWrapper {
  position:relative;
  overflow:hidden;
}

.heroScenes {
  display:flex;
  flex-wrap:nowrap;
  width:fit-content;
}

.scene {
  position:relative;
  width:100vw;
  height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  overflow:hidden;
}

.scene h2 {
  font-size:clamp(60px,18vw,240px);
  z-index:2;
  margin:0;
  text-align:center;
  letter-spacing:3px;
  transition:color .8s ease, text-shadow .8s ease;
  font-family:'Staatliches',cursive !important;
}

/* background animation container */
.lottie-bg {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  opacity:0.45;
  pointer-events:none;
  z-index:1;
}

.active h2 {
  color:#00ffd9;
  text-shadow:0 0 35px rgba(0,255,217,.8);
  font-family:'Staatliches',cursive !important;
}

/*elictrical*/
.one{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: #071e9a !important;
    background:repeating-conic-gradient(
        from 0deg,
        rgba(255,255,255,0.06) 0deg 5deg,
        transparent 5deg 10deg
      )
      
}

/* .one {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: url(Assets/main-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
} */
.one h1{
    font-size: 25vw;
    font-family: Product Sans B;
    color: #fff;
}

#fanta{
    position: absolute;
    width: 34% !important;
    z-index: 2;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;
}

#orange-cut{
    position: absolute;
    top: 10%;
    left: 32%;
    width: 15%;
    z-index: 1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;

}

#orange{
    position: absolute;
    width: 20%;
    z-index: 3;
    top: 55%;
    right: 30%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;

}

#leaf{
    top: 10%;
    left: 0%;
    transform: rotate(60deg);
    position: absolute;
    width: 18%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;

}

#leaf2{
    top: 70%;
    left: 80%;
    transform: rotate(-90deg);
    position: absolute;
    width: 12%;
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;

}

#leaf3{
    position: absolute;
    width: 20%;
    top: 10%;
    right: 0%;
}

.two{
    display: flex;
    width: 100%;
    height: 100vh;
    background:#4d231c ;
}

.lft-two, .rght-two{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5vh;
    width: 50%;
    height: 100%;
}

.lft-two svg{
    margin-top: 50vh;
    width: 90%;
    transform: rotateX(50deg);
}

.rght-two h1{
    color: #fff;
    font-size: 5vw;
}

.rght-two p{
    font-size: 1vw;
    color: #fff;
    width: 80%;
}

.three{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5vw;
    width: 100%;
    height: 100vh;
    background:linear-gradient(150deg, rgb(255, 166, 0), rgb(255, 94, 0));
}

.card{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2vh;
    width: 25vw;
    height: 70vh;
    margin-top: 10vh;
    border-radius: 20px;
    background-color: #fff;
}

.card h1{
    margin-top: 40vh;
    font-size: 3vw;
}

.card button{
    font-size: 1vw;
    border-radius: 50px;
    border: none;
    color: #fff;
    background-color: rgb(255, 149, 0);
    padding: 1vw 2vw;
}

#cocacola{
    top: -15%;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;

}

#pepsi{
    top: -15%;
    position: absolute;
    width: 500px
    left: 50%;
    transform: translate(-50%, 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;

}

.lemon{
    top: -30%;
    position: absolute;
    left: 50%;
    width: 14vw;
    transform: translate(-50%, 0%);
    transition: all cubic-bezier(0.19, 1, 0.22, 1)0.5s;
}
.img-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.banner-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}
.banner-slide {
  flex: 0 0 100%;
  position: relative;
  height: 90vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.banner-text {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}
.banner-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.banner-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.banner-btn {
  display: inline-block;
  background: #0c26a2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.banner-btn:hover {
  background: #051871;
}
@media (max-width: 768px) {
  .banner-text h2 { font-size: 2rem; }
  .banner-text p { font-size: 1rem; }
  .banner-slide { height: 70vh; }
}