.crafty-girls-regular {
    font-family: "Crafty Girls", cursive;
    font-style: normal;
  }
  
body {
    font-family: 'Crafty Girls', sans-serif; /* Updated to Poppins */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('backgrund.webp') no-repeat center center fixed; /* Replace 'background-image.jpg' with your image path */
    background-size: cover;
    filter: blur(10px); /* Apply a blur effect */
    z-index: -1; /* Place it behind other elements */
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 240, 245, 0.85); /* Light pink overlay with transparency */
    z-index: 0;
}

header {
    background-color: rgba(255, 203, 229, 0.9); /* Semi-transparent pink header background */
    text-align: center;
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive; /* Playful font */
    font-size: 2.5em;
    color: #ff82c1; /* Pink logo text color */
    margin: 0;
}

nav {
    background-color: rgba(255, 228, 225, 0.9); /* Semi-transparent light pink background for the nav bar */
    padding: 10px 0; /* Add padding above and below */
    position: relative;
    z-index: 1;
}

nav a {
    color: #333; /* Dark text color */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold font weight */
    padding: 0 20px; /* Add horizontal padding */
    font-family: 'Crafty Girls', sans-serif; /* Cute font with girlypop vibe */
}

nav a:hover {
    color: #ff69b4; /* Change text color on hover */
}

.container {
    max-width: 1200px;
    margin: 20px auto; /* Center and add some margin on top */
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    position: relative;
    z-index: 1;
    overflow: auto; /* Allow scrolling */
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
    overflow: hidden; /* Hide overflow */
}

.product img {
    max-width: 200px;
    height: auto;
    margin-right: 20px;
}

.product-details {
    flex: 1;
    padding: 20px;
}

.product-details h2 {
    font-family: 'Crafty Girls', sans-serif; /* Cute font with girlypop vibe */
    font-size: 1.5em;
    color: #ff69b4; /* Pink heading color */
    margin-top: 0;
}

.product-details p {
    font-family: 'Crafty Girls', sans-serif; /* Cute font with girlypop vibe */
    color: #333; /* Dark text color */
    margin: 10px 0;
}

.price {
    font-weight: bold;
    color: #ff69b4; /* Pink price color */
}

footer {
    font-family: 'Crafty Girls', sans-serif; /* Cute font with girlypop vibe */
    text-align: center;
    padding: 20px;
    background-color: rgba(255, 105, 180, 0.9); /* Semi-transparent pink footer background */
    position: relative;
    z-index: 1;
}
