.dashboard-wrapper {
    margin-top: 30px;
}
/* Remove default list styling */
ul.orders-list, ul.order-items {
    list-style-type: none;
    padding-left: 0;
}
/* Style for each order */
li.order-item {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
}
/* Order details layout */
.order-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}
/* Style for the total */
.order-total {
    font-weight: bold;
    color: #333;
}
/* Style for the items list */
ul.order-items {
    margin-top: 10px;
}
/* Style for individual items */
ul.order-items li {
    background-color: #fff;
    padding: 5px;
    border-bottom: 1px solid #eee;
}
/* Last item doesn't need a border */
ul.order-items li:last-child {
    border-bottom: none;
}
/* Points Information Section Styling */
.points-info-section {
    background-color: #f9f9f9;
   /* Light grey background */
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
   /* Adjust as needed */
}
.points-info-section h2 {
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}
.points-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.points-info-list li {
    background-color: #fff;
   /* White background for list items */
    border-bottom: 1px solid #eee;
   /* Light border for each item */
    padding: 10px;
    margin-bottom: 10px;
   /* Space between items */
    font-size: 16px;
}
.points-info-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}
.points-info-list strong {
    color: #4CAF50;
   /* Adjust the color to fit your design */
}



/* Points Display Styling */
.points-display {
    margin: 30px 0px;
    text-align: center;
}
.user-points {
    font-size: 24px;
    color: #4CAF50;
   /* Adjust the color to fit your design */
}





/* Products Grid Styling */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}
.product-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.product-image {
    width: 100%;
    height: auto;
    display: block;
}
.product-name {
    margin: 10px;
    font-size: 18px;
}
.product-price, .product-points {
    margin: 10px;
    color: #666;
}
.redeem-button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
   /* Adjust the color to fit your design */
    color: white;
    border: none;
    cursor: pointer;
}
.redeem-button:hover {
    background-color: #45a049;
}
.locked-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
   /* Semi-transparent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}
.lock-icon {
    font-size: 48px;
   /* Larger lock icon */
}
