.sku-btn-primary {
  text-transform: capitalize;
  border-radius: 20px;
  font-size: 12px;
  padding: 2px 5px;
  border: 1px solid #c14679;
  color: #fff;
  background: #c14679;
}

.sku-btn-primary-outline {
  text-transform: capitalize;
  border-radius: 20px;
  font-size: 12px;
  padding: 2px 5px;
  border: 1px solid #c14679;
  color: #c14679;
}

.sku-btn:hover {
  background: #a43664;
  border-color: #a43664;
  color: #fff;
}

.quantity {
  display: flex;
  align-items: center;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  padding: 0;
}

.qty-input {
  width: 50px;
  height: 40px;
  text-align: center;
  border: none;
  font-size: 16px;
  font-weight: 500;
}

.qty-input:focus {
  box-shadow: none;
  outline: none;
}

.price {
  font-weight: 600;
  font-size: 16px;
  color: #151515;
}

.cart-inline-figure img {
  width: 100px;
  height: 90px;
}

.sku-details p{
  text-align: justify;
}

/* Target the custom class on the datepicker's internal input */
.custom-underline-input {
  border: none !important;
  /* Remove all borders */
  border-bottom: 1px solid #ddd !important;
  /* Thin bottom underline; adjust color/thickness as needed */
  border-radius: 0 !important;
  /* No rounded corners */
  background-color: transparent !important;
  /* No background */
  box-shadow: none !important;
  /* Remove any shadows */
  padding: 6px 0 !important;
  /* Minimal padding (top/bottom only; adjust for height) */
  font-size: 1rem;
  /* Match font size to your form */
  color: #333;
  /* Text color; adjust as needed */
  transition: border-bottom-color 0.3s ease;
  /* Smooth hover/focus effect */
}

/* On focus/hover, optionally change underline color for feedback */
.custom-underline-input:focus,
.custom-underline-input:hover {
  border-bottom-color: #007bff !important;
  /* e.g., blue for focus; match your theme */
  outline: none;
  /* Remove default outline */
}

/* Ensure floating label compatibility (adjust positions if needed) */
.form-wrap .custom-underline-input+.form-label {
  top: -10px;
  /* Floated position; tune based on your RDInputLabel setup */
  font-size: 0.8em;
  color: #999;
}

/* When empty/not focused, label as "placeholder" inside the underline */
.form-wrap:not(.focus):not(.not-empty) .custom-underline-input+.form-label {
  top: 6px;
  /* Position inside the input area */
  font-size: 1rem;
  color: #aaa;
  /* Placeholder-like color */
}

.dp__input_icon{
  display: none !important;
}

.radio .radio-custom::after,
.radio .radio-custom-dummy::after,
.radio-inline .radio-custom::after,
.radio-inline .radio-custom-dummy::after {
  content: '\f222';
  font-family: "Material Design Icons";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 1;
  color: #151515;
}

.no-uppercase{
  text-transform: none !important;
}

/* Dim disabled days */
.disabled-day {
  opacity: 0.4;
  pointer-events: none;
  position: relative;
}

/* Optional: Show tooltip */
.disabled-day::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  font-size: 12px;
  white-space: nowrap;
  padding: 4px 6px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  z-index: 9999;
}

.disabled-day:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Customize for specific days */
.monday-disabled::after {
  content: 'Store closed on Monday';
}

.tuesday-disabled::after {
  content: 'Store closed on Tuesday';
}

.dp__time_col_block:nth-child(2) {
  display: none !important;
}

@media (min-width: 1200px) {
  .table-cart td {
    font-size: 20px;
  }
}

.lds-dual-ring {
  display: inline-block;
  width: 64px;
  height: 64px;
}

.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #c14679;
  border-color: #c14679 transparent #c14679 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}