#fw-section-featured-collection-0 {
/* Global Typography */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Header Customization */
header {
    background: linear-gradient(90deg, #ff7e5f, #feb47b);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

header a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

header a:hover {
    color: #ffd700;
}

/* Buttons */
button, .button {
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
}

button:hover, .button:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Product Cards */
.product-card {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.product-card img {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

.product-card h3 {
    text-align: center;
    color: #333;
    margin: 10px 0;
}

.product-card p {
    padding: 0 15px;
    color: #666;
}

/* Footer Customization */
footer {
    background: #333;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
}

footer a {
    color: #4facfe;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px;
        text-align: center;
    }

    .product-card {
        margin-bottom: 20px;
    }
}

}