/* Add custom CSS styles below */ 
/* General Body Styling */
body {
    background-color: #f9f0e8; /* Soft cream background */
    font-family: 'Poppins', sans-serif; /* Modern, friendly font */
    color: #543835; /* Warm brown text color */
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #bfd8bb; /* Deep red for header */
    color: #f0efdb; /* Cream text */
    padding: 20px;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
}

header::after {
    content: "✨";
    font-size: 28px;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Buttons */
button, .btn {
    background-color: #a7c38e; /* Warm brown */
    color: #f0efdb; /* Cream text */
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

button::after, .btn::after {
    content: "⭐";
    font-size: 14px;
    position: absolute;
    top: -5px;
    right: -10px;
    color: #92918b; /* Soft grey accent */
}

button:hover, .btn:hover {
    background-color: #92918b; /* Grey accent */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

/* Links */
a {
    color: #456a24; /* Deep red links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

a:hover {
    color: #f9b234; /* Warm brown on hover */
    text-decoration: underline;
}

/* Product Cards */
.product-card {
    background-color: #f0efdb; /* Cream background */
    border: 2px solid #a7c38e; /* Warm brown border */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
    padding: 15px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card::before {
    content: "⭐";
    font-size: 20px;
    color: #92918b; /* Grey star */
    position: absolute;
    top: 10px;
    left: 10px;
}

.product-card img {
    border-radius: 10px;
}

/* Titles */
h1, h2, h3, h4, h5, h6 {
    color: #f9b234; /* Deep red for headings */
    text-align: center;
    margin: 10px 0;
    position: relative;
}

h1::after, h2::after, h3::after {
    content: "✨";
    font-size: 18px;
    color: #92918b; /* Grey sparkle */
    position: absolute;
    top: 0;
    right: -20px;
}

/* Footer */
footer {
    background-color: #f9b234; /* Black footer */
    color: #f0efdb; /* Cream text */
    text-align: center;
    padding: 20px;
    font-size: 14px;
    position: relative;
}

footer::before {
    content: "🌟";
    font-size: 20px;
    position: absolute;
    top: 10px;
    left: 10px;
    color: #a7c38e; /* Warm brown */
}

/* Starry Divider */
.star-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #bfd8bb, #92918b, #543835);
    border-radius: 10px;
    margin: 20px 0;
    position: relative;
}

.star-divider::before {
    content: "⭐";
    font-size: 14px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: #92918b;
}