/* Basic styling for the new sections */
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            color: #333;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Hero Banner Section */
        .product-hero {
            position: relative;
            height: 50vh;
            background-image: url('2025_0429_17285100.jpg'); /* Main banner image */
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        .product-hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-content h1 {
            font-family: 'Merriweather', serif;
            font-size: 3rem;
            margin: 0;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-top: 10px;
        }

        /* Product Catalog Section */
        .product-catalog {
            padding: 60px 20px;
            text-align: center;
        }
        .product-catalog h2 {
            font-family: 'Merriweather', serif;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
        }
        .product-card {
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            text-align: center;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        .product-card img {
            max-width: 80%;
            height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
        }
        .product-card h3 {
            font-family: 'Merriweather', serif;
            font-size: 1.4rem;
            margin: 10px 0;
        }
        .product-card .description {
            font-size: 0.9rem;
            color: #666;
            min-height: 70px;
        }
        .product-card .size {
            font-weight: 600;
            color: #333;
            margin: 15px 0;
        }
        .btn-product {
            display: inline-block;
            background-color: #d9534f;
            color: white;
            padding: 10px 25px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .btn-product:hover {
            background-color: #c9302c;
        }