/** Shopify CDN: Minification failed

Line 13:0 Unexpected "<"
Line 144:2 Unexpected "{"
Line 144:3 Expected identifier but found "%"
Line 170:0 Unexpected "{"
Line 170:1 Expected identifier but found "%"
Line 190:2 Unexpected "{"
Line 190:3 Expected identifier but found "%"
Line 564:0 Unexpected "<"

**/
<style>

.offer-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    /* gap: 40px; */
    margin: 40px 0;
  }

.offer-card {
    max-width: 90%;
    display: block;
    background: #fff;
    border-radius: 16px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    transition: transform .15s ease, box-shadow .15s ease;
}

  .offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  }

  .offer-card-image {
     width: 100%; 
    height: auto;
    border-radius: 12px;
  }


  .offer-card-title {
    font-weight: 700;
    font-size: 18px;
    margin:0px;
  }

  .offer-card-description {
    margin: 30px 0;
    color: #666;
    font-size: 14px;
  }


a.offer-card-button {
    max-width: 150px;
    padding: 11px 30px;
    background: #f36d21;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    /* text-align: center; */
    border-radius: 4px;
}
a.offer-card-button:hover {
    background: #fff;
    border: 1px solid #f36d21;
    color: #f36d21;
}
.offer-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 16px;
    padding: 20px;
}
@media (max-width:1024px){
  .offer-cards-wrapper {
      grid-template-columns: repeat(2, 1fr);
 
  }
}
@media (max-width:768px){
 .offer-cards-wrapper {
      grid-template-columns: repeat(1, 1fr);
 
  }

  .offer-card {
      width:90%;
  }
  .tab-content {
        padding: 20px 0px; 
}

.offer-card {
    width: 100%;
}
.offer-cards-wrapper {
   padding: 0px;
}

}
@media (max-width:425px){
.offer-card-image {
    object-fit: contain !important;
}
.tab-buttons {
        flex-direction: column;
    }
}


/* Ensure cards fill the equal flex height */
.offer-card {
    display: flex;
    flex-direction: column;
    height: 100%; /* ← important */
}

/* Image gets fixed height so it doesn't stretch card */
.offer-card-image {
    width: 100%;
    
    object-fit: cover;
    border-radius: 12px;
}

.offer-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between !important;
    padding: 20px;
}
.offer-card-button {
    margin-top: auto;
} {% endcomment %}



.tab-button.active, .tab-button:hover {
    background-color: #f36d21 !important;
    color: #ffffff;
    border-color: #f36d21;
}





/* 
{% comment %} .offer-card {
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  transition: transform .15s ease, box-shadow .15s ease;
} {% endcomment %} */

{% comment %} .offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.offer-card-image {
  width: 100%;
  border-radius: 12px;
}

.offer-card-title {
  font-weight: 700;
  color: #000;
  font-size: 18px;
}

.offer-card-description {
  margin: 10px 0;
  color: #666;
  font-size: 14px;
} {% endcomment %}


  .product-tabbing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 63px;
}
  .tab-contents .tab-content:nth-child(1) .tab-content-heading {
  text-align: left !important;
  margin-left:10px;
  font-size:48px;
}
  .tab-content-heading .highlight {
  color: #f36d21;
  }
.product-features {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

.features-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #eee;
  border-radius: 6px;
  background-color: #fafafa;
}

.feature-icon .checkmark {
  color: #f36d21;
  font-weight: bold;
  font-size: 1.4rem;
}

.feature-title {
    font-weight: 700;
    color: #000;
    margin: 0;
    font-size: 20px;
}

.feature-description {
    margin: 0.3rem 0 0;
    color: #000;
    font-size: 20px;
    font-weight: 300;
}

.product-tabbing-section {
  width: 100%;
  
}

.product-tabbing-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 15px;
}

.product-tabbing-heading {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  list-style: none;
  padding: 10px;
  gap: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  border: 1px solid #D3D3D3;
}

/* Add this in your CSS */
.hide-tab-buttons {
    display: none !important;
}


.tab-content.active {
  display: block;
}

.tab-content-heading {
    font-size: 48px;
    font-weight: 600;
    color: #000000;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
}

.tab-content .metafield-multi_line_text_field {
  display: block;
}

.tab-content .metafield-multi_line_text_field br:first-of-type::before {
  content: '';
}

.metafield-line:nth-child(odd) {
  font-weight: 700;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



/* --- Available Accessories Table Style --- */


.accessories-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.accessory-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 16px;
  align-items: center;
}

.accessory-row:last-child {
  border-bottom: none;
}

.accessory-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

.accessory-title .checkmark {
  color: #f36d21;
  font-size: 18px;
  margin-right: 8px;
}

.accessory-description {
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}
.accessory-row:nth-child(odd) {
  background-color: #fafafa;
}
.accessory-row:nth-child(even) {
  background-color: #ffffff;
}
/* --- Model Comparison Table --- */
.model-comparison-table {
  width: 100%;
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  background: #fff;
  padding: 15px;
}

.model-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 20px;
}

.model-comparison-table thead {
  background-color: #E2E2E2;
}

.model-comparison-table th {
  padding: 12px;
  font-weight: 700;
  color: #000;
  border-bottom: 2px solid #ddd;
}

.model-comparison-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  color: #333;
}


.model-comparison-table tbody td:first-child {
  background-color: #f6f6f6;
  font-weight: bold;
}
  .product-features {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
  }

  .features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #eee;
    border-radius: 6px;
    background-color: #fafafa;
  }

  .feature-title {
    font-weight: 700;
    color: #000;
    margin: 0;
    font-size: 20px;
  }

  .feature-description {
    margin: 0.3rem 0 0;
    color: #000;
    font-size: 20px;
  }

 .arrow-icon {
  color: #f36d21; 
  font-weight: bold;
  font-size: 1.4rem;
  margin-right: 8px; 
}

@media (max-width: 768px) {
  .product-tabbing-section {
      padding-top :0px !important;
  }
  .model-comparison-table table {
    font-size: 18px;
}
  table:not([class]) td, table:not([class]) th {
     padding: 10px; 
}

  .feature-title {
    font-size: 18px;
    margin-bottom: 14px;
}
  .tab-contents .tab-content:nth-child(1) .tab-content-heading {
    font-size: 20px !important;
}
  label.form__label {
    font-size: 16px;
}
  span.price-item.price-item--sale.price-item--last {
    font-size: 24px;
}
  .product__description.rte.quick-add-hidden {
    font-size: 16px;
}
  .feature-description {
    font-size: 16px;
}
.tab-content-heading {
    font-size: 20px;
}
  .product-tabbing-wrapper {
    gap: 30px;
}
  .tab-button {
    font-size: 16px;
    padding: 0;
  }
  .tab-content {
    padding: 15px;
  }

  .tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .tab-button {
    flex: 0 0 48%;
    text-align: center;
    margin-bottom: 10px;
  }


  /* --- Available Accessories Table Style --- */
  .accessories-header {
    display: none;
  }
  .accessory-row {
    display: block;
    padding: 12px;
    border-bottom: 1px solid #eee;
  }
  .accessory-title {
    font-weight: 700;
    margin-bottom: 4px;
  }
  .accessory-description {
    font-size: 13px;
  }
  .accessories-table{
  box-shadow:none;
  }
/* --- Model Comparison Table --- */
.model-comparison-table table,
  .model-comparison-table thead,
  .model-comparison-table tbody,
  .model-comparison-table th,
  .model-comparison-table td,
  .model-comparison-table tr {
    display: block;
  }

  .model-comparison-table thead {
    display: none;
  }

  .model-comparison-table tr {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
   
  }
.model-comparison-table {
    box-shadow: none;
}
  .model-comparison-table td {
    padding: 10px 15px;
    border: none;
    position: relative;
  }

  .model-comparison-table td::before {
    content: attr(data-label);
    font-weight: 700;
    display: block;
    color: #000;
    margin-bottom: 5px;
  }
  .product-features {
    padding: 0;
}
}
</style>






