.table-container {
  width: 100%;
  position: relative;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.price-box {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
.title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.price-table th {
  background-color: #f5b754;
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  position: relative;
}
.price-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #eee;
}
.price-table tr:hover {
  background-color: #fff9e6;
  cursor: pointer;
}
.price_un_nds {
  color: #666;
  font-size: 0.9em;
}
.price_nds {
  color: #333;
  font-weight: bold;
}
.capt_type {
  font-size: 0.8em;
  color: #666;
  margin-top: 5px;
}
.helper {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  margin-left: 5px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  vertical-align: middle;
  position: relative;
}
.helper:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.helper::after {
  content: attr(data-help);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 12px;
  background-color: #333;
  color: white;
  font-size: 14px;
  font-weight: normal;
  border-radius: 4px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  width: max-content;
  max-width: 600px;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.helper::before {
  content: '';
  position: absolute;
  bottom: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
.helper:hover::after,
.helper:hover::before {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 768px) {
  .price-table td {
    padding: 10px;
  }
  .head_price_mob {
    display: block;
    font-size: 0.9em;
  }
  .head_price_pro {
    display: none;
  }
  .clearfix {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.clearfix {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.icon-text {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5b754;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-box svg {
  width: 24px;
  height: 24px;
  fill: white;
}
.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-right: 15px;
}
.custom-radio input[type='radio'] {
  display: none;
}
.custom-radio span {
  width: 18px;
  height: 18px;
  border: 2px solid #f5b754;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.custom-radio input[type='radio']:checked + span::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f5b754;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .table-container {
    overflow: auto;
    margin: 0 -20px;
    padding: 0 20px;
    width: calc(100% + 40px);
  }
  table {
    width: 653px;
    /* min-width: 1200px; */
  }
  .price-table th {
    width: 300px !important;
  }

  .clearfix {
    width: 80vw;
  }
  .btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
