.elementor-2164 .elementor-element.elementor-element-6454c7d{--display:flex;}#elementor-popup-modal-2164{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-2164 .dialog-message{width:690px;height:auto;}#elementor-popup-modal-2164 .dialog-close-button{display:flex;font-size:24px;}#elementor-popup-modal-2164 .dialog-widget-content{border-radius:20px 20px 20px 20px;box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}#elementor-popup-modal-2164 .dialog-close-button:hover i{color:#FF2121;}/* Start custom CSS for html, class: .elementor-element-0296d05 */:root {
  --primary: #8F35D4;
  --primary-dark: #7421BE;
  --primary-light: #F8F1FF;
  --primary-soft: #FCF9FF;
  --primary-border: #E7D5F4;

  --bg: #FFFFFF;
  --bg-soft: #FAFAFC;
  --surface: #FFFFFF;

  --border: #E9E4EE;
  --border-hover: #D8CBE2;

  --text: #18181B;
  --text-secondary: #52525B;
  --text-light: #71717A;
  --text-muted: #A1A1AA;

  --danger: #EF4444;
  --danger-light: #FEF2F2;

  --radius-sm: 9px;
  --radius: 12px;
  --radius-lg: 16px;

  --shadow-xs: 0 1px 3px rgba(24, 24, 27, .04);
  --shadow-sm: 0 4px 14px rgba(24, 24, 27, .06);
  --shadow-purple: 0 7px 20px rgba(143, 53, 212, .14);

  --transition: .2s cubic-bezier(.4, 0, .2, 1);
}


#calc-root,
#calc-root *,
#calc-root *::before,
#calc-root *::after {
  box-sizing: border-box;
}

#calc-root {
  width: 100%;
  max-width: 780px;
  height: 580px;
  margin: auto;
  padding: 24px 22px;

  background: var(--surface);
  color: var(--text);

  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;

  overflow: hidden;
  display: flex;
  flex-direction: column;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}



#step1,
#step2,
#step3 {
  flex: 1;
  min-height: 0;

  animation: calcFadeIn .2s ease;

  overflow-y: auto;
  overflow-x: hidden;

  padding-right: 5px;
  scrollbar-width: thin;
  scrollbar-color: #D6CDD9 transparent;
}

#step1::-webkit-scrollbar,
#step2::-webkit-scrollbar,
#step3::-webkit-scrollbar {
  width: 4px;
}

#step1::-webkit-scrollbar-track,
#step2::-webkit-scrollbar-track,
#step3::-webkit-scrollbar-track {
  background: transparent;
}

#step1::-webkit-scrollbar-thumb,
#step2::-webkit-scrollbar-thumb,
#step3::-webkit-scrollbar-thumb {
  background: #D6CDD9;
  border-radius: 999px;
}

@keyframes calcFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.calc-step-title {
  margin: 0 0 50px;

  color: var(--text);
  font-size: 23px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: -.025em;
  text-align: center;
}

.calc-subtitle {
  margin: 0 0 17px;

  color: var(--text-light);
  font-size: 13px;
  line-height: 1.5;
}

.calc-subtitle strong {
  color: var(--text);
  font-weight: 700;
}

.calc-section-title {
  margin: 0 0 8px;

  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -.01em;
}

.calc-option-label {
  display: block;
  margin: 0 0 6px;

  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 650;
}

#servicesContainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 18px;
}

.calc-service-card {
  position: relative;

  min-height: 50px;
  padding: 30px 10px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);

  color: var(--text);
  font-size: 13.5px;
  line-height: 1.3;
  font-weight: 550;
  text-align: center;

  cursor: pointer;
  user-select: none;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.calc-service-card:hover {
  transform: translateY(-1px);
  background: var(--primary-soft);
  border-color: #D7B9E9;
  box-shadow: var(--shadow-sm);
}

.calc-service-card.selected {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow:
    0 0 0 2px rgba(143, 53, 212, .08),
    0 5px 15px rgba(143, 53, 212, .08);
}

.calc-service-card.selected::after {
  content: "✓";

  position: absolute;
  top: 7px;
  right: 7px;

  width: 17px;
  height: 17px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--primary);
  border-radius: 50%;

  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
}



.calc-navigation {
  display: flex;
  padding-bottom: 15px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin-top: 20px;
  padding-top: 2px;
}

.calc-btn,
#nextBtn1 {
  min-height: 40px;
  height: 40px;
  margin-top: 40px;
  padding: 0 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 30px;
  border: 0;

  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;

  cursor: pointer;
  user-select: none;
  white-space: nowrap;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}



.calc-btn-primary,
#nextBtn1 {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(143, 53, 212, .18);
}

.calc-btn-primary:hover:not(:disabled),
#nextBtn1:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(143, 53, 212, .23);
}

.calc-btn-primary:active:not(:disabled),
#nextBtn1:active:not(:disabled) {
  transform: translateY(0);
}

.calc-btn-primary:disabled,
#nextBtn1:disabled {
  background: #E4E4E7;
  color: #A1A1AA;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}



#calc-root .calc-btn,
#calc-root #nextBtn1,
#calc-root .calc-btn-outline,
#calc-root .calc-btn-primary {
    min-height: 40px !important;
    height: 40px !important;

    margin-top: 40px !important;
    padding: 0 40px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 30px !important;
    border: 0 !important;

    font-family: inherit !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 400 !important;

    cursor: pointer !important;
    user-select: none !important;
    white-space: nowrap !important;

    transition:
        transform .2s cubic-bezier(.4,0,.2,1),
        background .2s cubic-bezier(.4,0,.2,1),
        border-color .2s cubic-bezier(.4,0,.2,1),
        color .2s cubic-bezier(.4,0,.2,1),
        box-shadow .2s cubic-bezier(.4,0,.2,1) !important;
}



#calc-root .calc-btn-primary,
#calc-root #nextBtn1 {
    background: var(--primary) !important;
    color: #fff !important;

    border: 0 !important;
    box-shadow: 0 4px 12px rgba(143, 53, 212, .18) !important;
}



#calc-root .calc-btn-primary:hover:not(:disabled),
#calc-root #nextBtn1:hover:not(:disabled) {
    background: var(--primary-dark) !important;
    color: #fff !important;

    border: 0 !important;

    transform: translateY(-1px) !important;

    box-shadow: 0 7px 18px rgba(143, 53, 212, .23) !important;
}


#calc-root .calc-btn-primary:active:not(:disabled),
#calc-root #nextBtn1:active:not(:disabled) {
    background: var(--primary-dark) !important;
    color: #fff !important;

    transform: translateY(0) !important;

    box-shadow: 0 4px 12px rgba(143, 53, 212, .18) !important;
}



#calc-root .calc-btn-primary:disabled,
#calc-root #nextBtn1:disabled {
    background: #E4E4E7 !important;
    color: #A1A1AA !important;

    border: 0 !important;

    box-shadow: none !important;

    cursor: not-allowed !important;
    transform: none !important;
}




#calc-root .calc-btn-outline {
    background: #FFFFFF !important;
    color: var(--primary) !important;

    border: 1.5px solid var(--primary) !important;

    box-shadow: none !important;
}



#calc-root .calc-btn-outline:hover {
    background: var(--primary-light) !important;
    color: var(--primary-dark) !important;

    border-color: var(--primary-dark) !important;

    transform: translateY(-1px) !important;

    box-shadow: 0 5px 14px rgba(143, 53, 212, .12) !important;
}



#calc-root .calc-btn-outline:active {
    background: #F1E6FA !important;
    color: var(--primary-dark) !important;

    transform: translateY(0) !important;

    box-shadow: none !important;
}



#calc-root button.calc-btn,
#calc-root button.calc-btn-primary,
#calc-root button.calc-btn-outline,
#calc-root button#nextBtn1 {
    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 400 !important;

    border-radius: 30px !important;

    text-transform: none !important;
    letter-spacing: normal !important;

    outline: none !important;
}



#calc-root button.calc-btn:hover,
#calc-root button.calc-btn-primary:hover,
#calc-root button.calc-btn-outline:hover,
#calc-root button#nextBtn1:hover {
    outline: none !important;
}



@media (max-width: 768px) {

    #calc-root .calc-btn,
    #calc-root #nextBtn1,
    #calc-root .calc-btn-outline,
    #calc-root .calc-btn-primary {
        height: 44px !important;
        min-height: 44px !important;

        margin-top: 0 !important;

        padding: 0 24px !important;

        font-size: 14px !important;

        border-radius: 30px !important;
    }
}
/* Outline */

.calc-btn-outline {
  background: #fff;
  border: 1px solid var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow-xs);
}

.calc-btn-outline:hover {
  background: var(--primary-light);
  border-color: var(--primary-dark);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.calc-btn-outline:active {
  transform: translateY(0);
}



#calc-root .calc-add-btn,
#calc-root button.calc-add-btn {
  min-height: 30px;
  width: auto;

  padding: 4px 11px !important;

  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 8px;

  color: var(--text-secondary) !important;

  font-family: inherit;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;

  cursor: pointer;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

#calc-root .calc-add-btn:hover,
#calc-root button.calc-add-btn:hover {
  background: var(--primary-light) !important;
  border-color: #D5B3E8 !important;
  color: var(--primary) !important;
  transform: translateY(-1px);
}




#calc-root .calc-remove-btn,
#calc-root button.calc-remove-btn {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;

  margin: 0 !important;
  padding: 0 !important;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 0 !important;
  border-radius: 50%;

  background: var(--danger-light) !important;
  color: var(--danger) !important;

  font-family: inherit;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;

  cursor: pointer;
  flex-shrink: 0;

  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

#calc-root .calc-remove-btn:hover,
#calc-root button.calc-remove-btn:hover {
  background: var(--danger) !important;
  color: #fff !important;
  transform: scale(1.08);
}



#addonsBlock {
  margin-top: 8px;
}

#addonsBlock .calc-section-title {
  margin-bottom: 7px;
}




.calc-step2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  align-items: start;
}

.calc-options-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}




.calc-summary-box {
  position: sticky;
  top: 12px;

  padding: 16px;

  background: linear-gradient(180deg, #fff 0%, #FCF9FF 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius);

  box-shadow: 0 4px 14px rgba(143, 53, 212, .06);
}

.calc-summary-box h3 {
  margin: 0 0 11px;
  padding-bottom: 10px;

  border-bottom: 1px solid var(--border);

  color: var(--text);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 750;
}

.calc-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  margin: 0 0 7px;

  color: var(--text-light);
  font-size: 11.5px;
  line-height: 1.4;
}

.calc-summary-row span {
  color: var(--text-light);
}

.calc-summary-row strong {
  color: var(--text);
  font-weight: 700;
  text-align: right;
}

.calc-divider {
  height: 1px;
  margin: 10px 0;

  border: 0;
  background: var(--border);
}

.calc-total-price {
  padding-top: 5px;

  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.025em;
}

#orderSummary {
  color: var(--text-light);
  font-size: 11px;
  line-height: 1.5;
}

.empty-summary {
  color: var(--text-muted);
  font-size: 11px;
}




.calc-radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 7px;
}

.calc-radio-card {
  min-height: 40px;
  padding: 8px 11px;

  display: flex;
  align-items: center;
  gap: 7px;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;

  color: var(--text-secondary);
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 550;

  cursor: pointer;
  user-select: none;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
}

.calc-radio-card:hover {
  background: var(--primary-soft);
  border-color: #D8BDE8;
  color: var(--text);
}

.calc-radio-card:has(input[type="radio"]:checked) {
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(143, 53, 212, .05);
}

.calc-radio-card input[type="radio"] {
  width: 14px;
  height: 14px;
  margin: 0;

  flex-shrink: 0;

  accent-color: var(--primary);
  cursor: pointer;
}



.calc-input {
  width: 100%;
  height: 40px;
  padding: 0 12px;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;

  color: var(--text);
  font-family: inherit;
  font-size: 13px;

  outline: none;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.calc-input:hover {
  border-color: var(--border-hover);
}

.calc-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(143, 53, 212, .08);
}

.calc-input::placeholder {
  color: var(--text-muted);
}




.calc-counter-item {
  min-height: 44px;
  margin-bottom: 5px;
  padding: 8px 11px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.calc-counter-item:hover {
  background: #FEFCFF;
  border-color: var(--border-hover);
  box-shadow: var(--shadow-xs);
}

.calc-counter-info {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 1px;
}

.calc-counter-info strong {
  color: var(--text);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 650;
}

.calc-counter-info small {
  color: var(--text-light);
  font-size: 10px;
  line-height: 1.3;
}

.calc-counter-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.calc-counter-btn {
  width: 30px;
  height: 30px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #E5D9EC;
  border-radius: 8px;

  background: var(--primary-light);
  color: var(--primary);

  font-family: inherit;
  font-size: 15px;
  line-height: 1;
  font-weight: 750;

  cursor: pointer;
  user-select: none;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.calc-counter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.calc-counter-btn:active {
  transform: translateY(0);
}

.calc-counter-value {
  min-width: 24px;

  color: var(--text);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
  text-align: center;
}



#addonsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 7px;

  max-height: 200px;
  padding-right: 3px;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: #D6CDD9 transparent;
}

#addonsGrid::-webkit-scrollbar {
  width: 4px;
}

#addonsGrid::-webkit-scrollbar-track {
  background: transparent;
}

#addonsGrid::-webkit-scrollbar-thumb {
  background: #D6CDD9;
  border-radius: 999px;
}

.calc-addon-card {
  position: relative;

  min-height: 58px;
  padding: 10px 30px 10px 12px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;

  cursor: pointer;
  user-select: none;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.calc-addon-card:hover {
  transform: translateY(-1px);
  background: var(--primary-soft);
  border-color: #D8BDE8;
  box-shadow: var(--shadow-xs);
}

.calc-addon-card::after {
  content: "+";

  position: absolute;
  top: 9px;
  right: 10px;

  width: 19px;
  height: 19px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--primary-light);
  border-radius: 50%;

  color: #A89AB2;
  font-size: 13px;
  line-height: 1;
  font-weight: 750;

  transition:
    background var(--transition),
    color var(--transition);
}

.calc-addon-card:hover::after {
  background: var(--primary);
  color: #fff;
}

.calc-addon-title {
  padding-right: 3px;

  color: var(--text);
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 650;
}

.calc-addon-price {
  margin-top: 4px;

  color: var(--primary);
  font-size: 13px;
  line-height: 1;
  font-weight: 750;
}




#selectedAddonsList {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;

  margin-bottom: 6px;
}

#selectedAddonsList p {
  width: 100%;
  margin: 0;

  color: var(--text-muted);
  font-size: 10px;
  line-height: 1.4;
}

.calc-addon-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 5px 7px 5px 9px;

  background: var(--primary-light);
  border: 1px solid #DCC1EF;
  border-radius: 999px;

  color: #7134A7;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 550;

  white-space: nowrap;

  transition:
    background var(--transition),
    border-color var(--transition);
}

.calc-addon-item:hover {
  background: #F0E4FA;
  border-color: #CFACE7;
}

.calc-addon-info {
  display: inline-flex;
  align-items: center;
}

.calc-addon-info strong {
  color: #7134A7;
  font-size: 10.5px;
  line-height: 1;
  font-weight: 600;
}

.calc-addon-controls {
  display: none;
}



.calc-form-group {
  margin-bottom: 10px;
}

.calc-form-group label {
  display: block;
  margin-bottom: 4px;

  color: var(--text-secondary);
  font-size: 11px;
  line-height: 1.3;
  font-weight: 650;
}

.calc-form-group input,
.calc-form-group textarea,
#customerName,
#customerPhone,
#customerEmail,
#customerComment {
  width: 100%;

  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;

  color: var(--text);
  font-family: inherit;
  font-size: 12px;
  line-height: 1.4;

  outline: none;

  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.calc-form-group input,
#customerName,
#customerPhone,
#customerEmail {
  height: 40px;
  padding: 8px 12px;
}

.calc-form-group textarea,
#customerComment {
  min-height: 70px;
  padding: 9px 12px;
  resize: vertical;
}

.calc-form-group input:hover,
.calc-form-group textarea:hover,
#customerName:hover,
#customerPhone:hover,
#customerEmail:hover,
#customerComment:hover {
  border-color: var(--border-hover);
}

.calc-form-group input:focus,
.calc-form-group textarea:focus,
#customerName:focus,
#customerPhone:focus,
#customerEmail:focus,
#customerComment:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(143, 53, 212, .08);
}

.calc-form-group input::placeholder,
.calc-form-group textarea::placeholder,
#customerName::placeholder,
#customerPhone::placeholder,
#customerEmail::placeholder,
#customerComment::placeholder {
  color: var(--text-muted);
}




#calc-root #finalSummary,
#calc-root .calc-final-summary {
  position: relative;

  width: 100%;
  margin: 0 0 18px;
  padding: 18px 20px;

  background: #FFFFFF;
  border: 1px solid #E6D7EF;
  border-radius: 16px;

  box-shadow: 0 5px 18px rgba(143, 53, 212, .07);

  overflow: hidden;
}

#calc-root #finalSummary::before,
#calc-root .calc-final-summary::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: 3px;

  background: linear-gradient(
    90deg,
    #8F35D4 0%,
    #B86BE8 50%,
    #8F35D4 100%
  );
}

#calc-root #finalSummary h3,
#calc-root .calc-final-summary h3 {
  margin: 0 0 12px;
  padding: 0 0 12px;

  border-bottom: 1px solid #EEE8F2;

  color: #18181B;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 750;
  letter-spacing: -.015em;
}

#calc-root #finalSummary p,
#calc-root .calc-final-summary p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-height: 30px;
  margin: 0;
  padding: 7px 0;

  color: #71717A;
  font-size: 12px;
  line-height: 1.4;
}

#calc-root #finalSummary p + p,
#calc-root .calc-final-summary p + p {
  border-top: 1px solid #F1EDF4;
}

#calc-root #finalSummary p strong,
#calc-root .calc-final-summary p strong {
  color: #252329;
  font-size: 12px;
  font-weight: 650;
  text-align: right;
}

#calc-root #finalSummary p:last-child,
#calc-root .calc-final-summary p:last-child {
  margin-top: 8px;
  padding: 13px 0 1px;

  border-top: 1px solid #E2D3EA;

  color: #252329;
  font-size: 13px;
  font-weight: 700;
}

#calc-root #finalSummary p:last-child strong,
#calc-root .calc-final-summary p:last-child strong {
  color: #8F35D4;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.025em;
}

#calc-root #finalSummary:hover,
#calc-root .calc-final-summary:hover {
  border-color: #DCC5E9;
  box-shadow: 0 7px 22px rgba(143, 53, 212, .09);
}




@media (max-width: 768px) {
  #calc-root #finalSummary,
  #calc-root .calc-final-summary {
    margin-bottom: 14px;
    padding: 15px 16px;
    border-radius: 14px;
  }

  #calc-root #finalSummary h3,
  #calc-root .calc-final-summary h3 {
    margin-bottom: 9px;
    padding-bottom: 9px;
    font-size: 14px;
  }

  #calc-root #finalSummary p,
  #calc-root .calc-final-summary p {
    min-height: 29px;
    padding: 6px 0;
    font-size: 11px;
  }

  #calc-root #finalSummary p strong,
  #calc-root .calc-final-summary p strong {
    font-size: 11px;
  }

  #calc-root #finalSummary p:last-child,
  #calc-root .calc-final-summary p:last-child {
    margin-top: 7px;
    padding-top: 11px;
  }

  #calc-root #finalSummary p:last-child strong,
  #calc-root .calc-final-summary p:last-child strong {
    font-size: 20px;
  }
}



@media (max-width: 480px) {
  #calc-root #finalSummary,
  #calc-root .calc-final-summary {
    margin-bottom: 12px;
    padding: 13px 14px;
    border-radius: 12px;
  }

  #calc-root #finalSummary h3,
  #calc-root .calc-final-summary h3 {
    font-size: 13px;
  }

  #calc-root #finalSummary p,
  #calc-root .calc-final-summary p {
    font-size: 10.5px;
  }

  #calc-root #finalSummary p strong,
  #calc-root .calc-final-summary p strong {
    font-size: 10.5px;
  }

  #calc-root #finalSummary p:last-child strong,
  #calc-root .calc-final-summary p:last-child strong {
    font-size: 18px;
  }
}



#hiddenService,
#hiddenVariant,
#hiddenAddons,
#hiddenTotal {
  display: none;
}

#selectedServiceName2 {
  color: var(--text);
  font-weight: 700;
}

#addonSelector {
  max-height: 240px;
  overflow: hidden;
}




#calc-root button:focus-visible,
#calc-root input:focus-visible,
#calc-root textarea:focus-visible {
  outline: 2px solid rgba(143, 53, 212, .35);
  outline-offset: 2px;
}



@media (max-width: 1024px) {
  #calc-root {
    max-width: 100%;
  }

  #servicesContainer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}




@media (max-width: 768px) {
  #calc-root {
    height: auto;
    max-height: none;
    min-height: 100vh;

    padding: 16px 12px;
    border-radius: 0;
  }

  #step1,
  #step2,
  #step3 {
    overflow-y: visible;
    padding-right: 0;
  }

  .calc-step-title {
    margin-bottom: 12px;
    font-size: 19px;
  }

  .calc-subtitle {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .calc-section-title {
    font-size: 14px;
  }

  .calc-option-label {
    font-size: 11px;
  }

  #servicesContainer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 12px;
  }

  .calc-service-card {
    min-height: 44px;
    padding: 9px 8px;
    font-size: 11.5px;
  }

  .calc-step2-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calc-options-panel {
    gap: 10px;
  }

  .calc-summary-box {
    position: static;
    order: -1;
    margin-bottom: 12px;
    padding: 12px;
  }

  .calc-summary-box h3 {
    font-size: 14px;
  }

  .calc-radio-cards {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .calc-radio-card {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  .calc-input {
    height: 38px;
    font-size: 12px;
  }

  .calc-counter-item {
    min-height: 40px;
    padding: 7px 10px;
  }

  .calc-counter-btn {
    width: 28px;
    height: 28px;
  }

  #addonsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 220px;
  }

  .calc-addon-card {
    min-height: 50px;
    padding: 8px 28px 8px 10px;
  }

  .calc-addon-title {
    font-size: 10.5px;
  }

  .calc-addon-price {
    font-size: 12px;
  }

  .calc-addon-item {
    padding: 4px 6px 4px 8px;
    font-size: 10px;
  }

  .calc-remove-btn {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    font-size: 9px;
  }

  .calc-navigation {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 10px;
    margin-top: 16px;
  }

  .calc-btn,
  #nextBtn1 {
    width: 100%;
    height: 44px;
    min-height: 44px;
    font-size: 13px;
  }

  .calc-form-group {
    margin-bottom: 8px;
  }

  .calc-form-group label {
    font-size: 10.5px;
  }

  .calc-form-group input,
  .calc-form-group textarea,
  #customerName,
  #customerPhone,
  #customerEmail,
  #customerComment {
    padding: 8px 10px;
    font-size: 11.5px;
  }

  #customerName,
  #customerPhone,
  #customerEmail {
    height: 38px;
  }

  #customerComment {
    min-height: 64px;
  }

  #finalSummary,
  .calc-final-summary {
    padding: 12px;
    margin-bottom: 12px;
  }

  #finalSummary h3,
  .calc-final-summary h3 {
    font-size: 14px;
  }

  #finalSummary p,
  .calc-final-summary p {
    font-size: 10.5px;
  }

  #step1::-webkit-scrollbar,
  #step2::-webkit-scrollbar,
  #step3::-webkit-scrollbar {
    width: 0;
  }
}



@media (max-width: 480px) {
  #calc-root {
    padding: 12px 8px;
    min-height: 100vh;
    height: auto;
    max-height: none;
  }

  .calc-step-title {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .calc-subtitle {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .calc-section-title {
    font-size: 13px;
  }

  .calc-option-label {
    font-size: 10.5px;
  }

  #servicesContainer {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .calc-service-card {
    min-height: 42px;
    padding: 9px;
    font-size: 11px;
  }

  .calc-radio-card {
    padding: 7px 9px;
    font-size: 10.5px;
  }

  .calc-radio-card input[type="radio"] {
    width: 12px;
    height: 12px;
  }

  .calc-input {
    height: 36px;
    padding: 0 10px;
    font-size: 11px;
  }

  .calc-counter-item {
    min-height: 38px;
    padding: 6px 8px;
  }

  .calc-counter-info strong {
    font-size: 10.5px;
  }

  .calc-counter-info small {
    font-size: 9px;
  }

  .calc-counter-btn {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .calc-counter-value {
    min-width: 20px;
    font-size: 12px;
  }

  #addonsGrid {
    grid-template-columns: 1fr;
    max-height: 180px;
    gap: 5px;
  }

  .calc-addon-card {
    min-height: 44px;
    padding: 8px 27px 8px 8px;
  }

  .calc-addon-card::after {
    top: 7px;
    right: 8px;
    width: 18px;
    height: 18px;
    font-size: 12px;
  }

  .calc-addon-title {
    font-size: 10px;
  }

  .calc-addon-price {
    margin-top: 2px;
    font-size: 11px;
  }

  .calc-addon-item {
    padding: 3px 5px 3px 6px;
    font-size: 9.5px;
    gap: 4px;
  }

  .calc-addon-info strong {
    font-size: 9.5px;
  }

  .calc-remove-btn {
    width: 14px;
    height: 14px;
    min-width: 14px;
    min-height: 14px;
    font-size: 8px;
  }

  .calc-navigation {
    gap: 6px;
    margin-top: 12px;
    padding-top: 9px;
  }

  .calc-btn,
  #nextBtn1 {
    height: 42px;
    min-height: 42px;
    padding: 0 16px;
    font-size: 12.5px;
    border-radius: 9px;
  }

  #calc-root .calc-add-btn,
  #calc-root button.calc-add-btn {
    min-height: 29px;
    padding: 4px 9px !important;
    font-size: 10px;
    border-radius: 7px;
  }

  .calc-form-group {
    margin-bottom: 6px;
  }

  .calc-form-group label {
    font-size: 10px;
  }

  .calc-form-group input,
  .calc-form-group textarea,
  #customerName,
  #customerPhone,
  #customerEmail,
  #customerComment {
    padding: 6px 8px;
    font-size: 10.5px;
    border-radius: 8px;
  }

  #customerName,
  #customerPhone,
  #customerEmail {
    height: 36px;
  }

  #customerComment {
    min-height: 60px;
  }

  .calc-summary-box {
    padding: 10px;
  }

  .calc-summary-box h3 {
    font-size: 13px;
  }

  #orderSummary {
    font-size: 10px;
  }

  .calc-summary-row {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .calc-divider {
    margin: 8px 0;
  }

  .calc-total-price {
    padding-top: 4px;
    font-size: 20px;
  }

  #finalSummary,
  .calc-final-summary {
    padding: 10px;
    margin-bottom: 10px;
  }

  #finalSummary h3,
  .calc-final-summary h3 {
    margin-bottom: 6px;
    font-size: 13px;
  }

  #finalSummary p,
  .calc-final-summary p {
    margin: 2px 0;
    font-size: 10px;
  }
}

/* =========================================================
   MOBILE REFINEMENT — 481px–600px
   Основні мобільні стилі вже задаються в max-width: 768px.
   Тут залишаємо тільки потрібну відмінність.
========================================================= */

@media (min-width: 481px) and (max-width: 600px) {

  .calc-radio-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .calc-radio-card {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 11px;
  }

  .calc-radio-card input[type="radio"] {
    width: 13px;
    height: 13px;
  }
}
@media (max-width: 768px) {
  .calc-step-title {
    margin-bottom: 25px;
  }
}/* End custom CSS */