.elementor-11 .elementor-element.elementor-element-7dae7657{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );line-height:var( --e-global-typography-primary-line-height );color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-853127c{margin:35px 0px calc(var(--kit-widget-spacing, 0px) + 35px) 0px;text-align:center;}.elementor-11 .elementor-element.elementor-element-853127c .elementor-heading-title{font-family:"almoni bold", Sans-serif;font-size:60px;font-weight:700;line-height:35px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-header{background-color:var( --e-global-color-0e25f24 );color:#333333;padding:15px 20px 15px 20px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-item.active .ecosupp-header{background-color:var( --e-global-color-0e25f24 );color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-34bad0a > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;border-style:solid;border-width:1px 0px 0px 0px;border-color:var( --e-global-color-060517c );}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-item{margin-bottom:10px;border-style:solid;border-width:1px 0px 0px 0px;border-radius:0px 0px 0px 0px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-icon i{font-size:16px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-icon svg{width:16px;height:16px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-tab-icon i{font-size:16px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-tab-icon svg{width:16px;height:16px;}.elementor-11 .elementor-element.elementor-element-34bad0a .ecosupp-content-inner{padding:20px 20px 20px 20px;}@media(max-width:1440px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}@media(max-width:1024px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}@media(max-width:767px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}@media(min-width:768px){.elementor-11 .elementor-element.elementor-element-7dae7657{--content-width:800px;}}@media(min-width:2400px){.elementor-widget-heading .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}/* Start custom CSS for ecosupp-my-account-accordion, class: .elementor-element-34bad0a */div#pwgc-balance-container svg {
    display: none;
}
div#pwgc-balance-number-container {
    background: #FAF8F7;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
input#pwgc-balance-number {
    width: 397px;
    height: 69px;
    background: #fff;
    border: 1px solid #C8C8C8;
    border-radius: 8px;
    margin-left: 20px;
}
input#pwgc-balance-button {
        width: 187px;
    height: 69px;
    text-align: center;
    display: flex !IMPORTANT;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-top: -10px;
    background: #094E48;
    font-size: 18px;
}
/* Container */
.products-loop {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

/* Product Card */
.products-entry {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.products-entry:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.item-detail {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image Container */
.item-img {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  aspect-ratio: 1;
}

.item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.products-entry:hover .item-img img {
  transform: scale(1.05);
}

/* Content */
.item-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.item-content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
  min-height: 44px;
}

/* Add to Cart Button */
.cp_add_to_cart_container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.add_to_cart_button,
.added_to_cart {
  display: inline-block;
  width: 100%;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.add_to_cart_button {
  background: #d2fa99;
  color: #0a3834;
}

.add_to_cart_button:hover {
  background: #0a3834;
  color: #fff;
  transform: translateY(-1px);
}

.added_to_cart {
  background: #059669;
  color: white;
}

.added_to_cart:hover {
  background: #047857;
}

.your-earned-points {
    background: #CEEBFF;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 10px;
}
..ecosupp-accordion.ecosupp-accordion-34bad0a p {
    background: #FFF3E7;
    text-align: center;
    padding: 15px;
    margin-bottom: -10px;
    border-radius: 8px;
}
/* Responsive Grid */
@media (max-width: 1200px) {
  .products-loop {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .products-loop {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    padding: 16px;
  }
  
  .item-content {
    padding: 16px;
  }
  
  .item-content h4 {
    font-size: 14px;
    min-height: 40px;
  }
  
  .add_to_cart_button,
  .added_to_cart {
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .products-loop {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 12px;
  }
}/* End custom CSS */