* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Commissioner", sans-serif;
}

body {
    font-family: "Commissioner", sans-serif;
    font-weight: 300;
    }

nav {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo {
    width: 120px;
    height: 40px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: black;
    text-decoration: none;
}

.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 70px;
    margin-bottom: 1rem;
}

.price {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 50px;
    margin: 1rem 0;
}

.stock-info {
    margin: 1rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.delivery-info {
    margin: 1rem 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.model-options {
    margin: 2rem 0;
}

.model-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.model-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.model-btn {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: 1px solid #000;
    background: white;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
    transition: all 0.3s ease;
}

.model-btn.active {
    background-color: black;
    color: white;
}

.quantity-selector {
    margin: 2rem 0;
}

.quantity-title {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid #000;
    max-width: fit-content;
}

.quantity-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.quantity-display {
    padding: 0.5rem 1rem;
    min-width: 50px;
    text-align: center;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
}

.rating {
    color: rgb(0, 0, 0);
    margin: 1rem 0;
}

.add-to-cart {
    font-family: "Changa", serif;
    font-weight: 800;
    background: black;
    color: white;
    padding: 1rem 1rem;
    border-radius: 5px;
    width: 30%;
    margin: 1rem 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background: #333;
}

.description {
    margin: 3rem 0;
}

.description h2 {
    font-family: 'Climate Crisis';
    font-weight: 400;
    font-size: 60px;
    margin-bottom: 1rem;
}

.faq-title {
    font-family: 'Climate Crisis';
    font-weight: 400;
    font-size: 60px;
    margin-bottom: 1rem;
}

.faq-item {
    border: 1px solid #eee;
    margin: 1rem 0;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f9f9f9;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
}

.related-products {
    margin: 3rem 0;
}

.related-products h2 {
    font-family: "Cinzel", serif;
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    text-align: center;
}

.product-card-image {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 1rem;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

.product-card p {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

footer {
    background: black;
    color: white;
    padding: 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-content h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    cursor: pointer;
}

.arrow-left {
    left: 0;
}

.arrow-right {
    right: 0;
}

.product-images-container {
    position: relative;
}

.cart-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem;
    background: black;
    color: white;
    border-radius: 4px;
    display: none;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.description-img{
    font-family: "Cinzel", serif;
    font-weight: 900;
}

.lien-acht{
    font-family: "Changa", serif;
    font-weight: 800;
    color: black !important;
}