
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.skeleton-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.skeleton-img {
    height: 140px;
    background: #e2e2e2;
    border-radius: 6px;
    margin-bottom: 10px;
}

.skeleton-text {
    height: 16px;
    background: #e2e2e2;
    border-radius: 4px;
    margin-bottom: 6px;
}

.skeleton-text.short {
    width: 60%;
}

.shimmer {
    position: relative;
    overflow: hidden;
}
.shimmer::before {
    content: '';
    position: absolute;
    top: 0; left: -150px;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, #ffffff60 50%, transparent 100%);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -150px; }
    100% { left: 100%; }
}

.toast-center-center {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  position: fixed !important;
  margin: 0 !important;
  z-index: 9999 !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader-spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #11111182;
    box-shadow: -1px 6px 20px 14px #b5b5b547;
}
.cart-summary {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}
.coupon-label {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background 0.2s ease;
}
.coupon-label:hover {
    background: #e9ecef;
}
.coupon-label input[type="radio"] {
    margin-right: 10px;
}
.form-section {
    margin-bottom: 25px;
}
.qty-input {
    min-width: 40px;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
}
.qty-btn:hover {

    background-color: transparent !important;

    color: #6c757d; /* or any color you want for the icon on hover */

 }
     .custom-radio-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.custom-radio {
    opacity: 0;
    position: absolute;
}

.custom-radio + label {
    cursor: pointer;
    width: 24px;
    height: 24px;
    display: block;
    border: 2px solid #2e486f; /* Bootstrap primary */
    border-radius: 50%;
    position: relative;
    transition: all 0.2s ease;
}

.custom-radio:checked + label::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
    background-color: #2e486f; /* Bootstrap primary */
    border-radius: 50%;
}

