/* style.css */
body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: #f8f1e9; /* Beige vintage */
    color: #1a1a1a; /* Noir profond */
}
header {
    background: linear-gradient(to bottom, #1a1a1a, #2c2c2c); /* Dégradé noir guitare */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 3px solid #D4A017; /* Doré */
}
header h1 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 700;
}
header nav ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}
header nav ul li {
    display: inline-block;
    margin: 0 20px;
}
header nav ul li a {
    color: #D4A017;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
header nav ul li a:hover {
    color: #fff;
}
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ebay-review h2 {
    color: #8B4513; /* Marron bois */
    border-bottom: 3px solid #D4A017;
    padding-bottom: 15px;
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 25px;
}
.ebay-review h3 {
    color: #1a1a1a;
    font-size: 1.5em;
    margin: 30px 0 15px;
    font-weight: 600;
}
.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 35px;
}
.product-image {
    text-align: center;
    border: 1px solid #ddd; /* Cadre léger */
    border-radius: 6px;
    padding: 10px;
    background: #fff;
}
.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.price-box {
    background: #f8f1e9;
    border: 2px solid #D4A017;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
}
.price-disclaimer {
    font-size: 0.9em;
    color: #666;
    text-align: center;
    margin: 5px 0 15px;
}
.btn-affiliate, .btn-cta {
    display: block;
    width: 280px;
    margin: 20px auto;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s, transform 0.2s;
}
.btn-affiliate {
    background-color: #D4A017; /* Doré */
    color: #1a1a1a;
}
.btn-affiliate:hover {
    background-color: #b58900;
    transform: translateY(-2px);
}
.btn-cta {
    background-color: #8B4513; /* Marron bois */
    color: #fff;
}
.btn-cta:hover {
    background-color: #6b3a0f;
    transform: translateY(-2px);
}
.review-content ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}
.review-content ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}
.review-content ul li:before {
    content: "🎸";
    position: absolute;
    left: 0;
    font-size: 1.3em;
}
.back-link {
    text-align: center;
    margin-top: 30px;
}
.back-link a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}
.back-link a:hover {
    text-decoration: underline;
}
footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: #2c2c2c;
    color: #D4A017;
    border-top: 3px solid #D4A017;
}
footer p {
    margin: 5px 0;
}

/* Responsive Design */
@media (max-width: 800px) {
    main {
        margin: 20px 10px;
        padding: 20px;
    }
    .product-container {
        grid-template-columns: 1fr;
    }
    .product-info {
        align-items: center;
    }
    .ebay-review h2 {
        font-size: 1.8em;
    }
    .ebay-review h3 {
        font-size: 1.3em;
    }
    .btn-affiliate, .btn-cta {
        width: 240px;
        font-size: 1.1em;
    }
    .price-disclaimer {
        font-size: 0.85em;
    }
}
@media (max-width: 600px) {
    header nav ul li {
        display: block;
        margin: 12px 0;
    }
    .product-image img {
        width: 100%;
    }
    header h1 {
        font-size: 1.8em;
    }
}