.config-step h2 {
    margin-bottom: 50px;
}
.config-step input::placeholder {
    color: rgba(255, 255, 255, 0.80);
	font-size: 14px;
	font-style: italic;
	font-weight: 300;
	line-height: normal;
}


.config-step input * {
    color: #fff !important;
}

/* Input Fields */
.config-step input[type="text"],.config-step input[type="email"] {
    width: 100%;
    margin-bottom: 28px;
    transition: all 0.25s ease;
    border: 1px solid #444;
    background: #1A1A1A;
    padding: 16px 20px;
	margin-top:10px;
	color: rgba(255, 255, 255, 0.80);
	font-size: 15px;
	font-weight: 300;
	line-height: normal;
	letter-spacing: 0.6px;
}

/* Focus State */
.config-step input[type="text"]:focus-visible,.config-step input[type="email"]:focus-visible {
    border-color: none;
    box-shadow: none;
    outline: none;
}

.config-step input[type="text"] {
	caret-color: #fff !important;
}

.config-step input:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;
}


/* Make the container relative */
#seat-configurator {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px 40px 0px 70px;
}

/* Vertical dots */
.progress-dots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}
.progress-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4A332;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}
.progress-dots .dot.completed {
    background: #D4A332;
    cursor: pointer;
}
.progress-dots .dot.disabled {
    background: #D4A332;
    opacity: 0.5;
}

/* Tooltip for dots (optional - shows step number on hover) */
.progress-dots .dot::after {
    content: attr(data-step);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.progress-dots .dot:hover::after {
    opacity: 1;
}

/* Mobile fallback: dots on top */
@media (max-width: 768px) {
    #seat-configurator {
        padding-right: 20px;
        /* normal padding on mobile */
    }

    .progress-dots {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-bottom: 40px;
        transform: none;
    }
    
    /* Remove tooltip on mobile */
    .progress-dots .dot::after {
        display: none;
    }
}



/* Steps */
.config-step {
    display: none;
    opacity: 0;
/*     transition: opacity 0.4s ease-in-out; */
}

.config-step.active {
    display: block;
    opacity: 1;
/*     animation: slideUp 0.8s ease-out; */
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.config-step h3 {
    margin-bottom: 25px;
    font-size: 26px;
    text-align: center;
    color: #333;
}

/* Selects */
.config-step select {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s;
}

.config-step select:focus {
    border-color: #0073aa;
    outline: none;
}

/* Package & Color Options */
.package-options {
  display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.package-options .package {
    cursor: pointer;
    transition: all 0.3s;
    text-align: left;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: none;
	display: flex;
}
.package:hover, .color:hover ,.package.selected{
   	border: 1.5px solid rgba(212, 163, 50, 0.40);
	background: rgba(255, 255, 255, 0.12) !important;
	backdrop-filter: blur(5px);
}
.package-left {
    width: 70%;
}
span.package-price {
    width: 30%;
    text-align: right;
}
.package-left p {
    color: rgba(255, 255, 255, 0.80);
   font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 17px;
	text-transform: capitalize;
	margin-top: 14px;
}

.package strong {
    color:#FEFEFE;
	font-family: Kanit;
	font-size: 22px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.package span {
    color: #D4A332;
	font-family: Kanit;
	font-size: 34px;
	font-style: normal;
	font-weight: 500;
	line-height: 40.8px; /* 120% */
	letter-spacing: 0.68px;
	text-transform: uppercase;
}
/*colour options*/
.color-options {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
    padding: 20px;
}
.row.color-wrapper {
    display: flex;
    width: 100%;
    gap: 17px;
	margin-top: 20px;
}
.color-options button.variation-image img {
    width: 100%;
}
.color-options button.variation-image, .color-options button.variation-image:hover  {
    background: transparent;
    border: none;
    padding: 0;
    width: 25%;
	cursor: pointer;
}
.row.colour-label strong {
    color: #FEFEFE;
    font-family: Roboto, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
}
.color-options button.variation-image.selected img {
    border: 1px solid #D4A332 !important;
}
/* Summary */
#summary {
/*     background: #f9f9f9; */
/*     padding: 25px;
    border-radius: 8px; */
    margin-bottom: 25px;
/*     border: 2px solid #e0e0e0; */
}

#summary p {
    margin: 12px 0;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
}

#summary p strong {
    color: #555;
}

#summary .label {
    color: #A3A3A3;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
	padding-bottom: 15px;
}

#summary .summary-row.bot-price {
    display: flex;
    justify-content: space-between;
}

#summary .price-row {
    display: flex;
    align-items: end;
    gap: 6px;
}

#summary .check-box {
    padding-top: 30px;
}

#summary .check-box label {
    color: rgba(255, 255, 255, 0.80);
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

#summary .check-box label a {
	text-decoration: underline !important;
	color: rgba(255, 255, 255, 0.80) !important;
}

#summary .check-box form {
    align-items: center;
    display: flex;
    gap: 7px;
}

#summary .check-box form input, #summary .check-box form label {
	cursor: pointer !important;
}

#summary input#checkbox-yellow {
    accent-color: #D4A332;
}

button.product-btn {
/*     background-color: #FFFFFF33 !important; */
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    font-style: normal;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 0px 0px 0px 0px;
    padding: 12px 75px 12px 24px;
	position: relative;
    width: 100%;
    border: none;
	color: #fff !important;
}

 button.product-btn:hover {
    background-color: #FFFFFF00 !important;
}
 button.product-btn {
transition: all 0.5s;
}
button.product-btn::before {
    content: '';
    position: absolute;
    background: #D4A332 !important;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    width: 50px;
    top: 50% !important;
    transform: translatey(-50%);
    border-left: 1px solid #000;
    height: 100%;
}

.price-row img {
    border: 1px solid #D4A332 !important;
}

button.product-btn  {
	color: #fff !important;
}

button.product-btn:hover {
	color: #000 !important;
	color:white !important;
}

button.product-btn::after {
    content: '';
    position: absolute;
    margin-left: 0px;
    background-image: url(/wp-content/uploads/2026/01/Arrow-1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 18px;
    top: 50% !important;
    transform: translatey(-50%);
    height: 20px;
    width: 14px;
}

#summary .value {
    color: #FEFEFE;
    font-family: Roboto,sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#summary .price-row > .label {
    color: rgba(255, 255, 255, 0.80) !important;
    font-family: Roboto,sans-serif !important;
    font-size: 14px !important;
    font-style: italic !important;
    font-weight: 300 !important;
    line-height: normal !important;
    text-transform: unset !important;
	padding: 0 !important;
}

/* For Chrome, Safari, Edge */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #1A1A1A inset !important; /* background */
    -webkit-text-fill-color: #fff !important; /* text color */
    /* transition: background-color 5000s ease-in-out 0s;  prevent flash */
}
 
/* Optional: Firefox */
input:-moz-autofill {
    box-shadow: 0 0 0px 1000px #1A1A1A inset !important;
    -moz-text-fill-color: #fff !important;
}

#summary .price-row span {
    color: #D4A332 !important;
    font-family: 'Kanit';
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 1 !important;
    letter-spacing: 0.48px;
    text-transform: uppercase;
}

#summary .summary-border {
    border-bottom: 1px solid #464646;
    margin: 20px 0 !important;
}

#summary .summary-row.bot-color {
    display: flex;
    justify-content: space-between;
}

#summary .price-row.last-price span {
    color: #D4A332 !important;
    font-family: Kanit;
    font-size: 40px !important;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.product-btn.gold-btn {
	background: #D4A332 !important;
	color: #000 !important;
}

#summary .price-row.last-price {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

nav.custom-breadcrumb, nav.custom-breadcrumb a {
    color: rgba(255, 255, 255, 0.80);
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-decoration: none;
}

nav.custom-breadcrumb {
    padding-left: 80px;
    padding-bottom: 40px;
}

#step1-error {
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 17px;
}

span#selected-colour, #selected-combination {
    color: #FEFEFE;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.color-options .row.colour-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Buy Now Button */
/* #buy-now {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: #28a745;
    color: white;
    transition: all 0.3s;
}

#buy-now:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

#buy-now:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
} */

.step-vehicle,
.step-package {
    color: #fff;
    text-transform: uppercase;
}

.step-vehicle h3,
.step-package h3,
.step-package button strong,
.step-package button small,
.step-package button span {
    color: #fff;
    text-transform: uppercase;
}

button {
    cursor: pointer !important;
}

.step-vehicle input::placeholder {
    color: #fff;
    opacity: 0.8;
    text-transform: uppercase;
}

.about-vehicle-label {
    color: white;
}

.checkout-cart-display {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.checkout-cart-title {
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.checkout-cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr auto auto auto;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    align-items: center;
}

.item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.item-details {
    flex: 1;
}

.item-name {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
}

.item-meta {
    font-size: 13px;
    color: #666;
    margin-top: 3px;
}

.meta-label {
    font-weight: 500;
    color: #444;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 5px 8px;
    border-radius: 6px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #e0e0e0;
    border-color: #999;
}

.qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.item-price {
    font-weight: 600;
    font-size: 16px;
    color: #28a745;
    min-width: 80px;
    text-align: right;
}

.item-remove button {
    width: 32px;
    height: 32px;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.2s;
}

.item-remove button:hover {
    background: #c82333;
}

.checkout-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-size: 18px;
}

.checkout-cart-total strong {
    color: #28a745;
    font-size: 20px;
}








/* ============================
   MOBILE MULTI-STEP LAYOUT
   ============================ */
@media (max-width: 767px) {
 
  /* Step card feel */
  .config-step {
    padding: 16px;
    border-radius: 12px;
    background: #111;
  }
 
  /* Product image per step */
  .mobile-step-image {
    width: 100%;
    margin: 16px 0;
  }
 
  .mobile-step-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
	
	
		#seat-user-form-container{
		    margin: 0px auto !important;
	}
	
	.form-field {
    width: calc(100% - 5px) !important;
}

 
}



/* Fix WooCommerce Product Gallery Aspect Ratio */
/* Prevent square cropping of product images - AGGRESSIVE FIX */

/* Remove forced aspect ratio from gallery wrapper */
.woocommerce-product-gallery__wrapper,
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image a {
    padding-bottom: 0 !important;
    height: auto !important;
    position: relative !important;
}

/* Force images to maintain aspect ratio */
.woocommerce-product-gallery__image img,
.woocommerce-product-gallery img,
.wp-post-image,
.woocommerce-product-gallery__wrapper img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    max-width: 100%;
    display: block;
    aspect-ratio: auto !important;
}

/* Remove any ::before or ::after pseudo elements that create square containers */
.woocommerce-product-gallery__image::before,
.woocommerce-product-gallery__wrapper::before {
    display: none !important;
}

/* Ensure gallery wrapper doesn't force square */
.woocommerce-product-gallery {
    position: relative;
    height: auto !important;
}

/* Fix for Flexslider if your theme uses it */
.flex-viewport,
.flex-viewport .slides,
.flex-viewport .slides > li {
    height: auto !important;
    padding-bottom: 0 !important;
}

.flex-viewport img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Mobile step image fix */
.mobile-step-image,
.mobile-step-image img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    padding-bottom: 0 !important;
}

/* Ensure lightbox/popup shows full image */
.pswp__img {
    object-fit: contain !important;
}

/* Override any theme-specific square aspect ratio */
.woocommerce div.product div.images.woocommerce-product-gallery,
.woocommerce div.product div.images,
.woocommerce-product-gallery__wrapper {
    aspect-ratio: auto !important;
}

/* Fix for common WooCommerce gallery plugins */
.woocommerce-product-gallery__image img[class*="attachment-"],
.woocommerce-product-gallery img[class*="wp-post-image"] {
    max-height: none !important;
    aspect-ratio: auto !important;
}

/* form */

.user-form-wrapper {
    max-width: 100%;
	margin: 60px auto;
	padding: 40px;
	background: #0f0f0f !important;
	border-radius: 10px;
	color: #ffffff;
	font-family: 'Segoe UI', sans-serif;
}
.safari #seat-user-form .form-field select{height:44px !important;}
form#seat-user-form {
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
	gap: 40px;
}
.form-col {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
    padding-top: 20px;
}

.button-order-col {
    width: 50%;
}
#order-summary-content tr {
    display: block;
    padding-bottom: 10px;
}
#order-summary-content tr td {
    min-width: 80px;
}
/* Headings */
.user-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.user-form-wrapper p {
    color: #aaaaaa;
    margin-bottom: 30px;
    font-size: 14px;
}

/* Form Fields */
.form-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

/* Labels */
.form-field label {
    font-size: 13px;
    margin-bottom: 8px;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ff4d4d;
}

/* Inputs */
#seat-user-form .form-field input,#seat-user-form .form-field textarea{
	background: #1c1c1c;
	border: 1px solid #2e2e2e !important;
	transition: all 0.3s ease;
	width: auto !important;
	color: #cccccc;
}
#seat-user-form .form-field select {
    background: #1c1c1c;
    border: 1px solid #2e2e2e !important;
    transition: all 0.3s ease;
    width: auto !important;
    color: #cccccc;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
}
/* Placeholder */
#seat-user-form .form-field input::placeholder,#seat-user-form .form-field textarea::placeholder{
	color: rgba(255, 255, 255, 0.80);
font-family: Roboto;
font-size: 14px;
font-style: italic;
font-weight: 300;
line-height: normal;
	color: #777777;
}
#seat-user-form .form-field select{
	color: rgba(255, 255, 255, 0.80);
font-family: Roboto;
font-size: 14px;
font-style: italic;
font-weight: 300;
line-height: normal;
color: #777777;
}
#seat-user-form .form-field option {
      font-family: 'Segoe UI', sans-serif;
}
/* Focus Effect */
#seat-user-form .form-field input:focus {
    outline: none;
    border-color: #e10600; /* red accent */
    box-shadow: 0 0 0 1px #e10600;
}

/* Submit Button */
/* #seat-user-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: #e10600;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}
 */
/* .submit-btn:hover {
    background: #ff1a1a;
} */
.submit-btn.submit-order {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: max-content;
    padding: 0;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    overflow: hidden;
    background: none;
}

/* Left Dark Section */
.submit-btn.submit-order {
    background: rgba(255, 255, 255, 0.20);
    color: #ffffff;
    padding: 0px 0px 0px 0; 
    font-size: 14px;
	margin-top:10px;
}
.submit-btn.submit-order span {
    padding: 0 10px;
}
.submit-order img {
    border-left: 1px solid #000;
}
.submit-order:hover{
	background: #D4A332 !important;
/* 	border-right:1px solid #000; */
}
/* Right Yellow Arrow Block */
/* .submit-btn.submit-order::after {
    content: "→";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    background: #d4a017;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}
 */
/* Hover Effect */
/* .submit-btn.submit-order:hover {
    background: #1e1e1e;
}
 */
/* .submit-btn.submit-order:hover::after {
    background: #f1b82d;
    
}
 */
/* Order Summary */
#seat-user-form-container {
    max-width: 90%;
    margin: 40px auto;
    padding: 20px;
}
#order-summary-container {
    margin-top: 0 !important;
    padding-top: 0;
/*     border-top: 1px solid #2e2e2e; */
}

#order-summary-container h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

#order-summary-content {
    background: #1c1c1c;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #2e2e2e;
}

#order-summary-content p {
    margin-bottom: 10px;
    font-size: 14px;
}

#order-summary-content strong {
    color: #ffffff;
}
#order-summary-content div{
    background: #1c1c1c !important;
}

/* form responsive */

@media (max-width: 768px) {
	form#seat-user-form {
    gap: 20px;
    flex-wrap: wrap;
	}
	.form-col {
    width: 100%;
}
	.button-order-col {
    width: 100%;
}
}


/* Hide mobile step image on desktop */

@media (min-width: 768px) {

  .mobile-step-image {

    display: none !important;

  }

}
 
/* Show mobile step image only on mobile */

@media (max-width: 767px) {

  .mobile-step-image {

    display: block !important;

  }

}
 


/* Mobile Responsive */
@media (max-width: 768px) {
    .checkout-cart-item {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }

    .item-quantity,
    .item-price,
    .item-remove {
        grid-column: 2;
    }

    .item-image {
        grid-row: 1 / 4;
    }
}


@media only screen and (max-width: 1566px) {
/* 	.config-step input[type="text"],.config-step input[type="email"]{
    	margin-bottom: 12px !important;
	} */
	.back-next-btn {
    margin-top: 20px;
}
	.seat-inline-field-error:not(:empty){
    margin-bottom: 12px;
}
}

@media only screen and (max-width: 1366px) {
	
	#summary .price-row.last-price span {
    	font-size: 37px !important;
	}
/* 	#summary .value {
    	font-size: 18px !important;
	} */
	nav.custom-breadcrumb {
    	padding-left: 20px;
    	padding-bottom: 20px;
	}
}
@media only screen and (max-width: 1199px) {
	#summary .price-row.last-price span {
        font-size: 33px !important;
    }
	#summary .price-row span {
    	font-size: 21px;
	}
	#summary .label {
    	font-size: 15px;
    	padding-bottom: 13px;
	}
	#seat-configurator {
    	padding: 20px 25px 0px 25px;
	}
	.config-step h2 {
    	margin-bottom: 35px;
	}
	.next-btn, .back-btn, .call-heading {
    	font-size: 18px !important;
	}
	.call-num, .call-num a {
    	font-size: 17px !important;
	}
}
@media only screen and (max-width: 1024px) {
	#summary .price-row.last-price span {
        font-size: 30px !important;
    }
	#summary .summary-border {
    	margin: 18px 0 !important;
	}
	nav.custom-breadcrumb, nav.custom-breadcrumb a {
    	font-size: 17px;
	}
	
	form#seat-user-form{
		    flex-wrap: wrap;
	}
	
	.form-col{
		    width: 100%;
	}
	
	.button-order-col {
    width: 100%;
}
	
	
}

@media only screen and (max-width: 799px) {
	.config-step h2 {
        margin-bottom: 25px;
    }

	#summary .price-row span {
        font-size: 20px;
    }
	#summary .check-box label {
    	font-size: 13px;
    	line-height: 1.5;
	}
	nav.custom-breadcrumb {
        padding-bottom: 10px;
    }
	nav.custom-breadcrumb, nav.custom-breadcrumb a {
        font-size: 16px;
    }
	#seat-configurator {
        padding: 0px 25px 0px 25px;
    }
}
@media only screen and (max-width: 767px) {
	  #seat-configurator {
        padding: 0;
    }
	nav.custom-breadcrumb, nav.custom-breadcrumb a {
        font-size: 15px;
    }
	nav.custom-breadcrumb {
        padding-bottom: 20px;
        padding-left: 20px;
    }
	.package span {
    	font-size: 30px;
	}
	.call-heading {
    	font-size: 17px !important;
	}
	.call-num, .call-num a {
    	font-size: 16px !important;
	}
/* 	.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
		left: 0% !important;
	} */
	.config-step input[type="text"], .config-step input[type="email"]{
		padding:14px 20px;
	}
	    .back-next-btn {
        margin-top: 15px;
    }
	    .config-step h2 {
        margin-bottom: 20px;
    }
	span#selected-colour, #selected-combination, #selected-color{
		font-size:15px;
	}
	
}
@media only screen and (max-width: 479px) {
	#summary .label {
        font-size: 14px;
        padding-bottom: 10px;
    }
	#summary .summary-border {
        margin: 16px 0 !important;
    }
	#summary .check-box {
    	padding-top: 20px;
	}
	#summary .price-row.price-1 .label {
    	display: none;
	}
	nav.custom-breadcrumb, nav.custom-breadcrumb a {
        font-size: 12px;
    }
	.package span {
        font-size: 28px;
    }
	.package strong {
    	font-size: 20px;
	}
	.call-heading {
        font-size: 16px !important;
    }
	.call-num, .call-num a {
        font-size: 15px !important;
    }
	.package-options .package{
		padding: 15px 20px;
	}
	.package-left p{
		    margin-top: 9px;
	}
	    .config-step input[type="text"], .config-step input[type="email"] {
        padding: 13px 15px;
    }
	    .package strong {
        font-size: 17px;
			line-height:100%;
    }
	    .package span {
        font-size: 19px !important;
    }
}
@media only screen and (max-width: 380px) {
	.package span {
        font-size: 24px;
    }
}


@media (max-width: 767px) {
  .woocommerce-product-gallery,
  .woocommerce-product-gallery__wrapper,
  .woocommerce-product-gallery__image,
  .product .images,
  .wp-post-image {
    display: none !important;
  }
}


#seat-user-form-container {
/*     max-width: 600px; */
    margin: 40px auto;
    padding: 20px;
}

.user-form-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.user-form-wrapper h2 span {
    color: #D4A332;
}
 
.form-field.address-field {
    width: 100%;
}
.form-field.note-feild {
    width: 100%;
}
.form-field {
    margin-bottom: 20px;
	    width: calc(50% - 5px);
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-field .required {
    color: red;
}

.form-field input , .form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #D4A332;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}
.review-btn-wrapper {
    display: flex;
    gap: 20px;
}
/* .review-submit-btn-inner:after
{ width: fit-content;
}  */
button#seat-quote-success-close {
    padding: 0;
	height:40px;
	width:40px;border: 1px solid #989898;
}
div#seat-quote-success-modal {
    border: 1px solid #989898 !important;
    padding: 30px !important;
}

.about-vehicle-note{
    color: white;
    font-size: 14px;
    font-style: italic;
    border: 1px solid #D4A332;
    padding: 10px;
}
