/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
 
#stone-quote-calculator button[type="submit"], 
#stone-quote-calculator input[type="submit"] {
    padding: 1rem 1.2rem;
    transition: none;
    border-radius: 0;
}

#stone-quote-calculator button[type="submit"]:hover, 
#stone-quote-calculator input[type="submit"]:hover, 
#stone-quote-calculator button[type="submit"]:focus, 
#stone-quote-calculator input[type="submit"]:focus {
    background: transparent;
    color: var(--e-global-color-text);
    outline: 0;
}

#stone-quote-calculator h3 {
    font-size: 24px;
    font-weight: 500;
}

#other-material-name, #other-material-color {
    margin-top: 30px;
}

.material-type .section-input {
    display: grid;
    grid-template-columns: repeat(4, minmax(160px, 200px));
    gap: 24px;
    justify-content: start;
}

@media (max-width: 992px) {
    .material-type .section-input {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .material-type .section-input {
        grid-template-columns: 1fr 1fr;
    }
}



#stone-quote-calculator .section-title {
    font-family: "Inter", Sans-serif;
    font-size: 24px;
    line-height: 1.5em;
    color: #131313;
    margin-bottom: 10px;
}
#stone-quote-calculator .section-desc {
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    line-height: 1.7em;
    color: #9b9b9b;
    margin-bottom: 15px;
}

#stone-quote-calculator #material-color:focus {
    outline: none;
    border-color: #e16b39;
    background: #fff;
}

#stone-quote-calculator #material-color {
    width: 35%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    #stone-quote-calculator #material-color {
		width: 60%;
    }
}

@media (max-width: 480px) {
    #stone-quote-calculator #material-color {
		width: 100%;
    }
}
.ns-quote-info-fields .inner-section.details-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
	.ns-quote-info-fields .inner-section.details-columns {
        grid-template-columns: 1fr;
    }
}

#stone-quote-calculator .manufactures-input{
	margin-bottom:0px;
}
#stone-quote-calculator .manufactures-input label{
	cursor:pointer;
}
#stone-quote-calculator .manufactures-input input{
	display:none;
}
#stone-quote-calculator .manufactures-input .input-title{
	margin-top:25px;
    font-family: "Inter", Sans-serif;
	font-size:15px;
	line-height:1.5em;
	color:#131313;	
	text-align:center;
	font-weight:600;
}
#stone-quote-calculator .manufactures-input .input-img{
	position:relative;
	line-height: 1;
}

#stone-quote-calculator .manufactures-input input:checked + .input-img:after{
	position:absolute;
	top:0;
	left:0;
	content:"";
	display:block;
	border:3px solid #e16b39;
	right: 0;
    bottom: 0;
}
#stone-quote-calculator .manufactures-input input:checked + .input-img:before {
	position:absolute;
	top:15%;
	left:15%;
	width:30px;
	height:30px;
	content:"\2713";
	display:block;
	background: #e16b39;
	margin:-19px 0 0 -19px;
	border-radius:0px;
	font-size:21px;
	line-height:30px;
	color:#fff;
	text-align:center;
	z-index:5;
}
#stone-quote-calculator .manufactures-input .manufactures-logo{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	box-sizing:border-box;
	padding:25px;
	text-align:center;
}
#stone-quote-calculator .manufactures-input .manufactures-logo .manufactures-logo-img{
	display:table;
	width:100%;
	height:100%;
	background-attachment:scroll;
	background-position:center bottom;
	background-repeat:no-repeat;
	background-size:contain;
    opacity: 1;
    display: block;
}

#stone-quote-calculator .did-you-know-sec {
    background: url(../images/did-you-know-section-bg.jpg) scroll no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.5em;
    font-family: "Inter", Sans-serif;
    font-weight: normal;
    text-align: center;
}
#stone-quote-calculator .did-you-know-sec .did-sec-title {
    font-family: "Inter", Sans-serif;
    font-size: 30px;
    line-height: 1.2em;
    margin-bottom: 12px;
} 
#stone-quote-calculator .did-you-know-sec .did-sec-desc {
    width: 78%;
    margin: 0 auto;
}
#stone-quote-calculator input[type=text], #stone-quote-calculator input[type="textarea"], #stone-quote-calculator input[type="number"] {
    background: #f5f5f5;
    border-color: #dadada;
    border-width: 1px;
    border-style: solid;
}
#stone-quote-calculator input[type=text]:focus, #stone-quote-calculator input[type="textarea"]:focus, #stone-quote-calculator input[type="number"]:focus {
    border: 1px solid #e16b39 !important;
}
#stone-quote-calculator .form-extra-info, #stone-quote-calculator .form-footer p {
    margin-top: 0px;
    color: #9b9b9b;
}
#stone-quote-calculator .form-footer p a {
    color: #e16b39;
}
#stone-quote-calculator .form-footer p a:hover {
    color: #131313;
}
#stone-quote-calculator input[type=submit] {
    background-color: #e16b39;
    font-family: "Inter", Sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    fill: #fff;
    color: #fff;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #e16b39;
    border-radius: 0px 0px 0px 0px;
    padding: 12px 20px 12px 20px;
    margin-top: 25px;
}
#stone-quote-calculator input[type=submit]:hover {
    color: #fff;
    border-color: #131313;
    background: #131313;
}

#stone-quote-calculator .wallcoverage-options input[type="radio"] {
    top: -2px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 21px;
    height: 21px;
    border: 2px solid #131313;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    outline: none;
    transition: all 0.2s 
ease;
    vertical-align: middle;
    margin: 0 8px 0 0;
    padding: 5px !important;
}

#stone-quote-calculator .wallcoverage-options input[type="radio"]:checked::before {
    visibility: visible;
}

#stone-quote-calculator .wallcoverage-options input[type="radio"]:before {
    visibility: hidden;
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    margin: 0%;
    border-radius: 50px;
    background: #e16b39;
    border: 1px solid #e16b39;
}

#stone-quote-calculator .wallcoverage-options .radio-card {
    padding-right: 10px;
}

@media (min-width: 1199px) {
    #stone-quote-calculator .manufactures-input input:hover + .input-img:after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        border: 3px solid #e16b39;
        right: 0;
        bottom: 0;
    }
}
#stone-quote-calculator .manufactures-input .input-img img {
    height: 170px;
    width: 170px;
    object-fit: cover;
}
#stone-quote-calculator .measurements-input input:checked ~ .input-img {
    position: relative;
}
#stone-quote-calculator .measurements-input input:checked ~ .input-img:before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 32px;
    height: 32px;
    border-radius: 0px;
    content: "\2713";
    display: block;
    background: #e16b39;
    margin: 0 0 0 -22px;
    font-size: 21px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    z-index: 2;
    border: 2px solid transparent;
}

@media only screen and (max-width: 400px) {
    #stone-quote-calculator .shape-main-sec .shape-img {
        margin: 100px;
    }
    #stone-quote-calculator .u-shape-partc-length-sec {
        top: 40px;
    }
    #stone-quote-calculator .u-shape-parta-length-sec {
        top: 10px;
    }
    #stone-quote-calculator .u-shape-partb-length-sec {
        top: 80px;
    }
    #stone-quote-calculator .u-shape-partc-width-sec {
        top: 120px;
    }
    #stone-quote-calculator .l-shape-partb-length-sec {
        left: 90px;
    }
    #stone-quote-calculator .l-shape-parta-length-sec {
        top: 5px;
    }
    #stone-quote-calculator .u-shape-partc-width-sec {
        top: 145px;
    }
    #stone-quote-calculator .u-shape-partb-length-sec {
        top: 100px;
    }
    #stone-quote-calculator .l-shape-partb-length-sec {
        left: 140px;
    }
    #stone-quote-calculator .island-length-sec {
        top: 30%;
    }
}

@media (max-width: 767px) {
    #stone-quote-calculator .shape-main-sec .shape-img {
        margin: 70px;
    }
    #stone-quote-calculator .material-type .col-md-2 {
        width: 50%;
    }
    
    #stone-quote-calculator  .measurements-input {
        width: 100px !important;
    }
}


 .hidden, .hide {
    display: none !important;
}

.form-section {
	margin-bottom: 45px;
}

#stone-quote-calculator h4 {
	font-size: 18px;
	font-weight: 500;
}

input[type="text"], 
input[type="password"], 
input[type="email"], 
input[type="url"], 
input[type="tel"], 
input[type="number"], 
input[type="date"], 
input[type="search"], 
input[type="range"], 
input[type="textarea"],
select {
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    border: 1px solid var(--e-global-color-border);
    border-radius: 0;
    width: 100%;
}

input[type="textarea"] {
    height: 150px;
}

#stone-quote-calculator button[type="submit"], 
#stone-quote-calculator input[type="submit"] {
    padding: 1rem 1.2rem;
    transition: none;
    border-radius: 0;
}

#stone-quote-calculator button[type="submit"]:hover, 
#stone-quote-calculator input[type="submit"]:hover, 
#stone-quote-calculator button[type="submit"]:focus, 
#stone-quote-calculator input[type="submit"]:focus {
    background: transparent;
    color: var(--e-global-color-text);
    outline: 0;
}

#stone-quote-calculator h3 {
    font-size: 24px;
    font-weight: 500;
}

#other-material-name, #other-material-color {
    margin-top: 30px;
}

.quote-bg-img input {
	font-size: 14px;
}

.color-select {
	background: #fff;
	display: inline-block;
	padding: 5px 12px;
    color: #fff;
    margin: 5px;
	border-radius: 50px;
	border: 1px solid #ddd;
}

.white-color-select {
	background: #fff;
	color: #000;
}

.black-color-select {
	background: black;
}

.grey-color-select {
	background: grey;
}

.brown-color-select {
	background: brown;
}

/* .marble-color-select {
	background-image: url('https://www.inovastones.co.uk/wp-content/uploads/2019/11/Material-color-marble-effect.jpg');
} */

.other-color-select {
	background: transparent;
    color: #000000;
}

#stone-quote-calculator .error {
    width: 100%;
    color: red;
    font-size: 0.875rem;
    padding-top: 5px;
}

.waterfall h3 {
    display: inline-block;
}

#waterfall-fields-group {
	display: none;
}

#stone-quote-calculator .waterfall input[type="checkbox"] {
	vertical-align: middle;
	top: -1px;
    left: 5px;
}

#waterfall-fields-group {
	margin-bottom: 20px;
}

#waterfall-fields-group strong {
	padding: 5px;
    line-height: 40px;
}

#waterfall-fields-group {
	display: none;
}

#windowsills-fields-group {
	display: none;
}

#stone-quote-calculator .splashback h3 {
	display: inline-block;
}

#stone-quote-calculator .splashback input[type="checkbox"] {
	vertical-align: middle;
	top: -1px;
    left: 5px;
}

#splashbacks-fields-group {
	margin-bottom: 20px;
}

#splashbacks-fields-group strong {
	padding: 5px;
    line-height: 40px;
}

#stone-quote-calculator .col-sm-6.col-md-6, #stone-quote-calculator .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
    float: left;
}

@media only screen and (max-width: 767px) {
	#ns_upload_kitchen_drawings {
	    width: 40%;
	    display: inline-block;
	}

	#stone-quote-calculator button[type="submit"], #stone-quote-calculator input[type="submit"] {
        font-size: 13px;
	}
}

@media only screen and (max-width: 412px) {
	#ns_upload_kitchen_drawings {
	    width: 75%;
	    display: inline-block;
	}
}

@media only screen and (max-width: 568px) {
	#ultimate-heading-55545e721055ce04b .uvc-main-heading h1 {
	    padding-top: 8rem;
	}
	
	.uvc-heading.ultimate-heading-77525e7211d58be00 h1 {
	    padding-top: 8rem;
	}
}

@media only screen and (max-width: 767px) {
#stone-quote-calculator .first, #stone-quote-calculator .second, #stone-quote-calculator .third, #stone-quote-calculator .fourth, #stone-quote-calculator .fifth, #stone-quote-calculator .sixth, #stone-quote-calculator .seventh, #stone-quote-calculator .eighth, #stone-quote-calculator .ninth, #stone-quote-calculator .tenth, #stone-quote-calculator .eleventh, #stone-quote-calculator .twelveth {
    padding: 0 !important;
	}
}

/* Card style */
.shape-card {
  cursor: pointer;
  border: 2px solid #CED4DA;
  border-radius: 8px;
  overflow: hidden;
  transition: border 0.3s ease;
  position: relative;
  background: #fff;
  flex-grow: 1;
}

/* Selected border */
.shape-card.card-selected {
  border: 2px solid green;
}

/* Image full width */
.shape-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Checkbox hide */
.shape-card input[type="checkbox"] {
  display: none;
}

/* Tick icon */
.shape-card .tick-icon {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: green;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  z-index: 99;
}

/* Selected hone pe tick show karo */
.shape-card.card-selected .tick-icon {
  display: block;
}

/* Label name neeche dikhao */
.shape-card p:first-child {
  text-align: center;
  font-weight: bold;
  padding: 8px 0;
  margin: 0;
}

#stone-quote-calculator h3.shape-title {
    font-size: 18px;
    text-align: center;
	margin: 10px 0;
	font-weight: 500;
}

#stone-quote-calculator .shapes-cuts-inner {
	display: flex;
	gap: 10px;
	margin-bottom: 10px;
}

.ns-quote-info-fields {
    margin-top: 40px;
}

.ns-quote-info-fields label {
    display: block;
    font-size: 1rem;
    padding-bottom: 0.4rem;
}

.info-field-group {
    margin-bottom: 1rem;
}

/*material section*/
.material-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.material-field {
  cursor: pointer;
}

.material_selection {
  display: none;
}

/* .material-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--e-global-color-border);
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  transition: all 0.2s ease;
  user-select: none;
} */

.material-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--e-global-color-border);
  background: transparent;
  flex-shrink: 0;
}

.material_selection:checked + .material-pill {
  background: #eaf3de;
  border-color: #639922;
}

.material_selection:checked + .material-pill::before {
  background: #639922;
  border-color: #639922;
}

div#other-material-name, #other-material-color {
    background: #ffffff;
    padding: 20px;
    border: 1px solid var(--e-global-color-border);
}

div#other-material-name input[type="text"],
#other-material-color input[type="text"] { 
    background: var(--e-global-color-1fb8ee7);
}


/* Toggle Section Card 
*Waterfall on Worktop/Island?
*Full Splashback
*Window Sills
*
*/
.form-section.toggle-section {
  background: #fff;
  border-radius: 2px;
  border: 0.5px solid var(--e-global-color-border);
  padding: 20px 24px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 16px;
}

.toggle-section-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Title + Toggle Row */
.toggle-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.toggle-title {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

/* Toggle Switch — Shared */
.toggle_selection {
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 44px !important;
  height: 24px !important;
  background: #ccc !important;
  border-radius: 999px !important;
  position: relative !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
  flex-shrink: 0 !important;
  border: none !important;
  display: inline-block !important;
}

.toggle_selection::after {
  content: '' !important;
  position: absolute !important;
  width: 18px !important;
  height: 18px !important;
  background: white !important;
  border-radius: 50% !important;
  top: 3px !important;
  left: 3px !important;
  transition: left 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2) !important;
}

.toggle_selection:checked {
  background: #639922 !important;
}

.toggle_selection:checked::after {
  left: 23px !important;
}

/* Hidden Section */
.toggle-section-inner > div[id$="-fields-group"] {
  border-top: 0.5px solid var(--e-global-color-border);
  padding-top: 16px;
}

/* Subtitle */
.hidden-section-title {
  font-size: 12px;
  color: #999;
  margin-bottom: 16px;
}

/* Measurement Rows — Shared */
.measurement-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  width: 100%;
}

.measurement-row strong:first-child {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  width: 16px;
  flex-shrink: 0;
}

.measurement-row .seperator {
  font-size: 13px;
  color: #999;
  flex-shrink: 0;
}

.measurement-row input[type="text"] {
  flex: 1;
  min-width: 0 !important;
  width: auto !important;
  padding: 8px 12px;
  border: 1px solid var(--e-global-color-border);
  border-radius: 2px;
  font-size: 13px;
  color: var(--e-global-color-text);
  background: var(--e-global-color-1fb8ee7);
  transition: border 0.2s ease;
  box-sizing: border-box;
}

.measurement-row input[type="text"]:focus {
  outline: none;
  border-color: #639922;
  box-shadow: 0 0 0 3px rgba(99, 153, 34, 0.1);
  background: #fff;
}

/* Tablet */
@media (max-width: 768px) {
  .form-section.toggle-section {
    padding: 16px;
  }

  .toggle-title {
    font-size: 14px;
  }

  .measurement-row input[type="text"] {
    padding: 8px;
    font-size: 12px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .form-section.toggle-section {
    padding: 12px;
  }

  .toggle-title {
    font-size: 13px;
  }

  .measurement-row {
    gap: 6px;
  }

  .measurement-row strong:first-child {
    width: 12px;
  }

  .measurement-row input[type="text"] {
    padding: 6px 8px;
    font-size: 12px;
  }
}


/* Material Color Section */
.select-material-color {
  background: #fff;
  border: 0.5px solid var(--e-global-color-border);
  padding: 20px 24px;
  width: 100%;
  box-sizing: border-box;
}

.color-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.color-field {
  cursor: pointer;
}

/* Hide radio input */
.color_selection {
  display: none;
}

/* Pill Style */
.color-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid #ccc;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: #fff;
  transition: all 0.2s ease;
  user-select: none;
}

.color-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  flex-shrink: 0;
}

/* Selected State */
.color_selection:checked + .color-pill {
  background: #eaf3de;
  border-color: #639922;
  color: #3b6d11;
}

.color_selection:checked + .color-pill::before {
  background: #639922;
  border-color: #639922;
}

/* Other Color Input */
#other-material-color {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--e-global-color-border);
}

#other-material-color h4, #ther-material-name h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

#other-material-color input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  box-sizing: border-box;
}

#other-material-color input[type="text"]:focus {
  outline: none;
  border-color: #639922;
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .select-material-color {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .select-material-color {
    padding: 12px;
  }

  .color-pill {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* Select Stone Tickness section  */
.stone-thikness-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.thickness-field {
  cursor: pointer;
}

.select_stone_thickness {
  display: none;
}

.thickness-pill, .material-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--e-global-color-border);
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  transition: all 0.2s ease;
  user-select: none;
}

.thickness-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: transparent;
  flex-shrink: 0;
}

.select_stone_thickness:checked + .thickness-pill {
  background: #eaf3de;
  border-color: #639922;
  color: #3b6d11;
}

.select_stone_thickness:checked + .thickness-pill::before {
  background: #639922;
  border-color: #639922;
}



/* Worktop Section Card */
.form-section.worktop-size {
  background: #fff;
  border: 0.5px solid var(--e-global-color-border);
  padding: 20px 24px;
  width: 100%;
  box-sizing: border-box;
}

.worktop-size .inner-section h3 {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
}

/* File Upload Area */
.upload-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px dashed #ddd;
  background: #f9f9f9;
  margin-bottom: 16px;
  transition: border 0.2s ease;
  cursor: pointer;
}

.upload-area:hover {
  border-color: #639922;
  background: #f4faea;
}

.upload-area input[type="file"] {
  display: none;
}

.upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #639922;
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.upload-btn:hover {
  background: #3b6d11;
}

.upload-filename {
  font-size: 14px;
}

/* OR Divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #999;
  font-size: 13px;
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: #e0e0e0;
}

/* Subtitle */
.worktop-subtitle {
  font-size: 16px;
  margin-bottom: 16px;
}

/* Background Image Container */
.quote-bg-img {
  position: relative;
  width: 100%;
  max-width: 704px;
  height: 0;
  padding-top: 56.82%; /* 400/704 × 100 — maintains aspect ratio */
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.quote-bg-img input[type="text"] {
  position: absolute;
  width: 8.24%;
  height: 8%;
  min-width: 44px;
  min-height: 24px;
  background: rgba(255,255,255,0.92) !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  font-size: 11px !important;
  color: #333 !important;
  text-align: center;
  padding: 2px 4px !important;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.quote-bg-img input[type="text"]:focus {
  outline: none !important;
  border-color: #639922 !important;
  box-shadow: 0 0 0 2px rgba(99,153,34,0.15) !important;
  background: #fff !important;
  z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
  .form-section.worktop-size {
    padding: 16px;
  }

}

@media (max-width: 480px) {
  .form-section.worktop-size {
    padding: 12px;
  }

  .upload-area {
    flex-direction: column;
    text-align: center;
  }

  #stone-quote-calculator h3.shape-title{
    font-size: 14px;
  }
}


/* Result Page */
.result-page {
  padding: 24px 0;
}

.result-container {
  background: #fff;
  border: 0.5px solid var(--e-global-color-border);
  padding: 24px;
  width: 100%;
  box-sizing: border-box;
  max-width: 700px;
  margin: 0 auto;
}

/* Heading */
body .result-heading {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--e-global-color-border);
}

/* Summary Table */
.result-table {
  width: 100%;
  margin-bottom: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid #f0f0f0;
}

.result-row:last-child {
  border-bottom: none;
}

.result-label {
  font-size: 14px;
  flex: 1;
}

.result-value {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  min-width: 80px;
}

/* Total Section */
.result-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--e-global-color-primary);
  padding: 20px 24px;
  margin-bottom: 16px;
}

.total-label {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.total-amount {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.total-vat {
  font-size: 13px;
  color: #ffffff;
  font-weight: 500;
}

/* Note */
.result-note {
  font-size: 12px;
  text-align: center;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .result-container {
    padding: 16px;
  }

  .total-amount {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .result-container {
    padding: 12px;
  }

  .result-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 0;
  }

  .result-value {
    text-align: left;
    color: #639922;
    font-weight: 600;
  }

  .result-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
  }

  .total-amount {
    font-size: 28px;
  }
}



/* =====================================================================
   03. Kitchen Shape and Measurements — Gallery / L-Shape / U-Shape
   ===================================================================== */

#stone-quote-calculator .measurements-input-sec {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
}

#stone-quote-calculator .measurements-input-sec li {
	list-style: none;
	margin: 0;
	padding: 0;
	padding-bottom: 20px;
}

#stone-quote-calculator .measurements-input {
	width: 140px;
}

#stone-quote-calculator .measurements-input label {
	display: block;
	cursor: pointer;
}

#stone-quote-calculator .measurements-input input {
	display: none;
}

#stone-quote-calculator .measurements-title {
	font-family: "Inter", Sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #131313;
	text-align: center;
	margin-bottom: 8px;
}

#stone-quote-calculator .measurements-input .input-img {
	display: block;
	line-height: 1;
	border: 2px solid transparent;
}

#stone-quote-calculator .measurements-input .input-img img {
	width: 100%;
	display: block;
}

#stone-quote-calculator .measurements-input input:checked + .measurements-title + .input-img, #stone-quote-calculator .measurements-input input:hover + .measurements-title + .input-img {
	border-color: #e16b39;
}

#stone-quote-calculator .measurements-extra-info {
	font-family: "Inter", Sans-serif;
	font-size: 14px;
	color: #9b9b9b;
	margin-bottom: 30px;
}

/* Main diagram area */
#stone-quote-calculator .shape-main-sec .shape-img {
	position: relative;
	display: inline-block;
	margin: 46px 0 46px 100px;
}

#stone-quote-calculator .shape-main-sec .shape-img img {
	display: block;
	max-width: 320px;
	width: 100%;
	height: auto;
}

#stone-quote-calculator .shape-size-box-sec {
	position: absolute;
	width: 70px;
}

#stone-quote-calculator .shape-size-box-sec input[type="text"] {
	width: 60px !important;
	padding: 6px 4px !important;
	text-align: center;
	font-size: 13px;
	border: 1px solid #dadada;
	background: #fff;
}

#stone-quote-calculator .shape-size-box-sec label {
	display: block;
	font-size: 12px;
	color: #9b9b9b;
	text-align: center;
	margin-top: 2px;
	padding: 0 !important;
}

/* Gallery — one width, one length */
#stone-quote-calculator .gallery-width-sec {
	top: -50px;
	left: 50%;
	margin-left: -35px;
}
#stone-quote-calculator .gallery-length-sec {
	top: 30%;
	left: -95px;
}

/* L-Shape — two arms, four dimensions */
#stone-quote-calculator .l-shape-parta-width-sec {
	top: -50px;
	left: 55%;
	margin-left: -35px;
}
#stone-quote-calculator .l-shape-parta-length-sec {
	top: 70px;
	left: -95px;
}
#stone-quote-calculator .l-shape-partb-width-sec {
	top: 45%;
	right: -95px;
}
#stone-quote-calculator .l-shape-partb-length-sec {
	bottom: -50px;
	left: 243px;
}

/* U-Shape — three legs, six dimensions */
#stone-quote-calculator .u-shape-main-sec .shape-img {
	margin: 76px 100px 96px 195px;
}
#stone-quote-calculator .u-shape-parta-width-sec {
	top: -57px;
	left: 38.6%;
	margin-left: -35px;
}
#stone-quote-calculator .u-shape-partb-width-sec {
	top: -57px;
	left: 77.2%;
	margin-left: 0px;
}
#stone-quote-calculator .u-shape-parta-length-sec {
	top: 36px;
	left: -128px;
}
#stone-quote-calculator .u-shape-partb-length-sec {
	top: 195px;
	left: -125px;
}
#stone-quote-calculator .u-shape-partc-length-sec {
	top: 107px;
	left: 336px;
}
#stone-quote-calculator .u-shape-partc-width-sec {
	top: 264px;
	left: 38.6%;
	margin-left: -35px;
}

/* Plus Island */
#stone-quote-calculator .island-shape-sec {
	margin-top: 60px;
}
#stone-quote-calculator .island-shape-title {
	font-family: "Inter", Sans-serif;
	font-size: 15px;
	font-weight: 600;
	color: #131313;
	margin-bottom: 10px;
}
#stone-quote-calculator .island-img {
	position: relative;
	display: inline-block;
	margin: 46px 0 46px 100px;
}
#stone-quote-calculator .island-img img {
	max-width: 180px;
	display: block;
}
#stone-quote-calculator .island-width-sec {
	top: 110px;
	left: 50%;
	margin-left: -35px;
}
#stone-quote-calculator .island-length-sec {
	top: 40%;
	left: -95px;
}

.clear-after::after {
	content: "";
	display: table;
	clear: both;
}

@media only screen and (max-width: 767px) {
	#stone-quote-calculator .measurements-input-sec {
		gap: 16px;
	}
	#stone-quote-calculator .measurements-input {
		width: 90px;
	}
	#stone-quote-calculator .shape-main-sec .shape-img,
	#stone-quote-calculator .island-img {
		margin-left: 100px;
	}
	#stone-quote-calculator .u-shape-main-sec .shape-img {
		margin-left: 100px;
	}
	#stone-quote-calculator .l-shape-parta-length-sec,
	#stone-quote-calculator .gallery-length-sec,
	#stone-quote-calculator .island-length-sec,
	#stone-quote-calculator .u-shape-parta-length-sec,
	#stone-quote-calculator .u-shape-partb-length-sec {
		left: -65px;
	}
	#stone-quote-calculator .l-shape-partb-width-sec {
		right: -75px;
	}
	#stone-quote-calculator .u-shape-partc-length-sec {
		left: auto;
		right: -75px;
	}
	#stone-quote-calculator .island-width-sec {
        top: 110px;
	}
	#stone-quote-calculator .l-shape-parta-length-sec {
        top: 35px;
	}
}
