body {
    margin: 0;
}

/* information site | begin */
#information-site {
    background: linear-gradient(90deg, #2f5d50, #3f7d6d);
    color: #ffffff;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
/* information site | end */

/* img product list | begin */
#img-product-list {
    position: fixed;
    left: 5px;
    width: 25%;
}
/* img product list | end */

/* header | begin */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(90deg, #5c3b2e, #7a5240);
    font-family: 'Segoe UI', Tahoma, sans-serif;
}

/* Nom du site */
#site-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
}

/* Navigation */
nav {
    display: flex;
    gap: 25px;
}

/* Liens */
nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
    transition: all 0.2s ease;
}

/* Effet soulignement élégant */
nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Branding (logo + nom) */
.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo */
.logo {
    height: 40px;       /* ajuste selon ton rendu */
    width: auto;
    display: block;
}

/* Lien logo */
.logo-link {
    display: flex;
    align-items: center;
}

/* Option : logo seul (masquer le texte) */
.site-branding.logo-only #site-name {
    display: none;
}

/* Option : logo à droite du texte */
.site-branding.reverse {
    flex-direction: row-reverse;
}

/* header | end */

/* list products | begin */
/* Conteneur principal */
#page-list-products {
    width: 40%;            /* largeur fixe */
    margin: 40px auto;       /* centré horizontalement */
    font-family: Arial, sans-serif;
}

/* Titre */
#page-list-products .page-title {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Carte produit */
#page-list-products .product-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Header */
#page-list-products .product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#page-list-products .product-name {
    margin: 0;
    color: #2c3e50;
}

#page-list-products .product-category {
    background-color: #3498db;
    color: white;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Body */
#page-list-products .product-body p {
    margin: 5px 0;
    color: #555;
}

#page-list-products .product-body span {
    font-weight: bold;
    color: #34495e;
}

/* Footer */
#page-list-products .product-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
    font-size: 13px;
    color: #777;
}

#page-list-products .product-footer .producer {
    color: #16a085;
    font-style: italic;
}
/* list products | end */

/* my account index | begin */
/* Conteneur principal */
.my-account-page {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    background-color: #f9fafb;
}

/* Titre principal */
.my-account-page h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

/* Blocs (email, mot de passe, produits) */
.my-account-page .container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: box-shadow 0.2s ease;
}

/* Effet léger au survol */
.my-account-page .container:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Sous-titres */
.my-account-page h2 {
    font-size: 16px;
    margin: 0;
    color: #34495e;
}

/* Liens */
.my-account-page a {
    text-decoration: none;
    font-size: 14px;
    color: #3498db;
    font-weight: bold;
    transition: color 0.2s ease;
}

/* Hover lien */
.my-account-page a:hover {
    color: #1d6fa5;
}
/* my account index | end */
