/** Shopify CDN: Minification failed

Line 50:18 Expected identifier but found whitespace
Line 51:6 Expected identifier but found whitespace
Line 51:7 Unexpected "#000000"

**/
img.m\:w-full {
    border-radius: 10px;
}

.jdgm-prev-badge {
    font-size: 12px;
}
h2.m-section__heading.h3 {
    font-weight: 600;
}
span.m-price-item.m-price-item--sale.m-price-item--last {
    font-size: 16px;
    font-weight: 600;
}
h1.m-collection-page-header__title.h2.m\:capitalize {
  
    font-weight: 600;
}
div#m-hero-template--19129891815642__image_with_text_2_rmwMPm {
    padding-top: 0px;
    margin-bottom: 0px;
    border-radius: 0;
}

li.m-sub-menu__item.m-sub-menu__item--level-1 {
    border: 0px;
}

.m-menu__item--mega .m-sub-menu__item--level-1>.m-menu__link {
  
    color: black;
}
.m-mega-menu__container.w-full {
    background: #f7f7ef;
}
.m-mega-menu__inner {
    background: #f7f7ef;
}
.m-mega-menu.m-show-menu-column-divider.m-gradient.m-color-scheme-49c3435c-b57e-4863-a295-91ba6e487b90 {
    background: #f7f7ef;
}

.m-sub-menuitem>a: hover t
color: #000000;
background: • E rgba(var(--color-foreground), 0.07);

}

.popup-content {
  text-align: left;
}

/* Center align the main content */
.content-container {
  text-align: center;
  margin: 20px auto;
  max-width: 800px;
}

/* Read More Button */
.read-more-btn {
  background: none;
  border: none;
  color: green;
  font-size: 16px;
  cursor: pointer;
  text-decoration: underline;
}

/* Fullscreen Popup */
.read-more-content {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 0px;
  overflow: auto;
  z-index: 1000;
}

/* Popup Content */
.popup-content {
  background: white;
  color: black;
  padding: 20px;
  width: 90%;
  height: 90%;
  margin: 5% auto;
  border-radius: 10px;
  overflow-y: auto;
}

/* Close Button */
.close-btn {
  background: #728C70;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  float: right;
  font-size: 16px;
}




/* Floating WhatsApp Icon */
.whatsapp-icon {
    position: fixed;
    /* बटन को ऊपर करने के लिए bottom: 20px से 40px किया गया */
    bottom: 40px; 
    left: 20px; /* LEFT Corner */
    background-color: #2c874a; 
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 10000; 
    transition: opacity 0.3s;
}

/* WhatsApp Popup Box */
.whatsapp-popup {
    position: fixed;
    /* पॉपअप को ऊपर करने के लिए bottom: 100px से 120px किया गया */
    bottom: 120px; 
    left: 20px; /* LEFT Corner */
    width: 300px; 
    max-width: 90vw; 
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 10001;
    display: none; 
    overflow: hidden;
}

/* Header Styling (Green Area) */
.popup-header {
    background-color: #2c874a; 
    color: white;
    padding: 15px;
    position: relative;
}

/* Close Button Styling - अब यह गोलाकार (Circle) है */
.close-btn {
    position: absolute;
    top: 10px; /* थोड़ा ऊपर से नीचे एडजस्ट किया गया */
    right: 10px; /* राइट कॉर्नर से थोड़ा अंदर एडजस्ट किया गया */
    
    /* गोलाकार बनाने के लिए */
    background: #ffffff; /* सफ़ेद बैकग्राउंड */
    color: #62a553; /* हरे रंग का 'X' सिंबल */
    width: 24px;
    height: 24px;
    border-radius: 50%; /* इसे गोलाकार बनाता है */
    
    /* टेक्स्ट/सिंबल को केंद्र में लाने के लिए */
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1; /* लाइन हाइट एडजस्टमेंट */
    
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2); /* हलकी शैडो */
    z-index: 10;
}

/* Agent Profile Styling (Vipin and Priya) */
.agent-profile {
    display: flex;
    align-items: center;
    padding: 15px;
    text-decoration: none; 
    color: #333; 
    border-top: 1px solid #eee;
    transition: background-color 0.2s;
}

.agent-profile:hover {
    background-color: #f7f7f7;
}

.agent-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid #ccc;
}

.agent-name {
    font-weight: bold;
    font-size: 1.1em;
    margin: 0;
}

.agent-role {
    font-size: 0.9em;
    color: #666;
    margin: 0;
}

/* Responsive adjustment for Mobile */
@media (max-width: 600px) {
    .whatsapp-icon {
        bottom: 30px; 
        left: 15px;
        width: 50px;
        height: 50px;
    }
    .whatsapp-popup {
        bottom: 95px; 
        left: 15px;
        width: calc(100% - 30px); 
    }
}