/*cuff starts here */
.cuff-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.cuff-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  transition: border 0.3s ease;
  position: relative;
  width: 120px;
}

.cuff-label input[type="radio"] {
  display: none;
}

.cuff-label img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.cuff-name {
  margin-top: 6px;
  font-size: 14px;
  text-align: center;
}

/* When selected */
.cuff-label input[type="radio"]:checked + img {
  border: 2px solid transparent;
}

.cuff-label input[type="radio"]:checked ~ .cuff-name::after {
  content: "✔";
  color: white;
  background-color: black;
  font-size: 12px;
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/*top-length starts here */
.top-length-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.top-length-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  transition: border 0.3s ease;
  position: relative;
  width: 120px;
}

.top-length-label input[type="radio"] {
  display: none;
}

.top-length-label img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.top-length-name {
  margin-top: 6px;
  font-size: 14px;
  text-align: center;
}

/* When selected */
.top-length-label input[type="radio"]:checked + img {
  border: 2px solid transparent;
}

.top-length-label input[type="radio"]:checked ~ .top-length-name::after {
  content: "✔";
  color: white;
  background-color: black;
  font-size: 12px;
  position: absolute;
  top: 8px;
  right: 8px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.color-wrapper {
  position: relative;
  display: inline-block;
}

.color-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 2;
}

/* Colored circle */
.color-circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: gray; /* Fallback */
  position: relative;
  z-index: 1;
}

/* Ring using ::after when selected */
.color-circle::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid transparent;
  box-sizing: border-box;
  transition: border 0.2s ease;
}

/* Show ring only when selected */
.color-wrapper input[type="radio"]:checked + .color-circle::after {
  border-color: #444; /* or your preferred highlight color */
}

/* Hide Radio Buttons */
.rate1 > input{
    display: none;
}

.rate1{
    display: inline-block;
    border: 0;
}

.rate1 > label{
    float:right;
}

/* start showing the stars */
.rate1 > label:before{
    display: inline-block;
    font-size: 1.1rem;
    font-family: "FontAwesome";
    content: "\f005";
    margin: 0;
    padding: 0.3rem .2rem;
    cursor: pointer;
}

/* Half stars */
.rate1 .half:before{
    content: "\f089";
    position: absolute;
    padding-right: 0;
}

/* click and hover */
input:checked ~ label, label:hover ~ label{
    color: #ffb503
}

/* hover highlight */
input:checked + label:hover, input:checked ~ label:hover,input:checked ~ label:hover ~ label,
label:hover ~ input:checked ~ label{
    color: #956a02;
}

.rating-star i{
    color: #ffb503 !important;
}

#button-plus {
  border-radius: 8px;
  padding: 0.375rem 0.75rem;
}

.deemphasized-text {
  color: #777704;              /* soft gray for low contrast */
  font-size: 0.675rem;      /* slightly smaller text */
  font-style: italic;       /* optional, for a subtle look */
  font-weight: 700;
  opacity: 0.8;             /* further softens appearance */
}

.deemphasized-text-2 {
  color: #666;              /* soft gray for low contrast */
  font-size: 0.675rem;      /* slightly smaller text */
  font-style: italic;       /* optional, for a subtle look */
  opacity: 0.8;             /* further softens appearance */
}



.order-summary {
  font-family: Arial, sans-serif;

  margin: 40px 20px;
  color: #222;
}

.order-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.summary-box {
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 4px;
  background-color: #fff;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1rem;
}

.summary-item.total {
  font-weight: bold;
  font-size: 1.1rem;
}

.summary-box hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 20px 0;
}

.payment-methods {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.payment-methods img {
  height: 32px;
  object-fit: contain;
}