body {
margin-top: 0px;
font-size: 1em; /*line-height: 1.6;*/
background: #fff;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
font-family: "Century Gothic W01",Arial, Helvetica, sans-serif;
}



#top-image {
  display: flex;
  max-width: 1600px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#top-image img {
  width: 70%;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

#top-image img:first-of-type {
  border: .01em solid #45413f; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Optional: soft shadow for lift */
}
	
@media (max-width: 768px) {
  #top-image img {
    width: 90%;
  }
}


#model-heading {
  margin-top: 50px;
  text-align: center;
  padding: 0 1em;
}

#model-heading h1 {
  font-size: 50px;
  font-family: 'Source Sans Pro', sans-serif;
  color: #6b6764;
  font-weight: 200; 
  padding-bottom: 10px;
  margin: 0;
}

#model-heading p {
  font-size: 21px;
  color: #6b6764;
  font-weight: 300; /* light for a softer, elegant contrast */
  font-family: Montserrat, sans-serif;
  margin: 0;
}

/* Mobile scaling */
@media (max-width: 768px) {
  #model-heading h1 {
    font-size: 34px;
  }

  #model-heading p {
    font-size: 18px;
  }
}
	
#model-description {
  max-width: 900px;
  margin: 2em auto;
  padding: 0 1em;
  text-align: center;
  font-family: Montserrat, sans-serif;
  color: #666666;
}

#model-description p {
  margin-top: 1.5em;
  line-height: 1.6em;
  font-size: 1.1em;
}	
	
#model-description img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em auto;
}
	
@media (max-width: 768px) {
  #model-description p {
    font-size: 1em;
    line-height: 1.5em;
  }
}

#build-bar {
  margin-top: 1px;
  background-color: #666666;
  color: #ffffff;
  text-align: center;
  padding: 15px 1em;
}

#build-bar h2.headline {
  font-size: 2em;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.76;
  letter-spacing: 1px;
  font-style: italic;
  padding: 5px 1em;
  margin: 6px 0;
}

#build-bar .subtext {
  font-size: 18px;
  font-family: Montserrat, sans-serif;
  margin: 6px 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #build-bar h2.headline {
    font-size: 1.65em;
    line-height: 1.5;
    letter-spacing: 0.5px;
  }

  #build-bar .subtext {
    font-size: 16px;
  }
}

/* START New styling for SAFE LINEUP 5-7-2025 */

#models-nav {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 15px;
  padding: 10px;
  max-width: 85%;
  margin: 0 auto; 
  box-sizing: border-box;
}

.gem-model {
  text-align: center;
  flex: 1 1 auto;
  max-width: 150px;
  text-decoration: none;
}

.gem-model img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
	
.gem-model.highlighted img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gem-model:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.gem-model span {
  display: block;
  margin-top: 0.5em;
  font-family: Montserrat, sans-serif;
  font-size: 1.2em;
  color: #767676;
  font-weight: 500;
}

.gem-model:hover span {
  color: #373432; 
  text-decoration: underline;
}
	
.gem-model span div {
  line-height: 1.2;
}

.gem-model.highlighted span {
  color: #373432;
  font-size: 1.4em;
  font-weight: 700;
  border-bottom: 4px solid #373432;
  display: inline-block;
  padding-bottom: 4px;
}
	
@media (max-width: 768px) {
  .gem-model span {
    font-size: 1em; /* slightly smaller, still readable */
  }

  .gem-model.highlighted span {
    font-size: 1.15em;
  }
}

/* END styling for SAFE LINEUP */


#gs-feat-floatnav {
  display: flex;
  justify-content: center;
  gap: 2em;
  padding: 1em 0;
  flex-wrap: wrap;
  background-color: rgba(235, 232, 230, 0.8); /* soft tan with 80% opacity */
  backdrop-filter: blur(3px); /* subtle glass effect if supported */
  border-bottom: 1px solid #ddd;
}

#gs-feat-floatnav .floatnav-link {
  font-family: 'Georgia', serif;
  font-size: 1em;
  color: #666;
  text-decoration: none;
  padding: 0.5em 1em;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  transition: color 0.3s ease, border-color 0.3s ease;
}

#gs-feat-floatnav .floatnav-link:hover,
#gs-feat-floatnav .floatnav-link:focus {
  color: #b38e5d; /* rich dark gold */
  border-color: #b38e5d;
  outline: none;
}





/* START New styling for selections 4-30-2025*/ 
		
.configurator-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 2em 0.5em;
  background: linear-gradient(to top, #f0eae5 0%, #fff 80%);
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 0;
  margin-bottom: .5em; /* Spacing for fade */
}
		
.fade-divider {
  height: 60px;
  margin: -3em auto .3em auto; /* pull up to visually blend */  max-width: 100%;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(185,180,175,0.2));
  pointer-events: none;
}
		
.fade-divider-top {
  height: 60px;
  margin: .5em auto -3em auto; /* pull up to visually blend */
  /* TAN background: linear-gradient(to top, rgba(255,255,255,0), rgba(228,196,155,0.2)); */ 
	background: linear-gradient(to top, rgba(255,255,255,0), rgba(116,170,203,0.2));
  pointer-events: none;
}

.section-divider {
  width: 75%;
  border: none;
  height: 1px;
  background-color: #999; /* soft gray */
  margin: 2em auto 0; /* centers it with vertical spacing */
}
	
	.configurator-section h2 {
  	width: 55%;
  	margin: 0 auto 1em auto; /* centers it horizontally and adds space below */
  	text-align: center;
  	background-color: #f2f2f2; /* light gray background */
  	padding: 0.75em 1.5em;
  	border-radius: 10px;
  	font-family: Montserrat;
  	font-weight: 600;
  	font-size: 1.8em;
  	color: #444;
	}
	
   @media (max-width: 768px) {
  .configurator-section h2 {
    font-size: 1.4em;
    padding: 0.75em 1em; /* slightly tighter padding on small screens */
    width: 75%; /* optionally allow more horizontal room */
  }
}
		
	.configurator-section h3 {
	  margin: 2em 0 1em 15%; /* shifts right from left edge */
	  text-align: left;
	  font-family: Montserrat, sans-serif;
	  font-weight: 600;
	  font-size: 1.2em;
	  color: #333; /* higher contrast for accessibility */
	  position: relative;
	  padding-bottom: 0.5em;
	}

	.configurator-section h3::after {
	  content: "";
	  display: block;
	  width: 85%;
	  height: 1px;
	  background-color: #999; 
	  margin-top: 0.4em;
	  border-radius: 1px;
	}
		
	.configurator-section p {
	  width: 75%;
	  max-width: 900px;
	  margin: 0 auto 1em auto;
	  text-align: center;
	  font-family: Montserrat, sans-serif;
	  font-weight: 400;
	  font-size: 1.1em;
	  line-height: 1.6em;
	  color: #666; /* #333 for higher contrast for accessibility */
	  position: relative;
	  padding-bottom: 0.5em;
	}
		
    .swatch-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5em;
	background: transparent;
    }

    .swatch-card {
      background: rgba(255, 255, 255, 0.95); /* soft transparency */
      border: 2px solid transparent;
      border-radius: 10px;
      padding: 1em;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      transition: border-color 0.3s ease, transform 0.2s ease;
    }
		
	.swatch-card img {
	  display: block;
	  max-width: 100%;
	  height: auto;
	  border-radius: 6px;
	  margin-bottom: 0.8em;
	}

    .swatch-card:hover {
      transform: translateY(-4px);
      border-color: #aaa;
    }

    .swatch-card.selected {
      border-color: #caa95b;
      box-shadow: 0 0 0 5px rgba(0, 81, 181, 0.1);
    }

    .swatch-card img {
      width: 100%;
      border-radius: 6px;
	  margin-bottom: 0.8em;
    }

    .swatch-title {
  	  font-weight: 600;
	  font-size: 1em;
	  text-align: center;
	  margin-bottom: 0.55em;
	}
		
	.swatch-title .swatch-price {
	  display: inline; /* or block if you want on next line */
	  font-weight: 400;
	  font-size: 0.9em;
	  color: #666;
	  margin-top: 0.25em;
	}

	.swatch-details {
  	display: flex;
  	justify-content: center;
	margin-bottom: 1em; /* or adjust to taste */
	}

	.swatch-details p{
	  display: block; /* or block if you want on next line */
	  font-weight: 400;
	  font-size: 0.9em;
	  color: #666;
	  margin-bottom: .25em;
	}

	.swatch-details ul {
  	list-style-type: disc;
  	padding-left: 1.2em;
  	margin: 0;
  	text-align: left;
	}

	.swatch-details li {
  	font-weight: 500;
 	font-size: 0.8em;
  	color: #333;
  	margin-bottom: 0.3em;
	}
		
	.swatch-title .swatch-name {
	  display: block;
	  font-size: 1em;
	}

	.swatch-title .swatch-subtitle {
	  display: block;
	}

	.swatch-subtitle {
	  margin-top: -0.5em;
	}

    .swatch-card input[type="radio"] {
    margin-top: 0.4em;
    transform: scale(1.2);
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
   }
		
	.swatch-card.selected .swatch-title,
	.swatch-card.selected .swatch-title .swatch-price {
	  color: #ad8a3c;
	}
		
	.swatch-note {
	  font-style: italic;
	  margin-top: 1.5em;
	padding-top: 1.5em;
	  text-align: center;
	  font-size: 0.95em;
	  color: #555; /* optional soft gray tone */
	}

	
	.swatch-description {
  	margin: 2em auto 0 auto;         /* vertical spacing + auto centering */
  	text-align: left !important;     /* force left-aligned text */
  	font-size: 0.9em;
  	color: #555;                     /* elegant soft gray */
  	max-width: 45%;                  /* restrict width */
  	line-height: 1.7em;              /* improved line spacing */
  	letter-spacing: 0.02em;          /* subtle spacing between letters */
	}

	
	@media (max-width: 768px) {
  .swatch-description {
    max-width: 90%;
  }
}

    .additional-options {
      margin-top: 3em;
      text-align: left;
      max-width: 1000px;
      margin-left: auto; 
      margin-right: auto;
    }

    .additional-options label {
      display: block;
      margin-bottom: 1em;
	    padding-left: 1em;
      font-weight: 600;
      cursor: pointer;
    }

    .additional-options input[type="radio"] {
      margin-right: 0.5em;
      transform: scale(1.1);
    }
		
	.additional-options input[type="radio"]:checked + span {
  	color: #ad8a3c;
  	font-weight: 800;
	}
		

/* TWO cards */
.swatch-grid--two .swatch-card {
  flex: 1 1 45%;
  max-width: 350px; /* was 400px */
}

/* THREE cards */
.swatch-grid--three .swatch-card {
  flex: 1 1 35%;
  max-width: 250px; /* was 400px */
}

/* FOUR cards */
.swatch-grid--four .swatch-card {
  flex: 1 1 20%;
  max-width: 200px; 
}


/* Responsive scaling for all */
@media (max-width: 768px) {
  .swatch-grid--two .swatch-card,
  .swatch-grid--four .swatch-card {
    flex: 1 1 29%;
    max-width: 100%;
  }

  .swatch-grid--three .swatch-card {
    flex: 1 1 22%;
    max-width: 100%;
  }
 

  .swatch-card .swatch-title {
    font-size: 1em;
  }

  .swatch-card .swatch-price {
    font-size: 0.85em;
  }
	
	/* Extra spacing for Lock title */
	.lock-space {
 	 min-height: 3.8em;
	}
	
	/* Extra spacing for Hardware title */
	.hardware-space {
 	 min-height: 4.8em;
	}
}

.mobile-break {
  display: none;
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline;
  }
}

/* END New styling for selections 4-30-2025 */

		
/* START New styling for Drawer Inserts Accordions 5-5-2025*/
.configurator-inserts-section {
  width: 75%;
  margin: 0 auto;
}
	
@media (max-width: 768px) {
  .configurator-inserts-section {
    width: 100%;
  }
}
		
.drawer-accordion {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.drawer-option {
  display: flex;
  align-items: center; /* <-- This centers the radio vertically */
  gap: .75em;
}

.drawer-option input[type="radio"] {
  margin: 0 0 0 0.5em;  /* top, right, bottom, left */
  transform: scale(1.2); /* Keep upscale */
  cursor: pointer;
}

.drawer-box {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.5em;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .drawer-header {
  padding: 1em .5em;
  font-size: .97em;
}
}
		
.drawer-label {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
}

.drawer-title {
  color: #444;
}

.drawer-price {
  font-weight: 400;
  color: #666;
  font-size: 0.95em;
  margin-left: .5em;
}

.toggle-icon {
  font-size: 1.4em;
  color: #666;
  transition: transform 0.3s ease;
}

.drawer-content {
  display: none;
  padding: 1.5em;
  background: #fff;
}
		
.drawer-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Optional: centers the image */
}

.drawer-box.expanded .drawer-content {
  display: block;
}

.drawer-box.expanded .toggle-icon {
  transform: rotate(45deg);
  color: #8c6c29;
}
		
.drawer-option input[type="radio"]:checked + .drawer-box .drawer-title,
.drawer-option input[type="radio"]:checked + .drawer-box .drawer-price {
  color: #8c6c29; /* your signature gold tone */
}
		
/* END New styling for Drawer Inserts Accordions 5-5-2025*/

/* START New styling for Luxury Options 5-6-2025*/
		
.options-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 1em;
}

.luxury-options-container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2em 1em;
}

.luxury-options-title {
  color: #444;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  font-family: serif;
  text-align: center;
  margin-bottom: .5em;
}

.luxury-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
}

.luxury-option {
  width: 100%;
  max-width: 350px;
  position: relative;
}

.luxury-option input[type="checkbox"] {
  position: absolute;
  top: 1em;
  left: 1em;
  transform: scale(1.3);
  z-index: 2;
  margin: 0;
  cursor: pointer;
}

.luxury-option-box {
  display: block;
  background-color: #f0eae5;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 2em 1em 1em 3.2em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.luxury-option-box:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}

input[type="checkbox"]:checked + .luxury-option-box {
  background-color: #fdfaf5;
  border-color: #caa95b;
  box-shadow: 0 0 0 5px rgba(202, 169, 91, 0.2);
}

.luxury-option-content {
  display: flex;
  align-items: center;
  gap: 1.2em;
}

.luxury-option-info {
  flex: 1;
  font-family: Montserrat, sans-serif;
}

.luxury-option-title {
  font-weight: 600;
  font-size: 1.15em;
  color: #444;
}

.luxury-option-price {
  font-size: 1em;
  color: #666;
  margin-top: 0.2em;
}

.luxury-option-info a {
  font-size: 0.9em;
  margin-top: 0.8em;
  display: inline-block;
  color: #0066cc;
  text-decoration: underline;
  border-bottom: 1px dotted #aaa;
}

.luxury-option-image {
  flex-shrink: 0;
}

.luxury-option-image img {
  max-width: 100px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  border: 1px solid #797876; /* Light gray, subtly elegant */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Optional for soft lift */
}

@media (max-width: 768px) {
   /*
  .luxury-option-content {
    flex-direction: column;
    align-items: flex-start;
  }
  */
  .luxury-option {
    width: 100%;
  }
  .luxury-option-image img {
    max-width: 100%;
    height: auto;
  }
}		
		
/* END New styling for Luxury Options 5-6-2025*/


/* START new Protecton Level names and radio buttons */
		
.subheading-fire-protection,
.subheading-protection {
  width: 75%;
  margin: 20px auto 0 auto; /* top margin + centered */
  padding: 10px 1em; /* adds side padding on mobile */
  color: #fff;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  box-sizing: border-box;
}

.subheading-fire-protection {
  background-color: #b91919;
}

.subheading-protection {
  background-color: #1e73be;
}

@media (max-width: 768px) {
  .subheading-fire-protection,
  .subheading-protection {
    font-size: 16px;
    padding: 8px 1em;
  }
}


		

.protection-levels {
  display: flex;
  justify-content: center;
  gap: 2em;
  max-width: 70%;
  margin: 2em auto 3em auto;
  flex-wrap: wrap;
  text-align: center;
}

.protection-option {
  flex: 1 1 20%;
  min-width: 150px;
}

/* Center two-option protection levels for Mini Gem */
.protection-levels--minigem {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}

.protection-levels--minigem .protection-option {
  flex: 0 1 280px;
  max-width: 100%;
}


.protection-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  color: #444;
  transition: color 0.3s ease;
  text-align: center;
}
	
.protection-title-price {
  font-family: 'Montserrat', sans-serif;
  font-size: .9em;
  font-weight: 400;
  color: #666;
  transition: color 0.3s ease;
  text-align: center;
  margin-top: 0.4em;   /* subtle spacing above */
  margin-bottom: 0.75em; /* slightly more space below */
}

.protection-title span {
  display: block;
  font-weight: 300;
  font-size: 0.95em;
  color: #666;
}

.protection-option input[type="radio"] {
  margin-top: 0.5em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
	

.protection-option label {
  cursor: pointer;
  display: block;
}



	
.protection-option.selected .protection-title,
.protection-option.selected .protection-title-price {
  color: #caa95b;
  font-weight: 600;
}


/* END new Protecton Level names and radio buttons */

	
.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2em auto;
  text-align: center;
  padding: 0 1em; /* slight horizontal padding for small screens */
}

.summary-button {
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  height: 80px;
  border-radius: 15px;
  background-color: #b38e5d;
  display: flex;
  align-items: center;       /* vertically center */
  justify-content: center;   /* horizontally center */
  text-align: center;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.summary-button span {
  color: #fff !important;
  font-size: 24px;
  font-family: Montserrat, sans-serif !important;
  font-weight: 700;
  margin: 0;
  line-height: 1.2; /* more natural line-height */
  letter-spacing: 0.05em; /* adjust this value as needed */
}

.summary-button:hover {
  background-color: #a17d4c;
}

.button-wrapper p:last-of-type {
  font-size: 1.5em;
  color: #666666;
  font-family: Montserrat, serif;
  padding-top: 1.25em;
  margin: 0;
  max-width: 1200px;
}
		
.selections-container {
  max-width: 70%;
  margin: 0 auto;
  padding: 1em;
}

.checkbox-label {
  display: flex;
  align-items: center;
  font-size: 1.25em;
  color: #666666;
  font-weight: 550;
  gap: 0.5em;
  cursor: pointer;
}

.selections-description {
  display: block;
  margin-top: .2em;
  color: #666666;
  font-size: .8em;
  line-height: 1.4;
}

.selections-description em {
  font-style: italic;
}


		
	
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
}
	
@media (max-width: 768px) {
  .nav-submenu {
    display: none !important;
  }
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
	
	
/* Colorbox mobile fix */	
	@media (max-width: 768px) {
  #colorbox,
  #cboxWrapper,
  #cboxContent,
  #cboxLoadedContent {
    width: 96% !important;
    max-width: 96% !important;
    left: 2% !important;
    box-sizing: border-box;
  }

  #cboxTopLeft,
  #cboxTopRight,
  #cboxBottomLeft,
  #cboxBottomRight,
  #cboxMiddleLeft,
  #cboxMiddleRight {
    display: none !important;
  }

  #cboxTopCenter,
  #cboxBottomCenter {
    background: none !important;
  }

  body.cboxOpen {
    overflow: hidden;
    touch-action: none;
  }
		
/* Prevent background scroll while modal is open */
body.cbox-no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Style the overlay background darker */
#cboxOverlay {
  background: rgba(0, 0, 0, 0.5) !important;
}

/* Style and pad the colorbox modal content for comfort */
#luxury-info-modal {
  box-sizing: border-box;
  padding: 1.5em;
  background: #fff;
  border-radius: 10px;
  overflow-y: auto;
  max-height: 80vh;
  font-family: Montserrat, sans-serif;
  color: #444;
}

#luxury-info-modal h2 {
  font-size: 24px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.8em;
}

#luxury-info-modal p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 1.2em;
}

#luxury-info-modal img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
#cboxLoadedContent {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  max-height: 80vh;
}
}	

@media (max-width: 768px) {
  #cboxCurrent {
    display: none !important;
  }
}



/* ===== Bespoke Summary styles ===== */
#bespoke-summary {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: clamp(14px, 2.5vw, 22px);
  background: #fdfaf5;
  max-width: 960px;
  margin: 24px auto;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
#bespoke-summary h2 {
  text-align: center;
  margin: 0 0 .5em;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: #403727;
}
#bespoke-summary h3 {
  margin: 1.1em 0 .35em;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #8c6c29;
  letter-spacing: .02em;
}
.summary-divider {
  border: 0;
  border-top: 1px solid #e7e0d4;
  margin: .85em 0;
}
.summary-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.summary-list li {
  display: flex;
  align-items: baseline;
  gap: .35em;
  padding: .15em 0;
}
.summary-list strong { color: #222; font-weight: 600; }
.sum-price { margin-left: auto; color: #403727; }
.summary-total {
  margin-top: 1em;
  padding-top: .75em;
}
.summary-total-line {
  display: flex; justify-content: space-between; align-items: baseline;
  font-weight: 700; font-size: clamp(1.1rem, 2.6vw, 1.5rem);
  color: #403727;
}
.summary-total-line .label { color: #403727; }
.summary-note { font-size: .9rem; color: #6b6460; margin-top: .5em; }
@media (max-width: 640px){
  #bespoke-summary { padding: 14px; }
  .summary-list li { flex-wrap: wrap; }
  .sum-price { width: 100%; text-align: right; }
}
	
	
	

	
/* ===== Email Form Styles ===== */
#request-quote { 
  border: 1px solid #e7e0d4; background:#F2F2F2; border-radius:12px; 
  padding: clamp(14px,2.5vw,22px); margin: 24px auto; max-width: 960px;
}
#request-quote h2 { text-align:center; margin-top:0; color:#444444; padding-bottom: 15px; }
.rq-intro { color:#423b37; margin: 0.25em auto 0 auto; text-align: center; }
.rq-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; padding-top: 24px; }
@media (max-width: 640px){ .rq-grid{ grid-template-columns:1fr; } }
.rq-field label { display:block; font-weight:600; color:#222; margin-bottom:6px; }
.rq-field input { width:100%; padding:.65em .75em; border:1px solid #cfc8bd; border-radius:8px; font:inherit; }
.rq-note { margin:.75em 0 .25em; color:#403727; }
.rq-checks { display:flex; gap:18px; flex-wrap:wrap; margin:.75em 0; padding-top: 14px; }
.rq-check input { margin-right:.45em; }
.rq-checks + .rq-btn {
  margin-top: clamp(16px, 2vw, 24px);
}
/* Submit button */
.rq-btn{
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  height: 80px;
  border-radius: 15px;
  background-color: #b38e5d;
  display: flex;
  align-items: center;       /* vertically center */
  justify-content: center;   /* horizontally center */
  text-align: center;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  color: #fff;
  font-size: 24px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin: 10px auto 0;       /* centers the button block and adds a little top gap */
	
  border: 2px solid rgba(64, 55, 39, 0.45);   /* subtle bronze-brown edge */
  box-shadow:
    0 6px 14px rgba(0,0,0,0.12),
    0 2px  4px rgba(0,0,0,0.08);              /* soft layered depth */
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

/* Hover/active/focus for better UX + accessibility */
.rq-btn:hover{
  background-color: #a88254;
  border-color: rgba(64, 55, 39, 0.5);
  box-shadow:
    0 10px 22px rgba(0,0,0,0.16),
    0 4px  8px  rgba(0,0,0,0.10);
}
.rq-btn:active{
  background-color: #9a784e;
  border-color: rgba(64, 55, 39, 0.55);
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.18),
    0 2px 4px rgba(0,0,0,0.08);
}
.rq-btn:focus-visible{
  outline: 3px solid #403727;
  outline-offset: 2px;
  box-shadow:
    0 0 0 4px rgba(200, 166, 93, 0.35),
    0 6px 14px rgba(0,0,0,0.12),
    0 2px  4px rgba(0,0,0,0.08);
}
@media (forced-colors: active){
  .rq-btn{
    border: 1px solid ButtonText;
    box-shadow: none;
  }
}

/* Keep your disabled style */
.rq-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Status message (success + error) */
.rq-msg{
  margin:.9rem 0 0;
  text-align:center;               /* center both messages */
  font-size:clamp(1.05rem, 1.2vw + 0.9rem, 1.35rem); /* more prominent, responsive */
  font-weight:700;                 /* bolder for emphasis */
  line-height:1.3;
}

/* keep your existing colors (adjust if desired) */
.rq-msg.ok  { color:#205c2f; }     /* success (green) */
.rq-msg.err { color:#7a1e1e; }     /* error (red)  */

.rq-honey { position:absolute; left:-5000px; width:1px; height:1px; overflow:hidden; }
	
/* keep inputs inside their columns */
.rq-field input,
.rq-field select,
.rq-field textarea {
  box-sizing: border-box;  /* prevents padding/border from causing overflow */
  width: 100%;
}

/* add breathing room between the two rows of fields */
.rq-grid + .rq-grid {
  margin-top: 14px;        /* matches your internal gap for a consistent rhythm */
}

/* optional: a little extra space under the first row labels */
.rq-field label { margin-bottom: 6px; } /* already present; keep it */







/* specs table css */	

  .specs-table-container {
    overflow-x: auto;
    margin: 2em 5em; /* top/bottom 2em, left/right 1em */
  }

  table.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-family: sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  table.specs-table caption {
    text-align: left;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5em;
  }

  table.specs-table th,
  table.specs-table td {
    border: 1px solid #ccc;
    padding: 1em;
    vertical-align: center;
    text-align: center;
  }

  table.specs-table th {
    background-color: #f5f5f5;
    font-weight: 600;
  }

  @media (max-width: 768px) {
    table.specs-table th,
    table.specs-table td {
      font-size: 0.8rem;
      padding: 0.75em;
    }

    .specs-table-container {
      overflow-x: auto;
	  margin: 0;
    }
  }
	
	
.icon-yes {
  color: #2e8b57; /* green */
  font-size: 1.6em;
  font-weight: bold;
  padding: 0.25em;
}

.icon-x {
  color: #cc0000; /* red */
  font-size: 1.6em;
  font-weight: bold;
  padding: 0.25em;
}
	
	
.fire-meter {
  display: flex;
  width: 100%;
  max-width: 140px;
  height: 20px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;

  /* Smooth emoji-like gradient spread across all 5 segments */
  background: linear-gradient(
    to right,
    #ffd867, /* warm yellow */
    #ff9c33, /* orange */
    #ff3b1f  /* fire red */
  );
}

.fire-meter .seg {
  flex: 1;
  height: 100%;
}

/* Inactive segments cover the gradient with a neutral color */
.fire-meter .seg:not(.active) {
  background: #e3dfd8; /* light neutral to match your table aesthetic */
}

/* Active segments: no background, show the underlying gradient */
.fire-meter .seg.active {
  background: transparent;
}

.fire-meter .seg + .seg {
  border-left: 2px solid rgba(255, 255, 255, 0.6); /* soft internal dividers */
}
	


	

@media (min-width: 768px) {
  .mobile-note {
    display: none;
  }
}

.mobile-note {
  font-size: 0.95em;
  color: #2c3e50;
  margin-top: 1.2em;
  margin-bottom: 0.5em;
  font-style: italic;
}
