  
  .rating .bi-star-fill {
      color: #FC0; /* Bootstrap yellow */
  }
  /* Toast */
  #cartToast {
      position: fixed;
      top: 20px;
      right: 20px;
      min-width: 250px;
      z-index: 9999;
      display: none; /* hidden by default */
  }
  #quick_view_popup-close {
    position: absolute !important;
    top: 10px !important;
    right: 15px !important;
    z-index: 99999 !important;
    font-size: 30px !important;
    color: red !important; /* make it visible for testing */
    display: block !important;
}
#quickViewContent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 9999;
    width: 80%;
    max-height: 90%;
    overflow-y: auto;
    padding: 20px;
}
.size-area {
    display: flex;
    flex-wrap: wrap;
    gap: 5px; /* perfect spacing */
}

.option-box {
    display: inline-block;
    margin-right: 10px; /* controls spacing */
    margin-bottom: 5px;
    cursor: pointer;
}

.option-box span {
    padding: 4px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    min-width: 35px;
    text-align: center;
}

.option-box input {
    display: none;
}

.option-box input:checked + span {
    background: #000;
    color: #fff;
}
.color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    flex-direction: column;  /* THIS is the key */
    align-items: center;
    cursor: pointer;
}

.color-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: block;
    border: 1px solid #ccc;
    margin-bottom: 4px; /* space between circle and name */
}

.color-option small {
    font-size: 12px;
    text-transform: capitalize;
}
