/** Shopify CDN: Minification failed

Line 96:0 Unexpected "<"
Line 182:0 Unexpected "<"
Line 240:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
.shop-material-grid-container {
  padding: 50px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.shop-material-grid-heading {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 40px;
}
.shop-material-grid {
  display: grid;
  grid-template-areas:
    "large1 small1 large2"
    "large1 small2 large2";
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.shop-material-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
}
.shop-material-card.large1 {
  grid-area: large1;
}
.shop-material-card.large2 {
  grid-area: large2;
}
.shop-material-card.small1 {
  grid-area: small1;
}
.shop-material-card.small2 {
  grid-area: small2;
}
.shop-material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shop-material-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  z-index: 2;
}
.shop-material-title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
}
.shop-material-desc {
  font-size: 20px;
  line-height: 1.3;
}
.shop-material-link {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #fff;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
.shop-material-link::after {
  content: '›';
  font-size: 3.2rem;
  color: #000;
  margin-top:-5px;
}
@media (max-width: 768px) {
  .shop-material-grid {
    display: flex;
    flex-direction: column;
  }
  .shop-material-card {
    height: auto;
  }
}
<style>
.tabbed-section {
  background: #f5f7fb;
  padding: 80px 50px;
  text-align: center;
}
.tabbed-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #005eb8;
  text-align: center;
}
.tabbed-section p.subheading {
  color: #666;
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  font-weight: 500;
}
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-weight: 500;
}
.tab-buttons button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #666;
  padding: 10px 15px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.tab-buttons button.active {
  font-weight: bold;
  color: #005eb8;
  border-color: #005eb8;
}
.tab-content {
  display: none;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 50px;
    padding-right: 50px;
  font-weight: 500;
}
.tab-content.active {
  display: flex;
}
.tab-content .tab-text {
  max-width: 600px;
  text-align: left;
}
.tab-content img {
  width: 661px;
  height: 331px;
  object-fit: fill;
  border-radius: 10px;
  margin-top: 20px;
  max-width: 100%;
}

@media(min-width: 768px) {
  .tab-content {
    flex-direction: row;
    gap: 40px;
    text-align: left;
  }
  .tab-content .tab-text {
    flex: 1;
  }
  .tab-content .tab-img {
    flex: 1;
  }
  .tab-content img {
    width: 100%;
    height: auto;
  }
}
</style>
<style>
  .google-review-section {
    padding-left: 60px;
    padding-right: 60px;
}
.google-review-section {
  background: #fff;
  padding: 20px 20px;
  text-align: center;
}
.google-review-section h2 {
  font-size: 22px;
  margin-bottom: 40px;
}
.google-review-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media(min-width: 768px) {
  .google-review-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.google-review-card {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.google-review-card img.google-logo {
  width: 35px;
  margin-bottom: 15px;
}
.google-review-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}
.google-stars {
  color: #FFD700;
  margin-bottom: 20px;
}
.google-review-card .customer-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
}
.customer-name {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
}
</style>