.menu-ads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
}
.menu-ads i {
  font-size: 18px;
  color: var(--accent);
  font-weight: 400;
}

.footer-infos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.footer-infos .f-i-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-infos .f-i-item .icon {
  font-size: 20px;
}
.footer-infos .f-i-item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-infos .f-i-item .content a {
  font-size: 14px;
  font-weight: 600;
}
.footer-infos .f-i-item .content .subtitle {
  font-size: 11px;
}
.footer-infos .f-i-item .content .title {
  font-size: 13px;
  font-weight: 600;
}

.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.footer-social .title {
  font-size: 13px;
  font-weight: 600;
}
.footer-social .social-media a {
  font-size: 26px;
  color: var(--grey1);
}
.footer-social .social-media a:hover {
  color: var(--accent);
}

.bra-calculator {
  max-width: 450px;
  margin: 50px auto;
  padding: 25px;
  border-radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f7f7f7;
  border: 1px solid #eee;
}

.bra-calculator h2 {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  color: #e91e63;
}

.form-group {
  margin-bottom: 40px;
  text-align: center;
}

.form-group label {
  display: block;
  margin-bottom: 15px;
  font-size: 1.1em;
  font-weight: 600;
  color: #e91e63;
}

.value-display {
  font-size: 1.2em;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  margin: 10px 0;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  border-radius: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#f48fb1), color-stop(#f48fb1), color-stop(#a4b0be), to(#a4b0be));
  background: linear-gradient(to right, #f48fb1 0%, #f48fb1 var(--percentage, 50%), #a4b0be var(--percentage, 50%), #a4b0be 100%);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 28px;
  width: 14px;
  border-radius: 4px;
  background: #e91e63;
  cursor: pointer;
  margin-top: -11px;
  border: 2px solid white;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 6px;
  cursor: pointer;
  border-radius: 3px;
  background: linear-gradient(to right, #f48fb1 0%, #f48fb1 var(--percentage, 50%), #a4b0be var(--percentage, 50%), #a4b0be 100%);
}

input[type=range]::-moz-range-thumb {
  height: 24px;
  width: 12px;
  border-radius: 4px;
  background: #e91e63;
  cursor: pointer;
  border: 2px solid white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ticks {
  position: relative;
  height: 10px;
  margin-top: -10px;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 1px, transparent 1px, transparent 2.5%);
  background-size: 100% 6px;
  background-repeat: no-repeat;
  background-position: 0 center;
  z-index: -1;
}

.calculate-btn {
  width: 100%;
  padding: 12px;
  background-color: #e91e63;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.calculate-btn:hover {
  background-color: #c2185b;
}

.result {
  margin-top: 25px;
  padding: 15px;
  background-color: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 5px;
  text-align: center;
  font-size: 1.1em;
  color: #2e7d32;
  font-weight: bold;
}

.calcu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: 100%;
}

.bra-calcu {
  margin-bottom: 2rem;
  overflow: hidden;
}
.bra-calcu-body {
  background: #f1f1f1;
  padding: 3rem 3rem 0 3rem;
  border-radius: 6px;
}

.calcu-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  gap: 1rem;
}
.calcu-item::before {
  content: "";
  background: white;
  width: 55px;
  height: 55px;
  border-radius: 32px;
  position: absolute;
  z-index: 1;
  top: -10px;
  left: -20px;
}
.calcu-item .title {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}
.calcu-item .title .number {
  font-size: 28px;
}
.calcu-item .description {
  color: #A0A0A0;
  font-size: 13px;
  margin-left: 1.5rem;
}
.calcu-item img {
  max-width: 350px;
  margin-top: auto;
}