/* Global Styles (header, footer, etc.) */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #dda8bd;
}

header {
    background-color: #f4f4f4;
    padding: 20px 0;
    border-bottom: 2px solid #e1e1e1;
}

header .logo h1 {
    font-size: 36px;
    text-align: center;
    color: #333;
    margin: 0;
    font-weight: 700;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    font-size: 16px;
    color: #555;
}

nav ul li a:hover {
    color: #a87b8d;
}

/* Card Section */
.product-card-section {
    padding: 40px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    /* Use same background as shop if desired */
    background: linear-gradient(to right, #dda8bd, #d8a9b4);
    margin-top: 50px;
}

/* Product Card Style - same as shop.css */
.product-card {
    width: 250px;
    background-color: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Image inside card */
.product-card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Product Info Section */
.product-info {
    padding: 20px;
    text-align: center;
    color: #333;
}

.product-info h4 {
    font-size: 20px;
    color: #333;
    margin: 15px 0;
}

.product-info p {
    font-size: 16px;
    color: #777;
}

/* Remove Button (new) */
.remove-btn {
    background-color: #a87b8d;
    color: #fff;
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.remove-btn:hover {
    background-color: #c0392b;
}

/* Checkout Button */
.checkout-btn {
    background-color: #a87b8d;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 20px auto;
    display: block;
    margin-bottom: 100px;
}

.checkout-btn a {
    color: #fff;
    text-decoration: none;
}

.checkout-btn:hover {
    background-color: #8a5f6d;
}

/* Footer */
footer {
    background-color: #f4f4f4;
    color: #555;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
}

/* Empty Cart Message */
.empty-message {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-top: 50px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .filters {
        flex-direction: column;
        align-items: center;
    }

    .product-list {
        flex-direction: column;
        align-items: center;
    }

    .product-card {
        width: 90%;
    }

    .shop-now-btn {
        padding: 12px 25px;
    }
}