  @import 'https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700|Raleway:300,400,600&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Teko:wght@400;600;700&display=swap';

* {
    box-sizing: border-box;
}
body {
  font-family: montserrat, sans-serif;
  padding: 0;
  margin: 0;
  color: #666666;
  font-size: 16px;
  overflow-x: hidden!important;
  box-sizing: border-box;
}
h6{
    font-size: 16px;
}
.box-wrapper
{
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}
a {
  text-decoration: none;
}

button {
  outline: 0 !important;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
color: #30323c;
  font-family: 'Teko', sans-serif;
  margin: 0 0 15px;
  padding: 0;
  transition: .3s;
  text-transform: uppercase;
}

.bg-dark
{background: #222!important;}
/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('../images/AdobeStock_691252968_Editorial_Use_Only.jpg') center/cover no-repeat;
    height: 100vh;
    position: relative;
    color: white;
    padding: 2rem;
}
.hero-section1 {
    height: 100vh;
    position: relative;
    color: white;
    padding: 2rem 1rem;
}
.hero-section .logo img, .hero-section1 .logo img
{height: 70px;
    position: absolute;
    top: 50px;
}
.hero-section1 p{
    font-size: 13px;
    color: #000;
    text-align: center;
}
.hero-content {
    max-width: 600px;
    position: absolute;
  bottom: 0;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #fff;
    text-transform: capitalize;
}
.imagewrapper {
    height: 100vh;
    position: relative;
    color: white;
    padding: 2rem;
    padding-top: 8.5rem;
    border-right: 1px solid #eee;
}
.imagewrapper .logo img
{
height: 70px;
  position: absolute;
  top: 50px;
}
.vehicle-image {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
}

.vehicle-image .vehicle-overlay-image {
  position: absolute;
  top: 0;
  left: 0;
}
.bottom-content {
  align-items: center;
  bottom: .5rem;
  display: flex;
  flex-direction: column;
  gap: var(--text-spacing-xs);
  padding: 0 var(--container-padding);
  position: absolute;
  text-align: center;
  left: 0;
  padding: 0px 30px;
}
/* Sidebar Section */
.sidebar-section {
    background-color: #ffffff;
    min-height: 100vh;
    padding: 0;
}

.model-selector-container {
    padding-top: 1.5rem;
    height: 100vh;
  overflow: auto;
  background: #fafafa;
}

.selector-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

/* Model Options */
.model-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.grid-options
{
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* Optional space between grid items */
}
.model-option {
    position: relative;
}

.model-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.model-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #111;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 0;
}



.model-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 15px;
    padding-top: 15px;
    overflow: hidden;
}

.model-indicator {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.model-name {
    font-size: 1rem;
    font-weight: 800;
    color: #333;
}

.model-image {
    flex-shrink: 0;
    padding: .25rem;
}

.car-thumbnail {
    width: 100%;
    height: 125px;
    object-fit: cover;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Model-specific colors */
.model-s-indicator {
    background-color: #ddd;
}

.model-3-indicator {
    background-color: #ddd;
}

.model-y-indicator {
    background-color: #ddd;
}

.model-x-indicator {
    background-color: #ddd;
}

.cybertruck-indicator {
    background-color: #ddd;
}

/* Selected states */
.model-radio:checked + .model-label {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.model-radio:checked + .model-label .model-s-indicator {
    background-color: #e61b27;
}

.model-radio:checked + .model-label .model-3-indicator {
    background-color: #e61b27;
}

.model-radio:checked + .model-label .model-y-indicator {
    background-color: #e61b27;
}

.model-radio:checked + .model-label .model-x-indicator {
    background-color: #e61b27;
}

.model-radio:checked + .model-label .cybertruck-indicator {
    background-color: #e61b27;
}


.model-option[data-model="model-s"] .model-radio:checked + .model-label {
    border-color: #e61b27;
    border-width: 2px;
}

.model-option[data-model="model-3"] .model-radio:checked + .model-label {
    border-color: #e61b27;
    border-width: 2px;
}

.model-option[data-model="model-y"] .model-radio:checked + .model-label {
    border-color: #e61b27;
    border-width: 2px;
}

.model-option[data-model="model-x"] .model-radio:checked + .model-label {
    border-color: #e61b27;
    border-width: 2px;
}

.model-option[data-model="cybertruck"] .model-radio:checked + .model-label {
    border-color: #e61b27;
    border-width: 2px;
}

/* Next Button */
.btn-next {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: none;
}

.btn-next:enabled {
    background-color: #4d4c4c;
    color: white;
}

.btn-next:enabled:hover {
    background-color: #000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

.btn-next:disabled {
    background-color: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}
.model-form .form-height
{
    position: relative;
    padding: 0rem;
    height: 100%;
}
.model-form .form-height .inner-form
{
    padding: 0rem 2.5rem;
}

.model-form .form-height .form-footer
{
    position: sticky;
    bottom: 0px;
 border-top: 1px solid #cdcdcd;
 background: #fff;
    padding: 1.2rem 2.5rem;
    z-index: 99;
}
/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 60vh;
        order: 1;
    }
    
    .sidebar-section {
        min-height: auto;
        order: 2;
        box-shadow: none;
        border-top: 1px solid #e0e0e0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        margin-left: 0;
        text-align: center;
    }
    
.model-selector-container
{height: auto;}
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .model-selector-container {
        padding: 1.5rem 1rem;
    }
    
    .model-label {
        padding: 0.875rem 1rem;
    }
    

}


.paint-protection-section

{
    padding: 100px 0px;
}

h1.tittle
{
    font-size: 3rem;
    font-weight: 800;
}
.paint-protection-section .features-list .feature-item
{
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.paint-protection-section .features-list .feature-item .feature-icon
{
    font-size: 2rem;
    color: #333;
}
.paint-protection-section .features-list .feature-item .feature-content h3
{margin-bottom: 10px}
{
    font-size: 2rem;
    color: #333;
}
/* Privacy Section */
.privacy-section {
    background-color: #000000;
    padding: 100px 0;
}

.privacy-content {
    padding: 2rem 0;
}

.privacy-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-content p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
}

.privacy-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-placeholder {
    width: 100%;
    height: 300px;
    background-color: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.person-placeholder::before {
    content: "Person Image";
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Products Section */
.products-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.products-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #666666;
}

.product-card {
    background-color: #ffffff;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    height: 100%;
}

.product-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
}

.product-features {
    margin-bottom: 2rem;
}

.feature-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eeeeee;
}

.feature-row:last-child {
    border-bottom: none;
}

.feature-label {
    font-weight: 700;
    color: #dc3545;
    font-size: 1rem;
}

.feature-desc {
    font-weight: 400;
    color: #000000;
    font-size: 0.9rem;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 0.5rem;
}

.product-cost {
    font-size: 0.9rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666666;
    font-style: italic;
}

/* Installation Section */
.installation-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.installation-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.installation-section .lead {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 3rem;
}

.installation-features {
    margin-top: 2rem;
}

.installation-feature {
   display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem 0;
  background: #fff;
  padding: 25px;
  border-radius: 20px;
}

.installation-feature .feature-icon {
    width: 50px;
    height: 50px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    box-shadow: none;
}

.installation-feature .feature-icon i {
    color: #ffffff;
    font-size: 1.2rem;
}

.installation-feature h5 {
    font-size: 1.7rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.installation-feature p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.installation-image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.installer-placeholder {
    width: 100%;
    height: 400px;
    background-color: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.installer-placeholder::before {
    content: "Installer Image";
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Foundation Section */
.foundation-section {
    background-color: #ffffff;
    padding: 100px 0;
}

.foundation-content {
    padding: 2rem 0;
}

.foundation-content h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.foundation-content p {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

.foundation-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-road-placeholder {
    width: 100%;
    height: 300px;
    background-color: #dc3545;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-road-placeholder::before {
    content: "Car on Road Image";
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.faq-section h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 3rem;
}

.accordion {
  cursor: pointer;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  position: relative;
  background: none;
  border-bottom: 1px solid #333;
  font-size: 15px;
}

.accordion .icon:after {
  content: '+';
  font-size: 18px;
  float: right;
  margin-left: 10px;
}

/* Change to minus when open */
.accordion.active .icon:after {
  content: '-';
}

.panel {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  padding-top: 14px;
}


/* Contact Section */
.contact-section {
    background-color: #000000;
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-section .lead {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: #4d4c4c;
    border-color: #4d4c4c;
    color: #ffffff;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #000;
    border-color: #000;
    transform: translateY(-2px);
}

/* Footer */
.footer-section {
    background-color: #333;
    padding: 40px 0;
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.9rem;
    color: #fff;
    margin: 0;
}
.configuration-header
{
    display: flex;
    justify-content: space-between;
}
.configuration-header a
{text-decoration: underline; padding: 0 0 .125rem; font-size: 14px; font-weight: 800;}
.model-form .accordion
{padding: 0px; margin-bottom: 50px; border: none; font-weight: 400; color: #333}
.model-form .accordion .card-header
{
    font-size: 17px;
    color: #333;
    font-weight: 600;
}
.model-form .accordion .card-body
{padding-top: 0px}
.model-form .accordion .card-header::after {
    content: "\f067"; /* Font Awesome plus icon unicode */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: transform 0.3s ease;
  }
 .model-form .accordion .card-header:not(.collapsed)::after {
    content: "\f068"; /* Font Awesome minus icon unicode */
  }
 .model-form .accordion > .card > .card-header
 {background: none; border: none;}
 .model-form .accordion .card-body ul.nav-tabs
 {
align-items: center;
  background-color: #111;
  border-radius: 5px;
  display: grid;
  flex-direction: row;
  gap: .375rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
  padding: .375rem;
 }
  .model-form .accordion .card-body ul.nav-tabs .nav-link
  {
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    border: none;
  }
  .model-form .accordion .card-body ul.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #e61b27;
  border: none;
}
 .model-form .accordion .card-body .tab-content
 {border: none;}
.ppf-selector .option {
  border: 2px solid #d0d0d0;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 12px;
  padding: 15px 18px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  width: 100%;
}
.ppf-selector .option input[type="radio"] {
  appearance: none;
  width: 0;
  height: 0;
  position: absolute;
}
.ppf-selector .option-content {
  flex:1;
  margin-left: 8px;
}
.ppf-selector .tint-title {
  font-size: 1.18rem;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.ppf-selector .tint-desc {
  font-size: 13px;
  color: #444;

}
.ppf-selector .price 
  {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  margin-left: 14px;
  position: absolute;
  right: -2px;
  top: 0px;
  background: #111;
  padding: 5px 10px;
  color: #fff;
  border-top-right-radius: 8px;
}


.ppf-selector .option input[type="radio"]:checked + .option-content + .price,
.option input[type="radio"]:checked ~ .price {
  border-left: none;
}

.ppf-selector .option input[type="radio"]:checked + .option-content, 
.option input[type="radio"]:checked + .option-content + .price,
.option input[type="radio"]:checked ~ .price,
.option input[type="radio"]:checked ~ .option-content {
  /* radio checked styles */
}
.ppf-selector .option input[type="radio"]:checked ~ .option-content,
.option input[type="radio"]:checked ~ .price,
.option input[type="radio"]:checked ~ .option-content {
  /* radio checked styles */
}
.ppf-selector .option input[type="radio"]:checked ~ .option-content,
.option input[type="radio"]:checked ~ .price {
  /* radio checked styles */
}
.ppf-selector .option input[type="radio"]:checked ~ .option-content,
.option input[type="radio"]:checked ~ .price {
  /* radio checked styles */
}
.ppf-selector .option input[type="radio"]:checked ~ .option-content,
.option input[type="radio"]:checked ~ .price,
.option input[type="radio"]:checked ~ .option-content {
  /* radio checked styles */
}
.ppf-selector .option input[type="radio"]:checked ~ .option-content,
.option input[type="radio"]:checked ~ .price {
  /* radio checked styles */
}

.ppf-selector .option input[type="radio"]:checked ~ .option-content,
.option input[type="radio"]:checked ~ .price,
.option input[type="radio"]:checked ~ .option-content {
  /* radio checked styles */
}

.ppf-selector .option:has(input[type="radio"]:checked){
  border-color: #222;
  background: #fff;
}
.ppf-selector .option:has(input[type="radio"]:checked)::after {
  content: '✓';
  position: absolute;
  right: 18px;
  bottom: 5px;
  font-size: 1.5rem;
  color: #d20c18;
  font-weight: bold;
}
.ppf-selector .flex-option
{display: flex; justify-content: space-between;}


.coverage-area-selector .radio-card {
      display: flex;
      flex-direction: column;
      position: relative;
      border: 2px solid #222;
      border-radius: 12px;
      padding: 22px 22px 22px 58px;
      margin: 18px 0;
      background: #fff;
      transition: border-color 0.2s;
    }
.coverage-area-selector .radio-card:not(.selected) {
      border-color: #ddd;
    }
    /* Hide default radio */
.coverage-area-selector .radio-card input[type="radio"] {
      position: absolute;
      left: 22px;
      top: 32px;
      opacity: 0;
      width: 22px;
      height: 22px;
      margin: 0;
      z-index: 2;
      cursor: pointer;
    }
    /* Custom radio outer */
.coverage-area-selector .custom-radio {
      position: absolute;
      left: 22px;
      top: 32px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      border: 2px solid #222;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1;
    }
    /* Custom radio inner (filled) */
.coverage-area-selector .radio-card input[type="radio"]:checked + .custom-radio::after {
      content: "";
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #222;
      display: block;
    }
    /* Heading and price */
.coverage-area-selector .radio-card .header-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 7px;
    }
.coverage-area-selector .radio-card label {
      font-size: 15px;
      font-weight: bold;
      cursor: pointer;
      margin: 0;
      display: block;
      flex: 1;
    }
    .coverage-area-selector .radio-card
    {
        display: block;
        cursor: pointer;
    }
.coverage-area-selector .radio-card .price {
      font-size: 14px;
      font-weight: 500;
    }
.coverage-area-selector .radio-card .desc {
      color: #444;
      font-size: 13px;
      margin-bottom: -3px;
      margin-top: -2px;
      line-height: 1.28;
    }
.coverage-area-selector .radio-card:has(input[type="radio"]:checked) {
  border-color: #222;
  background: #fff;
}


@media only screen and (max-width: 991.98px) {
  .hero-section
  {height: auto;}
   .hero-content {
    margin-left: 30px;
    text-align: center;
  }
  .paint-protection-section {
  padding: 100px 0px;
  padding-top: 0px;
}
.imagewrapper .logo img {
  height: 40px;
  position: absolute;
  top: 19px;
}
.hero-section .logo img {
  height: 40px;
  position: absolute;
  top: 19px;
}
.imagewrapper
{height: auto; padding-top: 0px}
}
@media only screen and (max-width: 575.98px) {
  .model-form .form-height .inner-form {
  padding: 0rem 1rem;
}
.grid-options {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 6px;
}
.model-label
{flex-direction: row;}
.model-info
{margin-bottom: 0px; padding-top: 0px;}
.car-thumbnail {
  width: 100%;
  height: 63px;
}
}

        .car-image-container {
            border-radius: 8px;
            padding: 30px 0px;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-top: 2rem;
        }
        .car-image {
            max-width: 100%;
            max-height: 100%;
            transition: all 0.5s ease;
            border-radius: 4px;
        }
        .model-option {
            cursor: pointer;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 3px 3px 3px 15px;
            margin-bottom: 15px;
            transition: all 0.3s;
            background: #fff;
        }
        .model-option:hover, .model-option.selectedmodel {
            border-color: #000;
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .model-option img {
            max-height: 80px;
            object-fit: contain;
            background: #ddd;
        }
        .color-option {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: inline-block;
            margin: 8px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .color-option:hover, .color-option.selected {
            border: 2px solid #000;
            transform: scale(1.15);
        }
        .option-card {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .option-card:hover, .option-card.selected {
            border-color: #111;
            background-color: #f8f9fa;
        }
        .nav-tabs .nav-link {
            color: #495057;
            font-weight: 500;
            padding: 10px 15px;
        }
        .nav-tabs .nav-link.active {
            color: #007bff;
            font-weight: 600;
            border-bottom: 3px solid #007bff;
        }
        .accordion .card-header {
            background-color: white;
            cursor: pointer;
            padding: 15px 20px;
            border-bottom: 1px solid rgba(0,0,0,.125);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .accordion .card-header h5 {
            margin-bottom: 0;
            flex-grow: 1;
        }
        .accordion-toggle-icon {
            font-size: 1.2rem;
            color: #6c757d;
            transition: transform 0.3s ease;
        }
        .next-btn {
            font-weight: 600;
            padding: 12px 24px;
            font-size: 1.1rem;
        }
        .change-model {
            font-size: 0.9rem;
            color: #333;
            font-weight: 600;
            text-decoration: underline;
        }
        .tab-content {
            padding: 20px 0;
        }
        .color-tab {
            padding: 10px 0;
        }
        .price-tag {
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        .coverage-option {
            margin-bottom: 15px;
            padding: 12px;
            border: 1px solid #333;
            border-radius: 6px;
        }
        .coverage-option:hover {
            background-color: #f8f9fa;
        }
       
        .form-check-input {
            width: 20px;
            height: 20px;
            margin-top: 0.3rem;
        }
        .form-check-label {
            margin-left: 10px;
            font-size: 19px;
            font-weight: 500;
            font-family: 'Teko', sans-serif;
            color: #333;
            text-transform: uppercase;
        }
        .additional-options {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            border-left: 4px solid #007bff;
        }
        .coverage-options {
            display: none;
            margin-top: 15px;
        }
        .option-card.selected .coverage-options {
            display: block;
        }
        .color-coverage {
            display: none;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #dee2e6;
        }
        .color-options-container:has(.color-option.selected) ~ .color-coverage {
            display: block;
        }
        .section-disabled {
            opacity: 0.6;
            pointer-events: none;
        }
        .error-message {
            color: #dc3545;
            font-size: 0.9rem;
            margin-top: 5px;
            display: none;
        }
        .checkout-message {
            background-color: #f8d7da;
            color: #721c24;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 15px;
            display: none;
        }

.form-footer {
  position: sticky;
  bottom: 0px;
  border-top: 1px solid #cdcdcd;
  background: #fff;
  padding: 1.2rem 2.5rem;
  z-index: 99;
  width: 100%;
}
.option-card h5
{font-size: 26px;}
.coverage-options h6
{font-size: 18px!important;}
.accordion .card-header h5
{font-size: 30px}
.accordion .card-body ul.nav-tabs
 {
align-items: center;
  background-color: #111;
  border-radius: 5px;
  display: grid;
  flex-direction: row;
  gap: .375rem;
  grid-template-columns: repeat(2,minmax(0,1fr));
  padding: .375rem;
 }
.accordion .card-body ul.nav-tabs .nav-link
  {
    border-radius: 5px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    border: none;
  }
.accordion .card-body ul.nav-tabs .nav-link.active {
  color: #fff;
  background-color: #e61b27;
  border: none;
}
.total-price-container
{font-weight: 600; color: #333; font-size: 20px}
.accordion-hidden {
            display: none;
}
.smodel-hidden{
    display: none!important;
}
.hb-hidden{
    display: none!important;
}