.margin-top-100 {
    margin-top: 100px;
}

.margin-top-50 {
    margin-top: 50px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-top-25 {
    margin-top: 25px;
}

.margin-top-20 {
    margin-top: 20px;
}


.margin-top-15 {
    margin-top: 15px;
}

.margin-top-10 {
    margin-top: 10px;
}

.margin-top-5 {
    margin-top: 5px;
}

.margin-bottom-10 {
    margin-bottom: 10px
}



.color {
    color: #fff;
}

.RegisterPage {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-bottom: 50px;
}

.display-block {
    display: block;
}

.display-block-important {
    display: block !important;
}

.text-decoration-none {
    text-decoration: none;
}


/* Styling the initial placeholder state */
.blurred-img {
    position: relative;
    width: 100%;
    height: 300px;
    /* Or a fixed aspect ratio */
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    /* Creates the initial blur effect */
    transition: filter 0.5s;
}

/* Removes the blur and fades in the new image */
.blurred-img.loaded {
    filter: blur(0);
    transition: filter 0.5s;
}

/* Smoothly fades in the full-quality image */
.lazy-image {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.blurred-img.loaded .lazy-image {
    opacity: 1;
}

/* my profile code */
body {
    background: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

.profile-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.sidebar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.sidebar a {
    display: block;
    padding: 10px 15px;
    margin-bottom: 8px;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.sidebar a.active,
.sidebar a:hover {
    background: #0d6efd;
    color: #fff;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    transition: 0.3s;
}

.order-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.order-status {
    font-size: 0.9rem;
    font-weight: 500;
}

.order-status.delivered {
    color: green;
}

.order-status.pending {
    color: orange;
}

.order-status.cancelled {
    color: red;
}

.razorPayment {
    min-height: 600px;
    padding: 50px;
}

#loading {
    display: none;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.table-responsive {
    width: 100%;
}

.footer p {
    text-align: center;
}

.testimonials .container .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}


.p-4:hover {
    transform: translateY(-8px);
    transition: 0.3s ease-in-out;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.padding-10 {
    padding: 10px;
}   
.margin-bottom-20{margin-bottom:20px}
.margin-bottom-50{margin-bottom:50px}
.size-qty-price-row div,#add-size-qty-price{padding-left:0px !important; padding-right:5px !important;}