html {
    background: #f2f6ff;  
}

body {
    margin: 0;
    background: #f2f6ff;      
    scroll-behavior: smooth;
    min-width: 340px;
}

.uk-modal-dialog {
    width: 450px;
}

[class*=uk-modal-close-] {
    position: absolute;
    z-index: 1010;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    padding: 10px;
    border-radius: 20px;
}

.uk-modal {
    padding: 10px 10px;
}

.uk-modal-body {
    padding: 15px 5px;
    border-radius: 30px;
}

.uk-container {
    padding-left: 10px;
    padding-right: 10px;
}

.uk-h1, .uk-h2, .uk-h3, .uk-h4, .uk-h5, .uk-h6, .uk-heading-2xlarge, .uk-heading-3xlarge, .uk-heading-large, .uk-heading-medium, .uk-heading-small, .uk-heading-xlarge, h1, h2, h3, h4, h5, h6 {
    margin: 0 0 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-weight: 400;
    color: #2f1e25;
}

section.hero-section {
    background: #F2F6FF;
    padding: 10px 0;
}

.header {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    padding: 10px;
    border-radius: 40px;
}

.main-section {
}

.logotext {
    height: 30px;
}

.bgbox {
    padding: 10px 10px;
}

.br40 {
    border-radius: 40px;
}

.br30 {
    border-radius: 30px;
}

.hand-left {
}

.hand-right {
}

.twohands {
    margin: 150px 0px 0px 0px;
}

.product-card {
    background: #fff;
    border-radius: 20px;
}

.product-card-media img {
    border-radius: 20px;
}

.product-card-body {
    padding: 16px;
}

h4.product-card-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #312128;
}

.ingredients {
    font-size: 12px;
    color: #7F7F8E;
}

.product-price {
    color: #312128;
    font-weight: bold;
    margin-top: 12px;
}

.uk-box-shadow-large {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.circlebg {
    height: 150px;
    width: 150px;
    margin: 30px auto;
}

.circlebgstart {
    height: 100px;
    width: 100px;
    margin: 30px auto;
}

.ssccstart {
    height: 100px;
    width: 100px;
    margin: 0 auto;
    animation-name: rotate;
    animation-duration: 35s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes rotate{
    from{ transform: rotate(-360deg); }
    to{ transform: rotate(360deg); }
}

.sscc {
    height: 150px;
    width: 150px;
    margin: 0 auto;
    animation-name: rotate;
    animation-duration: 35s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


a.footer-link {
    background: #fff;
    padding: 10px;
    display: block; 
    border-radius: 40px;
}

.uk-link, a {
    color: #2B2A29;
    text-decoration: none;
    cursor: pointer;
}

span.call {
    background: #006338;
    color: #fff;
    padding: 5px 10px;
    border-radius: 40px;
    font-size: 14px;
}

.social-link {
    background: #fff;
    text-align: center;
    font-size: 14px;
    color: #2f1e25;
    margin: 0 5px;
    padding: 15px;
}

.social-link img {
    margin-bottom: 10px;
}













.language-switcher {
    display: flex;
    background-color: white;
    border-radius: 24px;
    padding: 4px;
    width: fit-content;
    margin-top: 300px;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border: none;
    background: transparent;
    border-radius: 24px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.lang-option img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}

.lang-option.active {
  background-color: #EE351C;
  color: white;
}






@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}

.hand-left img {
  animation: float 3s ease-in-out infinite;
}

.hand-right img {
  animation: float 4s ease-in-out infinite;
}


.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: sans-serif; 
  padding: 20px 20px;
}

.section-header h2 {
  font-size: 24px;
  font-weight: bold;
  color: #2f1e25;
  margin: 0;
}

.line {
  flex: 1;
  height: 2px;
  background-color: #d0cfe8;
  position: relative;
}

.arrow {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: #d0cfe8;
  transform: translateY(-50%) rotate(45deg);
  animation: blink 1.5s infinite ease-in-out;
}

.line:first-child .arrow {
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.line:last-child .arrow {
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

@keyframes blink {
  0%, 100% {
    opacity: 0.3;
    transform: translateY(-50%) rotate(45deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) rotate(45deg) scale(1.3);
  }
}












    .menu {
      display: flex;
      overflow-x: auto;
      white-space: nowrap;
      padding: 10px; 
      scroll-snap-type: x mandatory;
      scrollbar-color: #d0cfe8 #ffffff;
     scrollbar-width: thin;
    }

    .menu.uk-sticky.uk-active.uk-sticky-fixed { 
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(15px);
      scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
     scrollbar-width: thin;
    }

    .menu a {
      flex: 0 0 auto;
      margin: 0 4px;
      padding: 8px 16px;
      border-radius: 20px;
      text-decoration: none;
      color: #2f1e25;
      background: #fff;
      transition: background 0.3s;
      scroll-snap-align: center;
    }

    .menu a.active {
      background: #EE351C;
      color: #fff;
    }


    .activesc {
      background: #EE351C;
      color: #fff;
    }