/** Shopify CDN: Minification failed

Line 281:12 Expected identifier but found whitespace
Line 281:14 Unexpected "{"
Line 281:23 Expected ":"
Line 281:53 Expected ":"
Line 286:12 Expected identifier but found whitespace
Line 286:14 Unexpected "{"
Line 286:23 Expected ":"
Line 286:52 Expected ":"
Line 299:12 Expected identifier but found whitespace
Line 299:14 Unexpected "{"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:breadcrumb-product-nav (INDEX:3) */
/* ---------- Original base styles preserved ---------- */
.breadcrumb-nav {
  display: flex;
  flex-direction: column;
  /* keep original spacing behavior */
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 0;
  font-size: var(--breadcrumb-font-size, 14px);
  font-family: var(--breadcrumb-font-family, inherit);
  color: var(--breadcrumb-font-color, #444);
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%; /* make breadcrumb row full width so alignment classes work */
  box-sizing: border-box;
}

/* original gradient/underline hover preserved */
.breadcrumb a {
  position: relative;
  color: var(--breadcrumb-font-color, #444);
  text-decoration: none !important;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease;
  padding: 2px 0;
}

.breadcrumb a:hover {
  background-size: 100% 1.5px;
}

.breadcrumb .separator {
  margin: 0 4px;
  color: #999;
}

.breadcrumb .current {
  color: #888;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 60%;
}

/* ---------- Keep original product-nav base but adapt layout ---------- */
.product-nav {
  display: block; /* changed to block so child container controls layout */
  width: 100%;
  box-sizing: border-box;
  margin-top: 4px;
}

/* this is the full-width controls row: left & right */
.product-nav-controls {
  display: flex;
  justify-content: space-between; /* left and right edges */
  align-items: center;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
}

/* containers for each side so we preserve spacing when one side is empty */
.product-nav-controls .nav-left,
.product-nav-controls .nav-right {
  display: flex;
  align-items: center;
  min-width: 0;
}

/* keep your original nav-link look (gradient underline effect) */
.product-nav .nav-link {
  position: relative;
  color: var(--breadcrumb-font-color, #444);
  text-decoration: none !important;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.3s ease, transform 0.12s ease;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* hover underline preserved, slight lift on hover for affordance */
.product-nav .nav-link:hover {
  background-size: 100% 1.5px;
  transform: translateY(-1px);
}

/* separator between prev & next when both exist (keeps the original '|' look) */
.product-nav .middle-separator {
  margin: 0 8px;
  color: #999;
  user-select: none;
}

/* placeholder text when no prev/next so layout still balanced */
.nav-placeholder {
  color: #bdbdbd;
  font-size: 13px;
  padding: 6px 8px;
}

/* Alignment helper classes for breadcrumb row only — preserved from original */
.breadcrumb-left {
  justify-content: flex-start;
}
.breadcrumb-center {
  justify-content: center;
}
.breadcrumb-right {
  justify-content: flex-end;
}

/* Condensed mobile */
@media screen and (max-width: 640px) {
  .breadcrumb-nav {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 8px;
    padding-right: 8px;
  }

  .breadcrumb {
    align-items: center;
    justify-content: flex-start;
  }

  /* stack the prev/next controls and center them on mobile */
  .product-nav-controls {
    gap: 8px;
    align-items: stretch;
  }

  .product-nav-controls .nav-left,
  .product-nav-controls .nav-right {
    justify-content: center;
  }

  .product-nav .nav-link,
  .nav-placeholder {
    width: 100%;
    text-align: center;
    padding: 10px;
  }
}
/* END_SECTION:breadcrumb-product-nav */

/* START_SECTION:page-tabs (INDEX:56) */
.tab {
    display: flex;
    justify-content: center;   
    align-items: center;
    /* overflow: hidden;  remove this unless you need it for something else */
  }
  
  /* Style the buttons that are used to open the tab content */
  .tab button {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    margin: 0 5px;
    transition: opacity 0.3s, text-decoration 0.3s;
    
    /* use whatever your theme’s default font is — inherit it */
    font-family: inherit;
    font-size: calc(var(--font-heading-scale) * 1.5rem);
  
    /* give inactive tabs lower opacity */
    opacity: 0.5;
  }
  
  /* full opacity on hover, to give it a hint of interactivity */
  .tab button:hover {
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  
  /* Active tab gets full opacity (and your existing color tweak if you like) */
  .tab button.active {
    opacity: 1;
    color: #333; /* or whatever your “active” color is */
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
  }
  
  /* Fade in effect */
  @keyframes fadeEffect {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
/* END_SECTION:page-tabs */

/* START_SECTION:testimonial-slider (INDEX:65) */
.testimonials-section {
  position: relative;
  overflow: hidden;
}
.testimonials-section h2 {
  margin-bottom: 2.5rem;
}
.testimonials-section .decorative-wave {
  display: block;
  margin: 0.5rem auto 2rem;
}
.testimonials-section .testimonial-slider .testimonial-slide {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  height: clamp(360px, 35vh, 500px);
  margin: 0 15px; /* spacing for slick */
}
.testimonials-section .testimonial-slide .img-wrap {
  flex: 0 0 45%;
  padding: 0.5rem;
  background: #f9f9f9;
}
.testimonials-section .testimonial-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-section .testimonial-slide .content-wrap {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonials-section .testimonial-title {
  margin-bottom: 0.5rem;
  font-size: {{ section.settings.title_font_size }}px;
}
.testimonials-section .testimonial-text {
  overflow-y: auto;
  margin-bottom: 0.75rem;
  font-size: {{ section.settings.text_font_size }}px;
}
.testimonials-section .testimonial-text::-webkit-scrollbar {
  width: 4px;
}
.testimonials-section .testimonial-text::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 2px;
}
.testimonials-section .testimonial-product,
.testimonials-section .testimonial-author,
.testimonials-section .testimonial-date {
  margin: 0.25rem 0;
  font-size: {{ section.settings.meta_font_size }}px;
}
.testimonials-section .testimonial-rating {
  color: #ffd700;
  margin: 0.25rem 0;
}

/* Slick dots */
.testimonials-section .slick-dots {
  bottom: -30px;
}
.testimonials-section .slick-dots li button:before {
  font-size: 12px;
  color: #5C672F;
  opacity: 0.3;
}
.testimonials-section .slick-dots li.slick-active button:before {
  color: #5C672F;
  opacity: 1;
}

/* Custom arrows */
.testimonials-section .slick-prev,
.testimonials-section .slick-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  z-index: 10;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border: none;
}
.testimonials-section .slick-prev { left: -1.5rem; }
.testimonials-section .slick-next { right: -1.5rem; }

/* SVG arrow styling */
.testimonials-section .slick-prev svg .arrow,
.testimonials-section .slick-next svg .arrow {
  fill: #1E4605;
}
/* END_SECTION:testimonial-slider */