/** Shopify CDN: Minification failed

Line 16:0 Unexpected "<"
Line 113:0 Unexpected "{"
Line 113:1 Expected identifier but found "%"
Line 121:2 Unexpected "{"
Line 121:3 Expected identifier but found "%"
Line 169:2 Unexpected "{"
Line 169:3 Expected identifier but found "%"
Line 173:4 Unexpected "{"
Line 173:5 Expected identifier but found "%"
Line 209:2 Unexpected "{"
... and 4 more hidden warnings

**/
<style>
    .service-description {
    margin-bottom: 50px;
}
    a.request-info-btn {
    padding: 10px 20px;
    background: #f36d21;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    /* margin-top: 17px; */
}
    section#service-details-tabs {
    padding: 40px;
        background: #fff7ee;
}
/* TAB BUTTONS */
.tabs-wrapper {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}
.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: space-evenly;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd !important;
}
.tab-btn {
  padding: 10px 16px;
  border: none;
  
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.2s;
}
.tab-btn.active {
  background: #f36d21 !important;
  color: #fff !important;
}

/* TAB CONTENT */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* LAYOUT */
.service-detail-layout {
  display: flex;
  gap: 30px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #ddd;
}
.service-image-box {
  width: 45%;
}
.service-image-box img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.service-info {
  width: 55%;
}
.service-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
}
.service-code,
.service-price {
  font-size: 19px !important;
  margin-bottom: 10px;
  color: #333;
}
.service-description h3 {
  margin-bottom: 10px;
  color: #000;
}
.service-description ul {
  list-style: disc;
  margin-left: 20px;
}

/* MOBILE */
{% comment %} @media (max-width: 768px) {
  .service-detail-layout {
    flex-direction: column;
  }
  .service-image-box,
  .service-info {
    width: 100%;
  }
} {% endcomment %}
/* MOBILE AND TABLET RESPOSIVE STYLES */
@media (max-width: 768px) {
    .service-detail-layout {
    gap: 0px;
}
  /* Adjust the tab buttons to stack vertically */
  .tab-buttons {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
  }

  .tab-btn {
    width: 100%;
    margin-bottom: 10px;
  }

  /* Stack service image and content */
  .service-detail-layout {
    flex-direction: column;
    padding: 20px;
  }

  /* Make the image smaller and allow it to scale */
  .service-image-box {
    width: 100%;
    margin-bottom: 20px; /* Adds spacing between image and content */
  }

  .service-image-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Adjust service content (text) width */
  .service-info {
    width: 100%;
  }

  /* Service title font-size adjustment */
  .service-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  /* Adjust price and code fonts */
  {% comment %} .service-code,
  .service-price {
    font-size: 14px !important;
    margin-bottom: 8px;
  } {% endcomment %}

  /* Description spacing */
  .service-description {
    margin-bottom: 20px;
  }

  /* Adjust button size on mobile */
  a.request-info-btn {
    padding: 12px 8px;
    font-size: 16px;
  }
}

/* Larger screens, desktop */
@media (min-width: 769px) {
  .service-detail-layout {
    flex-direction: row;
    padding: 25px;
  }

  .service-image-box {
    width: 45%;
  }

  .service-info {
    width: 55%;
  }

  .service-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
  }

  {% comment %} .service-code,
  .service-price {
    font-size: 12px;
    margin-bottom: 12px;
  } {% endcomment %}

  .service-description h3 {
    margin-bottom: 15px;
  }

  .service-description ul {
    margin-left: 20px;
  }

  /* Tab button style on desktop */
  .tab-btn {
    font-size: 15px;
    padding: 12px 8px;
  }
}

</style>
