/* =========================================================
   ADERA BUSINESS SERVICES DESK V1
========================================================= */

.adera-service-desk{
  display:grid;
  grid-template-columns:minmax(240px,.72fr) minmax(0,1.45fr);
  gap:22px;
  width:100%;
  margin-top:8px;
  scroll-margin-top:118px;
}

.adera-service-menu,
.adera-service-panel{
  border:1px solid rgba(91,52,16,.16);
  border-radius:18px;
  background:rgba(255,253,249,.9);
}

.adera-service-menu{
  padding:14px;
  align-self:start;
}

.adera-service-menu-title{
  margin:4px 7px 12px;
  color:var(--brand,#5B3410);
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.adera-service-choice{
  display:flex;
  width:100%;
  align-items:center;
  gap:12px;
  border:0;
  border-radius:12px;
  padding:14px 13px;
  margin:5px 0;
  background:transparent;
  color:#4a3020;
  text-align:left;
  font:inherit;
  cursor:pointer;
  transition:background .18s ease,color .18s ease,transform .18s ease;
}

.adera-service-choice:hover,
.adera-service-choice:focus-visible{
  background:#f3e9dc;
  outline:none;
}

.adera-service-choice.active{
  background:var(--brand,#5B3410);
  color:#fff;
}

.adera-service-choice-icon{
  display:grid;
  place-items:center;
  width:31px;
  height:31px;
  flex:0 0 31px;
  border-radius:50%;
  background:rgba(91,52,16,.11);
  color:var(--brand,#5B3410);
  font-size:14px;
  font-weight:900;
}

.adera-service-choice.active .adera-service-choice-icon{
  background:rgba(255,255,255,.18);
  color:#fff;
}

.adera-service-choice-copy{
  display:grid;
  gap:3px;
}

.adera-service-choice-copy strong{
  font-size:14px;
}

.adera-service-choice-copy small{
  color:inherit;
  opacity:.74;
  font-size:11px;
  line-height:1.3;
}

.adera-service-panel{
  min-height:420px;
  padding:clamp(20px,3vw,32px);
}

.adera-service-empty{
  display:grid;
  min-height:350px;
  place-items:center;
  align-content:center;
  gap:11px;
  text-align:center;
  color:#6a5547;
}

.adera-service-empty h3{
  margin:0;
  color:var(--brand,#5B3410);
  font-size:25px;
}

.adera-service-empty p{
  max-width:390px;
  margin:0;
  line-height:1.55;
}

.adera-service-form-head h3{
  margin:0;
  color:var(--brand,#5B3410);
  font-size:27px;
}

.adera-service-form-head p{
  margin:8px 0 22px;
  color:#6c584a;
  line-height:1.55;
}

.adera-service-form{
  display:grid;
  gap:16px;
}

.adera-service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.adera-service-form label{
  display:grid;
  gap:7px;
  color:#4b3425;
  font-size:13px;
  font-weight:700;
}

.adera-service-form input,
.adera-service-form select,
.adera-service-form textarea{
  width:100%;
  border:1px solid #d9c6ae;
  border-radius:9px;
  padding:12px 13px;
  background:#fffdf9;
  color:#2f2016;
  font:inherit;
}

.adera-service-form input:focus,
.adera-service-form select:focus,
.adera-service-form textarea:focus{
  outline:none;
  border-color:var(--accent,#0A8C60);
  box-shadow:0 0 0 3px rgba(10,140,96,.13);
}

.adera-service-full{
  grid-column:1 / -1;
}

.adera-service-method-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:2px;
}

.adera-service-method-option{
  border:1px solid #d9c6ae;
  border-radius:10px;
  padding:12px;
  cursor:pointer;
  background:#fffdf9;
}

.adera-service-method-option:has(input:checked){
  border-color:var(--accent,#0A8C60);
  background:#eff8f4;
}

.adera-service-method-option input{
  width:auto;
  margin-right:7px;
}

.adera-service-method-option strong{
  font-size:13px;
}

.adera-service-method-option span{
  display:block;
  margin:7px 0 0 24px;
  color:#6c584a;
  font-size:12px;
  font-weight:400;
  line-height:1.4;
}

.adera-service-payment-note{
  margin:0;
  padding:11px 12px;
  border-radius:9px;
  background:#f6eee3;
  color:#5e4532;
  font-size:12px;
  line-height:1.45;
}

.adera-service-submit-row{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:2px;
}

.adera-service-submit-row .button:disabled{
  cursor:not-allowed;
  opacity:.64;
}

.adera-service-message{
  display:none;
  padding:12px;
  border-radius:9px;
  font-size:13px;
  line-height:1.45;
}

.adera-service-message.success{
  display:block;
  color:#12643b;
  background:#eaf8ef;
  border:1px solid #bbdfc8;
}

.adera-service-message.error{
  display:block;
  color:#992b2b;
  background:#fff0f0;
  border:1px solid #edc1c1;
}

.adera-service-honeypot{
  position:absolute!important;
  left:-10000px!important;
  opacity:0!important;
  pointer-events:none!important;
}

@media(max-width:820px){
  .adera-service-desk{
    grid-template-columns:1fr;
  }

  .adera-service-menu{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:7px;
  }

  .adera-service-menu-title{
    grid-column:1 / -1;
  }

  .adera-service-choice{
    margin:0;
  }
}

@media(max-width:560px){
  .adera-service-menu,
  .adera-service-grid,
  .adera-service-method-card{
    grid-template-columns:1fr;
  }

  .adera-service-full{
    grid-column:auto;
  }

  .adera-service-panel{
    min-height:0;
  }
}

/* =========================================================
   ADERA BUSINESS SERVICES DESK — WIDTH REPAIR V1
   Prevent inherited website card/grid rules from collapsing
   the right-side service form.
========================================================= */

#businessCards{
  display:block !important;
  width:100% !important;
  max-width:none !important;
}

#businessCards > .adera-service-desk{
  display:grid !important;
  grid-template-columns:minmax(270px,320px) minmax(0,1fr) !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  gap:26px !important;
}

#businessCards .adera-service-menu{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
}

#businessCards .adera-service-panel{
  display:block !important;
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
  overflow:visible !important;
}

#businessCards .adera-service-form-head,
#businessCards .adera-service-form,
#businessCards .adera-service-empty{
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
}

#businessCards .adera-service-form-head h3,
#businessCards .adera-service-form-head p{
  width:100% !important;
  max-width:760px !important;
  word-break:normal !important;
  overflow-wrap:normal !important;
}

#businessCards .adera-service-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  width:100% !important;
  min-width:0 !important;
}

#businessCards .adera-service-grid label,
#businessCards .adera-service-grid input,
#businessCards .adera-service-grid select,
#businessCards .adera-service-grid textarea{
  min-width:0 !important;
  width:100% !important;
}

#businessCards .adera-service-full{
  grid-column:1 / -1 !important;
}

@media(max-width:820px){
  #businessCards > .adera-service-desk{
    grid-template-columns:1fr !important;
  }

  #businessCards .adera-service-grid{
    grid-template-columns:1fr !important;
  }

  #businessCards .adera-service-full{
    grid-column:auto !important;
  }
}

/* =========================================================
   ADERA BUSINESS SERVICES DESK — STRUCTURAL PARENT FIX V1
   Business Services must not inherit the three-column
   product/service card grid used elsewhere on the website.
========================================================= */

.business-services-host{
  display:block;
  width:100%;
  max-width:none;
}

.business-services-host > .adera-service-desk{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  width:100%;
  max-width:none;
  min-width:0;
  gap:26px;
}

.business-services-host .adera-service-panel{
  width:100%;
  min-width:0;
  max-width:none;
}

.business-services-host .adera-service-form-head,
.business-services-host .adera-service-form,
.business-services-host .adera-service-empty{
  width:100%;
  min-width:0;
  max-width:none;
}

.business-services-host .adera-service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  width:100%;
  min-width:0;
}

@media(max-width:820px){
  .business-services-host > .adera-service-desk{
    grid-template-columns:1fr;
  }

  .business-services-host .adera-service-grid{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   ADERA SERVICE DESK — DEDICATED MOUNT FIX V1
   Uses a clean full-width mount outside legacy #businessCards.
========================================================= */

#businessCards{
  display:none !important;
}

#aderaServiceDeskMount{
  display:block;
  width:100%;
  max-width:none;
  min-width:0;
}

#aderaServiceDeskMount .adera-service-desk{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  width:100%;
  max-width:none;
  min-width:0;
  gap:26px;
}

#aderaServiceDeskMount .adera-service-menu,
#aderaServiceDeskMount .adera-service-panel{
  width:100%;
  min-width:0;
  max-width:none;
}

#aderaServiceDeskMount .adera-service-panel{
  display:block;
  overflow:visible;
}

#aderaServiceDeskMount .adera-service-form-head,
#aderaServiceDeskMount .adera-service-form,
#aderaServiceDeskMount .adera-service-empty{
  width:100%;
  min-width:0;
  max-width:none;
}

#aderaServiceDeskMount .adera-service-form-head h3,
#aderaServiceDeskMount .adera-service-form-head p{
  max-width:760px;
  overflow-wrap:normal;
  word-break:normal;
}

#aderaServiceDeskMount .adera-service-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  width:100%;
  min-width:0;
  gap:14px;
}

#aderaServiceDeskMount .adera-service-grid input,
#aderaServiceDeskMount .adera-service-grid select,
#aderaServiceDeskMount .adera-service-grid textarea{
  width:100%;
  min-width:0;
}

#aderaServiceDeskMount .adera-service-full{
  grid-column:1 / -1;
}

@media(max-width:820px){
  #aderaServiceDeskMount .adera-service-desk{
    grid-template-columns:1fr;
  }

  #aderaServiceDeskMount .adera-service-grid{
    grid-template-columns:1fr;
  }

  #aderaServiceDeskMount .adera-service-full{
    grid-column:auto;
  }
}

/* ADERA_SERVICE_DESK_NEW_MOUNT_V1 */
#businessCards{
  display:none !important;
}

#aderaServiceDeskMount{
  display:block !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
}

#aderaServiceDeskMount .adera-service-desk{
  display:grid !important;
  grid-template-columns:300px minmax(0,1fr) !important;
  width:100% !important;
  max-width:none !important;
  min-width:0 !important;
  gap:26px !important;
}

#aderaServiceDeskMount .adera-service-menu,
#aderaServiceDeskMount .adera-service-panel{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
}

#aderaServiceDeskMount .adera-service-panel{
  display:block !important;
  overflow:visible !important;
}

#aderaServiceDeskMount .adera-service-form-head,
#aderaServiceDeskMount .adera-service-form,
#aderaServiceDeskMount .adera-service-empty{
  width:100% !important;
  min-width:0 !important;
  max-width:none !important;
}

#aderaServiceDeskMount .adera-service-grid{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  width:100% !important;
  min-width:0 !important;
}

#aderaServiceDeskMount .adera-service-grid input,
#aderaServiceDeskMount .adera-service-grid select,
#aderaServiceDeskMount .adera-service-grid textarea{
  width:100% !important;
  min-width:0 !important;
}

#aderaServiceDeskMount .adera-service-full{
  grid-column:1 / -1 !important;
}

@media(max-width:820px){
  #aderaServiceDeskMount .adera-service-desk,
  #aderaServiceDeskMount .adera-service-grid{
    grid-template-columns:1fr !important;
  }

  #aderaServiceDeskMount .adera-service-full{
    grid-column:auto !important;
  }
}
