body {
    font-family: 'Poppins', sans-serif;
    background: black;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    height: 100vh;
}

.bor{
    border: 1px solid red;
}

.box {
    width: 70%;
    height: auto;
    background: white;
    border: 2px solid blue;
    padding: 15px 35px;
}

.bogo-title {
  text-align: center;
  font-weight: 500;
  color: #ff5b8f;
  font-size: 25px;
  letter-spacing: 1px;
}

.unit-wrapper{
    display: flex;
    flex-direction: column;
}

.unit-wrapper p{
    font-size: 12px;
    color: #494949;
    font-weight: 500;
    margin-top: 2px;
    display: block;
}

h4 {
    color: #cd596e;
    font-family: Arial, sans-serif;
    margin: 0;
}

.button{
    background: #ff5b8f;
    color: white;
    text-align: center;
    padding: 15px 0;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.text-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.myctnr{
    display: flex;
    justify-content: space-between;
}

.text-container::before,
.text-container::after {
    content: '';
    flex: 1;
    height: 1px;
    background: black;
}

.boxes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.boxes {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.option {
  border: 1px solid #bdbaba;
  border-radius: 3px;
  padding: 12px 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;

}

.box-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 5px);
}

.old {
  text-decoration: line-through;
  color: gray;
  font-size: 12px;
}

.option input {
  display: none;
}

.radio-custom {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ff5b8f;
  display: inline-block;
  margin-right: 10px;
  position: relative;
}

.discount{
    background: #ff5b8f;
    color: white;
    font-size: 12px;
    padding: 0px 8px;
    margin-left: 6px;
}

.option input:checked + .radio-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ff5b8f;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 1200px) {
    .box {
        width: 450px;
    }
}


.variant-table {
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
}

.variant-header {
  display: grid;
  grid-template-columns: 30px 1fr 1fr;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

.variant-row {
  display: grid;
  grid-template-columns: 30px 1fr 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.row-label {
  font-size: 12px;
  color: #666;
}

.variant-select {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  font-size: 13px;
  cursor: pointer;
}


/* MOST POPULAR tag */
.popular-tag {
  position: absolute;
  top: -14px;
  right: 12px;
  background: #ff5b8f;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0px 0px 8px 8px;
  letter-spacing: 0.5px;
}

/* Small left notch */
.popular-tag::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-right: 8px solid #ef3b74;
}

/* Small left notch */
.popular-tag::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 0px solid transparent;
  border-left: 8px solid #ef3b74;
}