body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000; /* Fond noir pour bureau */
    color: #000;
}

/* Header */
header {
    background: #333;
    color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header-left {
    display: flex;
    align-items: center;
}

.favicon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

header h1 {
    font-size: 2.2rem;
    font-weight: bold;
    color: white;
    background-color: #1877F2;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-text-stroke: 0;
    margin: 0;
}

header h1 .cap {
    font-size: 1em;
}

header h1 .low {
    font-size: 0.8em;
}

nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-grow: 1;
}

nav a {
    color: #FF9900;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.5rem;
}

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

/* Section Articles */
#articles {
    margin: 20px auto;
    max-width: 800px;
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

#articles h2 {
    color: white;
}

.article {
    background-color: #fff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    border: 4px solid blue;
    text-align: center;
}

.article h3, .article p {
    color: #000;
    margin: 10px 0;
}

.article h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 10px 0;
    position: relative;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.price-container {
    background-color: #1877F2;
    padding: 8px 12px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
    font-size: 1rem;
}

.new-price {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
}

.discount {
    color: red;
    font-size: 1.1rem;
    font-weight: bold;
}

.like-container {
    display: flex;
    align-items: center;
    gap: 7.5px;
    margin-left: auto;
}

.like-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease;
}

.like-btn:hover {
    transform: scale(1.2);
}

.like-count {
    color: #fff;
    background-color: #1877F2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.article img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 10px 0;
}

.btn-amazon {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 10px;
    background-color: #FF9900;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-amazon:hover {
    background-color: #e68900;
}

/* Section Contact */
#contact {
    margin: 20px auto;
    max-width: 800px;
    background-color: #333;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    color: white;
}

#contact h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FF9900;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #1877F2;
    outline: none;
}

.btn-submit {
    display: inline-block;
    padding: 10px 20px;
    background-color: #1877F2;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #155DBF;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    margin: 10px 0;
}

.contact-info a {
    color: #1877F2;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-info .facebook-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

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

/* Media Queries pour mobile (max-width: 767px) */
@media (max-width: 767px) {
    body {
        background-color: #333;
        width: 100vw;
        min-width: 100vw;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    header {
        flex-direction: column;
        padding: 5px 0;
        width: 100%;
        margin: 0;
        height: auto;
        border-radius: 0;
        box-sizing: border-box;
    }

    .header-left {
        margin-bottom: 5px;
        padding-left: 5px;
    }

    header h1 {
        font-size: 1.7rem;
    }

    nav {
        flex-direction: row;
        gap: 5px;
        width: 100%;
        justify-content: center;
        padding: 0 5px;
    }

    nav a {
        font-size: 0.8rem;
        padding: 2px 5px;
    }

    #articles {
        width: 100%;
        margin: 0;
        padding: 5px 0;
        border-radius: 0;
        box-sizing: border-box;
    }

    #articles h2 {
        font-size: 1.2rem;
    }

    .article {
        padding: 5px;
        margin: 3px 5px;
        width: calc(100% - 10px);
        box-sizing: border-box;
    }

    .article h3 {
        font-size: 0.95rem;
    }

    .price-info {
        flex-direction: row;
        justify-content: space-between;
        position: static;
        gap: 5px;
        margin: 3px 0;
        align-items: center;
        flex-wrap: nowrap;
    }

    .price-wrapper {
        position: static;
        transform: none