body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f8f8;
}

/* Header */
header {
    text-align: center;
    padding: 20px;
    background: #ff9800;
    color: white;
    font-size: 24px;
}

/* Search Bar */
#searchBar {
    width: 60%;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: none;
}

/* Filters */
.filters {
    text-align: center;
    margin: 20px 0;
}

.filters button {
    -moz-text-align-last: right;
    padding: 10px 15px;
    margin: 5px;
    background: #ff9800;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.filters button:hover {
    background: #e68900;
}

/* Products Grid */
.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    width: 200px;
}

.product img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
}

.product h3 {
    margin: 10px 0;
}

.product button {
    background: #ff9800;
    color: white;
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.product button:hover {
    background: #e68900;
}

/* Cart Section */
.cart {
    text-align: center;
    padding: 20px;
    background: white;
    position:relative;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
}
/* Checkout Button */
.checkout-btn {
    background: #ff9800;
    color: white;
    font-size: 18px;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

.checkout-btn:hover {
    background: #e68900;
}

/* Checkout Page */
.checkout-container {
    max-width: 500px;
    margin: auto;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.confirm-btn {
    background: green;
    color: white;
    padding: 12px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
}

.confirm-btn:hover {
    background: darkgreen;
}