*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  min-height:100vh;
  font-family:"Inter",sans-serif;
  color:#fff;
  overflow:hidden;
  background:#0d1218;
}

/* BACKGROUND */
.configurator{
  width:100%;
  height:100vh;
    background:
    radial-gradient(circle at 52% 45%,
      rgba(255,255,255,0.95) 0%,
      rgba(232,238,245,0.88) 32%,
      rgba(196,207,219,0.72) 65%,
      rgba(155,169,184,0.65) 100%
    ),
    linear-gradient(135deg,
      #dfe6ee 0%,
      #c5d0dc 45%,
      #96a7b8 100%
    );

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.65),
    inset 0 -30px 80px rgba(80,95,115,0.15),
    0 18px 45px rgba(31,45,60,0.18);

 
  position:relative;
  padding:24px;
}

/* TOP NAV */
.topbar{
  height:76px;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(15,20,28,.45);
  backdrop-filter:blur(24px);
  border-radius:24px;
  box-shadow:0 20px 80px rgba(0,0,0,.35);
  animation:fadeDown .7s ease;
  z-index:99999999999999;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
}

.logo-mark{
  width:34px;
  height:34px;
  border-radius:10px;
  background:linear-gradient(135deg,#fff,#d91f2b);
  clip-path:polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
}

.logo-text strong{
  display:block;
  letter-spacing:6px;
  font-size:18px;
}

.logo-text span{
  font-size:11px;
  opacity:.65;
}

.steps{
  display:flex;
  align-items:center;
  gap:22px;
}

.step{
  display:flex;
  align-items:center;
  gap:10px;
  opacity:.65;
  font-size:14px;
  cursor:pointer;
  transition:.3s;
}

.step span{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.35);
  font-size:12px;
}

.step.active,
.step:hover{
  opacity:1;
}

.step.active span{
  background:#fff;
  color:#111;
}

.line{
  width:46px;
  height:1px;
  background:rgba(255,255,255,.35);
}

.actions{
  display:flex;
  align-items:center;
  gap:18px;
}

.heart{
  font-size:23px;
  opacity:.8;
  cursor:pointer;
  transition:.3s;
}

.heart:hover{
  color:#ff4455;
  transform:scale(1.15);
}

.quote-btn{
  border:0;
  height:54px;
  padding:0 30px;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:18px;
  transition:.35s;
}

.quote-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 40px rgba(255,255,255,.18);
}

/* LEFT FLOATING TOOLS */
.view-tabs{
  position:absolute;
  top:140px;
  left:54px;
  display:flex;
  gap:8px;
  padding:10px;
  border-radius:20px;
  background:rgba(255,255,255,.62);
  backdrop-filter:blur(18px);
  animation:fadeRight .8s ease;
}

.view-tabs button{
  border:0;
  padding:12px 24px;
  border-radius:14px;
  background:transparent;
  cursor:pointer;
  font-weight:700;
  color:#0f1720;
}

.view-tabs button.active{
  background:#111827;
  color:#fff;
}

.bottom-tools{
  position:absolute;
  left:54px;
  bottom:180px;
  display:flex;
  gap:8px;
  padding:10px;
  border-radius:18px;
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(18px);
}

.bottom-tools button{
  border:0;
  padding:10px 18px;
  border-radius:12px;
  font-weight:700;
  cursor:pointer;
}

.bottom-tools .active{
  background:#111827;
  color:#fff;
}

/* RIGHT PANEL */
.side-panel{
  position:absolute;
  right:24px;
  top:116px;
  bottom:24px;
  width:420px;
  padding:18px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(18,24,32,.55);
  backdrop-filter:blur(28px);
  box-shadow:0 30px 100px rgba(0,0,0,.5);
  overflow-y:auto;
  animation:fadeLeft .8s ease;
}

.side-panel::-webkit-scrollbar{
  width:5px;
}

.side-panel::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.25);
  border-radius:20px;
}

.section{
  padding:16px;
  margin-bottom:12px;
  border-radius:18px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
}

.section-title{
  display:flex;
  justify-content:space-between;
  margin-bottom:14px;
  font-size:12px;
  font-weight:400;
  text-transform:uppercase;
}

.section-title small{
  opacity:.7;
  cursor:pointer;
}

.cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.card{
  min-height:82px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.13);
  background:rgba(255,255,255,.05);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  transition:.3s;
}

.card:hover,
.card.active{
  border-color:rgba(255,255,255,.7);
  background:rgba(255,255,255,.12);
  transform:translateY(-3px);
}

.door-mini{
  width:85px;
  height:45px;
  background:linear-gradient(#252c34,#111820);
  border:1px solid rgba(255,255,255,.12);
  position:relative;
}

.door-mini:before,
.door-mini:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:1px;
  background:rgba(255,255,255,.14);
}

.door-mini:before{top:15px}
.door-mini:after{top:30px}

.options-row{
  display:flex;
  gap:10px;
  overflow-x:auto;
}

.option{
  min-width:70px;
  height:58px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.3s;
}

.option_wind{
  width:82px;
  height:87px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
 
  place-items:center;
  cursor:pointer;
  transition:.3s;
  font-size:10px;
  display:inline-block;
  vertical-align:top;
  text-align:center;
  margin-bottom:6px;
}

.option_wind_big{
  width:140px;
  height:120px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
 
  place-items:center;
  cursor:pointer;
  transition:.3s;
  font-size:10px;
  display:inline-block;
  vertical-align:top;
  text-align:center;
  margin-bottom:6px;
}








.wind_link,
.wind_link:link,
.wind_link:visited,
.wind_link:hover,
.wind_link:active{
  text-decoration:none !important;
  color:inherit !important;
  display:inline-block;
}

.wind_link *{
  text-decoration:none !important;
}

.option_wind p{
  margin:0;
  padding:0;
  text-decoration:none !important;
  color:#fff;
}










.option_wind:hover,
.option_wind.active{
  border-color:#fff;
  transform:translateY(-3px);
}


#wind_img{
width:46px;
height:46px;
padding:5px;
  display:inline-block;

}


#wind_img_big{
width:110px;
height:100px;
padding:5px;
  display:inline-block;

}



#dim_box{
display:inline-block;
vertical-align:top;
width:calc(50% - 10px);
font-size:11px;
padding:0px;
margin:0px;
}


 
#dim_fild{
 width:calc(100% - 4px);
  height:40px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
   place-items:center;
  cursor:pointer;
  transition:.3s;
  color:#FFFFFF;
  margin-top:10px;
}


#dim_fild{
  border-color:#fff;
  transform:translateY(-3px);
}

.option:hover,
.option.active{
  border-color:#fff;
  transform:translateY(-3px);
}

.color{
  width:32px;
  height:32px;
  border-radius:4px;
  border:1px solid rgba(255,255,255,.25);
}

.c1{background:#1f252b}
.c2{background:#bbb}
.c3{background:#eee}
.c4{background:#b77434}
.c5{background:#7b3f1f}
.c6{background:#4a2516}

.plus{
  font-size:24px;
}

.automation{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
}

.auto-card{
  padding:16px 8px;
  text-align:center;
  border-radius:14px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  transition:.3s;
}

.auto-card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.12);
}

.auto-card i{
  font-size:27px;
  margin-bottom:9px;
}

.auto-card strong{
  display:block;
  font-size:13px;
}

.auto-card span{
  font-size:11px;
  opacity:.65;
}










.auto-card.active{
  background:
    radial-gradient(circle at top, rgba(240,189,105,.18), transparent 45%),
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.04));

  border-color:rgba(240,189,105,.95);

  box-shadow:
    0 0 0 1px rgba(240,189,105,.15),
    0 12px 28px rgba(0,0,0,.35),
    0 0 22px rgba(240,189,105,.22),
    inset 0 1px 0 rgba(255,255,255,.12);
}

.auto-card.active::before{
  content:"";
  position:absolute;
  left:22%;
  right:22%;
  bottom:0;
  height:2px;
  border-radius:20px;
  background:linear-gradient(90deg, transparent, #f0bd69, transparent);
  box-shadow:0 0 14px rgba(240,189,105,.8);
}



.radio-circle {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  border-radius: 50%;

  border: 2px solid rgba(255, 255, 255, 0.32);
  box-sizing: border-box;

  background: transparent;
  position: relative;
  flex-shrink: 0;

  transition: 0.25s ease;
}

/* ACTIVE direktno na krugu */
.radio-circle.active {
  border-color: #f0bf68;
  background: linear-gradient(145deg, #f8d783, #d79a3f);

  box-shadow:
    0 0 18px rgba(240, 191, 104, 0.55),
    inset 0 1px 0 rgba(255,255,255,.45);
}




.auto-card.active::after{
  content:"+";
  position:absolute;
  top:8px;
  right:8px;

  width:22px;
  height:22px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:13px;
  font-weight:700;
  color:#111;

  background:linear-gradient(145deg, #f8d783, #d79a3f);
  box-shadow:0 0 14px rgba(240,189,105,.45);
}

.auto-card.active p{
  color:#f3d59b;
}

.auto-card.active img{
  transform:scale(1.04);
  filter:drop-shadow(0 0 10px rgba(240,189,105,.25));
}











/* BOTTOM SUMMARY */
.summary{
  position:absolute;
  left:54px;
  right:470px;
  bottom:24px;
  min-height:105px;
  padding:18px 22px;
  border-radius:22px;
  background:rgba(255,255,255,.36);
  backdrop-filter:blur(26px);
  border:1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  gap:22px;
  animation:fadeUp .8s ease;
}

.product-preview{
  width:120px;
  height:68px;
  border-radius:10px;
  background:linear-gradient(135deg,#2b323a,#10151b);
}

.info-grid{
  flex:1;
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}

.info{
  border-left:1px solid rgba(255,255,255,.25);
  padding-left:14px;
}

.info small{
  display:block;
  font-size:10px;
  opacity:.65;
  text-transform:uppercase;
  margin-bottom:5px;
}

.info strong{
  font-size:13px;
}

.price{
  text-align:right;
}

.price small{
  font-size:10px;
  opacity:.7;
}

.price strong{
  display:block;
  font-size:28px;
}

.small-btn{
  margin-top:8px;
  border:0;
  background:#101722;
  color:#fff;
  border-radius:12px;
  padding:12px 18px;
  font-weight:800;
  cursor:pointer;
}

/* MODAL */
.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.3);
  backdrop-filter:blur(12px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:20;
}

.modal.active{
  display:flex;
}

.modal-box{
  width:min(760px,90%);
  padding:28px;
  border-radius:26px;
  background:rgba(255,255,255,.055);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.15);
  animation:zoom .35s ease;
}

.modal-head{
  display:flex;
  justify-content:space-between;
  margin-bottom:22px;
}

.close{
  cursor:pointer;
  font-size:24px;
}

.modal-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

/* ANIMATIONS */
@keyframes fadeDown{
  from{opacity:0;transform:translateY(-30px)}
  to{opacity:1;transform:none}
}

@keyframes fadeUp{
  from{opacity:0;transform:translateY(30px)}
  to{opacity:1;transform:none}
}

@keyframes fadeLeft{
  from{opacity:0;transform:translateX(40px)}
  to{opacity:1;transform:none}
}

@keyframes fadeRight{
  from{opacity:0;transform:translateX(-40px)}
  to{opacity:1;transform:none}
}

@keyframes zoom{
  from{opacity:0;transform:scale(.92)}
  to{opacity:1;transform:scale(1)}
}

/* RESPONSIVE */
@media(max-width:1100px){
  body{overflow:auto}
  .configurator{height:auto;min-height:100vh;padding:14px}
  .steps{display:none}
  .side-panel{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    width:100%;
    margin-top:22px;
  }
  .summary{
    position:relative;
    left:auto;
    right:auto;
    bottom:auto;
    margin-top:22px;
    flex-direction:column;
    align-items:flex-start;
  }
  .info-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .view-tabs,.bottom-tools{
    position:relative;
    left:auto;
    top:auto;
    bottom:auto;
    margin-top:18px;
    width:max-content;
  }
}
















.config-box.dimensions-box{
  width:100%;
  padding:20px 18px 18px;
  border-radius:24px;
  background:rgba(34, 37, 43, 0.78);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 30px rgba(0,0,0,0.22);
  color:#fff;
  font-family:Arial, sans-serif;
}

.config-box-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.config-box-head h3{
  margin:0;
  font-size:18px;
  font-weight:700;
  letter-spacing:0.08em;
  color:#ffffff;
}

.reset-btn{
  padding:0;
  border:none;
  background:none;
  color:rgba(255,255,255,0.68);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.08em;
  cursor:pointer;
  transition:0.25s;
}

.reset-btn:hover{
  color:#ffffff;
}

.dimension-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.dimension-row:last-child{
  margin-bottom:0;
}

.dimension-label{
  min-width:110px;
  font-size:15px;
  font-weight:500;
  color:rgba(255,255,255,0.92);
}

.dimension-control{
  flex:1;
  display:grid;
  grid-template-columns:1fr 48px 48px;
  overflow:hidden;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.03);
}

.dimension-control input{
  width:100%;
  height:52px;
  border:none;
  outline:none;
  background:transparent;
  padding:0 16px;
  color:#ffffff;
  font-size:18px;
  font-weight:600;
}

.dimension-control input::placeholder{
  color:rgba(255,255,255,0.35);
}

.dim-btn{
  height:52px;
  border:none;
  border-left:1px solid rgba(255,255,255,0.08);
  background:rgba(255,255,255,0.04);
  color:#ffffff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  transition:0.25s;
}

.dim-btn:hover{
  background:rgba(255,255,255,0.10);
}

.dim-btn:active{
  transform:scale(0.97);
}








.color-card{
  position:relative;
  width:200px;
  height:46px;
  padding:14px 54px 14px 18px;
  display:inline-block;
  align-items:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.04);
  background:rgba(255,255,255,0.055);
  color:#fff;
  cursor:pointer;
  text-align:left;
  transition:0.25s ease;
  font-family:Arial, sans-serif;
  margin:4px;
}

.color-card:hover{
  background:rgba(255,255,255,0.09);
  border-color:rgba(255,255,255,0.28);
  transform:translateY(-1px);
}

.color-card.active{
  border-color:rgba(255,255,255,0.95);
  background:rgba(255,255,255,0.075);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12),
    0 12px 28px rgba(0,0,0,0.20);
}

.color-preview2{
position:absolute;
left:6px;
top:6px;
  width:30px;
  height:30px;
 
  border-radius:8px;
  border:1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1px 1px rgba(255,255,255,0.10),
    0 4px 12px rgba(0,0,0,0.18);
	background-size:100% 100%;
}

.color-name{
position:absolute;
left:50px;
top:16px;
  display:block;
  font-size:11px;
  font-weight:500;
  line-height:1.2;
  color:#ffffff;
}

.color-check{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  width:20px;
  height:20px;
  border-radius:50%;
  display:none;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  color:#111827;
  font-size:14px;
  font-weight:900;
}

.color-card.active .color-check{
  display:flex;
}











.view-toggle { display:none; }















@media (max-width: 1000px) {


.topbar{display:none;}
.view-tabs{display:none;}
.bottom-tools{display:none;}
.summary{display:none;}
.side-panel{display:none;}



html,
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

body {
  position: fixed;
  inset: 0;
}



 





.option{
  min-width:70px;
  height:70px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:.3s;
}

.option_wind{
  width:82px;
  height:76px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);

  cursor:pointer;
  transition:.3s;
  font-size:9px;
  display:inline-block;
  vertical-align:top;
  text-align:center;
  margin-bottom:6px;

  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}





#wind_img{
width:40px;
height:40px;
padding:5px;
  display:inline-block;

}






.option_col{
  width:54px;
  height:73px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);

  cursor:pointer;
  transition:.3s;
  font-size:9px;
  display:inline-block;
  vertical-align:top;
  text-align:center;
  margin-bottom:10px;

  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  line-height: 1.15;
 text-align:center;
  box-sizing: border-box;
}

.color{
  width:32px;
  height:32px;
  margin:4px;
  margin-top:8px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.25);
  display:inline-block;
  
}






.view-toggle2 {
display:block;
  position: absolute;
  right: 4px;
  top: 233px;
  transform: translateY(-60%);
  
  display: flex;
  flex-direction: column;
  gap: 2px;

  padding: 3px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 999;
}



.view-toggle {
display:block;
  position: absolute;
  right: 4px;
  top: 160px;
  transform: translateY(-60%);
  
  display: flex;
  flex-direction: column;
  gap: 2px;

  padding: 3px;
  border-radius: 10px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  z-index: 999;
}

.view-btn {
  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff;

  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);

  transition: all 0.25s ease;
  box-sizing: border-box;
}

.view-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 171, 90, 0.7);
  box-shadow: 0 0 18px rgba(214, 171, 90, 0.18);
}

.view-btn.active {
  border: 2px solid #d6ab5a;
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(214, 171, 90, 0.25),
    0 0 18px rgba(214, 171, 90, 0.22);
}




.icn1{width:100%;}


#dim_box_mob{padding:10px; text-align:center;}

#dim_box{
display:inline-block;
vertical-align:top;
width:calc(50% - 20px);
font-size:11px;
padding:0px;
margin:0px;
}


 
#dim_fild{
 width:calc(100% - 4px);
  height:34px;
  border-radius:10px;
 
 
   place-items:center;
  cursor:pointer;
  transition:.3s;
  color:#FFFFFF;
  margin-top:10px;
  text-align:center;
  
  
   background:
    radial-gradient(circle at 50% 0%, rgba(255,186,83,.10), transparent 42%),
    linear-gradient(145deg, rgba(31,34,40,.96) 0%, rgba(11,13,18,.98) 100%);

  border:1px solid rgba(226,173,87,.65);

  box-shadow:
    0 10px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.06),
    inset 0 -1px 0 rgba(255,196,98,.10),
    0 0 0 1px rgba(255,208,120,.05);

  transition:.35s ease;
  
   
}

#dim_fild::before{
  content:"";
  position:absolute;
  left:18%;
  right:18%;
  top:0;
  height:2px;
  border-radius:20px;
  background:linear-gradient(90deg,
    transparent 0%,
    rgba(255,198,104,.05) 15%,
    rgba(255,210,120,.95) 50%,
    rgba(255,198,104,.05) 85%,
    transparent 100%);
  box-shadow:0 0 12px rgba(255,193,87,.45);
}

#dim_fild:hover{
  transform:translateY(-1px);
  border-color:rgba(240,190,105,.9);
  box-shadow:
    0 14px 34px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(255,196,98,.14),
    0 0 18px rgba(255,184,77,.10);
}

#dim_fild:focus-within{
  border-color:#f0bd69;
  box-shadow:
    0 14px 34px rgba(0,0,0,.45),
    0 0 0 1px rgba(240,189,105,.25),
    0 0 18px rgba(240,189,105,.22),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 -1px 0 rgba(255,196,98,.18);
}












}










.view-tabs .view-switch-btn{
    height: 40px;
    min-width: 105px;
    padding: 0 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border-radius: 12px;

    color: #222;
    background: rgba(255,255,255,.55);

    font-size: 13px;
    font-weight: 500;
    text-decoration: none;

    border: 1px solid rgba(255,255,255,.35);

    transition: all .25s ease;
}

.view-tabs .view-switch-btn i{
    font-size: 13px;
    opacity: .7;
}

.view-tabs .view-switch-btn:hover{
    background: rgba(255,255,255,.8);
    color: #111;
}

.view-tabs .view-switch-btn.active{
    background: #17202d;
    color: #fff;

    box-shadow:
        0 5px 14px rgba(0,0,0,.18),
        inset 0 1px 0 rgba(255,255,255,.12);
}

.view-tabs .view-switch-btn.active i{
    opacity: 1;
}


/* =========================================================
   GET A QUOTE - SAVING STATE
   ========================================================= */

.js-save-quote .quote-default-content{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.js-save-quote .quote-saving-content{
  display:none;
  align-items:center;
  justify-content:center;
  gap:9px;
  white-space:nowrap;
}

.js-save-quote.is-saving{
  cursor:wait !important;
  pointer-events:none;
}

.js-save-quote.is-saving .quote-default-content{
  display:none !important;
}

.js-save-quote.is-saving .quote-saving-content{
  display:inline-flex !important;
}

.quote-saving-spinner{
  width:14px;
  height:14px;
  flex:0 0 14px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.30);
  border-top-color:#fff;
  animation:quoteSavingSpin .72s linear infinite;
}

@keyframes quoteSavingSpin{
  to{transform:rotate(360deg);}
}

/* Keep the small bottom button stable while the text changes. */
.small-btn.js-save-quote{
  min-width:126px;
}

/* Mobile quote button keeps its original compact layout. */
.mobile-price-box .quote-btn .quote-default-content{
  gap:8px;
}


/* =========================================================
   HEADER CLEANUP / LOGGED USER
   Model / Style / Customize / Automation / Review removed.
   Main controls now live inside the desktop header.
   ========================================================= */

.topbar{
  gap:22px;
}

.topbar .header-view-tabs{
  position:static;
  top:auto;
  left:auto;
  flex:1;
  width:auto;
  max-width:650px;
  margin:0 auto;
  padding:7px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border-radius:16px;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  animation:none;
}

.topbar .header-view-tabs > a,
.topbar .header-view-tabs > button{
  flex:0 0 auto;
}

.topbar .header-view-tabs button{
  height:38px;
  border:0;
  padding:0 15px;
  border-radius:11px;
  background:rgba(255,255,255,.74);
  color:#20252b;
  cursor:pointer;
  font-size:12px;
  font-weight:700;
  transition:.25s ease;
}

.topbar .header-view-tabs button:hover{
  transform:translateY(-1px);
  background:#fff;
}

.topbar .header-view-tabs .header-login-icon button{
  width:42px;
  padding:0;
}

.topbar .header-view-tabs .view-switch-btn{
  height:38px;
  min-width:102px;
  padding:0 14px;
  border-radius:11px;
  background:rgba(255,255,255,.74);
  border:1px solid rgba(255,255,255,.28);
  color:#20252b;
}

.topbar .header-view-tabs .view-switch-btn:hover,
.topbar .header-view-tabs .view-switch-btn.active{
  background:#fff;
  color:#111827;
  transform:translateY(-1px);
}

.topbar .header-view-tabs .header-action-btn{
  min-width:64px;
}

.logged-user-box{
  min-width:150px;
  max-width:220px;
  height:48px;
  padding:6px 12px 6px 7px;
  display:flex;
  align-items:center;
  gap:9px;
  border-radius:14px;
  color:#fff;
  text-decoration:none;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.13);
  transition:.25s ease;
}

.logged-user-box:hover{
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.22);
  transform:translateY(-1px);
}

.logged-user-icon{
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:rgba(255,255,255,.12);
  color:#fff;
}

.logged-user-copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  line-height:1.15;
}

.logged-user-copy strong{
  max-width:135px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:12px;
  font-weight:700;
}

.logged-user-copy small{
  margin-top:3px;
  color:rgba(255,255,255,.58);
  font-size:9px;
  text-transform:uppercase;
  letter-spacing:.7px;
}

.guest-user-box{
  min-width:138px;
}

@media (max-width:1350px){
  .logged-user-box{
    min-width:48px;
    width:48px;
    padding:6px;
  }

  .logged-user-copy{
    display:none;
  }

  .topbar .header-view-tabs{
    max-width:590px;
  }
}

@media (max-width:1120px){
  .topbar .header-view-tabs{
    max-width:520px;
  }

  .topbar .header-view-tabs .view-switch-btn{
    min-width:88px;
    padding:0 10px;
  }

  .topbar .header-view-tabs .header-action-btn{
    min-width:54px;
    padding:0 10px;
  }
}


/* =========================================================
   HEADER - simplified layout
   Small user icon and top Get a Quote button removed.
   ========================================================= */
.topbar .header-view-tabs{
  justify-content:flex-start;
  max-width:none;
  margin-left:0;
  margin-right:auto;
}

.topbar .actions{
  margin-left:auto;
}

@media (max-width:1350px){
  .topbar .header-view-tabs{
    max-width:none;
  }
}


/* =========================================================
   PREMIUM HEADER + LEFT VERTICAL TOOLBAR
   Approved render layout
   ========================================================= */

.premium-topbar{
  height:68px;
  min-height:68px;
  padding:0 18px 0 24px;
  gap:18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(85,94,104,.58), rgba(44,50,57,.52)),
    rgba(27,32,38,.48);
  backdrop-filter:blur(28px) saturate(1.2);
  -webkit-backdrop-filter:blur(28px) saturate(1.2);
  box-shadow:
    0 18px 50px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.premium-logo{
  flex:0 0 auto;
}

.premium-logo a{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.premium-logo img{
  display:block;
  width:210px;
  max-height:52px;
  object-fit:contain;
  padding:5px 6px;
}

.premium-user-actions{
  margin-left:auto;
  gap:0;
}

.premium-topbar .logged-user-box{
  min-width:172px;
  max-width:230px;
  height:48px;
  padding:6px 10px 6px 7px;
  gap:9px;
  border-radius:14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 8px 22px rgba(0,0,0,.14);
}

.premium-topbar .logged-user-box:hover{
  background:
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
}

.premium-topbar .logged-user-icon{
  width:36px;
  height:36px;
  flex:0 0 36px;
  border-radius:11px;
  background:rgba(255,255,255,.10);
}

.premium-topbar .logged-user-copy{
  flex:1;
}

.premium-topbar .logged-user-copy strong{
  max-width:135px;
  font-size:12px;
}

.premium-topbar .logged-user-copy small{
  margin-top:3px;
  font-size:8px;
  letter-spacing:.75px;
}

.logged-user-arrow{
  margin-left:4px;
  color:rgba(255,255,255,.65);
  font-size:10px;
}

/* Left floating controls */
.desktop-side-tools{
  position:absolute;
  left:20px;
  top:158px;
  z-index:9999998;
  width:62px;
  padding:9px 7px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.15);
  background:
    linear-gradient(180deg, rgba(35,41,47,.78), rgba(17,21,25,.72));
  backdrop-filter:blur(24px);
  -webkit-backdrop-filter:blur(24px);
  box-shadow:
    0 18px 44px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.desktop-tool-btn{
  position:relative;
  width:48px;
  height:48px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 48px;
  border:1px solid transparent;
  border-radius:14px;
  outline:0;
  background:transparent;
  color:rgba(255,255,255,.72);
  text-decoration:none;
  cursor:pointer;
  transition:
    background .22s ease,
    border-color .22s ease,
    color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.desktop-tool-btn i{
  font-size:18px;
}

.desktop-tool-btn + .desktop-tool-btn::before{
  content:"";
  position:absolute;
  left:9px;
  right:9px;
  top:-4px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}

.desktop-tool-btn:hover{
  color:#fff;
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.desktop-tool-btn.active{
  color:#343a40;
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(224,228,231,.88));
  border-color:rgba(255,255,255,.72);
  box-shadow:
    0 8px 18px rgba(0,0,0,.20),
    inset 0 1px 0 rgba(255,255,255,1);
}

/* Tiny tooltip on hover, while keeping the toolbar icon-only. */
.desktop-tool-btn::after{
  content:attr(aria-label);
  position:absolute;
  left:58px;
  top:50%;
  transform:translateY(-50%) translateX(-4px);
  padding:6px 9px;
  border-radius:8px;
  background:rgba(14,18,22,.92);
  color:#fff;
  font-size:10px;
  font-weight:600;
  white-space:nowrap;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.18s ease;
  box-shadow:0 8px 20px rgba(0,0,0,.22);
}

.desktop-tool-btn:hover::after{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0);
}

/* The old header control group is no longer part of the desktop layout. */
.topbar .header-view-tabs{
  display:none !important;
}

@media (max-width:1350px){
  .premium-topbar .logged-user-box{
    min-width:150px;
    width:auto;
    padding:6px 9px 6px 7px;
  }

  .premium-topbar .logged-user-copy{
    display:flex;
  }
}

@media (max-width:1000px){
  .desktop-side-tools{
    display:none !important;
  }
}


/* 2D / 3D controls now live in the left vertical toolbar */
.desktop-side-tools .desktop-tool-btn[aria-label="2D view"]{
  margin-top:4px;
}

.desktop-side-tools .desktop-tool-btn[aria-label="2D view"]::before{
  content:"";
  position:absolute;
  left:8px;
  right:8px;
  top:-6px;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
}

