/** Shopify CDN: Minification failed

Line 1834:29 Unexpected "*"
Line 3248:40 Unexpected "*"
Line 3278:40 Unexpected "*"

**/
/* Custom styles for Akiki Pets */

/* Akiki color system - define colors once for easy updates */
:root {
  --akiki-light-bg: #f2f0ef; /* Snow White background for elements */
  --body-text-size: 1.6rem; /* Standard body text size */
  --font-primary: "helvetica-neue-lt-pro", sans-serif !important; /* Primary font family */
  
  /* Unified text color - single source of truth for black/dark text */
  --text-color-dark: #1a1a1a;
  
  /* Consistent section padding for aligned content */
  --section-padding-mobile: 1.5rem;
  --section-padding-desktop: 4rem;
  
  /* Main heading styles - single source of truth */
  --main-heading-font-size: 4rem;
  --main-heading-font-size-tablet: 3.5rem;
  --main-heading-font-size-mobile: 3rem;
  --main-heading-line-height: 1.2;
  --main-heading-font-weight: 400;
}

/* Main heading responsive variables */
@media screen and (max-width: 1024px) {
  :root {
    --main-heading-font-size: var(--main-heading-font-size-tablet);
  }
}

@media screen and (max-width: 768px) {
  :root {
    --main-heading-font-size: var(--main-heading-font-size-mobile);
  }
}

/* Apply font family to main elements */
body,
.section-heading,
.benefit-heading,
.usp-heading,
.process-title,
.ingredients-heading,
.product-details-heading,
.certifications-heading,
.quality-heading,
.promo-heading,
.alternating-rows-title h2,
.alternating-row-content h3,
.header__menu-item,
.banner__heading,
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary) !important;
}

/* Hide search icon */
.header__icon--search {
    display: none !important;
}

/* Hide search modal toggle */
.header__search {
    display: none !important;
}

/* Standard heading styles - using default theme font */
.section-heading,
.benefit-heading,
.usp-heading,
.process-title,
.ingredients-heading,
.product-details-heading,
.certifications-heading,
.quality-heading,
.promo-heading,
.alternating-rows-title h2,
.alternating-row-content h3 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

/* Mobile responsive heading styles */
@media screen and (max-width: 767px) {
  .section-heading,
  .benefit-heading,
  .usp-heading,
  .process-title,
  .ingredients-heading,
  .product-details-heading,
  .certifications-heading,
  .quality-heading,
  .promo-heading,
  .alternating-rows-title h2,
  .alternating-row-content h3 {
    font-size: 2.2rem;
  }
}

/* Header menu adjustments for desktop */
@media screen and (min-width: 990px) {
    /* FORCE FLEXBOX LAYOUT FOR ALL HEADERS - ultra specific selectors to override base.css */
    .shopify-section .header,
    .header.header--top-left,
    .header.header--middle-left,
    .header.header--middle-center,
    .header.header--top-center,
    .header.page-width {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 2rem !important;
        grid-template-areas: none !important;
        grid-template-columns: none !important;
    }
    
    .shopify-section .header .header__heading,
    .header.page-width .header__heading {
        justify-self: start !important;
        grid-area: unset !important;
    }
    
    .shopify-section .header .header__inline-menu,
    .header.page-width .header__inline-menu {
        grid-area: unset !important;
    }
    
    .shopify-section .header .header__icons,
    .header.page-width .header__icons {
        justify-self: end !important;
        grid-area: unset !important;
    }
    
    /* Position menu on the left */
    .header__inline-menu {
        margin-left: 0 !important;
        margin-right: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-self: start !important;
        padding-bottom: 0px !important;
        margin-bottom: 0px !important;
    }
    
    /* Increase font size for menu items */
    .header__menu-item {
        font-size: 1.6rem !important;
        font-weight: 400 !important;
        letter-spacing: 0.05em !important;
        color: var(--text-color-dark, #1a1a1a) !important; /* Make all menu items black */
        display: inline-flex !important; /* Use flexbox for better alignment */
        align-items: center !important; /* Center content vertically */
    }
    
    /* Add more space between menu items */
    .list-menu--inline > li {
        margin-right: 2.5rem !important;
        display: flex !important;
        align-items: center !important; /* Ensure list items are vertically centered */
    }
    
    /* Override the page-width class to allow full-width sections */
    .page-width {
        max-width: 100% !important;
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    
    /* Make header full width */
    .header.page-width {
        max-width: 100% !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
        padding-top: 2rem !important;
        margin-bottom: -20rem !important;
    }
    
    /* Make footer full width */
    .footer.page-width {
        max-width: 100% !important;
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    
    /* Adjust content sections for full width */
    .section:not(.shopify-section-header) {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Ensure images can expand to full width */
    .image-with-text__media img,
    .image-banner__media img,
    .multicolumn-card__image-wrapper img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    /* Ensure banner images are full width and maintain aspect ratio */
    .banner__media {
        width: 100% !important;
    }
    
    /* Adjust grid layouts for full width */
    .grid {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Image banner specific adjustments */
    .image-banner {
        margin: 0 !important;
    }
    
    .image-banner__content {
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
    
    /* Remove any max-width constraints on containers */
    .container {
        max-width: 100% !important;
    }
    
    /* Ensure featured collection is full width */
    .featured-collection {
        margin: 0 !important;
        padding-left: 4rem !important;
        padding-right: 4rem !important;
    }
}

/* Make all menu items black (not just on desktop) */
.header__menu-item {
    color: var(--text-color-dark, #1a1a1a) !important;
}

/* Make sure active menu items are also black */
.header__active-menu-item {
    color: var(--text-color-dark, #1a1a1a) !important;
}

/* Additional styles for mobile */
@media screen and (max-width: 989px) {
    .page-width {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    /* Ensure menu items are black on mobile too */
    .header__menu-item {
        color: var(--text-color-dark, #1a1a1a) !important;
    }
    
    /* Make sure active menu items are also black on mobile */
    .header__active-menu-item {
        color: var(--text-color-dark, #1a1a1a) !important;
    }
}

/* Additional custom styles can be added below */ 

/* Product page specific padding - desktop only */
@media screen and (min-width: 990px) {
    /* Target all product templates with maximum specificity */
    body.template-product .page-width,
    body.template-product.custom-subscription .page-width,
    body[class*="template-product"] .page-width,
    body[class*="product.custom-subscription"] .page-width,
    body .page-width[data-template="product"],
    body .page-width[data-template*="product"],
    /* Target the specific sections */
    .main-product .page-width:not(.customer-results),
    #MainContent .product .page-width:not(.customer-results),
    #shopify-section-template--15541309038792__main .page-width:not(.customer-results),
    #shopify-section-main-product .page-width:not(.customer-results) {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }
}

/* Super important desktop override specifically for product pages */
@media only screen and (min-width: 990px) {
    html body[class*="product"] div.page-width:not(.customer-results),
    html body section.main-product div.page-width:not(.customer-results),
    html body div#MainContent div.page-width:not(.customer-results), 
    html body main#MainContent div.page-width:not(.customer-results) {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
        max-width: 100% !important;
    }
}

/* Remove incorrect inline style from page-width element for mobile */
@media screen and (max-width: 989px) {
    .page-width[style*="padding-left"] {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Override for all other menu items to ensure black text */
.header__menu-item:not([href*="/products/"]) {
    color: var(--text-color-dark, #1a1a1a) !important;
}

.header__menu-item:not([href*="/products/"]) span {
    color: #ffffff !important;
}

.header__menu-item:not([href*="/products/"]) .header__active-menu-item {
    color: #ffffff !important;
}

/* Ensure black text on hover for regular menu items */
.header__menu-item:not([href*="/products/"]):hover,
.header__menu-item:not([href*="/products/"]):focus {
    color: #ffffff !important;
}

.header__menu-item:not([href*="/products/"]):hover span,
.header__menu-item:not([href*="/products/"]):focus span {
    color: #ffffff !important;
}

/* Custom styling for the banner "Jetzt sichern" button */
.banner .button,
.banner__buttons .button,
.banner__box .button,
#shopify-section-image-banner .button,
.image-banner .button--secondary,
.banner .button--secondary {
    background-color: #fff !important; /* White background */
    color: var(--text-color-dark, #1a1a1a) !important; /* Black text */
    border: none !important;
    min-width: 20rem !important;
    padding-left: 3rem !important;
    padding-right: 3rem !important;
    font-weight: 500 !important;
    font-size: 1.6rem !important;
    transition: all 0.3s ease !important;
}

/* Hover state for the banner button - no effect */
.banner .button:hover,
.banner .button:focus,
.banner__buttons .button:hover,
.banner__buttons .button:focus,
.banner__box .button:hover,
.banner__box .button:focus,
#shopify-section-image-banner .button:hover,
#shopify-section-image-banner .button:focus,
.image-banner .button--secondary:hover,
.image-banner .button--secondary:focus,
.banner .button--secondary:hover,
.banner .button--secondary:focus {
    background-color: #fff !important; /* Keep white background */
    color: var(--text-color-dark, #1a1a1a) !important; /* Keep black text */
    text-decoration: none !important;
}

/* Override any default button styling */
.banner .button:after,
.banner .button:before,
.banner__buttons .button:after,
.banner__buttons .button:before,
.banner__box .button:after,
.banner__box .button:before,
#shopify-section-image-banner .button:after,
#shopify-section-image-banner .button:before,
.image-banner .button--secondary:after,
.image-banner .button--secondary:before,
.banner .button--secondary:after,
.banner .button--secondary:before {
    display: none !important;
}

/* Make sure the button text is always visible */
.banner .button span,
.banner__buttons .button span,
.banner__box .button span,
#shopify-section-image-banner .button span,
.image-banner .button--secondary span,
.banner .button--secondary span {
    color: inherit !important;
}

/* Adjust button on mobile */
@media screen and (max-width: 989px) {
    .banner .button,
    .banner__buttons .button,
    .banner__box .button,
    #shopify-section-image-banner .button,
    .image-banner .button--secondary,
    .banner .button--secondary {
        min-width: 18rem !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* Variant Picker Button Styling */
.product-form__input--pill input[type='radio']:checked + label {
  background-color: #3d4127 !important; /* Dark green background when selected */
  color: #fff !important; /* White text when selected */
  border: var(--variant-pills-border-width) solid #3d4127 !important; /* Keep border and set to dark green */
}

/* Add to Cart Button Styling */
.product-form__submit,
.shopify-payment-button__button,
button[name="add"] {
  background-color: #bac095 !important; /* Light sage green background */
  color: var(--text-color-dark, #1a1a1a) !important; /* Black text */
  border: none !important;
  transition: all 0.3s ease !important;
}

.product-form__submit:hover,
.product-form__submit:focus,
.shopify-payment-button__button:hover,
.shopify-payment-button__button:focus,
button[name="add"]:hover,
button[name="add"]:focus {
  background-color: #3d4127 !important; /* Dark green background on hover */
  color: #fff !important; /* White text on hover */
  opacity: 1 !important;
}

/* Override any default button styling for add to cart */
.product-form__submit::after,
.product-form__submit::before,
button[name="add"]::after,
button[name="add"]::before {
  display: none !important;
}

/* Make sure the button text is always visible */
.product-form__submit span,
button[name="add"] span {
  color: inherit !important;
}

/* Hide dynamic checkout buttons - expanded selector to cover all cases */
.shopify-payment-button,
.cart__dynamic-checkout-buttons,
.additional-checkout-buttons,
.dynamic-checkout-buttons,
.additional-checkout-button--apple-pay,
.additional-checkout-button--google-pay,
.additional-checkout-button--shopify-pay,
div[data-shopify="payment-button"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

/* Make the primary checkout button stand out more */
.cart__checkout-button {
  background-color: #3d4127 !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  padding: 1rem !important;
  font-weight: 500 !important;
  transition: all 0.3s ease !important;
}

.cart__checkout-button:hover {
  background-color: #bac095 !important;
  color: var(--text-color-dark, #1a1a1a) !important;
}

/* Custom subscription form styling - complete button styles */
.custom_subscription .option-button,
.custom_subscription .option-section-title,
.custom_subscription .supply-option,
.custom_subscription .supply-title,
.custom_subscription .supply-description,
.option-section .option-button,
#age-buttons .option-button,
#weight-buttons .option-button,
button.option-button,
.option-buttons button {
  color: var(--text-color-dark, #1a1a1a) !important;
  -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
  text-decoration: none !important;
  flex: 1 !important;
  width: 100% !important;
  padding: 6px 2px !important;
  background: white !important;
  border: 2px solid #e0e0e0 !important;
  border-radius: 1rem !important; /* Changed from 5px to 0 */
  cursor: pointer !important;
  font-size: 1.6rem !important;
  font-weight: 400 !important;
  transition: all 0s ease !important;
  white-space: nowrap !important;
  text-align: center !important;
  min-width: 0 !important;
  margin-bottom: 4px !important;
  opacity: 1 !important; /* Changed from 0.5 to 1 */
  filter: none !important; /* Removed grayscale filter */
}

/* Hover state - removing effects */
.custom_subscription .option-button:hover,
.option-section .option-button:hover,
#age-buttons .option-button:hover,
#weight-buttons .option-button:hover,
button.option-button:hover,
.option-buttons button:hover {
  transform: none !important;
}

/* Selected state for all devices */
html body .custom_subscription .option-button.selected,
html body .option-section .option-button.selected,
html body #age-buttons .option-button.selected,
html body #weight-buttons .option-button.selected,
html body button.option-button.selected,
html body .option-buttons button.selected {
  background-color: white !important; /* Changed from white to akiki-light-bg */
  color: var(--text-color-dark, #1a1a1a) !important;
  -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
  border: 2px solid black !important; /* Changed from black to akiki-light-bg */
  opacity: 1 !important;
  font-weight: 500 !important; /* Changed from 700 to 600 */
}

/* Supply option default (unselected) state */
.supply-option {
  opacity: 1 !important;
  filter: none !important;
  transition: none !important;
  cursor: pointer !important;
  border-radius: 1rem !important; /* Changed from 5px to 0 */
  border: 2px solid #e5e5e5 !important;
}

/* Supply option selected state */
.supply-option.selected {
  opacity: 1 !important;
  filter: none !important;
  background-color: white !important;
  border: 2px solid black !important;
  box-shadow: none !important;
  outline: none !important;
  transition: none !important;
}

/* "In den Warenkorb" button styling */
.add-to-cart-btn {
  background: #000000 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  padding: 18px 15px !important;
  border-radius: 1rem !important; /* Changed from 5px to 0 */
  transition: all 0.2s ease !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}



/* Discount label styling */
.supply-savings {
  background: #bac095 !important;
  color: var(--text-color-dark, #1a1a1a) !important;
  -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
}

/* Mobile specific fixes with maximum specificity */
@media screen and (max-width: 989px) {
  html body .custom_subscription .option-button,
  html body .option-section .option-button,
  html body #age-buttons .option-button,
  html body #weight-buttons .option-button,
  html body button.option-button,
  html body .option-buttons button {
    color: var(--text-color-dark, #1a1a1a) !important;
    -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
    text-decoration: none !important;
    text-decoration-color: transparent !important;
    opacity: 1 !important; /* Added to ensure consistency on mobile */
    filter: none !important; /* Added to ensure consistency on mobile */
  }
  
  html body .custom_subscription .option-button.selected,
  html body .option-section .option-button.selected,
  html body #age-buttons .option-button.selected,
  html body #weight-buttons .option-button.selected,
  html body button.option-button.selected,
  html body .option-buttons button.selected {
    color: var(--text-color-dark, #1a1a1a) !important;
    -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
    background-color: white !important; /* Changed from white to akiki-light-bg */
    border: 2px solid black !important; /* Changed from black to akiki-light-bg */
    font-weight: 500 !important; /* Changed from 700 to 600 */
  }
  
  /* Override webkit tap highlight color */
  .option-button, 
  #age-buttons button, 
  #weight-buttons button {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  }
}

/* Override star rating colors to use light blue */
.icon-star, 
.icon-star-fill, 
.icon-star-half,
.rating__star,
.icon.rating__icon,
.rating .icon-star-fill,
.icon.icon-star-fill,
.rating__stars .icon-star-empty,
.rating__star[aria-hidden="true"],
.rating__stars .star-rating-icon {
  color: #b1c2db !important;
  fill: #b1c2db !important;
}

.rating,
.rating__stars,
.star-rating {
  color: #b1c2db !important;
}

/* Subscription toggle button styling */
.purchase-type-toggle {
  display: flex !important;
  background-color: white !important;
  border: 1px solid #000 !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin-bottom: 1rem !important;
  width: 100% !important;
}

.purchase-type-toggle button,
.toggle-button {
  flex: 1 !important;
  color: var(--text-color-dark, #1a1a1a) !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: white !important;
  padding: 4px 4px !important;
  font-size: 1.5rem !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  transition: none !important;
  -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  margin: 0 !important;
  position: relative !important;
}

.purchase-type-toggle button.selected,
.purchase-type-toggle button.active {
  background-color: var(--text-color-dark, #1a1a1a) !important;
  color: rgb(255, 255, 255) !important;
  font-weight: 500 !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

/* Override the general button selected state for subscription toggle */
html body .purchase-type-toggle button.selected,
html body .purchase-type-toggle button.active {
  background-color: var(--text-color-dark, #1a1a1a) !important;
  color: rgb(255, 255, 255) !important;
  font-weight: 500 !important;
  box-shadow: none !important;
}

/* Remove conflicting styles */
html body .purchase-type-toggle,
html body div.purchase-type-toggle,
html body .product-form .purchase-type-toggle,
html body #MainContent .purchase-type-toggle {
  border-radius: 50px !important;
  overflow: hidden !important;
}

html body .purchase-type-toggle button,
html body div.purchase-type-toggle button,
html body .product-form .purchase-type-toggle button,
html body #MainContent .purchase-type-toggle button {
  border-radius: 0 !important;
}

/* Keep the original white background for weight/age buttons */
html body .custom_subscription .option-button.selected:not(.purchase-type-toggle button),
html body .option-section .option-button.selected:not(.purchase-type-toggle button),
html body #age-buttons .option-button.selected:not(.purchase-type-toggle button),
html body #weight-buttons .option-button.selected:not(.purchase-type-toggle button),
html body button.option-button.selected:not(.purchase-type-toggle button),
html body .option-buttons button.selected:not(.purchase-type-toggle button) {
  background-color: white !important;;
  -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
  border: 2px solid black !important; /* Changed from black to akiki-light-bg */
  font-weight: 500 !important; /* Changed from 700 to 600 */
}

/* Availability message styling */
.availability-message {
  display: flex !important;
  align-items: center !important;
  font-size: 1.5rem !important;
  color: #2e7d32 !important; /* green */
  margin-top: 0.5rem !important;
  font-weight: 500 !important;
  justify-content: center !important;
}

.availability-message .dot {
  width: 10px !important;
  height: 10px !important;
  background-color: #2e7d32 !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin-right: 0.5rem !important;
}

/* Styling for the info boxes */
.info-box {
  padding: 0.2rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 1rem;
}

.weight-info-box {
  background: #f5f5f5 !important;
  border-radius: 0 !important;
  text-align: center;
}

/* Supply options and toggle styling with high specificity */
html body .supply-option,
html body div.supply-option,
html body .product-form .supply-option,
html body #MainContent .supply-option,
html body [class*="product"] .supply-option {
  border-radius: 1rem !important;
  overflow: hidden !important;
}

html body .purchase-type-toggle,
html body div.purchase-type-toggle,
html body .product-form .purchase-type-toggle,
html body #MainContent .purchase-type-toggle {
  border-radius: 1rem !important;
  overflow: hidden !important;
}

html body .purchase-type-toggle button,
html body div.purchase-type-toggle button,
html body .product-form .purchase-type-toggle button,
html body #MainContent .purchase-type-toggle button {
  border-radius: 0 !important;
}

/* Ensure supply options maintain 5px radius even when selected */
html body .supply-option.selected,
html body div.supply-option.selected,
html body .product-form .supply-option.selected,
html body #MainContent .supply-option.selected,
html body [class*="product"] .supply-option.selected {
  border-radius: 1rem !important;
}


/* Keep border-radius for toggle buttons */
.purchase-type-toggle button,
.purchase-type-toggle button.selected,
.purchase-type-toggle button.active {
  border-radius: 50px !important;
}

/* Benefit Icons Section Styles */
.benefit-icons-section {
  padding: 4rem 1rem;
  background-color: #ffffff;
}

.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-image {
  flex: 1 1 40%;
  text-align: center;
}

.benefit-image img {
  max-width: 85%;
  height: auto;
  border-radius: 0;
}

.benefit-content {
  flex: 1 1 40%;
  padding-left: 20px;
}

.benefit-heading {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.benefit-subheading {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  padding-left: -20px;
  margin-left: 0;
}

.benefit-icons {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 100%;
  margin-left: 0;
  padding-left: 20px;
}

.benefit-left,
.benefit-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.icon-box {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.7rem 1rem 0.7rem 3.5rem;
  background: #eef3ff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.6rem;
  height: 60px;
  width: 100%;
  max-width: 220px;
}

.icon-box img {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
}

.link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  max-width: 220px;
}

.about-link {
  font-weight: bold;
  color: #002f54;
  text-decoration: underline;
  font-size: 1.6rem;
}

/* Mobile styles for benefit icons section */
@media screen and (max-width: 767px) {
  .benefit-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .benefit-image, 
  .benefit-content {
    flex: 1 1 100%;
  }
  
  .benefit-image img {
    max-width: 70%;
  }
  
  .benefit-content {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
    width: 90%;
  }
  
  .benefit-heading {
    font-size: 2.2rem;
    padding-left: 0;
    margin-left: 0;
  }
  
  .benefit-subheading {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    padding-left: 0;
    margin-left: 0;
  }
  
  .benefit-icons {
    padding-left: 25px;
    margin: 0 auto;
    width: 100%;
    gap: 1rem;
  }
  
  .icon-box {
    max-width: 130px;
    font-size: 1.6rem;
    height: 50px;
    padding: 0.5rem 0.5rem 0.5rem 2.5rem;
  }
  
  .icon-box img {
    width: 30px;
    height: 30px;
    left: -15px;
  }
  
  .link-box {
    max-width: 130px;
    height: 50px;
  }
  
  .about-link {
    font-size: 1.6rem;
  }
}

/* Scrolling Banner Styles */
.scrolling-banner {
  overflow: hidden;
  background: var(--akiki-light-bg);
  border-top: none;
  border-bottom: none;
  padding: 0.75rem 0;
  white-space: nowrap;
  width: 100%;
  margin-top: 0;
}

.banner-track {
  display: flex;
  gap: 15rem;
  animation: scroll-left 25s linear infinite;
}

.banner-content {
  display: flex;
  gap: 15rem;
  font-size: 1.6rem;
  font-weight: normal;
  color: #333;
}

.banner-content span {
  flex-shrink: 0;
}

.banner-content span .check {
  color: #2e7d32;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile styles for scrolling banner */
@media screen and (max-width: 767px) {
  .scrolling-banner {
    padding: 0.5rem 0;
    margin-top: 0;
  }
  
  .banner-track {
    gap: 9rem;
    animation-duration: 20s;
  }
  
  .banner-content {
    gap: 9rem;
    font-size: 1.6rem;
  }
}

/* Ingredients Grid Section Styles */
.ingredients-section {
  padding: 1rem 1rem 1rem 1rem;
  text-align: center;
  background: #ffffff;
}

.ingredients-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 3.2rem !important;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ingredients-subheading {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0 0 1rem 0;
}

.ingredient-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ingredient-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.ingredient-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ingredient-description {
  font-size: 1.6rem;
  color: #444;
}

.ingredient-study {
  font-size: 1.6rem;
  color: #002f54;
  text-decoration: underline;
  margin-top: 0.5rem;
  display: inline-block;
}

/* Hover animation – desktop only */
@media (hover: hover) and (pointer: fine) {
  /* Removing hover effects
  .ingredient-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .ingredient-card:hover .ingredient-image {
    transform: scale(1.05);
  }
  */
}

/* Tablet */
@media screen and (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media screen and (max-width: 576px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .ingredients-heading {
    font-size: 2.2rem;
  }
  
  .ingredients-subheading {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
  }
  
  .ingredient-title {
    font-size: 1.4rem;
  }
  
  .ingredient-description {
    font-size: 1.6rem;
  }
  
  .ingredient-study {
    font-size: 1.6rem;
  }
}

/* Make banner heading bolder */
.banner__heading.inline-richtext.hxxl {
  font-weight: 900;
}

/* Mobile specific font size for banner heading */
@media screen and (max-width: 749px) {
  .banner__heading {
    font-size: 4.5rem !important;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  .mobile-only {
    display: block !important;
  }
}

@media screen and (min-width: 750px) {
  .mobile-only {
    display: none !important;
  }
  
  .desktop-only {
    display: block !important;
  }
}

/* Desktop specific styles for the banner heading */
@media screen and (min-width: 750px) {
  /* Show desktop heading text on desktop */
  .banner-heading-desktop {
    display: block !important;
  }
  
  /* Hide mobile heading text on desktop */
  .banner-heading-mobile {
    display: none !important;
  }
}

/* Akiki Process Timeline Styles */
.akiki-process {
  padding: 4rem 1rem;
  background: #fff;
}

.process-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.process-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
}

.process-intro {
  text-align: center;
  color: #555;
  margin-bottom: 4rem;
  font-size: 1.6rem;
}

.timeline {
  position: relative;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #d0d0d0;
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  width: 50%;
  padding: 1rem 2rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 1.2rem;
  width: 14px;
  height: 14px;
  background: #002f54;
  border-radius: 50%;
  border: 3px solid white;
  z-index: 2;
}

.process-step.left {
  left: 0;
  text-align: right;
}

.process-step.left::before {
  right: -7px;
}

.process-step.right {
  left: 50%;
  text-align: left;
}

.process-step.right::before {
  left: -7px;
}

.content {
  background: #f9f9f9;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.process-step h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.process-step p {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333;
}

.process-step a {
  color: #002f54;
  text-decoration: underline;
}

.process-step a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 8px;
  }
  
  .process-step {
    width: 100%;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  
  .process-step.left,
  .process-step.right {
    left: 0;
    text-align: left;
  }
  
  .process-step::before {
    left: 0;
  }
  
  .process-title {
    font-size: 2rem;
  }
  
  .process-intro {
    font-size: 1.6rem;
  }
  
  .process-step h3 {
    font-size: 1.6rem;
  }
  
  .process-step p {
    font-size: 1.6rem;
  }
}

/* ====================================================================
   JETZT SICHERN BUTTON STYLES - SINGLE SOURCE OF TRUTH
   ==================================================================== */

/* Base style */
.header__menu-item[href*="/products/"] {
    border-radius: 4px !important;
    padding: 0.6rem 1.5rem 0.6rem 1.5rem !important; /* Equal padding top and bottom */
    transition: all 0.3s ease !important;
    position: relative !important;
    display: flex !important; /* Changed to flex instead of inline-flex */
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    line-height: 1 !important;
    margin-top: 0 !important;
    box-sizing: border-box !important; /* Ensure padding is included in element height */
    height: 38px !important; /* Set a fixed height */
    
    /* Black background, white text, no border */
    background-color: var(--text-color-dark, #1a1a1a) !important;
    color: #ffffff !important;
    border: none !important;
    
    /* Ensure no box-shadow, text-shadow or other decorations */
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Ensure child elements inherit the correct colors and are properly centered */
.header__menu-item[href*="/products/"] span,
.header__menu-item[href*="/products/"] .header__active-menu-item,
html body .header__menu-item[href*="/products/"] span,
html body .header__menu-item[href*="/products/"] .header__active-menu-item {
    color: inherit !important;
    text-decoration: inherit !important;
    display: block !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hover state - grey background, black text */
.header__menu-item[href*="/products/"]:hover,
.header__menu-item[href*="/products/"]:focus,
html body .header__menu-item[href*="/products/"]:hover,
html body .header__menu-item[href*="/products/"]:focus {
    background-color: #f5f5f5 !important;
    color: var(--text-color-dark, #1a1a1a) !important;
    text-decoration: none !important;
    border: none !important;
}

/* Active state - grey background, black text */
.header__menu-item[href*="/products/"][aria-current="page"],
.header__menu-item[href*="/products/"].header__menu-item--active,
html body .header__menu-item[href*="/products/"][aria-current="page"],
html body .header__menu-item[href*="/products/"].header__menu-item--active,
html body header .header__menu-item[href*="/products/"][aria-current="page"],
html body header .header__menu-item[href*="/products/"].header__menu-item--active {
    background-color: #f5f5f5 !important;
    color: var(--text-color-dark, #1a1a1a) !important;
    text-decoration: none !important;
    border: none !important;
}

/* Remove any default underlines or decorations */
.header__menu-item[href*="/products/"]::before,
.header__menu-item[href*="/products/"]::after,
html body .header__menu-item[href*="/products/"]::before,
html body .header__menu-item[href*="/products/"]::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Mobile specific overrides */
@media screen and (max-width: 989px) {
    .header__menu-item[href*="/products/"],
    html body .header__menu-item[href*="/products/"] {
        padding: 0.6rem 1.2rem !important;
        margin-top: 0.5rem !important;
        display: inline-block !important;
        
        /* Black background, white text */
        background-color: var(--text-color-dark, #1a1a1a) !important;
        color: #ffffff !important;
    }
}

/* USP Section Styles */
.usp-section {
  padding: 4rem 0rem;
  background-color: #ffffff;
}

.usp-grid {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 8rem;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.usp-content {
  flex: 1 1 40% !important;
  padding-left: 20px;
  order: 1 !important;
  width: 40% !important;
  min-width: 40% !important;
}

.usp-image {
  flex: 1 1 40% !important;
  text-align: center;
  order: 2 !important;
  width: 40% !important;
  min-width: 40% !important;
}

.usp-image img {
  max-width: 85%;
  height: auto;
  border-radius: 0;
}

.usp-heading {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.usp-subheading {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}

/* New Feature List Style */
.usp-feature-list {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.usp-feature {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.usp-feature-icon {
  flex-shrink: 0;
}

.usp-feature-icon img {
  width: 32px;
  height: 32px;
}

.usp-feature-content {
  flex: 1;
}

.usp-feature-title {
  margin: 0 0 0.5rem 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-color-dark, #1a1a1a);
}

.usp-feature-text {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333;
  font-weight: 400;
}

.usp-button {
  margin-top: 3rem;
}

.usp-button .button {
  font-weight: bold;
  color: #002f54;
  text-decoration: underline;
  font-size: 1.6rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.usp-button .button:hover {
  color: #004a8f;
}

/* Mobile styles for USP section */
@media screen and (max-width: 767px) {
  .usp-grid {
    flex-direction: column !important;
    gap: 3rem;
    display: flex !important;
    flex-wrap: wrap !important;
  }
  
  .usp-image, 
  .usp-content {
    flex: 1 1 100%;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    display: block !important;
  }
  
  .usp-image {
    order: 2 !important;
    display: block !important;
    visibility: visible !important;
    margin-top: 2rem;
    height: auto !important;
    overflow: visible !important;
    min-height: 250px !important;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .usp-content {
    order: 1 !important;
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
    width: 90%;
  }
  
  .usp-image img {
    max-width: 70%;
    display: block !important;
    visibility: visible !important;
    margin: 0 auto;
    height: auto !important;
    opacity: 1 !important;
  }
  
  .usp-heading {
    font-size: 2.2rem;
  }
  
  .usp-subheading {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
  
  .usp-feature-list {
    gap: 1.5rem;
  }
  
  .usp-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .usp-feature-title {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
  }
  
  .usp-feature-text {
    font-size: 1.6rem;
  }
  
  .usp-button .button {
    font-size: 1.6rem;
  }
}

/* Hide icon-box and other old classes in case they appear elsewhere */
.icon-box,
.icon-img,
.icon-text-container,
.icon-title,
.icon-desc,
.usp-icons,
.usp-left {
  display: none !important;
}

/* Restore proper styling for benefit-icons section */
.benefit-icons-section .icon-box {
  display: flex !important;
}

.benefit-icons-section .benefit-left,
.benefit-icons-section .benefit-right {
  display: flex !important;
  flex-direction: column !important;
}

.benefit-icons-section .link-box {
  display: flex !important;
}

/* Ingredients Slider Section Styles */
.ingredients-slider-section {
  padding: 4rem 1rem;
  text-align: center;
  background: #fafafa;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  position: relative; /* Create stacking context */
  width: 100%;
}

.ingredients-slider {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden; /* Prevent horizontal scrolling */
}

.swiper-wrapper {
  width: 100%;
  overflow: visible; /* Allow slides to be visible outside container */
}

/* Fix potential swiper container overflow issues */
.ingredients-slider .swiper-container {
  overflow: hidden;
  width: 100%;
  padding: 1rem 4rem 6rem;
  position: relative;
}

.ingredients-slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.ingredients-slider .ingredient-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.ingredients-slider .ingredient-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.ingredients-slider .ingredient-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ingredients-slider .ingredient-description {
  font-size: 1.6rem;
  color: #444;
}

.ingredients-slider .ingredient-study {
  font-size: 1.6rem;
  color: #002f54;
  text-decoration: underline;
  margin-top: 0.5rem;
  display: inline-block;
}

/* Override Swiper default styling */
.ingredients-slider .swiper-button-next,
.ingredients-slider .swiper-button-prev {
  color: #002f54;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
  visibility: visible;
  opacity: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.ingredients-slider .swiper-button-next:after,
.ingredients-slider .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.ingredients-slider .swiper-button-next {
  right: 0;
}

.ingredients-slider .swiper-button-prev {
  left: 0;
}

.ingredients-slider .swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.ingredients-slider .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding-top: 2.5rem;
}

.ingredients-slider .swiper-pagination-bullet-active {
  background: #002f54;
}

/* Hover animation for slider – desktop only */
@media (hover: hover) and (pointer: fine) {
  /* Removing hover effects
  .ingredients-slider .swiper-slide-active .ingredient-card {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .ingredients-slider .swiper-slide-active .ingredient-image {
    transform: scale(1.05);
  }
  */
}

/* Mobile */
@media screen and (max-width: 576px) {
  .ingredients-slider .swiper-container {
    padding: 1rem 3rem 6rem;
  }
  
  .ingredients-slider .ingredient-card {
    max-width: 255px;
  }
  
  .ingredients-slider .ingredient-title {
    font-size: 1.6rem;
  }
  
  .ingredients-slider .ingredient-description {
    font-size: 1.6rem;
  }
  
  .ingredients-slider .ingredient-study {
    font-size: 1.6rem;
  }
  
  .ingredients-slider .swiper-button-next,
  .ingredients-slider .swiper-button-prev {
    width: 35px;
    height: 35px;
  }
  
  .ingredients-slider .swiper-button-next:after,
  .ingredients-slider .swiper-button-prev:after {
    font-size: 16px;
  }
}

/* Mobile-only modifications for zutaten page */
@media screen and (max-width: 749px) {
  /* Hide the banner subtitle on zutaten page */
  .template--page.page-zutaten #image_banner_NQ4VPp .banner__text,
  .page--zutaten #image_banner_NQ4VPp .banner__text,
  #shopify-section-image_banner_NQ4VPp .banner__text,
  #shopify-section-template--*__image_banner_NQ4VPp .banner__text,
  [id*="shopify-section"][id*="image_banner_NQ4VPp"] .banner__text,
  #MainContent [id*="image_banner_NQ4VPp"] .text_kpYLah,
  #MainContent .banner__text[class*="text_kpYLah"],
  #MainContent .banner__text.rte.caption-with-letter-spacing,
  html body .banner .text_kpYLah,
  /* Hide banner hero subtitle on wissenschaft page with higher specificity */
  html body.template--page.page-wissenschaft .banner-hero__mobile-subheading,
  html body.page--wissenschaft .banner-hero__mobile-subheading,
  body.template--page.page-wissenschaft .banner-hero__mobile-subheading,
  body.page--wissenschaft .banner-hero__mobile-subheading,
  html body .template--page.page-wissenschaft .banner-hero__mobile-subheading,
  html body .page--wissenschaft .banner-hero__mobile-subheading,
  div.template--page.page-wissenschaft .banner-hero__mobile-subheading,
  div.page--wissenschaft .banner-hero__mobile-subheading,
  html body.template--page.page-zutaten .banner-hero__mobile-subheading,
  html body.page--zutaten .banner-hero__mobile-subheading,
  body.template--page.page-zutaten .banner-hero__mobile-subheading,
  body.page--zutaten .banner-hero__mobile-subheading,
  html body .template--page.page-zutaten .banner-hero__mobile-subheading,
  html body .page--zutaten .banner-hero__mobile-subheading,
  div.template--page.page-zutaten .banner-hero__mobile-subheading,
  div.page--zutaten .banner-hero__mobile-subheading,
  #BannerHero-banner_hero_jrVzKq .banner-hero__mobile-subheading {
    text-align: left !important;
    /* margin: 16px !important; */
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Mobile-only text box below the banner */
  .mobile-only-subtitle {
    display: block;
    padding: 2.5rem 1.5rem 1rem;
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.5;
    font-weight: 400;
    color: #333;
  }
  
  .mobile-only-subtitle p {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 0;
  }
  
  .mobile-subtitle-section {
    background-color: #fafafa;
    padding-bottom: 1.5rem;
  }
}

/* Add this right before the responsive styles */
#BannerHero-banner_hero_jrVzKq .banner-hero__mobile-subheading.page-width,
body.template--page.page-wissenschaft .banner-hero__mobile-subheading.page-width,
html body[class*="wissenschaft"] .banner-hero__mobile-subheading.page-width,
.wissenschaft-page .banner-hero__mobile-subheading.page-width {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  opacity: 0 !important;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
  .alternating-row {
    flex-direction: column !important;
    margin-bottom: 60px;
  }
  
  .row-reversed {
    flex-direction: column !important;
  }
  
  .alternating-row-image,
  .alternating-row-content {
    flex: none;
    width: 100%;
  }
  
  .alternating-row-content {
    padding: 2.5rem 2rem;
    text-align: center;
  }
  
  .alternating-row-img {
    width: 100%;
    height: auto;
  }
  
  .alternating-rows-title h2 {
    font-size: 28px;
  }
  
  .alternating-row-content h3 {
    font-size: 22px;
  }
  
  /* Fix for rows 2 and 4 (even rows) to display image above text */
  .row-reversed .alternating-row-image {
    order: -1 !important;
  }
  
  /* Ensure proper stacking for all rows */
  .alternating-row {
    display: flex !important;
    flex-wrap: wrap !important;
  }
  
  .alternating-row-image {
    order: 0 !important;
  }
  
  .alternating-row-content {
    order: 1 !important;
  }
}

/* Certifications Section */
.certifications-section {
  padding: 40px 0;
  background-color: #ffffff;
  text-align: center;
}

.certifications-heading {
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text-color-dark, #1a1a1a);
  margin-bottom: 60px;
  text-align: center;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.certification-item {
  flex: 1 1 250px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.certification-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000000;
  margin-bottom: 0;
  overflow: hidden;
}

.certification-icon img {
  max-width: 65px;
  max-height: 65px;
  object-fit: contain;
}

.placeholder-icon {
  width: 65px;
  height: 65px;
  background-color: #e5e5e5;
  border-radius: 50%;
}

.certification-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-color-dark, #1a1a1a);
  margin-bottom: 15px;
}

.certification-text {
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .certifications-section {
    padding: 30px 20px;
  }
  
  .certifications-heading {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }
  
  .certifications-grid {
    gap: 30px;
  }
  
  .certification-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .certification-title {
    font-size: 1.8rem;
  }
  
  .certification-text {
    font-size: 1.6rem;
  }
}

/* Product details section - Font size updates */
.product-details-subheading {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-info-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Mobile styles for product details */
@media screen and (max-width: 767px) {
  .product-details-subheading {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .product-info-title {
    font-size: 1.6rem;
  }
}

/* Quality link font size */
.quality-link .about-link {
  font-weight: bold;
  color: var(--text-color-dark, #1a1a1a);
  text-decoration: underline;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .quality-link .about-link {
    font-size: 1.6rem;
    color: var(--text-color-dark, #1a1a1a);
  }
  
  .quality-subheading {
    font-size: 1.6rem;
  }
}

/* Promo button link */
.promo-button-link {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  border: 1px solid black;
  padding: 0.8rem 2rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  min-width: 30%;
  text-align: center;
}

.promo-button {
  margin-top: 3rem;
}

/* Mobile styles for Promo Section */
@media screen and (max-width: 768px) {
  .promo-subheading {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }
  
  .promo-button {
    margin-top: 2rem;
  }
  
  .promo-button-link {
    padding: 0.7rem 1.5rem;
    font-size: 1.6rem;
    min-width: 80%;
  }
  
  .promo-below-button {
    justify-content: center !important;
    margin-top: 1.5rem;
    text-align: center;
  }
  
  .promo-below-button-text {
    font-size: 1.4rem;
  }
}

/* Placeholder content */
.placeholder-content {
  font-size: 1.6rem;
  color: #777;
}

/* Certification text */
.certification-text {
  font-size: 1.6rem;
  line-height: 1.5;
}

/* Banner Hero Section Styles */
.banner-hero {
  position: relative;
  margin-bottom: 0;
}

.banner-hero__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}

.banner-hero__media-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}



.banner-hero__media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0rem 0rem 3rem 3rem;
}

.banner-hero__media--desktop {
  display: block;
}

.banner-hero__media--mobile {
  display: none;
}

.banner-hero__content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 5rem;
  z-index: 2;
}

.banner-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: transparent;
  margin-top: 2rem;
}

.banner-hero__heading {
  margin: 0;
  color: #ffffff;
  font-weight: 500;
  font-size: 6rem;
}

.banner-hero__subheading {
  color: #ffffff;
  max-width: 800px;
  font-size: 4rem;
}

.banner-hero__desktop-subheading {
  display: block;
}

.banner-hero__mobile-subheading {
  display: none;
  padding: 1rem 1.5rem;
  background-color: #fff;
  text-align: center;
}

.banner-hero__mobile-subheading .banner-hero__subheading {
  color: var(--text-color-dark, #1a1a1a);
  margin: 0 auto;
  font-size: 1.8rem;
}

@media screen and (max-width: 749px) {
  .banner-hero__media--desktop {
    display: none;
  }
  
  .banner-hero__media--mobile {
    display: block;
  }
  
  .banner-hero__content-overlay {
    padding-top: 3rem;
  }
  
  .banner-hero__desktop-subheading {
    display: none;
  }
  
  .banner-hero__mobile-subheading {
    display: block;
  }
  
  .banner-hero__content {
    padding: 1.5rem;
  }
  
  .banner-hero__subheading {
    font-size: 1.5rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 1024px) {
  .banner-hero__heading h0,
  .banner-hero__heading.h0,
  h0.banner-hero__heading {
    font-size: 3rem !important;
    line-height: 1.2 !important;
  }
  
  .banner-hero__content-overlay.page-width {
    padding-top: 3rem !important;
  }
}

/* Product Details Section */
.product-details-section {
  padding: 1rem 1rem 4rem 1rem;
  text-align: center;
  background: #ffffff;
}

.product-details-heading {
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-details-subheading {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-info-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--akiki-light-bg);
  padding: 3rem;
  border-radius: 0;
  border: 1px solid #000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.product-info-section {
  margin-bottom: 2rem;
}

.product-info-section:last-child {
  margin-bottom: 0;
}

.product-info-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.product-info-content {
  font-size: 1.6rem;
  line-height: 1.5;
}

.product-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-info-item {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
}

.manufacturer-info {
  font-size: 1.6rem;
  color: #666;
  margin-top: 1rem;
}

/* Mobile styling for product details */
@media screen and (max-width: 767px) {
  .product-details-section {
    padding: 1rem 1rem 3rem 1rem;
  }
  
  .product-details-heading {
    font-size: 2.2rem;
  }
}

/* Quality Section Styles */
.quality-section {
  padding: 4rem 1.5rem;
  text-align: center;
  background: white;
  width: 100%;
}

.quality-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.quality-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-style: italic;
}

.quality-heading::first-line {
  font-style: italic;
  font-weight: 400;
}

.quality-image-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 1rem;
}

.reduced-margin-bottom {
  margin-bottom: -2rem;
}

.quality-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.quality-text {
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.quality-subheading {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1.5rem;
  margin-top: -0.5rem;
  padding: 0;
}

.quality-link {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.quality-link .about-link {
  font-weight: bold;
  color: var(--text-color-dark, #1a1a1a);
  text-decoration: underline;
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  .quality-section {
    padding: 30px 20px;
  }

  .quality-heading {
    font-size: 2.8rem;
    margin-bottom: 40px;
  }

  .quality-image-container {
    max-width: 300px;
  }
}

/* Promo Section Styles */
.promo-section {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.promo-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
}

.promo-image {
  flex: 1;
  display: flex;
  min-height: 100%;
}

.promo-image-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-content {
  flex: 1;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-content-inner {
  padding: 3rem 3rem 3rem 6rem;
}

.promo-heading {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.promo-subheading {
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}


.promo-button-link:hover {
  background: #ffffff;
  color: var(--text-color-dark, #1a1a1a);
}

.promo-below-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 1rem;
}

.promo-below-button-icon {
  display: flex;
  align-items: center;
}

.promo-below-button-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.promo-below-button-text {
  font-size: 1.4rem;
  color: var(--text-color-dark, #1a1a1a);
  font-weight: 400;
}

/* Mobile styles for Promo Section */
@media screen and (max-width: 768px) {
  .promo-grid {
    flex-direction: column;
  }
  
  .promo-image,
  .promo-content {
    flex: none;
    width: 100%;
  }
  
  .promo-content-inner {
    padding: 2.5rem 1rem;
    text-align: center;
    margin: 0 auto;
  }
  
  .promo-heading {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
}

/* Alternating Rows Section Styles */
.alternating-rows-section {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.alternating-rows-title {
  text-align: center;
  margin-bottom: 40px;
  padding: 60px 20px 0;
}

.alternating-rows-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin: 0;
}

.alternating-rows-subtitle {
  margin-top: 15px;
  font-size: 1.6rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.alternating-rows-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

.alternating-row {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.alternating-row:last-child {
    margin-bottom: 0;
}

.alternating-row-image,
.alternating-row-content {
    flex: 1;
    min-width: 0;
}

@media screen and (min-width: 769px) {
    .alternating-row {
        flex-direction: row;
        justify-content: space-between;
    }

    .alternating-row-image {
        width: 50%;
        flex: 0 0 50%;
        min-width: 0;
    }

    .alternating-row-content {
        width: 50%;
        flex: 0 0 50%;
        min-width: 0;
        padding: 0 8rem;
        box-sizing: border-box;
    }

    .row-reversed {
        flex-direction: row-reverse;
    }
}

.alternating-row-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.alternating-row-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.alternating-row-content h3 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    line-height: 1.2;
    text-align: left;
    font-weight: 400;
}

.alternating-row-bullets {
    margin-bottom: 2rem;
    text-align: left;
}

.alternating-row-bullet {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.alternating-row-bullet-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    line-height: 1.4;
    font-size: 1.6rem;
    text-align: left;
    font-weight: 400;
}

.alternating-row-subheading {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.6rem;
    text-align: left;
    font-weight: 400;
}

@media (max-width: 768px) {
    .alternating-row-content {
        text-align: left;
    }

    .alternating-row-content h3 {
        text-align: left;
        font-weight: 400;
    }

    .alternating-row-bullets {
        text-align: left;
    }

    .alternating-row-bullet {
        justify-content: flex-start;
        text-align: left;
    }

    .alternating-row-bullet-text {
        text-align: left;
        font-weight: 400;
    }

    .alternating-row-subheading {
        text-align: left;
        font-weight: 400;
    }
}

/* Placeholder for empty section */
.placeholder {
  padding: 40px;
  background: #f8f8f8;
  text-align: center;
  border-radius: 8px;
}

.placeholder-content {
  font-size: 1.6rem;
  color: #777;
}

/* Mobile styles for testimonials section */
@media screen and (max-width: 767px) {
  .testimonials-section .section-heading,
  .testimonials-section .testimonials-heading,
  .testimonials-section h2 {
    text-align: left !important;
    padding-left: 0rem !important;
  }
  
  .testimonials-section .testimonials-subheading,
  .testimonials-section .section-subheading {
    text-align: left !important;
    padding-left: 0rem !important;
  }
}

/* Mobile styles for ingredients-short-section */
@media screen and (max-width: 767px) {
  .ingredients-short-section .ingredients-heading,
  .ingredients-short-section .section-heading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .ingredients-short-section .ingredients-subheading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .ingredients-short-section .ingredients-link-container {
    text-align: left !important;
    padding-left: 2rem !important;
  }
}

/* Mobile styles for akiki-process section */
@media screen and (max-width: 767px) {
  .akiki-process .process-title,
  .akiki-process .section-heading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .akiki-process .process-intro {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .akiki-process .process-bottom-heading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .akiki-process .process-bottom-subheading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .akiki-process .process-bottom-text {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .akiki-process .process-link-container {
    text-align: left !important;
    padding-left: 2rem !important;
  }
}

/* Mobile styles for quality section */
@media screen and (max-width: 767px) {
  .quality-section .quality-heading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .quality-section .quality-subheading {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .quality-section .quality-text {
    text-align: left !important;
    padding-left: 2rem !important;
  }
  
  .quality-section .quality-link {
    text-align: left !important;
    padding-left: 2rem !important;
  }
} 

/* Mobile-only left alignment for main homepage banner hero */
@media screen and (max-width: 767px) {
  .template-index .banner__content,
  .template-index .banner__heading,
  .template-index .banner__text,
  .template-index .banner__buttons,
  .template-index .image-banner .banner__content,
  .template-index .image-banner .content-container,
  .template-index #image_banner .banner__content,
  .template-index #image_banner .banner__heading,
  .template-index #image_banner .banner__text,
  .template-index .image-banner__content,
  .template-index #shopify-section-image-banner .banner__content,
  .template-index #shopify-section-image-banner .banner__heading,
  .template-index #shopify-section-image-banner .banner__text {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 2rem !important;
  }
  
  .template-index .banner .button,
  .template-index .banner__buttons .button,
  .template-index .banner__box .button,
  .template-index #shopify-section-image-banner .button,
  .template-index .image-banner .button--secondary,
  .template-index .banner .button--secondary {
    margin-left: 0 !important;
  }
}

/* Stronger mobile-only left alignment for main homepage banner hero */
@media screen and (max-width: 767px) {
  html body .template-index .image-banner .banner__content,
  html body .template-index .image-banner .banner__heading,
  html body .template-index .image-banner .banner__text,
  html body .template-index .image-banner .banner__content-container,
  html body .template-index .banner .banner__content,
  html body .template-index .banner .banner__heading,
  html body .template-index .banner .banner__text,
  html body #shopify-section-image-banner .banner__content,
  html body #shopify-section-image-banner .banner__heading,
  html body #shopify-section-image-banner .banner__text,
  html body .template-index .banner__box,
  html body .template-index #shopify-section-image_banner .banner__box,
  html body .template-index #shopify-section-image_banner *,
  html body #MainContent .banner__heading,
  html body #MainContent .banner__text,
  html body main#MainContent .banner__heading,
  html body main#MainContent .banner__text,
  html body #MainContent .banner__box,
  html body main#MainContent .banner__box,
  html body .template-index .banner__media-content,
  html body .template-index .banner__box {
    text-align: left !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-left: 0rem !important;
    margin-left: 0 !important;
  }
  
  /* Keep button containers and buttons centered */
  html body .template-index .image-banner .banner__buttons,
  html body .template-index .banner .banner__buttons,
  html body #shopify-section-image-banner .banner__buttons,
  html body #MainContent .banner__buttons,
  html body main#MainContent .banner__buttons {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    padding-left: 0 !important;
  }
  
  html body .template-index .banner .button,
  html body .template-index .banner__buttons .button,
  html body .template-index .banner__box .button,
  html body #shopify-section-image-banner .button,
  html body .template-index .image-banner .button--secondary,
  html body .template-index .banner .button--secondary,
  html body #MainContent .banner .button,
  html body #MainContent .banner__buttons .button,
  html body #MainContent .banner__box .button,
  html body main#MainContent .banner .button,
  html body main#MainContent .banner__buttons .button,
  html body main#MainContent .banner__box .button {
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
    align-self: center !important;
  }
}

/* Fix for consistent left alignment across sections */
/* Page width uses consistent section padding variables */
.page-width {
  padding-left: var(--section-padding-desktop, 4rem);
  padding-right: var(--section-padding-desktop, 4rem);
}

@media screen and (max-width: 768px) {
  .page-width {
    padding-left: var(--section-padding-mobile, 1.5rem);
    padding-right: var(--section-padding-mobile, 1.5rem);
  }
}

/* Fix for consistent heading alignment in tabbed-content section */
.tabbed-content .benefit-heading,
.tabbed-content .usps-heading {
  text-align: left;
  padding-left: 0;
  margin-left: 0;
}

.tabbed-content .benefit-content,
.tabbed-content .usps-block {
  padding-left: 0;
  padding-right: 0;
}

.tabbed-content__container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Ensure all headings in the tabbed content have same alignment */
.tabbed-content h2 {
  padding-left: 0;
  margin-left: 0;
}

.tab-content-container {
  padding: 0 !important;
  margin: 0 !important;
}

/* Ensure all tabbed blocks have the same alignment */
.tabbed-block {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Direct styling for option-button class */
.option-button {
  color: var(--text-color-dark, #1a1a1a) !important;
  -webkit-text-fill-color: var(--text-color-dark, #1a1a1a) !important;
  text-decoration: none !important;
  flex: 1 !important;
  width: 100% !important;
  padding: 6px 2px !important;
  background: white !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 0 !important; /* Changed from 5px to 0 */
  cursor: pointer !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  transition: all 0s ease !important;
  white-space: nowrap !important;
  text-align: center !important;
  min-width: 0 !important;
  margin-bottom: 4px !important;
  opacity: 1 !important;
  filter: none !important;
}

.verify-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 4px;
  position: relative;
  top: -1px; /* Adjust this value for perfect alignment */
}

/* Global heading class using font variables */
.heading-ibm {
  font-family: var(--font-primary) !important;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
}

.alternating-row-bullets {
  margin: 2rem 0;
}

.alternating-row-bullet {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    flex: 1;
    min-width: 0;
}

.alternating-row-bullet-icon {
    width: 32px;
    height: 32px;
    margin-right: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alternating-row-bullet-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.alternating-row-bullet-text {
    flex: 1;
    min-width: 0;
    margin: 0;
    line-height: 1.4;
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .alternating-row-bullets {
        padding-left: 0;
        text-align: left;
    }

    .alternating-row-bullet {
        justify-content: flex-start;
        text-align: left;
    }

    .alternating-row-bullet-icon {
        width: 28px;
        height: 28px;
        margin-right: 1.5rem;
    }
    
    .alternating-row-bullet-icon img {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }
    
    .alternating-row-bullet-text {
        font-size: 1.6rem;
        text-align: left;
    }

    .alternating-row-subheading {
        font-size: 1.6rem;
        text-align: left;
    }
}

/* About Us page specific styles */
.shopify-section-template--23545100697928__simple_steps_cNm7Fq .simple-steps-section {
  padding-top: 1rem;
}

@media screen and (max-width: 990px) {
  .shopify-section-template--23545100697928__simple_steps_cNm7Fq .simple-steps-section {
    padding-top: 1rem;
  }
}

/* Custom table styles for accordions */
.akiki-table,
.akiki-table th,
.akiki-table td,
.akiki-table tr {
  border: none !important;
  background: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

.akiki-table {
  border-collapse: collapse !important;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  width: 100% !important;
  table-layout: fixed !important;
}

.akiki-table th {
  padding: 0.6rem 1rem;
  font-weight: 600;
  border-bottom: 0.5px solid #000 !important;
}

.akiki-table th:first-child {
  text-align: left;
  padding-left: 0;
}

.akiki-table th:last-child {
  text-align: right;
  padding-right: 0;
}

.akiki-table td {
  padding: 0.6rem 1rem;
  text-align: right;
}

.akiki-table td:first-child {
  text-align: left;
  padding-left: 0;
}

.akiki-table td:last-child {
  padding-right: 0;
}

.akiki-table tbody tr:not(:last-child) td {
  border-bottom: 0.5px solid #000 !important;
}



/* Enhanced mobile border fix with higher specificity */
@media only screen and (max-width: 749px) {
  html body .akiki-table th,
  .akiki-table > thead > tr > th,
  table.akiki-table th {
    border-bottom: 1px solid #000 !important;
    border-width: 1px !important;
  }
  
  html body .akiki-table tbody tr:not(:last-child) td,
  .akiki-table > tbody > tr:not(:last-child) > td,
  table.akiki-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #000 !important;
    border-width: 1px !important;
  }
  
  /* Force borders to be visible */
  .akiki-table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
  }
}

/* Product text margin fix */
.product__text.inline-richtext {
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Hide previous slider button */
.slider-button--prev {
    display: none !important;
}

/* Hide next slider button */
.slider-button--next {
    display: none !important;
}

/* Reduce space between announcement bar and header */
.shopify-section-header {
    margin-top: -5px !important; /* Pull header up closer to announcement bar */
}

/* Add stronger selectors to reduce space between announcement bar and header */
.shopify-section-header-sticky, 
.shopify-section-header,
#shopify-section-header,
header.header-wrapper,
.header-wrapper,
html body #shopify-section-header,
html body .shopify-section-header {
    margin-top: -5px !important; /* Reduced negative margin */
    padding-top: 0 !important;
}

/* Reduce padding on announcement bar */
.announcement-bar,
.announcement-bar-section,
#shopify-section-announcement-bar,
.shopify-section:has(.announcement-bar),
.shopify-section-announcement-bar {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Targeting the gap between these elements directly */
.shopify-section-announcement-bar + .shopify-section-header,
#shopify-section-announcement-bar + #shopify-section-header,
.announcement-bar-section + .header-wrapper,
.announcement-bar + .header-wrapper {
    margin-top: -5px !important;
}


/* Set banner-hero__heading h0 size to 3.5rem on mobile */
@media screen and (max-width: 749px) {
  .banner-hero__heading h0,
  .banner-hero__heading.h0,
  h0.banner-hero__heading {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
  }
}

/* Hide header on funnel-pop product template - with stronger selectors */
body.template-product.product\.funnel-pop #shopify-section-header,
body.template-product.product\.funnel-pop #shopify-section-header-group,
body.template-product.product\.funnel-pop .shopify-section-header-sticky,
body.template-product.product\.funnel-pop header.header,
body.template-product.product\.funnel-pop .header-wrapper,
body.template-product.product-template--*--funnel-pop #shopify-section-header,
body.template-product.product-template--*--funnel-pop #shopify-section-header-group,
body.template-product.product-template--*--funnel-pop .shopify-section-header-sticky,
body.template-product.product-template--*--funnel-pop header.header,
body.template-product.product-template--*--funnel-pop .header-wrapper,
body.template-product[class*="funnel-pop"] #shopify-section-header,
body.template-product[class*="funnel-pop"] #shopify-section-header-group,
body.template-product[class*="funnel-pop"] .shopify-section-header-sticky,
body.template-product[class*="funnel-pop"] header.header,
body.template-product[class*="funnel-pop"] .header-wrapper,
body.product\.funnel-pop #shopify-section-header,
body.product\.funnel-pop #shopify-section-header-group,
html body[class*="funnel-pop"] #shopify-section-header,
html body[class*="funnel-pop"] #shopify-section-header-group,
html body[class*="funnel-pop"] header,
html body[class*="funnel-pop"] header.header,
html body[class*="funnel-pop"] .header-wrapper,
.template-product.template-suffix-funnel-pop #shopify-section-header,
.template-product.template-suffix-funnel-pop #shopify-section-header-group {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Hide announcement bar on funnel-pop product template */
body.template-product.product\.funnel-pop #shopify-section-announcement-bar,
body.template-product.product-template--*--funnel-pop #shopify-section-announcement-bar,
body.template-product[class*="funnel-pop"] #shopify-section-announcement-bar,
body.product\.funnel-pop #shopify-section-announcement-bar,
html body[class*="funnel-pop"] #shopify-section-announcement-bar,
.template-product.template-suffix-funnel-pop #shopify-section-announcement-bar,
html body[class*="funnel-pop"] .announcement-bar,
html body[class*="funnel-pop"] .announcement-bar-section {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Font styling for specific classes */
.areas-interactive__quote-text,
.comparison-additional-text,
.customer-results__footnote,
.ingredients-wide-description,
.ingredients-wide-meaning,
.ingredients-wide-study,
.product-info-container,
.akiki-team-member-description {
  font-weight: 300 !important;
  color: var(--text-color-dark, #1a1a1a) !important;
}
