main {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* -------- COMMON COMPONENTS -------- */
.section-title p {
  font-size: 24px;
  font-weight: bold;
  font-family: "Inter";
  color: #859a8e;
}
.big-title {
  font-size: 64px;
  color: #bbac95;
  font-family: "Poiret One";
}
.more-btn {
  width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #bbac95;
  border-radius: 200px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
}
.more-btn img {
  position: absolute;
  right: 23px;
  width: 20px;
  height: auto;
}

.side-bar {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-block: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
}
.f-b {
  font-weight: bold;
}
.f-m {
  font-weight: 500;
}
.t-s {
  text-align: start !important;
}
.bg-gray {
  background-color: #f0f0f0 !important;
}
.b-b-n {
  border-bottom: none !important;
}
/* --- Floating btns --- */
.floating {
  position: fixed;
  top: 17px;
  right: 0;
  transition: opacity 0.3s ease;
  display: none;
  z-index: 999;
}
.floating.show {
  display: none;
}
.floating a {
  display: flex;
  width: 80px;
  height: 80px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
}
.floating a img {
  width: 30px;
}
.floating a:nth-of-type(1) {
  border-top-left-radius: 10px;
}
.floating a:nth-of-type(2) {
  border-bottom-left-radius: 10px;
}

@media (max-width: 768px) {
  .floating.show {
    display: block;
  }
  .side-bar {
    padding: 11px 16px;
  }
}

/* -------- FV -------- */
.fv {
  width: 100%;
  height: 260px;
  background: url("../img/price/price-fv.png") no-repeat center / cover;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 92px;
  gap: 12px;
}
.fv h1 {
  font-size: 24px;
  color: #ffffff;
}
.fv p {
  font-size: 64px;
  color: #bbac95;
  font-family: "Poiret One";
}

@media (max-width: 1024px) {
  .fv {
    padding-top: 0;
    justify-content: center;
  }
}
@media (max-width: 650px) {
}

/* -------- PRICE-MENU -------- */
.price-menu {
  width: 100%;
  max-width: 1100px;
  background-color: #fbfbfb;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 15px;
  column-gap: 17px;
  padding: 25px;
  margin-bottom: 40px;
}
.price-menu .item {
  background-color: #ce9783;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 15px;

  span {
    font-size: 20px;
    color: #ffffff;
  }
}

@media (max-width: 1024px) {
  .price-menu {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 650px) {
  .price-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 26.5px;
    margin-bottom: 0;
  }
  .price-menu .item {
    width: 100%;
  }
}

/* -------- CONTENT-BOX -------- */
.content-box {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 40px;
}

.content-box .content {
  width: 100%;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-box .content .title {
  color: #859a8e;
  padding: 15px 19px;
  border-left: 10px solid #bbac95;

  h2 {
    font-size: 24px;
  }
}
.content-box .content .banner {
  width: 100%;
}
.content-box .content .banner img {
  width: 100%;
  height: auto;
}
.content-box .content .to-page {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.content-box .content .to-page a {
  background-color: #ce9783;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  padding: 19px;
  width: 100%;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}
/* ---- price table(indiva, ipl) ---- */
.price-table {
  width: 100%;
  border: 1px solid #bbac95;
  border-collapse: collapse;
}

.row {
  display: flex;
}

.col {
  padding: 18px 30px;
  font-size: 20px;
}

.col.two {
  padding: 44.5px 50px;
}

.left {
  width: 35%;
  background-color: #bbac95; /* beige */
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #ffffff;
}

.right {
  width: 70%;
  background-color: #ffffff;
  color: #555;
  border-bottom: 1px solid #bbac95;
}

@media (max-width: 768px) {
  .content-box {
    gap: 30px;
    padding-bottom: 0;
  }
  .content-box .content {
    padding-inline: 16px;
  }
  .content-box .content .title {
    margin-block: 20px;
    padding: 16px;

    h3 {
      font-size: 22px;
    }
  }
  .content-box .content .img-txt {
    flex-direction: column;
    gap: 30px;
  }
  .content-box .content .img-txt img {
    max-width: 100%;
  }
  .content .item-case {
    gap: 30px;
  }
  .content .item-title {
    padding: 13px 26px;
    margin-block: 20px;
  }
  .col {
    padding: 18px 10px !important;
    font-size: 18px;
  }
  .right {
    display: flex;
    align-items: center;
  }
}

/* ---- nmn, diet table ---- */
.nmn-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  table-layout: fixed;
}

.nmn-table th {
  background-color: #bbac95;
  padding: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.nmn-table td {
  border: 1px solid #d4c7b5;
  padding: 32px 30px;
  vertical-align: middle;
  text-align: center;
  background-color: #ffffff;
}

.nmn-table ul {
  padding-left: 18px;
  margin: 0;
  text-align: start;
}

.nmn-table ul li {
  list-style: disc;
}

.nmn-table .t_item {
  width: 210px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.nmn-table .t_item img {
  width: 168px;
  margin-bottom: 10px;
}

.nmn-table .t_item .t_title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 6px;
}
.nmn-table .t-s {
  text-align: start;
}

@media (max-width: 768px) {
  .table-container {
    width: 100%;
    overflow-x: scroll;
  }
  .nmn-table {
    font-size: 16px;
    min-width: 618px;
  }

  .nmn-table th {
    padding: 15px 10px;
    font-size: 18px;
  }
  .nmn-table .t_item {
    font-size: 18px;
  }
  .nmn-table td {
    padding: 10px;
  }
  .content-box .content .to-page {
    justify-content: center;
  }
  .nmn-table ul li {
    font-size: 16px;
    line-height: normal;
  }
}

/* ----- Price table large ---- */
.price-table-large {
  width: 100%;
  border-collapse: collapse;
  font-size: 20px;
  table-layout: fixed;
}

.price-table-large th,
.price-table-large td {
  padding: 18px 15px;
  border: 1px solid #d4c7b5;
}

/* Header row */
.price-table-large th {
  background-color: #bbac95;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
}

/* First column beige background */
.price-table-large td:first-child {
  background-color: #bbac95;
  font-weight: 600;
  color: #ffffff;
  width: 33%;
}

/* Other columns */
.price-table-large td:nth-child(2),
.price-table-large td:nth-child(3),
.price-table-large td:nth-child(4) {
  background: #ffffff;
  width: 22%;
  text-align: end;
}

@media (max-width: 768px) {
  .price-table-large {
    font-size: 16px;
    table-layout: unset;
    min-width: 618px;
  }
  .price-table-large td:first-child {
    width: 37%;
  }
  .price-table-large th,
  .price-table-large td {
    padding: 10px 5px;
  }
  .price-table-large td:nth-child(2),
  .price-table-large td:nth-child(3),
  .price-table-large td:nth-child(4) {
    padding-inline: 0;
    text-align: center;
  }
}

/* ---- Clinic table(drip, pill, medicine, artmake, drcos) ---- */
.clinic-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  table-layout: fixed;
}

.drip-table {
  table-layout: unset;
}

.clinic-table th {
  background-color: #bbac95;
  padding: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.clinic-table td {
  border: 1px solid #d4c7b5;
  padding: 28px 30px;
  vertical-align: middle;
  text-align: center;
  background-color: #ffffff;
}

.clinic-table ul {
  padding-left: 18px;
  margin: 0;
}

.clinic-table .t_item {
  width: 210px;
  text-align: center;
}

.clinic-table .t_item img {
  width: 168px;
  margin-bottom: 10px;
}

.clinic-table .t_item .t_title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .clinic-table {
    font-size: 14px;
    min-width: 618px;
  }
  .clinic-table.drip-table {
    min-width: 100%;
  }
  .clinic-table.drip-table th {
    width: 50%;
  }
  .clinic-table th {
    font-size: 16px;
  }
  .clinic-table .t_item .t_title {
    font-size: 16px;
  }
  .clinic-table td {
    padding: 10px;
  }
  .clinic-table .t_item img {
    width: 130px;
  }
  .content ul li {
    font-size: 14px;
  }
}

/* ---- drcos-table ---- */
.drcos-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  table-layout: fixed;
}

.drcos-table th {
  background-color: #bbac95;
  padding: 18px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.drcos-table td {
  border: 1px solid #d4c7b5;
  padding: 18px;
  vertical-align: middle;
  text-align: center;
  background-color: #ffffff;
}

.drcos-table ul {
  padding-left: 18px;
  margin: 0;
}

.drcos-table .t_item {
  width: 210px;
  text-align: center;
}

.drcos-table .t_item img {
  width: 142px;
  margin-bottom: 10px;
}

.drcos-table .t_item .t_title {
  font-weight: bold;
  font-size: 20px;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .drcos-table {
    font-size: 14px;
    min-width: 618px;
  }
  .drcos-table th {
    font-size: 16px;
    padding: 10px 18px;
  }
  .drcos-table .t_item .t_title {
    font-size: 16px;
  }
  .drcos-table td {
    padding: 10px;
  }
  .drcos-table .t_item img {
    width: 100px;
  }
}

/* ------- Diet Table ------- */

.diet-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.diet-table th {
  background: #bbac95;
  color: #fff;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #ffffff;
}

.diet-table th:nth-child(1) {
  width: 23.27%;
}

.diet-table th:nth-child(2) {
  width: 23.8%;
}

.diet-table th:nth-child(3),
.diet-table th:nth-child(4) {
  width: 27.36%;
}

.diet-table td {
  border: 1px solid #e5e5e5;
  padding: 18px 14px;
  font-size: 18px;
  text-align: center;
}

/* Left big column (drug name) */
.drug-name {
  background: #fffcf7;
  font-weight: 600;
  font-size: 20px;
}

/* Small label badge */
.badge {
  display: inline-block;
  background: rgba(133, 154, 142, 0.15);
  color: #57836b;
  padding: 4px 16px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

/* Align badge + text to left inside the cell */
.label {
  text-align: left;
  padding-left: 20px;
}

/* Space between first and second table */
.second-table {
  width: 100%;
  margin-top: 16px;
}
.diet-table .second-table td:nth-child(1) {
  width: 23.27%;
}

.diet-table .second-table td:nth-child(2) {
  width: 23.8%;
}

.diet-table .second-table td:nth-child(3),
.diet-table .second-table td:nth-child(4) {
  width: 27.36%;
}

@media (max-width: 768px) {
  .diet-table th {
    font-size: 14px;
    padding: 10px 2px;
  }
  .drug-name {
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }
  .badge {
    padding: 4px 10px;
    font-size: 12px;
  }
  .diet-table td {
    padding: 12px 10px;
    font-size: 14px;
  }
}

/* ------------ pill-table --------- */
.table-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.price-simple {
  width: 100%;
  max-width: 618px;
  border-collapse: collapse;
  margin: auto;
  font-size: 20px;
}

.table-box .table-txt {
  font-size: 18px;
  font-weight: 500;
  margin-top: 8px;
  text-align: center;
}

.price-simple th {
  width: 50%;
  background: #bbac95;
  color: #fff;
  padding: 16px;
  font-weight: 500;
  border: 1px solid #ffffff;
}

.price-simple td {
  padding: 18px;
  border: 1px solid #ffffff;
  text-align: center;
}
.price-simple .b-b {
  background-color: #bbac95;
  color: #ffffff;
}
.price-simple .b-r-b {
  border: 1px solid #bbac95;
}

@media (max-width: 768px) {
  .price-simple th {
    padding: 10px;
  }
}

/* ------- DRCOS-TB ---------- */

.drcos-tb-boxs {
  width: 100%;
}
.drcos-tb-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.drcos-tb-box .top img {
  width: 100%;
  max-width: 642px;
  margin-bottom: 24px;
}
.drcos-tb-box.one .top img {
  max-width: 238px;
}
.drcos-tb-box .top p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

/* ------- Tables ---------- */

.drcos-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.drcos-table th {
  width: 21.18%;
  background: #ccbfa9;
  color: #fff;
  padding: 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.drcos-table th:nth-child(1) {
  width: 23.27%;
}
.drcos-table th:nth-child(4) {
  width: 14.8%;
}

.drcos-table td {
  padding: 30px;
  border: 1px solid #e5e5e5;
  vertical-align: middle;
  font-size: 18px;
  text-align: center;
}

.drcos-table .img-cell {
  text-align: center;
  width: 140px;
  padding: 18px;
}

.drcos-table .img-cell img {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 16px;
}
.drcos-table .img-cell.one img,
.drcos-table .img-cell.two img {
  max-width: 116px;
}
.drcos-table .img-cell.three img,
.drcos-table .img-cell.four img {
  max-width: 140px;
}

.drcos-table .img-cell p {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
}

.drcos-tb-box.two,
.drcos-tb-box.three {
  padding-top: 40px;
}
.drcos-tb-box.two .top img,
.drcos-tb-box.three .top img {
  max-width: 800px;
}

/* ---------------- */
.peel-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  padding-bottom: 40px;
}

.peel-table th {
  width: 26.18%;
  background: #ccbfa9;
  color: #fff;
  padding: 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.peel-table th:nth-child(1) {
  width: 23.27%;
}

.peel-table td {
  padding: 30px;
  border: 1px solid #e5e5e5;
  vertical-align: middle;
  font-size: 18px;
  text-align: center;
}

.peel-table .img-cell {
  text-align: center;
  padding: 18px 25px;
}

.peel-table .img-cell img {
  max-width: 196px;
  width: 100%;
  margin: 0 auto 16px;
}

.peel-table .img-cell p {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .drcos-table th {
    font-size: 16px;
    width: 16%;
  }
  .drcos-table td {
    padding: 5px;
    font-size: 16px;
  }
  .drcos-table .img-cell {
    padding: 5px;
  }
  .drcos-table th:nth-child(1) {
    width: 26%;
  }

  .peel-table {
    min-width: 618px;
  }
  .peel-table th {
    font-size: 16px;
    width: 16%;
  }
  .peel-table th:nth-last-child(1) {
    width: 5%;
  }
  .peel-table .img-cell p {
    font-size: 16px;
  }
  .peel-table .img-cell {
    padding: 10px;
  }
  .peel-table th:nth-child(1) {
    width: 20%;
  }
  .peel-table td {
    padding: 10px;
    font-size: 14px;
  }
  .peel-table .img-cell img {
    width: 130px;
  }
}

/* ---------------- */
.medicine-first-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  padding-bottom: 40px;
}

.medicine-first-table th {
  width: 38.81%;
  background: #bbac95;
  color: #fff;
  padding: 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.medicine-first-table th:nth-child(1) {
  width: 23.27%;
}

.medicine-first-table td {
  padding: 90px 30px;
  border: 1px solid #e5e5e5;
  vertical-align: middle;
  font-size: 18px;
  text-align: center;
}
.medicine-first-table td:nth-of-type(1) {
  font-size: 20px;
  font-weight: bold;
  background-color: #fffcf7;
}

/* ---------------- */

.medicine-second-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  padding-bottom: 40px;
}

.medicine-second-table th {
  width: 26.9%;
  background: #bbac95;
  color: #fff;
  padding: 12px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  border: 1px solid #e5e5e5;
}
.medicine-second-table th:nth-child(1) {
  width: 23.27%;
}
.medicine-second-table th:nth-child(2) {
  width: 23.63%;
}

.medicine-second-table td {
  padding: 90px 30px;
  border: 1px solid #e5e5e5;
  vertical-align: middle;
  font-size: 18px;
  text-align: center;
}
.medicine-second-table .name-cell {
  font-size: 20px;
  font-weight: bold;
  background-color: #fffcf7;
}
.medicine-second-table .small {
  padding: 43px 30px;
}

@media (max-width: 768px) {
  .first-table th {
    font-size: 18px;
    padding: 12px 3px;
  }
  .medicine-first-table td:nth-of-type(1) {
    font-size: 18px;
    padding-inline: 3px;
  }
  .medicine-second-table {
    min-width: 618px;
  }
  .medicine-first-table td {
    padding: 20px 10px;
    font-size: 16px;
  }
  .medicine-second-table td {
    padding: 20px 10px;
  }
  .medicine-second-table .name-cell {
    font-size: 18px;
    padding-inline: 3px;
  }
}
