button {
color: #000;
}
select {
color: #000;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #fff;
    color: #000;
    padding: .2rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem 0;
    position: relative;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    margin-left:15px;
}

.logo img {
    max-height: 45px;
    width: auto;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    transition: max-height 0.3s ease;
}
nav ul.open {
    display: flex;
}

nav a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #666;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(26, 26, 26, 0.85)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000" width="1200" height="600"/><circle cx="600" cy="300" r="200" fill="%23f3f3f3" opacity="0.1"/><circle cx="200" cy="150" r="150" fill="%23f3f3f3" opacity="0.05"/><circle cx="1000" cy="450" r="180" fill="%23f3f3f3" opacity="0.05"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: #f3f3f3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: #000;
    color: #f3f3f3;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background: #f3f3f3;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.products-section {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #000;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #000;
    margin: 1rem auto 0;
}

.products-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
    max-width: 500px;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 400px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
}

.product-info p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.features {
    background: #f0f0f0;
    padding: 2rem;
    margin: 3rem 2rem;
    border-radius: 8px;
}

.features h3 {
    text-align: center;
    color: #000;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #000;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
}

footer {
    background: #000;
    color: white;
    text-align: center;
    padding: 2rem;
}

footer p {
    margin-bottom: 0.5rem;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: #f3f3f3;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

/* Product Page Specific Styles */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #000;
    text-decoration: none;
}

.product-section {
    padding: 1.5rem 1rem;
}

.product-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    width: 100%;
    /* height: 500px; */
    /* background: #f8f8f8; */
    
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.main-image img {
    max-width: 100%;
    /* max-height: 100%; */
    object-fit: contain;
    border-radius: 8px;
}

.thumbnail-gallery {
    display: flex;
    gap: 0.8rem;
}

.thumbnail {
    width: 100px;
    height: 100px;
    background: #f8f8f8;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s;
}

.thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.thumbnail:hover {
    border-color: #000;
}

.thumbnail.active {
    border-color: #000;
    background: #f0f0f0;
}

.product-details {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 2.2rem;
    color: #000;
}

.product-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: .3rem;
}

.product-description {
    color: #000;
    margin-bottom: 2rem;
    margin-top: 2rem;
    line-height: 1.8;
}

.characteristics {
    margin-bottom: 2rem;
}

.characteristics h4 {
    color: #000;
    margin-bottom: 1rem;
    font-weight: 600;
}

.characteristics ul {
    list-style: none;
}

.characteristics li {
    color: #555;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.characteristics li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.options-section {
    padding: .5rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.option-group {
    margin-bottom: 1rem;
}

.option-label {
    font-weight: 600;
    color: #000;
    margin-bottom: 0.3rem;
    display: block;
}

.option-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.option-btn {
    padding: 0.4rem .8rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.option-btn:hover {
    border-color: #000;
}

.option-btn.selected {
    background: #000;
    color: white;
    border-color: #000;
}

.option-btn[data-color="Noir"] {
    background: #222;
    color: #fff;
}

.option-btn[data-color="Vert pastel"] {
    background: #b5e0b0;
    color: #222;
}

.option-btn[data-color="Gris"] {
    background: #d3d3d3;
    color: #222;
}

.option-btn.option-color {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    padding: 0;
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px #ccc;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.option-btn.option-color.selected {
    border-color: #fff;
    box-shadow: 0 0 0 2.5px #000;
    background: inherit;
    color: inherit;
}

.option-btn.option-color:hover {
    box-shadow: 0 0 0 2.5px #555;
}

/* Trust Badges Section */
.trust-section {
    /* background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); */
    background: #ffffff;
    padding: 3rem 0;
    /* margin-top: 3rem; */
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.badge-icon {
    font-size: 2rem;
    flex-shrink: 0;
    line-height: 1;
    filter: grayscale(0.3);
}

.badge-text {
    font-size: 0.9rem;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}

.related-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #eee;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.product-card-image {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card-info {
    padding: 1.5rem;
}

.product-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #000;
}

.product-card-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    margin: 1rem 0;
}

.order-section {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    margin-top: 1.5rem;
}

.bundle-options {
    display: grid;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.bundle-card {
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 0.4rem 1rem .2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.bundle-card:hover {
    border-color: #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.bundle-card.selected {
    border-color: #000;
    background: #f5f5f5;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.bundle-title {
    font-weight: 600;
    font-size: .94rem;
    color: #000;
}

.bundle-price-section {
    text-align: right;
}

.bundle-original-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.bundle-price {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
}

.bundle-discount {
    display: inline-block;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.3rem;
    letter-spacing: 0.3px;
}

.bundle-items {
    display: none;
}

.bundle-card.selected .bundle-items {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
}

.bundle-item {
    background: #f5f5f5;
    padding-bottom: 0.6rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bundle-item-title {
    font-weight: 600;
    color: #000;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    white-space: nowrap;
    min-width: fit-content;
}

.bundle-item-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    flex: 1;
}

.bundle-item-option {
    display: flex;
    flex-direction: column;
}

.bundle-item-option label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.bundle-item-option select {
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.radio-input {
    margin-right: 0.8rem;
    cursor: pointer;
    display: none;
}

.order-form {
    background: #fafafa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 0;
    border: 1px solid #f0f0f0;
}

.form-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #000;
    letter-spacing: 0.3px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #000;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1.5px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.discount-badge {
    font-weight: 800;
    color:#ffc107;
}

/* Footer Styles */
footer {
    background: #000;
    color: #fff;
    padding: 2.5rem 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-content p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #ffc107;
    border-bottom-color: #ffc107;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #ffc107;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 10px;
    }
    .products-grid {
        gap: 1rem;
    }
    .product-card {
        max-width: 350px;
    }
}

@media (max-width: 900px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
    }
    .mobile-nav-toggle {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        width: 180px;
        max-height: 0;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0,0,0,0.08);
        gap: 0;
        font-size: 1rem;
        z-index: 1000;
    }
    nav ul.open {
        max-height: 400px;
        padding: 1rem 0;
    }
    nav ul li {
        padding: 0.7rem 1.5rem;
        border-bottom: 1px solid #eee;
    }
    nav ul li:last-child {
        border-bottom: none;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero {
        padding: 2.5rem 0.5rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .product-title {
        font-size: 1.2rem;
    }
    .product-gallery {
        gap: 0.5rem;
    }
    .product-details {
        padding: 0;
    }
    .features {
        padding: 1rem;
        margin: 2rem 0.5rem;
    }
    .features-grid {
        gap: 1rem;
    }
    .trust-section {
        padding: 2rem .8rem;
    }
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    .badge {
        padding: 0.8rem 0.5rem;
        gap: 0.4rem;
        flex-direction: column;
        text-align: center;
    }
    .badge-icon {
        font-size: 1.3rem;
    }
    .badge-text {
        font-size: 0.7rem;
    }
    .order-section {
        padding: 1rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .product-card-image {
        height: 150px;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    .social-links {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 2px;
    }
    .hero {
        padding: 1.2rem 0.2rem;
    }
    .product-card {
        max-width: 100%;
    }
    .features {
        padding: 0.5rem;
    }
}

.icon{
    max-width: 60px;
}

/* Reviews Section */
.reviews-section {
    padding: 3rem 0 2rem;
    background: #fafafa;
}

.reviews-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.review-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.6;
    flex: 1;
}

.review-author {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-user-icon {
    width: 20px;
    height: 20px;
    fill: #888;
    flex-shrink: 0;
    background: #f0f0f0;
    border-radius: 50%;
    padding: 2px;
}

.review-name {
    font-weight: 700;
    color: #000;
}

.review-city {
    color: #888;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .reviews-title {
        font-size: 1.2rem;
    }
}