body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 10px 40px; /* Increased padding for margins */
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eaeaea;
}

header .logo h1 {
    margin: 0;
    margin-left: 20px;
}

header nav {
    display: flex;
    gap: 20px;
    margin-right: 20px;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: #6F4E37;
}

.product-hero {
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

.product-hero img {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-hero h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.product-hero .subtitle {
    font-size: 1.2em;
    color: #6F4E37;
    margin-bottom: 20px;
}

.product-description {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

.product-description p {
    margin-bottom: 20px;
    font-size: 1em;
}

.product-description .btn {
    background-color: #FFB74D;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-description .btn:hover {
    background-color: #FFA726;
    transform: scale(1.05);
}

footer {
    background-color: #fff;
    color: #333;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

footer a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #6F4E37;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    header nav {
        flex-direction: column;
        align-items: center;
    }

    header nav a {
        margin: 5px 0;
    }

    .product-hero {
        padding: 20px 10px;
    }

    .product-hero h1 {
        font-size: 2em;
    }

    .product-hero .subtitle {
        font-size: 1em;
    }

    .product-description {
        padding: 10px;
    }

    .product-description p {
        font-size: 1em;
    }
}
