        body {
            font-family: 'Roboto', sans-serif;
            background-color: #efdfd5;
            color: #333;
            margin: 0;
            padding: 0;
        }
        header {
            background-image: url('https://desfutsdescaissestroyes.fr/boutique/img/fond%20header%20landing.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
            padding: 20px;
            color: #ffffff;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(180, 79, 47, 0.85);
            z-index: 0;
        }
        header > * {
            position: relative;
            z-index: 1;
        }
        h1 {
            margin: 0;
            font-size: 2.5em;
        }
        h3 {
            font-size: 1.8em; /* Increased font size */
            display: inline-block;
            background-color: #b44f2f; /* Couleur du bandeau */
            color: white;
            padding: 10px 15px; /* Espacement autour du texte */
            border-radius: 5px; /* Arrondir les coins */
            margin: 20px 0; /* Espace autour du h3 */
        }
        .tagline {
            font-size: 1.2em;
            margin-top: 10px;
        }
        .logo img {
            max-height: 150px;
        }
a {
    text-decoration: none;
}
h4 {
    text-decoration: underline;
}
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 20px auto;
            text-align: center;
            padding-top: 20px; /* Added padding to separate from the header */
        }
        .concept {
            background-color: #fff2e6;
            border: 1px solid #ffd4c2;
            border-radius: 5px;
            padding: 15px 20px 10px;
            margin: 20px auto;
            box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
            position: relative; /* Enable positioning of child elements */
	    font-size: 1,3em;
        }
        .concept h2 {
            background-color: #b44f2f;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            margin: -50px 0 10px;
        }
        .product {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 10px 0;
        }
        .product-item {
            background: #ffffff;
            border: 2px solid #ffd4c2;
            border-radius: 5px;
            margin: 10px;
            padding: 15px;
            flex: 1 1 calc(30% - 20px);
            box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
            transition: border-color 0.3s, transform 0.3s ease-out;
            max-width: 300px;
        }
        .product-item:hover {
         	border-color: #b44f2f;
		transform: scale(1.05) translateY(-5px);
	}
        .product-item img {
            max-width: 100%;
            border-radius: 5px;
        }
        .cta, .home-button {
            background: #3f3f3e;
            color: #ffffff;
            padding: 20px 40px;
            text-align: center;
            margin: 5px auto;
            display: inline-block;
            border-radius: 5px;
            text-decoration: none;
            font-size: 1.3em;
font-weight: bold;
transition: all 0.3s ease;
        }
        .home-button {
            background-color: #b44f2f;
        }
.cta:hover {
background-color: #efdfd5
}
.other-products {
    background-color: #fff2e6;
    border: 1px solid #ffd4c2;
    border-radius: 5px;
    padding: 15px 20px;
    margin: 20px auto;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.other-products h3 {
    background-color: #b44f2f;
    color: white;
    padding: 10px;
    border-radius: 5px;
}
.home-button:hover {
background-color: #efdfd5
}
        footer {
            text-align: center;
            padding: 20px;
            background-color: #282c34;
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2em;
            }
            .product-item {
                flex: 1 1 calc(45% - 20px);
            }
    .product-item, .category-item {
        width: 100%; /* ou ajuste selon les besoins */
        max-width: 300px;
        margin: 10px 0;
    }
}
        }
@media (max-width: 768px) {
    .product-list, .category-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

        @media (max-width: 480px) {
	header {
    		padding: 10px;
 	   }
            h1 {
                font-size: 1.5em;
            }
            .tagline {
                font-size: 1em;
            }
            .product-item {
                flex: 1 1 100%;
            }
        }
