@media (min-width: 768px) {
  .zpheader-style-04 .theme-header .zpcontainer .theme-branding-info {
    padding-inline-end: 0px;
    gap: 15px;
    width: 130px !important;
  }

  .inline-checkmark .zpimagetext-container figure {
    margin-right: 0.5rem !important;
  }

  .inline-checkmark + .zpelem-text {
    margin-inline-start: calc(25px + 0.5rem) !important;
    margin-block-start: 0px !important;
    margin-block-end: 5px !important;
  }

  .herosection-home {
    display: flex;
    flex-wrap: nowrap; /* keep them all on one line */
    justify-content: center; /* center the whole group */
    align-items: flex-start; /* or center vertically, as you like */
  }

  /* force each child to be exactly 1/7 of the width */
  .herosection-home > .zpelem-col {
    flex: 0 0 calc(100% / 7);
    max-width: calc(100% / 7);
  }
}

/* ============================================= */
/* Custom CSS for Recommended Products (Product) */
/* ============================================= */

/* 1) first, force everything lowercase: */
.setletter .zpbutton-content {
  text-transform: lowercase !important;
  /* ensure it’s a block container so ::first-letter can fire */
  display: inline-block !important;
}

/* 2) *after* that, uppercase just the very first character: */
.setletter .zpbutton-content::first-letter {
  text-transform: uppercase !important;
}

.button-selfprimary .zpbutton-wrapper,
.button-selfprimary .zpbutton {
  min-width: 195px !important;
  display: inline-block !important;
  padding: 15px 20px !important;
}

.button-selfsecondary .zpbutton-wrapper,
.button-selfsecondary .zpbutton {
  min-width: 195px !important;
  justify-content: center;
  align-items: center;
  padding: 15px 20px !important;
}

.theme-navigation-and-icons .theme-menu-area .theme-menu ul li a {
  font-family: "Nunito Sans", sans-serif !important;
}

.footer-bullets {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #6a6a6a !important;
}

.featured-headline {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #fff !important;
}

.featured-headline-black {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #000 !important;
}

.featured-subline {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #fff !important;
}

.featured-content {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #fff !important;
}

.featured-content-black {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  color: #000 !important;
}

.featured-bullets {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #282828 !important;
}

.featured-triple-heading {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #000 !important;
  text-align: center !important;
}

.featured-triple-content {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #000 !important;
  text-align: center !important;
}

/* Ensure the main row container uses flex and allows wrapping */
.theme-store-style-collection-row-05.zprow {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important; /* Spacing between cards */
  margin-left: 0 !important; /* Reset default negative margins if any */
  margin-right: 0 !important;
}

/* Individual Product Card Container Sizing */
.theme-store-style-collection-row-05
  .theme-prod-box.theme-product-list-style-05 {
  margin: 0 !important; /* Reset margins */
  padding: 0 !important; /* Reset padding */
  box-sizing: border-box !important;
  display: flex !important; /* Use flex to ensure children stretch */
  flex-direction: column !important; /* Stack children vertically */

  /* --- Column sizing --- */
  /* Default: 1 column (Mobile-first) */
  width: 100% !important;
  margin-bottom: 20px; /* Add gap below items when stacked */

  @media all and (min-width: 576px) {
    /* Small screens+ : 2 columns */
    width: calc((100% - 20px) / 2) !important;
    margin-bottom: 0; /* Remove bottom margin when side-by-side */
  }

  @media all and (min-width: 992px) {
    /* Large screens+ : 4 columns */
    width: calc(
      (100% - 60px) / 4
    ) !important; /* 100% - (3 gaps * 20px) / 4 items */
    margin-bottom: 0;
  }
  /* --- End Column sizing --- */
}

/* --- Hide items beyond the 4th one --- */
.theme-store-style-collection-row-05
  .theme-prod-box.theme-product-list-style-05:nth-child(n + 5) {
  display: none !important;
}
/* --- End Hide items --- */

/* Product Card Inner Content Styling */
.theme-store-style-collection-row-05 article.theme-product-box-content {
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  background-color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;
  transition: box-shadow 0.3s ease !important;
  position: relative !important; /* Needed for absolute positioning */
  /* Padding: Top/Sides 24px, Bottom 190px */
  padding: 24px 24px 190px 24px !important; /* UPDATED: Bottom padding */
  box-sizing: border-box !important;
  flex-grow: 1 !important;
}

/* Remove Pink Hover Background */
.theme-store-style-collection-row-05 article.theme-product-box-content::before {
  display: none !important;
}

.theme-store-style-collection-row-05 article.theme-product-box-content:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Image Area */
.theme-store-style-collection-row-05 .theme-product-image-area {
  aspect-ratio: 1 / 1 !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  align-self: center !important;
  padding: 0 !important;
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Image Width Adjustment */
.theme-store-style-collection-row-05 .theme-product-image-area picture,
.theme-store-style-collection-row-05 .theme-product-image-area img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  max-height: 100%;
  margin: 0 auto !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  padding: 0 !important;
}

/* Hide Quick View & Overlay Link */
.theme-store-style-collection-row-05 .theme-product-quick-view-button,
.theme-store-style-collection-row-05 .theme-product-overlay-link {
  display: none !important;
}

/* Details Area - Contains Name */
.theme-store-style-collection-row-05 .theme-product-details-area {
  align-items: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding-bottom: 0 !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

/* Name/Rating/Price container */
.theme-store-style-collection-row-05 .theme-product-name-rating-price {
  align-items: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* Product Name */
.theme-store-style-collection-row-05 .theme-product-name h2 {
  margin-bottom: 4px !important;
}
.theme-store-style-collection-row-05 .theme-product-name h2 a {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  color: #333333 !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
  /* Overflow handling */
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: calc(1.3em * 2) !important; /* Approx height for 2 lines */
}

/* Product Short Description (Absolute Positioning) */
.theme-store-style-collection-row-05 .theme-product-short-description {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #666666 !important;
  line-height: 1.5 !important;
  padding-block-start: 0 !important;
  margin-bottom: 0 !important; /* Remove margin */
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important; /* Limit to 3 lines */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  /* --- Absolute Positioning --- */
  position: absolute !important;
  bottom: 135px !important; /* UPDATED: As requested */
  left: 24px !important;
  width: calc(100% - 48px) !important; /* Span width minus padding */
  z-index: 2 !important;
}

/* Hide Rating Stars */
.theme-store-style-collection-row-05 .theme-rating {
  display: none !important;
}

/* Price Area (Absolute Positioning) */
.theme-store-style-collection-row-05 .theme-product-price-area {
  width: calc(100% - 48px) !important;
  position: absolute !important;
  bottom: 90px !important; /* UPDATED: As requested */
  left: 24px !important;
  z-index: 2;
}
.theme-store-style-collection-row-05 .theme-product-price {
  justify-content: flex-start !important;
}
.theme-store-style-collection-row-05 .theme-product-total-price-label {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 700 !important;
  font-size: 28px !important;
  color: #000000 !important;
  line-height: 1.2 !important;
}
.theme-store-style-collection-row-05 .theme-product-total-old-price {
  display: none !important;
}

/* Add to Cart Button Area (Absolute Positioning) */
.theme-store-style-collection-row-05 .theme-product-list-quantity-addcart {
  position: absolute !important;
  bottom: 35px !important; /* UPDATED: As requested */
  left: 24px !important;
  width: calc(100% - 48px) !important;
  z-index: 2;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.theme-store-style-collection-row-05 .theme-product-button-area {
  align-self: flex-start !important;
  margin-inline-start: 0 !important;
  flex-shrink: 0 !important;
}

/* Add to Cart Button Link */
.theme-store-style-collection-row-05 .theme-product-button-area a {
  background-color: #ffffff !important;
  border: 1px solid #1b7ba2 !important;
  color: #1b7ba2 !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition:
    background-color 0.3s ease,
    color 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  /* Removed border-block-end */
}

/* Span inside button */
.theme-store-style-collection-row-05
  .theme-product-button-area
  a
  [data-theme-cart-button-text] {
  border-block-end: none !important;
  text-decoration: none !important;
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Add Cart Icon */
.theme-store-style-collection-row-05 .theme-product-button-area a::after {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background-color: #1b7ba2 !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM3.102 4l1.313 7h8.17l1.313-7H3.102zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E") !important;
  mask-repeat: no-repeat !important;
  mask-size: contain !important;
  vertical-align: middle !important;
  transition: background-color 0.3s ease !important;
  flex-shrink: 0 !important;
}

.theme-store-style-collection-row-05 .theme-product-button-area a:hover {
  background-color: #1b7ba2 !important;
  color: #ffffff !important;
  border-color: #1b7ba2 !important;
}

.theme-store-style-collection-row-05 .theme-product-button-area a:hover::after {
  background-color: #ffffff !important;
}

/* Hide Wishlist Button */
.theme-store-style-collection-row-05 .theme-wishlist-ctr {
  display: none !important;
}

/* Hide Sale Ribbon if present */
.theme-store-style-collection-row-05 .theme-product-sale-ribbon {
  display: none !important;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
  .shipping-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: start;
    margin: 1rem 0;
  }

  /* your banner styling */
  .shipping-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(27, 123, 162, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #282828;
  }

  /* icon cell */
  .shipping-info__icon-cell {
    flex: none;
    line-height: 0;
  }

  /* text column */
  .shipping-info__text-cell {
    display: flex;
    flex-direction: column;
  }

  /* small gap between lines */
  .shipping-info__text-cell > div + div {
    margin-top: 0.25rem;
  }

  /* sub-text */
  .shipping-info__sub {
    font-size: 0.85rem;
    color: #282828;
    margin-left: 0.3rem;
  }
  .theme-store-style-collection-row-05 article.theme-product-box-content {
    padding: 16px 16px 190px 16px !important; /* Adjusted padding */
  }
  .theme-store-style-collection-row-05 .theme-product-details-area {
    padding-bottom: 0 !important;
  }
  .theme-store-style-collection-row-05 .theme-product-short-description {
    bottom: 135px !important; /* Adjust description position */
    left: 16px !important;
    width: calc(100% - 32px) !important;
    font-size: 14px !important;
    -webkit-line-clamp: 2 !important;
  }
  .theme-store-style-collection-row-05 .theme-product-price-area {
    bottom: 90px !important; /* Adjust price position */
    left: 16px !important;
    width: calc(100% - 32px) !important;
  }
  .theme-store-style-collection-row-05 .theme-product-list-quantity-addcart {
    bottom: 35px !important; /* Adjust button position */
    left: 16px !important;
    width: calc(100% - 32px) !important;
  }
  .theme-store-style-collection-row-05 .theme-product-name h2 a {
    font-size: 18px !important;
  }
  .theme-store-style-collection-row-05 .theme-product-total-price-label {
    font-size: 24px !important;
  }
  .theme-store-style-collection-row-05 .theme-product-button-area a {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  .theme-store-style-collection-row-05 article.theme-product-box-content {
    padding: 12px 12px 190px 12px !important; /* Further adjust padding */
  }
  .theme-store-style-collection-row-05 .theme-product-details-area {
    padding-bottom: 0 !important;
  }
  .theme-store-style-collection-row-05 .theme-product-short-description {
    bottom: 135px !important; /* Adjust description position */
    left: 12px !important;
    width: calc(100% - 24px) !important;
    font-size: 12px !important;
    -webkit-line-clamp: 2 !important;
  }
  .theme-store-style-collection-row-05 .theme-product-price-area {
    bottom: 90px !important; /* Adjust price position */
    left: 12px !important;
    width: calc(100% - 24px) !important;
  }
  .theme-store-style-collection-row-05 .theme-product-list-quantity-addcart {
    bottom: 35px !important; /* Adjust button position */
    left: 12px !important;
    width: calc(100% - 24px) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .theme-store-style-collection-row-05 .theme-product-button-area a {
    width: 100% !important; /* Make button full width */
    margin-right: 0 !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    justify-content: center; /* Center text/icon in button */
  }
  /* Hide quantity spinner on smallest screens */
  .theme-store-style-collection-row-05 .theme-product-list-quantity {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .theme-store-style-collection-row-05
    .theme-prod-box.theme-product-list-style-05 {
    width: calc((100% - 20px) / 2) !important; /* 2 columns */
    margin-bottom: 20px !important;
  }
  /* Re-adjust for 2 columns if needed */
  .theme-store-style-collection-row-05 article.theme-product-box-content {
    padding: 10px 10px 190px 10px !important; /* Keep padding consistent */
  }
  .theme-store-style-collection-row-05 .theme-product-short-description {
    bottom: 135px !important; /* Keep consistent */
    left: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .theme-store-style-collection-row-05 .theme-product-price-area {
    bottom: 90px !important; /* Keep consistent */
    left: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .theme-store-style-collection-row-05 .theme-product-list-quantity-addcart {
    bottom: 35px !important; /* Keep consistent */
    left: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .theme-store-style-collection-row-05 .theme-product-name h2 a {
    font-size: 16px !important; /* Slightly smaller */
  }
  .theme-store-style-collection-row-05 .theme-product-total-price-label {
    font-size: 20px !important; /* Slightly smaller */
  }
}
/* ============================================= */
/* End Custom CSS for Recommended Products       */
/* ============================================= */

/* ============================================= */
/* Custom CSS for inner of in the product pages  */
/* ============================================= */

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-image-container
  .theme-image-navigation {
  background-color: #1b7ba2 !important;
}


.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-product-name-social-container
  h1[data-zs-product-name] {
  font-size: 22px !important;
  font-weight: 900 !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-product-quantity-cart-area
  .theme-product-varient-quantity
  .theme-product-variant-label {
  font-weight: 900 !important;
  padding-block-start: 12px !important;
  padding-block-end: 12px !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-product-specification-section
  .theme-prod-content-summary {
  font-weight: 900 !important;
  padding: 0 !important;
}

.theme-product-details-style-05
  [data-zs-product-details-recommended-section]
  [data-zs-recommended-products]
  .theme-section-heading {
  font-weight: 900 !important;
  font-size: 42px;
  text-align: center !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  [data-zs-pricing-container] {
  padding-block-start: 12px !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-prod-pricelist-outter {
  padding-block-end: 12px !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-product-specification-section
  .theme-product-details {
  padding: 16px 0 !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-product-quantity-cart-area {
  padding-block-start: 12px !important;
  padding-block-end: 12px !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-rating-review-container
  .zpcomments-reviews-ratings
  .zpform-comment-rating-container {
  padding-block: 12px !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-container
  .theme-product-stock-availability-details {
  padding-block: 12px !important;
}

.theme-product-details-style-05 [data-zs-product-details-commentbox-section] {
  border-block: 0px solid #e6e6e6 !important;
}

.theme-product-details-style-05
  [data-zs-product-details-primary-section]
  .zpcontainer
  [data-zs-product-primary-details]
  .theme-product-detail-image-container
  .theme-product-detail-thumbnail-container
  .theme-product-detail-thumbnail.theme-active-thumbnail {
  border: 1px solid #1b7ba2 !important;
}

/* ============================================= */
/* End of CSS for Arrows in the product page img */
/* ============================================= */

/* ============================================= */
/* Start of CSS for clamping product description  */
/* ============================================= */

.clamped {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important; /* clamp to 3 lines */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
.desc-toggle {
  display: inline-block !important;
  margin-top: 0.5em !important;
  color: #1b7ba2 !important;
  cursor: pointer !important;
  font-weight: bold !important;
  text-decoration: none !important;
}
.desc-toggle:hover {
  text-decoration: underline !important;
}

/* ============================================= */
/* End of CSS for clamping product description   */
/* ============================================= */

/* ============================================= */
/* Custom CSS for .theme-product-ratio (Style 05 Replication) */
/* ============================================= */

.theme-product-ratio .theme-product-short-description .desc-toggle {
  display: none !important;
}

/* Ensure the main row container uses flex and allows wrapping */
.theme-product-ratio.zprow {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important; /* Spacing between cards */
  margin-left: 0 !important; /* Reset default negative margins if any */
  margin-right: 0 !important;
}

/* Individual Product Card Container Sizing */
.theme-product-ratio .theme-prod-box.theme-product-list-style-05 {
  margin: 0 !important; /* Reset margins */
  padding: 0 !important; /* Reset padding */
  box-sizing: border-box !important;
  display: flex !important; /* Use flex to ensure children stretch */
  flex-direction: column !important; /* Stack children vertically */

  /* --- Column sizing --- */
  /* Default: 1 column (Mobile-first) */
  width: 100% !important;
  margin-bottom: 20px !important; /* Add gap below items when stacked */

  /* Small screens+ : 2 columns */
  @media all and (min-width: 576px) {
    width: calc((100% - 20px) / 2) !important;
    margin-bottom: 0 !important; /* Remove bottom margin when side-by-side */
  }

  /* Large screens+ : 4 columns */
  @media all and (min-width: 992px) {
    width: calc(
      (100% - 60px) / 4
    ) !important; /* 100% - (3 gaps * 20px) / 4 items */
    margin-bottom: 0 !important;
  }
  /* --- End Column sizing --- */
}

/* Product Card Inner Content Styling */
.theme-product-ratio article.theme-product-box-content {
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  background-color: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05) !important;
  transition: box-shadow 0.3s ease !important;
  position: relative !important; /* Needed for absolute positioning */
  /* Padding: Top/Sides 24px, Bottom 190px */
  padding: 24px 24px 190px 24px !important; /* UPDATED: Bottom padding */
  box-sizing: border-box !important;
  flex-grow: 1 !important;
}

/* Remove Pink Hover Background */
.theme-product-ratio article.theme-product-box-content::before {
  display: none !important;
}

.theme-product-ratio article.theme-product-box-content:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Image Area */
.theme-product-ratio .theme-product-image-area {
  aspect-ratio: 1 / 1 !important;
  margin-bottom: 20px !important;
  width: 100% !important;
  align-self: center !important;
  padding: 0 !important;
  position: relative !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Image Width Adjustment */
.theme-product-ratio .theme-product-image-area picture,
.theme-product-ratio .theme-product-image-area img {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
  max-height: 100%;
  margin: 0 auto !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  padding: 0 !important;
}

/* Hide Quick View & Overlay Link */
.theme-product-ratio .theme-product-quick-view-button,
.theme-product-ratio .theme-product-overlay-link {
  display: none !important;
}

/* Details Area - Contains Name */
.theme-product-ratio .theme-product-details-area {
  align-items: flex-start !important;
  gap: 12px !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  padding-bottom: 0 !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

/* Name/Rating/Price container */
.theme-product-ratio .theme-product-name-rating-price {
  align-items: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
}

/* Product Name */
.theme-product-ratio .theme-product-name h2 {
  margin-bottom: 4px !important;
}
.theme-product-ratio .theme-product-name h2 a {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 900 !important;
  font-size: 22px !important;
  color: #333333 !important;
  line-height: 1.3 !important;
  text-decoration: none !important;
  /* Overflow handling */
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: calc(1.3em * 2) !important; /* Approx height for 2 lines */
}

/* Product Short Description (Absolute Positioning) */
.theme-product-ratio .theme-product-short-description {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  color: #666666 !important;
  line-height: 1.5 !important;
  padding-block-start: 0 !important;
  margin-bottom: 0 !important; /* Remove margin */
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important; /* Limit to 3 lines */
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  /* --- Absolute Positioning --- */
  position: absolute !important;
  bottom: 135px !important; /* UPDATED: As requested */
  left: 24px !important;
  width: calc(100% - 48px) !important; /* Span width minus padding */
  z-index: 2 !important;
}

/* Hide Rating Stars */
.theme-product-ratio .theme-rating {
  display: none !important;
}

/* Price Area (Absolute Positioning) */
.theme-product-ratio .theme-product-price-area {
  width: calc(100% - 48px) !important;
  position: absolute !important;
  bottom: 90px !important; /* UPDATED: As requested */
  left: 24px !important;
  z-index: 2 !important;
}
.theme-product-ratio .theme-product-price {
  justify-content: flex-start !important;
}
.theme-product-ratio .theme-product-total-price-label {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 700 !important;
  font-size: 28px !important;
  color: #000000 !important;
  line-height: 1.2 !important;
}
.theme-product-ratio .theme-product-total-old-price {
  display: none !important;
}

/* Add to Cart Button Area (Absolute Positioning) */
.theme-product-ratio .theme-product-list-quantity-addcart {
  position: absolute !important;
  bottom: 35px !important; /* UPDATED: As requested */
  left: 24px !important;
  width: calc(100% - 48px) !important;
  z-index: 2 !important;
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.theme-product-ratio .theme-product-button-area {
  align-self: flex-start !important;
  margin-inline-start: 0 !important;
  flex-shrink: 0 !important;
}

/* Add to Cart Button Link */
.theme-product-ratio .theme-product-button-area a {
  background-color: #ffffff !important;
  border: 1px solid #1b7ba2 !important;
  color: #1b7ba2 !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  transition:
    background-color 0.3s ease,
    color 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  /* Removed border-block-end */
}

/* Span inside button */
.theme-product-ratio
  .theme-product-button-area
  a
  [data-theme-cart-button-text] {
  border-block-end: none !important;
  text-decoration: none !important;
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Add Cart Icon */
.theme-product-ratio .theme-product-button-area a::after {
  content: "" !important;
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  background-color: #1b7ba2 !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='currentColor' d='M0 1.5A.5.5 0 0 1 .5 1H2a.5.5 0 0 1 .485.379L2.89 3H14.5a.5.5 0 0 1 .491.592l-1.5 8A.5.5 0 0 1 13 12H4a.5.5 0 0 1-.491-.408L2.01 3.607 1.61 2H.5a.5.5 0 0 1-.5-.5zM3.102 4l1.313 7h8.17l1.313-7H3.102zM5 12a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm7 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm-7 1a1 1 0 1 1 0 2 1 1 0 0 1 0-2zm7 0a1 1 0 1 1 0 2 1 1 0 0 1 0-2z'/%3E%3C/svg%3E") !important;
  mask-repeat: no-repeat !important;
  mask-size: contain !important;
  vertical-align: middle !important;
  transition: background-color 0.3s ease !important;
  flex-shrink: 0 !important;
}

.theme-product-ratio .theme-product-button-area a:hover {
  background-color: #1b7ba2 !important;
  color: #ffffff !important;
  border-color: #1b7ba2 !important;
}

.theme-product-ratio .theme-product-button-area a:hover::after {
  background-color: #ffffff !important;
}

/* Hide Wishlist Button */
.theme-product-ratio .theme-wishlist-ctr {
  display: none !important;
}

/* Hide Sale Ribbon if present */
.theme-product-ratio .theme-product-sale-ribbon {
  display: none !important;
}

/* --- Responsive Adjustments --- */

@media (max-width: 991px) {
  .theme-product-ratio article.theme-product-box-content {
    padding: 16px 16px 190px 16px !important; /* Adjusted padding */
  }
  .theme-product-ratio .theme-product-details-area {
    padding-bottom: 0 !important;
  }
  .theme-product-ratio .theme-product-short-description {
    bottom: 135px !important; /* Adjust description position */
    left: 16px !important;
    width: calc(100% - 32px) !important;
    font-size: 14px !important;
    -webkit-line-clamp: 2 !important;
  }
  .theme-product-ratio .theme-product-price-area {
    bottom: 90px !important; /* Adjust price position */
    left: 16px !important;
    width: calc(100% - 32px) !important;
  }
  .theme-product-ratio .theme-product-list-quantity-addcart {
    bottom: 35px !important; /* Adjust button position */
    left: 16px !important;
    width: calc(100% - 32px) !important;
  }
  .theme-product-ratio .theme-product-name h2 a {
    font-size: 18px !important;
  }
  .theme-product-ratio .theme-product-total-price-label {
    font-size: 24px !important;
  }
  .theme-product-ratio .theme-product-button-area a {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  /* target only your “inline-checkmark” element */
  .inline-checkmark .zpimagetext-container {
    display: block !important; /* sit side-by-side, but behave like text */
  }

  /* kill any default bottom-margins on the figure */
  .inline-checkmark .zpimagetext-container figure {
    margin-right: 0.5rem !important;
  }

  .theme-product-ratio article.theme-product-box-content {
    padding: 12px 12px 190px 12px !important; /* Further adjust padding */
  }
  .theme-product-ratio .theme-product-details-area {
    padding-bottom: 0 !important;
  }
  .theme-product-ratio .theme-product-short-description {
    bottom: 135px !important; /* Adjust description position */
    left: 12px !important;
    width: calc(100% - 24px) !important;
    font-size: 12px !important;
    -webkit-line-clamp: 2 !important;
  }
  .theme-product-ratio .theme-product-price-area {
    bottom: 90px !important; /* Adjust price position */
    left: 12px !important;
    width: calc(100% - 24px) !important;
  }
  .theme-product-ratio .theme-product-list-quantity-addcart {
    bottom: 35px !important; /* Adjust button position */
    left: 12px !important;
    width: calc(100% - 24px) !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .theme-product-ratio .theme-product-button-area a {
    width: 100% !important; /* Make button full width */
    margin-right: 0 !important;
    padding: 10px 16px !important;
    font-size: 12px !important;
    justify-content: center; /* Center text/icon in button */
  }
  /* Hide quantity spinner on smallest screens */
  .theme-product-ratio .theme-product-list-quantity {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .theme-product-ratio .theme-prod-box.theme-product-list-style-05 {
    width: calc((100% - 20px) / 2) !important; /* 2 columns */
    margin-bottom: 20px !important;
  }
  /* Re-adjust for 2 columns if needed */
  .theme-product-ratio article.theme-product-box-content {
    padding: 10px 10px 190px 10px !important; /* Keep padding consistent */
  }
  .theme-product-ratio .theme-product-short-description {
    bottom: 135px !important; /* Keep consistent */
    left: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .theme-product-ratio .theme-product-price-area {
    bottom: 90px !important; /* Keep consistent */
    left: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .theme-product-ratio .theme-product-list-quantity-addcart {
    bottom: 35px !important; /* Keep consistent */
    left: 10px !important;
    width: calc(100% - 20px) !important;
  }
  .theme-product-ratio .theme-product-name h2 a {
    font-size: 16px !important; /* Slightly smaller */
  }
  .theme-product-ratio .theme-product-total-price-label {
    font-size: 20px !important; /* Slightly smaller */
  }
}
/* ============================================= */
/* End Custom CSS for .theme-product-ratio       */
/* ============================================= */

#zs_custom_messagebar {
  width: 100%;
  background-color: #1b7ba2;
  color: #ffffff;
  padding: 5px 15px 5px 15px;
  text-align: left;
  font-size: 18px;
}

#zs_custom_messagebar a {
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer;
}

#zs_custom_messagebar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.theme-sub-category-section .theme-category-back-button:after,
.theme-sub-category-section .theme-sub-category:after {
  background: #1b7ba2 !important;
}

.theme-sub-category-section a:hover,
.theme-sub-category-section .theme-category-name {
  color: #1b7ba2 !important;
}

.zpdark-section .zpform-container .zpbutton.zpbutton-type-primary {
  background-color: #1b7ba2 !important;
  color: #ffffff !important;
  border-color: transparent !important;
  font-family: "Inter", sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  border-style: solid !important;
  border-color: rgba(255, 255, 255, 0.34) !important;
  border-width: 1px !important;
  border-radius: 8px !important;
}

.zcs_custom_newsletter .zpnewsletter-input-container {
  height: fit-content !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  background: rgb(255, 255, 255) !important;
  padding: 8px !important;
  border-radius: 8px !important;
  border: 1px solid #1b7ba2 !important;
}

.theme-product-breadcrumb a:last-of-type:hover {
  color: #1b7ba2 !important;
}

.theme-product-details-style-05
  .theme-product-page-breadcrumb
  .theme-product-breadcrumb
  a {
  color: #000000 !important;
}

.theme-product-details-style-05
  .theme-product-page-breadcrumb
  .theme-product-breadcrumb
  a:last-of-type {
  color: #1b7ba2 !important;
}

.zcs_slider_row {
  overflow-x: hidden;
}

.theme-menu-selected:after {
  background: #1b7ba2;
}

.zpcontainer-fluid {
  padding-inline-start: 0px !important;
  padding-inline-end: 0px !important;
}

[data-zs-recommended-products] .zprow {
  scrollbar-width: none !important;
}

[data-zs-recommended-products] .zprow::-webkit-scrollbar {
  display: none !important;
}

.theme-sub-category-section .theme-sub-category-list {
  scrollbar-width: none !important;
}

.theme-sub-category-section .theme-sub-category-list::-webkit-scrollbar {
  display: none !important;
}

/* HIDING SCROLLBARS UP THERE */

@media (min-width: 1921px) {
  .theme-content-container.theme-product-details-style-05 {
    max-width: 1440px !important;
    margin: 0 auto;
  }
}

@media (min-width: 1441px) {
  .shipping-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin: 0rem 1rem 0rem 0rem;
  }

  /* your banner styling */
  .shipping-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(27, 123, 162, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #282828;
  }

  /* icon cell */
  .shipping-info__icon-cell {
    flex: none;
    line-height: 0;
  }

  /* text column */
  .shipping-info__text-cell {
    display: flex;
    flex-direction: column;
  }

  /* small gap between lines */
  .shipping-info__text-cell > div + div {
    margin-top: 0.25rem;
  }

  /* sub-text */
  .shipping-info__sub {
    font-size: 0.85rem;
    color: #282828;
    margin-left: 0.3rem;
  }
}

@media (max-width: 1440px) {
  .shipping-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: center;
    margin: 0rem 1rem 0rem 0rem;
  }

  /* your banner styling */
  .shipping-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(27, 123, 162, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    color: #282828;
  }

  /* icon cell */
  .shipping-info__icon-cell {
    flex: none;
    line-height: 0;
  }

  /* text column */
  .shipping-info__text-cell {
    display: flex;
    flex-direction: column;
  }

  /* small gap between lines */
  .shipping-info__text-cell > div + div {
    margin-top: 0.25rem;
  }

  /* sub-text */
  .shipping-info__sub {
    font-size: 0.85rem;
    color: #282828;
    margin-left: 0.3rem;
  }
}

@media (min-width: 992px) {
  .theme-header a[href="/contact-sales"] {
    background-color: #1b7ba2 !important;
    color: #fff !important;
    padding: 10px 15px !important;
    border-radius: 6px !important;
    text-decoration: none;
  }

  .theme-header a[href="/contact-sales"]:hover {
    background-color: #1b7ba2 !important;
    color: #fff !important;
  }

  .theme-sub-category-section {
    padding-block-end: 8px !important;
    padding-block-start: 8px !important;
    font-size: 14px !important;
  }

  .max-header h2 {
    max-width: 80%;
    margin: 0 auto;
  }

  .theme-product-details-style-05
    [data-zs-product-details-primary-section]
    .zpcontainer
    [data-zs-product-primary-details] {
    flex-direction: row;
    gap: 100px;
  }

  .zpheader-style-04 .theme-header .zpcontainer {
    padding-block-start: 15px;
    padding-block-end: 15px;
  }

  .theme-product-details-style-05
    [data-zs-product-details-primary-section]
    .zpcontainer
    [data-zs-product-primary-details]
    .theme-product-detail-image-container {
    width: 600px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .theme-navigation-and-icons .theme-menu-area .theme-menu ul li a {
    padding-block-end: 5px;
  }

  .theme-menu-name {
    font-size: 16px;
  }

  .zpimage-with-text-container p {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #1b7ba2;
  }

  .zcs_slider_row_88 .zpelem-col {
    min-width: 88px;
    max-width: 130px;
  }

  .triplehead {
    gap: 100px;
  }

  .zcs_slider_row_88 {
    margin-top: 1% !important;
    max-width: 90%;
    margin: auto;
  }

  .theme-product-details-style-05
    [data-zs-product-details-primary-section]
    .zpcontainer
    [data-zs-product-primary-details]
    .theme-product-detail-image-container
    .theme-product-detail-thumbnail-container {
    overflow: hidden !important;
  }

  .theme-product-details-style-05
    [data-zs-product-details-primary-section]
    .zpcontainer
    [data-zs-product-primary-details]
    .theme-product-detail-container
    .theme-product-specification-section
    .theme-product-details
    .theme-prod-content-details
    .theme-spec-group
    .theme-spec {
    border-bottom: 1px lightgray solid !important;
  }
}

/* 1) PUT THE LINK BACK AND MAKE IT FULL-AREA */
/* remove the “display: none” you have on overlay-link, then: */
.theme-product-ratio .theme-product-image-area {
  position: relative !important;
}

.theme-product-ratio .theme-product-overlay-link {
  display: block !important; /* override your hide */
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10 !important; /* above the picture layer */
  /* no background, just catches clicks */
}

/* 2) KEEP YOUR TITLE ON TOP */
.theme-product-ratio .theme-product-name h2 {
  position: relative !important;
  z-index: 20 !important; /* above the overlay-link */
  pointer-events: auto !important; /* make sure clicks reach it */
}

/* 3) LET EVERYTHING ELSE PASS CLICKS THROUGH */
.theme-product-ratio .theme-product-quick-view-button,
.theme-product-ratio .theme-product-short-description,
.theme-product-ratio .theme-product-price-area,
.theme-product-ratio .theme-product-list-quantity-addcart {
  pointer-events: auto !important;
}

.accordion-q {
  ⁨⁨⁨color: #282828 !important;
  font-family: "Nunito Sans" !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.accordion-a {
  ⁨⁨⁨color: #282828 !important;
  font-family: "Nunito Sans" !important;
  font-size: 22px !important;
  font-weight: 400 !important;
}

/* Solid primary buttons */
.zpbutton-type-primary:not(.zpbutton-outline):not(.zpbutton-style-none) {
  background: #1b7ba2 !important;
  color: #ffffff !important;
}

/* Fix text-only buttons */
.zpbutton-type-primary.zpbutton-style-none {
  background: transparent !important;
  color: #1b7ba2 !important;
}
