/** Shopify CDN: Minification failed

Line 769:10 Expected identifier but found whitespace
Line 769:12 Unexpected "{"
Line 769:21 Expected ":"
Line 769:53 Expected ":"
Line 775:28 Expected identifier but found whitespace
Line 775:29 Unexpected "-"
Line 775:31 Unexpected "{"
Line 775:40 Expected ":"
Line 775:84 Expected ":"
Line 776:30 Expected identifier but found whitespace
... and 10 more hidden warnings

**/
body, p{
font-family: 'Satoshi', sans-serif;
                                              
}
.Cookie{
  
  font-family: "Cookie", cursive;
    font-weight: 400 !important;
}
.Moul , h1,h2,h3, h4, h5{
   font-family: "Moul", serif;
     font-weight: 400;
}
.description-text {
  font-family: 'Satoshi', sans-serif;
   font-optical-sizing: auto;
  font-weight: 400;
  color:#000000;
  font-size: 20px; 
  line-height: 34px; 
  margin-bottom: 40px; 
  max-width: 100%;
  text-align: justify;
}

.pf-single-about {
  font-family: 'Satoshi', sans-serif;
  background: #fff;
}


.floating-item packet-1{
  z-index:999;
}
.pf-grid {
    display: grid;
     grid-template-columns: 45% 45%;
    gap: 10%;
    align-items: center;
}


/* IMAGE */

.pf-img {

  width: 100%;
  height: 500px !important;

} 

/* CONTENT */
.pf-title {
  font-size: 50px;
  font-weight: 400;
  margin: 0;
  color:#000;
}

.pf-subtitle {
  font-family: 'Cookie', cursive;
  font-size:50px;
  color: #0D0D0D;
  margin: 0 0 30px 0;
  font-weight: 400;
  line-height: 52px;
}

.pf-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  max-width: 520px;
  margin-bottom: 35px;
}

/* BUTTON */
.pf-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid #000;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* ICON */
.pf-icon {
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* BUTTON HOVER */
.pf-btn:hover {
  background: #000;
  color: #fff;
}

/* ICON SLIDE + BOUNCE */
.pf-btn:hover .pf-icon {
  background: #fff;
  color: #000;
  animation: arrowBounce 0.6s ease forwards;
}

/* KEYFRAMES */
@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(12px);
  }
  70% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(10px);
  }
}

/* RESPONSIVE */
@media(max-width: 768px) {
  .pf-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pf-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .pf-title {
    font-size: 38px;
  }
}
.soft-shake {
  animation: softShake 1.5s ease-in-out infinite;
}

@keyframes softShake {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-2px, 1px); }
  40%  { transform: translate(2px, -1px); }
  60%  { transform: translate(-1px, 2px); }
  80%  { transform: translate(1px, -2px); }
  100% { transform: translate(0, 0); }
}
/* IMAGE POSITION SWITCH (DESKTOP ONLY) */
.pf-grid.image-right {
  grid-template-areas: "content image";
}

.pf-grid.image-left {
  grid-template-areas: "image content";
}

.pf-image {
  grid-area: image;
}

.pf-content {
  grid-area: content;
}


.soft-shake {

  width: 363px; 
  max-height: 456px;
  display: block;
  position: relative;
  left: 55px;

}

/* MOBILE: image always on top */
@media (max-width: 768px) {
  .pf-grid.image-left,
  .pf-grid.image-right {
    grid-template-areas:
      "image"
      "content";
  }
}


/* Slider Wrapper Styling */
.slick-wrapper {
  width: 100%;
  overflow: hidden;
 
}

.pf-subtitle {
 
  font-size:38px;
 
  margin: 0 0 10px 0;

  line-height: 42px;
}

.slider-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Image ko stretch hone se bachata hai */
}

/* Desktop vs Mobile logic via CSS (Alternative to Picture tag) */
@media screen and (min-width: 768px) {
  .slider-item picture source {
    display: none;
  }
}

/* Dots Styling (Slick default dots ko sundar banane ke liye) */
.slick-dots {
  bottom: 20px;
}

.slick-dots li button:before {
  font-size: 12px;
  color: #fff; /* Dots ka color white */
  opacity: 0.75;
}

.slick-dots li.slick-active button:before {
  color: #000; /* Active dot ka color black */
}

/* Arrows Styling */
.slick-prev, .slick-next {
  z-index: 2;
  width: 40px;
  height: 40px;
}

.slick-prev {
  left: 25px;
}

.slick-next {
  right: 25px;
}

/* Mobile adjustments */
@media screen and (max-width: 767px) {
  .slick-prev, .slick-next {
    display: none !important;
  }
  
  .slider-item img {
    min-height: 650px;
  }
}
p{
  color: black;
}


/* btn CSS */

.pf-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 7px 14px 7px 30px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  line-height:28px;
 font-family: 'Poppins', sans-serif;
  letter-spacing: -1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.cart-drawer {
  position: fixed;
  right: -450px;
  top: 0;
  width: 450px;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 9999;
}

.cart-drawer.active {
  right: 0;
}

.custom-selected-collections {
  padding: 80px 0;
  width:1400px;
  margin:0px auto;
}

/* Top Section Layout */
.section-top {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

/* Center Heading */
.section-heading {
  font-size: 34px;
  margin: 0;
   color: #F05959 ;
}

/* Move arrows to right */
.slider-arrows {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
}

.custom-arrow {
  position: relative !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid #f5b3b3;
  background: #fff;
  border-radius: 50%;
  color: #e53935 !important;
}

.custom-arrow::after {
  font-size: 14px !important;
  font-weight: bold;
}

.swiper-button-next,
.swiper-button-prev {
  top: auto !important;
  left: auto !important;
  right: auto !important;
}

/* Product Card */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.p-title,
.p-title a {
  text-decoration: none;
  font-family: Satoshi, sans-serif;
  color: #0D0D0D;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
   text-align: center;
   padding-top:20px;

}

.p-title a:hover {
  color: #e63946;
}

.product-card img {
  width: 100%;
  border-radius: 30px;
  margin-bottom: 15px;
 
  height:286px;
}



.price {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
      position: relative;
}


.weight-text {
  position: absolute;
  right: 10px;         
  top: 40%;
  transform: translateY(-50%);
  font-size: 16px;     
}

/* Quantity */
.qty-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px !important;
}





.qty-input {
  width: 55px;
  text-align: center;
  border: none;
  background: transparent;
  font-weight: 600;
  outline: none;
  padding-left: 15px;

}

/* Swiper */
.swiper {
  padding-bottom: 50px;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet-active {
  background: #000;
}

/* Responsive */
@media (min-width:768px) and (max-width:1024px) {
  .custom-selected-collections {
    padding: 60px 0;
      width:100%;
  }
.product-card img {
  height:388px;
}

.slider-arrows {
  right: 20px;}
  .section-heading{font-size:20px;}
  .section-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .pf-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 5px 10px 5px 20px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height:28px;
 font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
}

/* Responsive */
@media (min-width:320px) and (max-width:600px) {
.product-card img{
  height:auto;
}
}
/* =========================
   WRAPPER  Gathiya banner 
========================= */
#slick-p{
  width:100%;
  overflow:hidden;
  position:relative;
  background:#fff;
  z-index:1 !important;

}

.slider-item{
  position:relative;
  min-height:600px; 
    z-index:1 !important;
  
}

.slider-image-container,
.responsive-img{
  width:100%;
  display:block;
    z-index:0 !important;
}

.responsive-img{
  height:auto;
  object-fit:cover;
    z-index:0 !important;
}


/* =========================
   TEXT POSITION
========================= */
.slider-content{
  position:absolute;
  z-index:5;
  max-width:570px;
  padding:0 20px;
  text-align:center;
  pointer-events:none;
    z-index:0 !important;
}


/* =========================
   FADE IN LEFT ANIMATION
========================= */

.slider-content {
  position: absolute;
  z-index: 5;
  max-width: 570px;
  padding: 0 20px;
  text-align: center;
  pointer-events: none;
}

/* Initial hidden state */
.slider-title {
  opacity: 0;
  transform: translateX(-1820px);
  transition: all 4.1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active slide animation */
.slick-current .slider-title {
  opacity: 1;
  transform: translateX(0);
}
.Cookie{
  font-family:'Cookie', cursive;
  font-size:65px;
  line-height:1.1;
  font-weight:400;
  color:#1a1a1a;
  margin:0;
  z-index:0 !important;
}


/* =========================
   ARROWS
========================= */
.slick-prev,
.slick-next{
  position:absolute !important;
  bottom:30px !important;
  top:auto !important;
  width:40px;
  height:40px;
  background:transparent !important;
  border:2px solid #a1a1a1 !important;
  border-radius:50%;
  display:flex !important;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
}

.slick-prev:hover,
.slick-next:hover{
  border-color:#1a1a1a !important;
  background:rgba(0,0,0,0.05) !important;
}

.slick-prev:before,
.slick-next:before{
  display:none !important;
}

.slick-prev::after,
.slick-next::after{
  content:'';
  width:22px;
  height:22px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}

/* SVG arrows */
.slick-prev::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a1' stroke-width='2'%3E%3Cpolyline points='15 18 9 12 15 6'/%3E%3C/svg%3E");
}

.slick-next::after{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a1a1a1' stroke-width='2'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
}

.slick-prev{ left:50% !important; margin-left:-65px; }
.slick-next{ left:50% !important; margin-left:10px; }


/* =========================
   MOBILE
========================= */
@media(max-width:767px){

  .slider-item{
    min-height:auto;
  }

  .Cookie{
    font-size:38px;
    line-height:42px;
  }

  .slider-content{
    max-width:90%;
  }

  .slick-prev,
  .slick-next{
    display:none !important;
  }
}



 /* --- Base Layout snacks table css --- */
  .snacks-mood-section {
    position: relative;
    padding: 210px 0; 
    z-index:2 !important;
    min-height: 100vh;
    display: flex;
    align-items: center;

  }

  /* --- Full Background Animation --- */
  .mood-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; 
    overflow: hidden;
 
    pointer-events: none;
 
  }

  .mood-wave-track {
    display: flex;
    width: 200%; 
    height: 100%;
 
  
  }



  .wave-img-full {
    width: 80%;
    height: 100%;
    object-fit: fill; 
    display: block;

  }

  /* --- Container & Content --- */
  .mood-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    z-index: 9999999 !important;
  }

  .mood-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .mood-title {
    font-family: 'Moul', serif;
    font-size: 75px;
    line-height:52px;
    color: #0D0D0D;
    margin: 0;
  }

  .mood-subtitle {
    font-size:75px ;
     line-height:52px;
   color: #0D0D0D;
    display: block;
    margin-top: 15px;
  }

  /* --- Interactive Area --- */
  .mood-interactive-area {
    position: relative;
    width: 100%;
    max-width: 1075px;
    margin: 0 auto;
  }

  .mood-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    pointer-events: none;
    z-index: 15;
  }

  .product-side {
    position: absolute;
    width: {{ section.settings.img_width_desktop }}px;
    top: 0;
    transform: translateY(-50%);
 
  }

  .product-side.left { left: -{{ section.settings.img_width_desktop | minus: 30 }}px; }
  .product-side.right { right: -{{ section.settings.img_width_desktop | minus: 30}}px; }

  .mood-img {
    width: 100%;
    height: auto;
   
  }
  .mood-img{transition:opacity .8s cubic-bezier(.25,.46,.45,.94),transform .8s cubic-bezier(.25,.46,.45,.94)}
  /* --- List Styling --- */
  .mood-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(0,0,0,0.1);
  }

  .mood-row {
    padding: 21px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
  }

  .mood-row-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }

  .mood-emoji img { 
    width: 50px;
     height: 50px; 
     object-fit: contain; 
    }
  .emoji-text {
     font-size: 40px; 
    }

  .mood-label {
    font-size: 35px;
    color: #535353;
    l

    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .mood-row.is-active{
  background-color: #FFF7DB;
  }
  .mood-row.is-active .mood-label {
    color: #FFBB00;
    transform: scale(1.02);
  }
   .product-side.left { left: -160px; width: 250px; }
    .product-side.right { right: -160px; width: 220px; }

  /* --- Responsive --- */
  @media (max-width: 1200px) {
    .product-side.left { left: -160px; width: 150px; }
    .product-side.right { right: -160px; width: 150px; }
  }

   .snacks-mood-section{
    padding:50px 0px 30px 0px;
   }
  }
  @media (max-width: 768px) {
.snacks-mood-section { padding: 50px 0; padding-bottom: 150px; display:none;}
    .mood-list { width: 100%; margin: 0 auto; }
    .product-side { width: {{ section.settings.img_width_mobile }}px !important; }
    .product-side.left { left: -10px; display:none; }
    .product-side.right { right: -10px; display:none;}
    .mood-title { font-size: 40px; line-height:44px; }
     .mood-label { font-size: 20px;}
     .mood-container { padding: 0 10px;}
  .mood-bg-wrapper { height: 114%; }
  }


/* ===============================
   DRAWER PANEL
=================================*/


.cart-drawer.active .cart-drawer-content {
  transform: translateX(0);
}

/* ===============================
   CLOSE BUTTON
=================================*/
.cart-close {
  position: absolute;
  top: -38px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f3f3f3;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cart-close:hover {
  background: #e53935;
  color: #fff;
}

.cart-close:active {
  transform: scale(0.95);
}

/* ===============================
   CART ITEMS CONTAINER
=================================*/
.cart-itemssider {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0px 15px;

}

/* ===============================
   SINGLE CART ITEM
=================================*/
.cart-rowsider {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid #eeeeee;
 
}

/* ===============================
   PRODUCT IMAGE
=================================*/
.cart-imagesider img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 10px;
}

/* ===============================
   PRODUCT INFO
=================================*/
.cart-infosider {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-titlesider {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
}

.product-variant-weightsider {
  font-size: 14px;
  color: #777;
  margin-bottom: 5px;
}

.line-pricesider {
  font-weight: 600;
  color: #e53935;
  font-size: 16px;
  margin-bottom: 10px;
}

/* ===============================
   QUANTITY STEPPER
=================================*/
.qty-steppersider {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
}

.qty-steppersider button {
  background: #f5f5f5;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}

.qty-steppersider button:hover {
  background: #e0e0e0;
}

.qty-steppersider input {
  width: 40px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 14px;
  outline: none;
}

/* ===============================
   REMOVE BUTTON
=================================*/
.single-remove-btnsider {
  background: #f5f5f5;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.single-remove-btnsider:hover {
  background: #e53935;
  color: #fff;
}
.total-rowsider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

/* ===============================
   CART FOOTER (OPTIONAL)
=================================*/
.cart-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cart-checkout-btn:hover {
  background: #333;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 480px) {
  .cart-drawer-content {
    width: 100%;
  }

  .cart-rowsider {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cart-imagesider img {
    width: 100px;
    height: 100px;
  }
}


/* 1300px – 1550px */
@media (min-width: 1300px) and (max-width: 1550px) {

  .header-container,
  .custom-video-about .container,
  .pf-single-about .container, .footer-bottom,.custom-selected-collections,.snack-grid-section,.cart-wrapper ,.product-container ,.delicio-collection-grid,.product-grid{
    max-width: 1200px !important;
    width: 100% !important;
  }

  .footer-container {
    max-width: 1200px !important;
    width: 95% !important;
  }

  .mood-container {
    max-width: 1000px;
  }

  .slider-title {
    font-size: 40px;
  }

  .slider-grid {
    grid-template-columns: 1.1fr .9fr !important;
  }


}


/* 1100px – 1299px */
@media (min-width: 1100px) and (max-width: 1299px) {

  .header-container,
  .custom-video-about .container,
  .pf-single-about .container,.footer-bottom ,.custom-selected-collections,.snack-grid-section,.cart-wrapper,.product-container,.delicio-collection-grid ,.product-grid{
    max-width: 1100px !important;
    width: 95% !important;
  }

  .product-grid {gap: 10px !important; margin: 0px auto; }
.product-title{ font-size: 40px!important;}
.thumbnails-outer-wrap {
    left: 10px 
}
  .footer-container {
    max-width: 1100px !important;
    width: 95% !important;
  }

  .mood-container {
    max-width: 800px;
  }

  .contact-container-narrow {
    max-width: 890px;
  }

  .slider-grid {
    grid-template-columns: 1.2fr .8fr;
  }


}


/* 1025px – 1099px */
@media (min-width: 1025px) and (max-width: 1099px) {

  .header-container,
  .custom-video-about .container,
  .pf-single-about .container ,.footer-bottom ,.custom-selected-collections,.snack-grid-section ,.cart-wrapper,.product-container,.delicio-collection-grid,.product-grid{
    max-width: 960px !important;
    width: 95% !important;
  }

  .footer-container {
    max-width: 960px !important;
    width: 95%;
  }

  .mood-container {
    max-width: 650px;
    width: 95%;
  }


.thumbnails-outer-wrap {
    
    left: -10px !important;

}

}


/* ≤1024px */
@media (max-width: 1024px) {

  .header-container,
  .custom-video-about .container,
  .pf-single-about .container ,.footer-bottom ,.custom-selected-collections,.cart-wrapper,.product-container ,.delicio-collection-grid,.product-grid{
    max-width: 970px !important;
    width: 95% !important;
  }

  .mood-container {
    max-width: 550px;
    width: 95%;
  }

  .slider-grid {
    grid-template-columns: 1.2fr .8fr;
  }

.thumbnails-outer-wrap {
    
    left: -10px !important;

}
.product-title{
  font-size:40px !important;
}
}

@media(max-width:768px){

.product-grid{
  grid-template-columns:1fr;
}
.custom-selected-collections{
  width:auto !important;
  padding:0px 15px;
}

}
@media(max-width:500px){
.product-title{
 font-size:26px!important;}

}




@media (max-width: 768px) {
  .header-logo img {
    height: 75px !important;  }        
 


}

/* Floating WhatsApp Button (with pulse effect) */
#floating-whatsapp {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background-color: #25D366;
  padding: 15px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  z-index: 1000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: pulse-green 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

#floating-whatsapp:hover {
  animation: none;
  background-color: #20b358;
}

#floating-whatsapp img {
  width: 40px;
  height: 40px;
  animation: wiggle-green 2s infinite;
}

/* Animations */
@keyframes pulse-green {
  to {
    box-shadow: 0 0 0 25px rgba(37, 211, 102, 0);
  }
}

@keyframes wiggle-green {
  0% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  #floating-whatsapp {
    width: 45px;
    height: 45px;
    padding: 6px;
  }

  #floating-whatsapp img {
    width: 30px;
    height: 30px;
  }
}

