/* You can add global styles to this file, and also import other style files */
@import '~bootstrap/dist/css/bootstrap.min.css';
@import "~@fortawesome/fontawesome-free/css/all.css";

html, body { height: 100%; }
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
}
/* Use global styles or :host ::ng-deep in component styles if needed */

.custom-accordion {
  display: none;
}

@media (max-width: 576px) {

  .custom-accordion {
    display: block;
    margin: 20px !important;
  }

ngb-accordion .accordion-item {
  border: none;
  margin-bottom: 8px;
}

/* header background and remove default padding */
ngb-accordion .accordion-header {
  background-color: rgb(234 240 223); /* light green */
  padding: 0;
  border-radius: 0px;
}
ngb-accordion .accordion-button:focus {
  outline: none;
  box-shadow: none;
  background-color: rgb(234, 240, 223);
}

/* style the generated button that contains the title */
ngb-accordion .accordion-button {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 10px 0px 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-weight: var(--header-font-weight);
  font-family: var(--font-1);
  font-size: 14px;
  height: 36px;
}

/* hide bootstrap default chevron */
ngb-accordion .accordion-button::after {
  display: none;
}

/* our custom title container */
.accordion-custom-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* the green square with icon on the right */
.toggle-icon {
  width: 36px;
  height: 36px;
  background-color: #007a3d; /* dark green */
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

/* use pseudo-element to switch + / - based on collapsed state */
.toggle-icon::after {
  content: '+';
}

/* when the panel is open the button loses .collapsed class — switch icon */
.accordion-button:not(.collapsed) .toggle-icon::after {
  content: '\2212'; /* minus sign */
}
}
/* .whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    z-index: 9999;
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float img {
    width: 32px;
    height: 32px;
  } */
  @media (max-width: 576px) {
    .whatsapp-wrapper {
      bottom: 140px !important;
      right: 30px !important;
    }
    
  }
  .whatsapp-wrapper {
    position: fixed;
    bottom: 70px;
    right: 20px;
    z-index: 10000;
    display: flex;
  flex-direction: column;
  }
  
  .whatsapp-button {
    background-color: #25d366;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    width: 56px;
    height: 56px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-button img {
    width: 32px;
    height: 32px;
  }
  
  .whatsapp-chatbox {
    width: 240px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-top: 10px;
    padding: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  }
  
  .chat-header {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #075e54;
    font-family: var(--font-1);
  }
  
  .chat-body p {
    font-size: 13px;
    margin-bottom: 10px;
    font-family: var(--font-2);
  }
  
  .chat-body input {
    width: 100%;
    padding: 6px;
    font-size: 14px;
    margin-bottom: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: var(--font-2);
  }
  
  .chat-body button {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 6px 12px;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-2) !important;
    font-weight: 700;
  }
  
  .chat-body button:hover {
    background-color: #1eb250;
  }
  
  .close-btn {
    cursor: pointer;
    font-size: 16px;
    color: #888;
  }
  
:root {
   
    --primary-color: #007B40;
    /* --primary-color:rgb(130,174,70); */
    --secondary-color:rgb(70, 70, 70);
    --table-header-color:white;
    --font-1:"Merriweather", serif;
    --font-2:"Nunito Sans", sans-serif;
    --header-color:#007B40;
    --header-font-size: 18px;
    --header-font-weight:600; 
    --description-color:'#505050';
    --description-font-size:16px;
    --desc-font-weight:500;
   --prouduct-prize-size:18px;
   --prouduct-name-size:14px;
  
}
.shop-section{
    padding-top: 20px;
}
@media (max-width: 768px) {
  .shop-section {
    padding-top: 0;
  }
}
/* Toast styling */
#toast-container {
    position: fixed;
    z-index: 9999;
}

#toast-container > div {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    border-radius: 8px;
    color: #FFFFFF;
    opacity: 1;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

.toast-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
    top: auto !important;
    left: auto !important;
}

/* Specific Error Toast Styling */
.toast-error {
    background-color: #FEE5E7 !important;
    color: #000;
    padding: 15px 70px 15px 70px;
}

.toast-error .toast-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #E53935;
}

.toast-error .toast-message {
    font-size: 0.9em;
    color: #555;
}

/* Style for the close button */
.toast-error .toast-close-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #E53935 !important;
    font-size: 1.5em;
    opacity: 1;
    background-color: transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border: 2px solid #E53935;
}

/* Add the vertical red bar on the left */
.toast-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    background-color: #E53935;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.toast-success {
    background-color: #D4EDDA !important;
    color: #000;
    padding: 15px 70px 15px 70px;
}

.toast-success .toast-title {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 5px;
    color: #155724;
}

.toast-success .toast-message {
    font-size: 0.9em;
    color: #155724;
}

/* Style for the close button */
.toast-success .toast-close-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #155724 !important;
    font-size: 1.5em;
    opacity: 1;
    background-color: transparent;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    border: 2px solid #155724;
}

/* Add the vertical green bar on the left */
.toast-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 10px;
    background-color: #28A745;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.toast-info {
    background-color: #2F96B4 !important;
}

.toast-warning {
    background-color: #F89406 !important;
}

/* Target the outer toast container */
.toast-right-top {
  max-width: fit-content !important;
  min-width: 200px;
  height: auto !important;
  white-space: normal;
  word-break: break-word;
  padding: 10px 16px !important;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
 
/* Optional: Adjust inner text styles */
.toast-right-top .container-2 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

/* .toast-right-top.error {
    max-width: fit-content !important;
    min-width: 200px;
    height: auto !important;
    white-space: normal;
    word-break: break-word;
    padding: 10px 16px !important;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }
   
  /* Optional: Adjust inner text styles */
  /* .toast-right-top.error .container-2 p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
  } */ 