/** Shopify CDN: Minification failed

Line 210:19 Expected identifier but found whitespace
Line 210:21 Unexpected "{"
Line 210:30 Expected ":"
Line 211:8 Expected identifier but found whitespace
Line 211:10 Unexpected "{"
Line 211:19 Expected ":"
Line 215:19 Expected identifier but found whitespace
Line 215:21 Unexpected "{"
Line 215:30 Expected ":"
Line 216:8 Expected identifier but found whitespace
... and 24 more hidden warnings

**/


/* CSS from section stylesheet tags */
.working-accordion-section {
  background-color: #f8f8f8;
  padding: 40px 20px;
}

.working-accordion-container {
  max-width: 900px;
  margin: 0 auto;
}

.working-accordion-header {
  text-align: center;
  margin-bottom: 30px;
}

.working-accordion-header h2 {
  font-size: 36px;
  color: #0e5131;
  font-family: var(--ft1);
  font-weight: 700;
  margin-bottom: 10px;
}

.working-accordion-header .subtext {
  max-width: 700px;
  margin: 0 auto;
  color: #353535;
  font-family: var(--ft3);
  font-size: 16px;
}

.accordion-item {
  border-top: 1px solid #ccc;
}

.accordion-button {
  background-color: #0e5131;
  color: #efefef;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--ft2);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background 0.3s ease;
}

.accordion-button:hover {
  background-color: #ffc94c;
  color: #0e5131;
}

.accordion-button .icon {
  width: 24px;
  height: 24px;
}

.accordion-button .indicator {
  font-size: 24px;
  transition: transform 0.3s ease;
}

.accordion-button.active .indicator {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background-color: #fff;
}

.accordion-content {
  padding: 20px;
  font-size: 16px;
  color: #353535;
}
.collection-section {
  padding: 48px 85px;
  max-width: 1512px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: center;
}
.collection-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #0e5131;
}
.collection-section p {
  font-size: 16px;
  margin-bottom: 2rem;
  color: #353535;
  font-family: var(--ft3);
}
.collection-card-slider {
  display: grid;
  gap: 24px;
  text-align: left;
}
@media (min-width: 640px) {
  .collection-card-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .collection-card-slider {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .collection-card-slider {
    grid-template-columns: repeat(4, 1fr);
  }
}
.collection-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #efefef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  background-color: #fff;
}
.collection-card:hover {
  transform: translateY(-4px);
}
.collection-card img {
  width: 100%;
  height: auto;
}
.collection-card-content {
  padding: 16px;
  text-align: center;
}
.collection-card h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #0e5131;
  font-family: var(--ft1);
}
.collection-card p {
  font-size: 16px;
  color: #353535;
  font-family: var(--ft3);
  margin-bottom: 0.75rem;
}
.collection-card a.button {
  display: inline-block;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--ft2);
  border-radius: 6px;
  background-color: #0e5131;
  color: #efefef;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.collection-card a.button:hover {
  background-color: #ffc94c;
}
.comparison-chart-section {
  overflow-x: auto;
  padding: 2rem 1rem;
}
.comparison-chart {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.comparison-chart th,
.comparison-chart td {
  padding: 12px 16px;
  text-align: center;
  border: 1px solid #ccc;
  vertical-align: middle;
}
.comparison-chart th {
  background-color: {{ section.settings.header_background }};
  color: {{ section.settings.header_color }};
  font-weight: 700;
}
.comparison-chart td.highlight {
  background-color: {{ section.settings.highlight_background }};
  color: {{ section.settings.highlight_color }};
  font-weight: bold;
}
.comparison-chart th.best-option {
  background-color: {{ section.settings.best_option_background }};
  color: {{ section.settings.best_option_color }};
  position: relative;
}
.comparison-chart th.best-option::after {
  content: "★";
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .comparison-chart th,
  .comparison-chart td {
    font-size: 14px;
    padding: 10px;
  }
}
.compliance-strip {
  padding: 40px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.compliance-strip h2 {
  font-family: var(--ft1);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  color: #0e5131;
}

.compliance-strip .certifications {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.compliance-strip .certification-block {
  max-width: 220px;
  background: #ffc94c;
  border: 1px solid #efefef;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

  .compliance-strip .certification-block:hover {
  transform: translateY(-4px);
}
  
.compliance-strip .certification-block img {
  max-width: 80px;
  margin-bottom: 15px;
}

.compliance-strip .certification-block p {
  font-family: var(--ft3);
  font-size: 16px;
  color: #353535;
}
  .compliance-strip .badge-heading {
  font-family: var(--ft2);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 8px;
  color: #0e5131;
}
.flip-card-section-wrapper {
  padding: 30px 20px;
  text-align: center;
}
.flip-card-section-header {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--ft1);
  color: #0e5131;
  margin-bottom: 10px;
}
.flip-card-section-subtext {
  font-size: 16px;
  font-family: var(--ft3);
  color: #353535;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.flip-card-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.flip-card {
  background-color: transparent;
  width: 300px;
  height: 400px;
  perspective: 1500px;
  transition: transform 0.3s ease;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.8s ease, scale 0.3s ease;
}
.flip-card:hover .flip-inner {
  transform: rotateY(180deg) scale(1.05);
}
.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.flip-front {
  z-index: 2;
  transform: rotateY(0deg);
}
.flip-back {
  transform: rotateY(180deg);
}
.flip-header {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}
.flip-text {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.4;
  max-width: 90%;
}
.flip-button {
  padding: 10px 20px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  text-decoration: none;
}
.sustainability-strip {
  padding: 50px 20px;
  text-align: center;
}

.highlight-strip-inner {
  max-width: 900px;
  margin: 0 auto;
}

.highlight-strip-icon {
  margin-bottom: 20px;
}

.highlight-strip-icon img {
  max-width: 80px;
  height: auto;
}

.sustainability-strip h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sustainability-strip p {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
}

.highlight-strip-button {
  display: inline-block;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #11723A;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.highlight-strip-button:hover {
  background-color: #0e5a2f;
}
.sustainability-strip {
  background-color: #11723A;
  color: #ffffff;
  padding: 50px 20px;
  text-align: center;
}

.sustainability-strip h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sustainability-strip p {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}
.icon-grid-feature {
  padding: 15px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.icon-grid-feature .heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #11732A;
}

.icon-grid-feature .subtext {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.icon-grid-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-grid-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-grid-item img {
  height: 60px;
  width: auto;
  margin-bottom: 15px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.icon-grid-item:hover img {
  transform: scale(1.1);
}

.icon-grid-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #11732a;
}

.icon-grid-item p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.icon-grid-item a {
  font-family: var(--ft2);
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: #166734;
  color: #f5f5f5;
  text-transform: uppercase;
  display: inline-block;
  width: auto;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1;
  transition: all .3s ease-in-out;
  font-size: 15px;
  padding: 10px 24px;
  border-radius: 6px;
  letter-spacing: 1px;
}

.icon-grid-item a:hover {
  background-color: #0c5c2e;
}

/* Section-wide buttons */
.icon-grid-feature .cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.icon-grid-feature .cta-buttons a {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.icon-grid-feature .primary-btn {
  background-color: #11723A;
  color: #fff;
}

.icon-grid-feature .primary-btn:hover {
  background-color: #0c5c2e;
}

.icon-grid-feature .secondary-btn {
  background-color: #ffc908;
  color: #11723A;
}

.icon-grid-feature .secondary-btn:hover {
  background-color: #e6b800;
}

/* Mobile stacking */
@media (max-width: 640px) {
  .icon-grid {
    grid-template-columns: 1fr;
  }

  .icon-grid-item {
    padding: 20px;
  }

  .icon-grid-item img {
    height: 50px;
    margin-bottom: 10px;
  }

  .icon-grid-item h3 {
    font-size: 1.1rem;
  }

  .icon-grid-item p {
    font-size: 0.9rem;
  }
}
.image-text-advanced {
  padding: 60px 20px;
}
.image-text-advanced .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.image-text-advanced .content,
.image-text-advanced .image {
  flex: 1 1 50%;
  padding: 20px;
}
.image-text-advanced .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.image-text-advanced .content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.image-text-advanced .cta-button {
  margin-top: 20px;
}
.image-text-advanced .cta-button a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #11723A;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

/* Stack vertically on small screens */
@media (max-width: 768px) {
  .image-text-advanced .container {
    flex-direction: column;
  }
  .image-text-advanced .image img {
    max-width: 100%;
  }
}
.installation-help-guides {
  padding: 60px 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.installation-help-guides .heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #11723A
}

.installation-help-guides .subtext {
  max-width: 700px;
  margin: 0 auto 30px;
  color: #333;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.guide-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}

.guide-card:hover {
  transform: translateY(-4px);
}

.guide-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
}

.guide-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #11732a;
}

.guide-card p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 15px;
}

.guide-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #11723A;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.guide-btn:hover {
  background: #0c5c2e;
}
.sr-blog-card-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.sr-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.sr-blog-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sr-blog-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.sr-blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

.sr-blog-card-content {
  padding: 20px;
  font-family: 'Oswald', sans-serif;
}

.sr-blog-card-content h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  color: #11723A;
  margin-bottom: 10px;
}

.sr-blog-card-content .blog-meta {
  font-size: 0.75rem;
  color: #999;
  margin-bottom: 8px;
}

.sr-blog-card-content p {
  font-size: 0.9rem;
  color: #6a757d;
  margin-bottom: 15px;
}

.sr-blog-card-content a.read-more {
  font-size: 0.85rem;
  color: #11723A;
  text-decoration: none;
  font-weight: 600;
}

.sr-blog-card-content a.read-more:hover {
  text-decoration: underline;
}
.sr-product-slider {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.sr-product-slider .slider-header {
  text-align: center;
  margin-bottom: 40px;
}

.sr-product-slider .slider-header h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  color: #11723A;
  margin: 0 0 10px;
}

.sr-product-slider .slider-header p {
  font-family: 'Oswald', sans-serif;
  color: #6a757d;
}

.sr-product-slider .product-carousel {
  display: flex;
  overflow: hidden;
}

.sr-product-slider .product-item {
  position: relative;
  padding: 15px;
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  margin: 0 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.sr-product-slider .product-item:hover {
  transform: translateY(-4px);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.product-image-wrapper img {
  width: 100%;
  border-radius: 6px;
}

.hover-buttons {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.product-image-wrapper:hover .hover-buttons {
  opacity: 1;
}

.hover-buttons button,
.hover-buttons a {
  width: 36px;
  height: 36px;
  background-color: rgba(17, 114, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}{% stylesheet %}
.sr-product-slider {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.sr-product-slider .slider-header {
  text-align: center;
  margin-bottom: 40px;
}

.sr-product-slider .slider-header h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 2rem;
  color: #11723A;
  margin: 0 0 10px;
}

.sr-product-slider .slider-header p {
  font-family: 'Oswald', sans-serif;
  color: #6a757d;
}

.sr-product-slider .product-carousel {
  display: flex;
  overflow: hidden;
}

.sr-product-slider .product-item {
  position: relative;
  padding: 15px;
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  margin: 0 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sr-product-slider .product-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.product-image-wrapper img {
  width: 100%;
  border-radius: 6px;
}

.hover-buttons {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  flex-direction: row;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.product-image-wrapper:hover .hover-buttons {
  opacity: 1;
}

.hover-buttons button,
.hover-buttons a {
  width: 36px;
  height: 36px;
  background-color: rgba(17, 114, 58, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  position: relative;
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-size: 10px;
  border-radius: 4px;
  padding: 4px 6px;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.tooltip:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.product-title {
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
  margin: 10px 0 4px;
  font-size: 1rem;
}

.product-price {
  font-size: 0.9rem;
  color: #429644;
}

.product-bullets {
  font-size: 0.8rem;
  text-align: left;
  margin: 10px 0;
  padding: 0 10px;
}

.product-bullets ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.product-icons {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}

.product-icon {
  width: 20px;
  height: 20px;
}
.stat-bar {
  padding: 60px 20px;
  background-color: {{ section.settings.bg_color }};
  color: {{ section.settings.text_color }};
  text-align: center;
  {% if section.settings.bg_image != blank %}
    background-image: url({{ section.settings.bg_image | image_url: width: 1600 }});
    background-size: cover;
    background-position: center;
  {% endif %}
}

.stat-bar .heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-bar .subheading {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.stat-block {
  width: 200px;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  background-color: var(--block-bg-color, #ffffff);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: inherit;
  transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.stat-block.has-custom-bg {
  color: #ffffff;
}

.stat-block:hover {
  box-shadow: 0 0 20px rgba(18, 128, 67, 0.4);
  transform: scale(1.03);
  z-index: 2;
}

.stat-icon img {
  width: 50px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-number .suffix {
  font-size: 0.8em;
  margin-left: 2px;
  opacity: 0.8;
}

.stat-label {
  font-size: 1rem;
  margin-top: 5px;
}
.tabbed-content-section {
  padding: 60px 20px;
  background: #f8f8f8;
  max-width: 1200px;
  margin: 0 auto;
}

.tabbed-content-section .heading {
  text-align: center;
  font-size: 36px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.tabbed-content-section .subtext {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 30px;
  color: #555;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.tab-button {
  background: #f0f0f0;
  border: 2px solid #e0e0e0;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  padding: 12px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.tab-button img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.tab-button.active,
.tab-button:hover {
  background: #11723A;
  color: #fff;
  border-color: #11723A;
}

.tab-wrapper {
  border: 2px solid #e0e0e0;
  padding: 30px;
  border-radius: 0 0 8px 8px;
  background-color: #fdfdfd;
  margin-top: -8px;
  position: relative;
  z-index: 1;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease;
}

.tab-content.active {
  display: block;
}

.tab-cta-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.tab-cta-buttons a {
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-block;
}

.tab-cta-buttons a.primary {
  background: #11723A;
  color: #fff;
}

.tab-cta-buttons a.secondary {
  background: #ffc908;
  color: #11723A;
}

.section-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.section-cta-buttons a {
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
}

.section-cta-buttons a.primary {
  background-color: #11723A;
  color: white;
}

.section-cta-buttons a.secondary {
  background-color: #ffc908;
  color: #11723A;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.timeline-section {
  padding: 60px 20px;
  background-color: {{ section.settings.section_bg }};
}
.timeline-heading {
  text-align: center;
  margin-bottom: 40px;
}
.timeline-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.timeline-card {
  width: 300px;
  height: 380px;
  perspective: 1000px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.timeline-card:hover .flip-inner {
  transform: rotateY(180deg);
}
.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border-radius: 12px;
  backface-visibility: hidden;
  background-size: cover;
  background-position: center;
}
.flip-front {
  background-color: var(--front-bg);
}
.flip-back {
  background-color: var(--back-bg);
  transform: rotateY(180deg);
}
.timeline-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.timeline-title {
  font-family: 'Work Sans Bold', sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}
.timeline-text {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
}
.timeline-cta {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}
.two-column-feature {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.two-column-feature .wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.two-column-feature .image {
  flex: 1 1 400px;
  max-width: 420px;
}

.two-column-feature .image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.two-column-feature .content {
  flex: 1 1 500px;
  max-width: 640px;
}

.two-column-feature .heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #11723A;
}

.two-column-feature .subtext {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #5a5a5a;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-item {
  background: #ffc94c;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
}



.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.feature-item p {
  font-size: 0.95rem;
  color: #333;
}
.rubber-safety-benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  padding: 10px 20px;
  background-color: #f8f8f8;
  gap: 40px;
}

.rubber-safety-benefits .image-side {
  flex: 1 1 45%;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rubber-safety-benefits .image-side img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 12px;
  object-fit: contain;
}

.rubber-safety-benefits .content-side {
  flex: 1 1 50%;
  max-width: 600px;
  padding: 5px 20px;
}

.rubber-safety-benefits .content-side h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #166734;
  margin-bottom: 12px;
}

.rubber-safety-benefits .content-side .subtext {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #313638;
  margin-bottom: 30px;
  max-width: 700px;
}

.rubber-safety-benefits .benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.rubber-safety-benefits .benefit img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.rubber-safety-benefits .benefit-text h4 {
  font-family: 'Roboto Bold', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #166734;
  margin: 0 0 4px;
}

.rubber-safety-benefits .benefit-text p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #313638;
  margin: 0;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .rubber-safety-benefits {
    flex-direction: column;
    text-align: center;
  }

  .rubber-safety-benefits .image-side,
  .rubber-safety-benefits .content-side {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .rubber-safety-benefits .benefit {
    justify-content: center;
    text-align: left;
  }
}
  .rubber-safety-benefits .cta-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rubber-safety-benefits .cta-btn {
  padding: 12px 24px;
  font-size: 16px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.rubber-safety-benefits .cta-btn.primary {
  background-color: #11732A;
  color: #fff;
}

.rubber-safety-benefits .cta-btn.primary:hover {
  background-color: #0d5b21;
}

.rubber-safety-benefits .cta-btn.secondary {
  background-color: #ffc908;
  color: #11732A;
}

.rubber-safety-benefits .cta-btn.secondary:hover {
  background-color: #e0b100;
}