
 
 .variant-cont {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.variant-label {
    color: #F5B451;
    font-size: 14px;
    font-weight: 600;
}

.variation-label {
    border-radius: 6px;
    background: #F5B451;
    padding: 6px;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #F5B451;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.choice-option {
  border-radius: 6px;
  padding: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.choice-option.optional {
  background: #FFF; 
  color: #333;   
  border: 1px solid #D3D5D7;
}

.choice-option.requiRed {
  background: #F5B451; 
  color: #FFF;       
  border: 1px solid #F5B451;
}

.custom-radio {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 5px;
    transition: border 0.2s ease;
    width: 100%;
    cursor: pointer;
}

.custom-radio input[type="radio"] {
    border-radius: 36px;
    background: #FFF;
    box-shadow: 1.688px 1.688px 3.375px 0px rgba(88, 102, 132, 0.50) inset, -1.687px -1.687px 3.375px 0px rgba(255, 255, 255, 0.50) inset;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: relative;
    cursor: pointer;
    margin: 0 !important;
}

.custom-radio input[type="radio"]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 13px;
    background: #FCECD4;
    box-shadow:  -0.675px -0.675px 5.4px 0px rgba(255, 255, 255, 0.25);
}

.custom-radio input[type="radio"]:checked {
    background: #EEE;
    box-shadow: 1.688px 1px 1px 0px rgba(88, 102, 132, 0.20), -1.687px -1.687px 10.114px 0px #FFF;
}

.custom-radio input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 18px;
    background: #D88D1F;
}

.custom-radio input[type="radio"].disabled-label,
.custom-radio input[type="radio"]:disabled {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: relative;
    cursor: not-allowed;
    margin: 0 !important;
    background: #E9E9E9 !important;
    box-shadow: 1.688px 1.688px 3.375px 0 rgba(88, 102, 132, 0.22) inset, -1.687px -1.687px 3.375px 0 rgba(255, 255, 255, 0.50) inset !important;
}

.custom-radio input[type="radio"]:disabled ~ .name,
.custom-radio input[type="radio"].disabled-label ~ .name {
    cursor: not-allowed;
    color: #858585;
}

.custom-radio input[type="radio"].disabled-label::after,
.custom-radio input[type="radio"]:disabled::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 13.5px;
    background: #C4C4C4 !important;
    box-shadow: -0.675px -0.675px 5.4px 0 rgba(255, 255, 255, 0.25) !important;
}

.custom-radio .name {
    color: #212121;
    font-size: 12px;
    font-weight: 500;
    padding-left: 10px;
}
.store_sidebar .added-variant{
    color: #F5B451;
    font-size: 14px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    margin: 0;
}
.store_sidebar .added-product-name{
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 1; 
    overflow: hidden;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    margin: 0;
}
.order_price {
	color: var(--primary-cariton-color) !important;
	font-size: 14px;
	font-weight: 400;
    margin: 0;
}
.added-quantity{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 5px;
    gap: 5px;
    
}
.added-quantity .qty-input{
    display: flex; 
    justify-content: space-between; 
    width: 100px !important;
}
.added-product-image{
    height: 100px;
    object-fit: cover;
}
.store_sidebar .added-instruction,
.store_sidebar .optional-group{
    color: #676a74;
    font-size: 12px;
    font-weight: 400;
}
.checkout_button{
    border-radius: 11px !important;
    background: var(--primary-cariton-color);
    padding: 13px 18px;
    color: #FBFCFF !important;
    font-weight: 500;
    width: 100%;
}
.cart_items {
    padding: 0;
    border-bottom: 1px solid #eee;
}
.scroll_style{
    max-height: calc(100vh - 420px); 
    overflow-y: auto; 
    overflow-x: hidden
}
