* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
}

/* Header */
.header {
    background: #7bc000;
    padding: 20px;
    text-align: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
}

/* Section */
.wishlist-section {
    padding: 60px 8%;
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: #2d572c;
    margin-bottom: 40px;
}

/* Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Card */
.wishlist-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.wishlist-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.wishlist-card h3 {
    margin: 15px 0 5px;
    color: #333;
}

.price {
    color: #7bc000;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Buttons */
.btn-group {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cart-btn {
    background: #7bc000;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.cart-btn:hover {
    background: #5fa000;
}

.remove-btn {
    background: #ff4d4d;
    border: none;
    padding: 8px 15px;
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.remove-btn:hover {
    background: #cc0000;
}

/* Hover Effect */
.wishlist-card:hover {
    transform: translateY(-8px);
}