    /* --------------------- YOUR EXISTING CSS --------------------- */
    *, ::after, ::before {
        text-decoration: none;
        list-style: none;
        scroll-behavior: smooth;
    }
    body, html {
        margin: 0;
        padding: 0;
        width: 100%;
        height: 100%;
        overflow-y: scroll;
        overflow-x: hidden;
    }
    /* Carousel container */
    .carousel-container {
        width: 100%;
        max-width: 500px;
        height: 600px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        padding: 20px;
    }
    .containerALL {
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .sectionALL {
        display: flex;
        height: 800px;
        margin: 10px 0;
        justify-items: center;
        /* align-content: center; */
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .title {
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        font-size: 3rem; 
        color: #ff69b4; 
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); 
        animation: wave 2s infinite ease-in-out; 
        padding: 0.5rem;
        margin: 0;
        transform-origin: center bottom;
    }
    @keyframes wave {
        0% { transform: rotate(0deg); }
        25% { transform: rotate(5deg); }
        50% { transform: rotate(0deg); }
        75% { transform: rotate(-5deg); }
        100% { transform: rotate(0deg); }
    }
    .carousel {
        display: flex;
        justify-content: space-between;
        -webkit-overflow-scrolling: touch;
        transition: transform 0.5s ease-in-out;
        height: 100%;
        scroll-behavior: smooth;/* optional, for smooth scrolling */
        -webkit-overflow-scrolling: touch; /* for smoother iOS momentum scroll */
    }

/* Hide native scrollbar if you prefer a cleaner look: */
.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.dragging {
  cursor: grabbing;
}

/* For Firefox, can set scrollbar-width: none; */
.carousel {
  scrollbar-width: none;  
}

    .carousel-item {
        flex: 0 0 50%;
        box-sizing: border-box;
        padding: 10px;
        margin: 0px 10px;
        border-radius: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        text-align: center;
        font-size: 16px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
    }
    .carousel-item:hover {
        transform: scale(1.05);
    }
    button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        padding: 10px;
        font-size: 20px;
        cursor: pointer;
        z-index: 10;
    }
    button.prev {
        left: 0;
    }
    button.next {
        right: 0;
    }
    section {
        width: 220px;
        margin: 50px auto;
        overflow: hidden;
        animation: fadeIn 0.5s;
    }
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    .product {
        text-align: center;
        justify-items: center;
        padding: 20px;
        user-select: none;
    }
    .product img {
        max-width: 100px;
        border-radius: 10px;
    }
    .description h3 {
        margin: 10px 0;
        font-size: 22px;
        color: #333;
    }
    .description h5 {
        margin: 10px 0;
        font-size: 20px;
        color: #e74c3c;
    }
    .color-selection, .size-selection {
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }
    .color-option, .size-option {
        cursor: pointer;
        padding: 10px;
        border-radius: 50%;
        border: 2px solid #ddd;
        transition: border-color 0.3s ease;
    }
    .color-option:hover, .size-option:hover {
        border-color: #e74c3c;
    }
    .color-option.selected, .size-option.selected {
        border-color: #e74c3c;
    }
    .size-selection {
        font-size: 9px;
        display: none;
    }
    form {
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .input-container {
        position: relative;
    }
    input[type="text"], input[type="email"] {
        padding: 15px 10px;
        border: 2px solid #ddd;
        border-radius: 5px;
        font-size: 16px;
        width: 100%;
        transition: all 0.3s ease;
    }
    input:focus {
        border-color: #e74c3c;
        box-shadow: 0 0 5px rgba(231, 76, 60, 0.5);
    }
    form button {
        padding: 15px;
        background-color: #e74c3c;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 18px;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transition: background 0.3s, transform 0.3s;
    }
    form button::after {
        content: '\f00c';
        font-family: 'Font Awesome 5 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    form button:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }
    form button:hover::after {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    form button:active {
        transform: translateY(0);
        animation: clickAnimation 0.5s forwards;
    }
    form button:hover span {
        opacity: 0;
    }
    form button span {
        transition: opacity 0.3s ease;
    }
    @keyframes clickAnimation {
        0% { transform: scale(1); }
        50% { transform: scale(0.9); }
        100% { transform: scale(1); }
    }
    /* preloader */
    .preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        display: grid;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, hsla(0, 0%, 70%, 0.4), hsla(0, 0%, 30%, 0.4));
        backdrop-filter: blur(20px);
    }
    .preloader__img {
        width: 100px;
        filter: drop-shadow(0 0 3px hsla(0, 0%, 10%)) contrast(70%);
        animation: preloader 4s infinite;
    }
    @keyframes preloader {
        0% { transform: rotateY(0) translateY(1rem) scale(1); }
        50% { transform: rotateY(180deg) translateY(-1rem) scale(1.5); }
        100% { transform: rotateY(0) translateY(1rem) scale(1); }
    }
    /* HEADER */
    .nav__toggle {
        display: none;
    }
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 100;
        background: transparent;
        transition: 0.3s;
    }
    .nav {
        height: var(4rem);
        display: flex;
        align-items: center;
    }
    .nav__logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: hsl(0, 0%, 10%);
        font-weight: 700;
        font-size: 1.2rem;
    }
    .nav__img {
        width: 60px;
        height: 60px;
    }
    .nav__menu {
        margin-left: auto;
    }
    .nav__list {
        display: flex;
        gap: 2.5rem;
    }
    .nav__link {
        font-weight: 600;
        color: hsl(0, 0%, 10%);
        position: relative;
    }
    .nav__link::after {
        position: absolute;
        content: '';
        bottom: -0.5rem;
        left: 0;
        right: 0;
        margin: auto;
        width: 0%;
        height: 2px;
        background: hsl(0, 0%, 10%);
        transition: 0.3s;
    }
    .nav__link:hover::after {
        width: 100%;
    }
    .nav__cart {
        font-size: 1.3rem;
        display: inline-flex;
        cursor: pointer;
    }
    .scroll-header {
        background: hsl(0, 0%, 90%);
    }
    .container {
        max-width: 1140px;
        margin: 0 auto;
        width: calc(100% - 3rem);
    }
    /* LOGO TOP */
    .slogan-logo-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin-bottom: 20px;
        width: 100%;
        height: 100%;
    }
    .slogan h2 {
        font-size: 24px;
        color: #333;
    }
    .logo img {
        width: 100px;
        height: auto;
    }
    
    /*@@@@@@@@@@@@@ SCROLL UP @@@@@@@@@@@@@*/

.scrollup {
  background: var(--dark-color);
  color: var(--white-color);
  padding: 0.5rem;
  font-size: 1.3rem;
  display: inline-flex;
  border-radius: 0.2rem;
  opacity: 0.8;
  transition: 0.2s;

  position: fixed;
  right: 1rem;
  bottom: -30%;
  z-index: 99;
}

.scrollup:hover {
  opacity: 1;
}

.show-scrollup {
  bottom: 5rem;
}

    /* MEDIA QUERIES */
    @media (max-width: 767px) {
        .hero-section img {
            display: none;
        }
        .hero-section .hero {
            max-width: 100%;
            text-align: center;
        }
        #hero-section {
            justify-content: center;
        }
        .containerALL {
            align-items: unset;
        }
        .description h3, .description h5 {
            font-size: 16px;
        }
        button {
            font-size: 16px;
            padding: 8px;
        }
        .product img {
            width: 40%;
            margin: auto;
        }
        .carousel-container {
            height: 500px;
            width: 350px;
            padding: 10px;
        }
        .carousel {
            gap: 10px;
        }
        .nav {
            justify-content: space-between;
        }
        .nav__toggle {
            font-size: 1.3rem;
            display: inline-flex;
            cursor: pointer;
            margin-right: 2rem;
        }
        .nav__menu {
            margin-left: unset;
            position: fixed;
            top: 0px;
            z-index: -1;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(0deg, hsl(211.13deg 95.22% 49.22%), hsl(248.09deg 37.45% 44.68% / 0%));
            backdrop-filter: blur(7px);
            transition: 0.5s;
        }
        .nav__list {
            margin-top: 100px;
            padding: 0;
            flex-direction: column;
            align-items: center;
        }
        .nav__link {
            text-transform: uppercase;
        }
        .show-menu {
            left: 0;
        }
        #section3 {
            height: 650px;
        }
        .slogan-logo-container {
            flex-direction: column-reverse;
            align-items: center;
        }
        .slogan h2 {
            font-size: 18px;
            text-align: center;
        }
        .logo img {
            width: 80px;
            margin-bottom: 10px;
        }
    }
    @media (max-width: 374px) {
        .container {
            width: calc(100% - 2rem);
        }
    }
    @media (min-width: 2048px) {
        body {
            zoom: 1.5;
        }
    }
    @media (min-width: 3840px) {
        body {
            zoom: 2;
        }
    }



    /* -------------- CART OVERLAY -------------- */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.cart-overlay.show-cart {
  display: flex;
}

/* Cart Container */
.cart {
  background: #fff;
  width: 90%;
  max-width: 500px;
  max-height: 80%;
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.cart-header {
  position: sticky;
  display: flex;
  align-items: center;
  top: 0;
  z-index: 10;
  padding: 10px 20px;
  text-align: center; /* Center the header text */
  border-bottom: 1px solid #ddd;
  /* Remove flex properties so the title can be truly centered */
}

.close-cart {
  position: absolute;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: #666;
}


/* Cart Body: Scrollable area for items */
.cart-body {
  overflow-y: auto;
  padding: 20px;
  flex: 1;
}

/* Cart Item Styles */
.cart-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  align-items: center;
  border-style: inset;
  border-color: deepskyblue;
  border-width: thick;
  border-radius: 10px;
}

.cart-item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.remove-item-btn {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: auto;
}

.cart-total {
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* Cart Footer: Fixed at the bottom */
.cart-footer {
  position: sticky;
  bottom: 0;
  z-index: 10;
  padding: 10px 20px;
  border-top: 1px solid #ddd;
}

/* Email Input Field Styling */
.checkout-email {
  width: 100%;
  padding: 8px;
  margin: 5px 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

/* Checkout Button */
.checkout-button {
  background: #27ae60;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  display: block;
}

.checkout-button:hover {
  background: #219150;
}

/* Additional styles for add-to-cart button (if used elsewhere) */
.add-to-cart-btn {
  background-color: #2980b9;
}
.add-to-cart-btn:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}




.hero-section {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  /*height: 95vh;*/
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100vw;
  margin-bottom: 20px;
}

.hero-section .hero {
  color: black;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #0778f6;
}

.hero-section .buttons {
  margin-top: 40px;
}

.hero-section .buttons a {
  text-decoration: none;
  color: #fff;
  padding: 12px 24px;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: 0.2s ease;
  display: inline-block;
}

.hero-section .buttons a:not(:last-child) {
  margin-right: 15px;
}

.buttons .join {
  background-color: #47b2e4;
}

.hero-section .buttons .learn {
  border: 1px solid #fff;
  border-radius: 0.375rem;
}

.hero-section .buttons a:hover {
  background-color: #47b2e4;
}
    .whatsapp-float {
      position: fixed;      /* <-- Key to pin to the screen, not the page */
      bottom: 20px;
      right: 20px;
      z-index: 9999;        /* On top of other elements */
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      cursor: pointer;
      animation: ringIcon 5s infinite; /* The ring effect every 5 seconds */
    }

    /* Fill the container with an icon image */
    .whatsapp-float img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Simple ring animation keyframes */
    @keyframes ringIcon {
      0%   { transform: rotate(0deg); }
      2%   { transform: rotate(20deg); }
      4%   { transform: rotate(-20deg); }
      6%   { transform: rotate(10deg); }
      8%   { transform: rotate(-10deg); }
      10%  { transform: rotate(0deg); }
      100% { transform: rotate(0deg); }
    }

/* ========= LIGHT ANIMATION OVERLAY ========== */
    .light-overlay {
      position: fixed;
      inset: 0; /* top:0; right:0; bottom:0; left:0; */
      background: radial-gradient(circle, #ffffff 0%, transparent 70%);
      z-index: 9998; /* behind the popup's z-index so it appears under it */
      animation: lightPulse 2s forwards; /* runs once for 2 seconds */
      pointer-events: none; /* let clicks pass through */
      opacity: 1;
    }
    @keyframes lightPulse {
      0%   { opacity: 1; }
      50%  { opacity: 0.7; }
      100% { opacity: 0; }
    }

    /* ========= POPUP OVERLAY BACKDROP ========== */
    .popup-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.6); /* semi-transparent dark layer */
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999; /* topmost */
      opacity: 0; 
      pointer-events: none; 
      transition: opacity 0.5s ease; 
    }
    .popup-overlay.active {
      opacity: 1;
      pointer-events: auto; 
    }

    /* ========= POPUP CONTENT BOX ========== */
    .popup-content {
      background: #fff;
      padding: 30px;
      max-width: 400px;
      width: 90%;
      text-align: center;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }
    .popup-content h2 {
      margin-bottom: 10px;
    }
    .popup-content p {
      margin-bottom: 20px;
    }

    /* ========= POPUP BUTTONS ========== */
    .popup-content .btn {
      display: inline-block;
      margin: 0 10px;
      padding: 10px 20px;
      font-size: 1rem;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .btn-follow {
      background-color: #E1306C; /* Instagram pinkish */
      color: #fff;
    }
    .btn-close {
      background-color: #ccc;
      color: #333;
    }
    .btn-follow:hover {
      background-color: #d02763;
    }
    .btn-close:hover {
      background-color: #bbb;
    }
    
    .padding {
        display: grid;
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }
    /* Top bar container */
    .top-bar {
      display: flex;
      border-radius: 0.25rem;
      flex-direction: column;
      width: 100%;
      justify-content: space-around;
      align-items: flex-start;
      background: linear-gradient(45deg, #0568d7, #9ea1d696);
      padding: 10px 0;
      gap: .5rem;
    }

    /* Each item in the top bar */
    .top-bar .bar-item {
      display: flex;
      align-items: center;
      gap: 8px; /* spacing between icon and text */
      font-size: 14px;
      margin-left: 10px;
    }

    /* Newsletter section container */
    .newsletter-section {
      display: flex;
      width: 100%;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 40px 20px;
    }

    /* Newsletter title */
    .newsletter-section h2 {
      font-size: 26px;
      margin-bottom: 10px;
    }

    /* Newsletter subtitle text */
    .newsletter-section p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #555;
    }

    /* Form container */
    .newsletter-form {
      display: inline-flex;
      align-items: stretch;
    }

    /* Email input */
    .newsletter-form input[type="email"] {
      padding: 10px;
      min-width: 250px;
      border: 1px solid #ccc;
      border-radius: 4px 0 0 4px;
      outline: none;
    }

    /* Sign up button */
    .newsletter-form button {
      background-color: #47b2e4;   /* Black button */
      color: #fff;
      border: none;
      cursor: pointer;
      padding: 10px 20px;
      border-radius: 0 4px 4px 0;
      font-size: 14px;
      font-weight: 600;
    }

    /* Button hover (optional) */
    .newsletter-form button:hover {
      background-color: #333;
    }
    
@media (min-width: 1024px) {
    .top-bar {
        flex-direction: row;
        align-items: center;
    }
}


    /* Moving container for text items */
.marquee {
    display: flex;
    gap: 2rem;
    animation: moveText 60s linear infinite;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-play-state: running;
    animation-fill-mode: forwards; /* Ensures animation state persists */
    white-space: nowrap;
}

    /* Each item in the marquee */
    .marquee .bar-item {
      display: inline-flex;
      align-items: center;
      gap: 8px; /* Space between icon and text */
      font-size: 14px;
      color: #fff;
    }

    /* Icons in the marquee */
    .marquee i {
      font-size: 18px;
    }

    /* Animation for moving text */
    @keyframes moveText {
      0% {
        transform: translateX(0%); /* Start off-screen to the right */
      }
      100% {
        transform: translateX(-100%); /* Move off-screen to the left */
      }
    }
    