body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #222;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.main-header {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.header-top {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
.header-top-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
}
.logo img {
    height: 54px;
    width: auto;
    display: block;
}
.header-icons {
    display: flex;
    gap: 12px;
    margin-left: 32px;
}
.header-icons img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.btn-phone {
    background: #ff7a00;
    color: #fff;
    font-weight: 700;
    border-radius: 24px;
    padding: 10px 22px;
    margin-left: 32px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(255,122,0,0.08);
    transition: background 0.2s;
}
.btn-phone:hover {
    background: #e96b00;
}
.icon-phone {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/images/phone.svg') no-repeat center/contain;
    margin-right: 8px;
}
.search-bar {
    display: flex;
    align-items: center;
    margin-left: 32px;
    background: #f5f5f5;
    border-radius: 24px;
    padding: 2px 10px 2px 16px;
    height: 40px;
}
.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 1em;
    width: 160px;
    padding: 0 8px;
}
.search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 8px;
}
.icon-search {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/images/search.svg') no-repeat center/contain;
}
.btn-cart {
    margin-left: 32px;
    color: #003366;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    position: relative;
}
.icon-cart {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: url('/images/cart.svg') no-repeat center/contain;
    margin-right: 8px;
}
.main-menu {
    background: #003366;
    min-height: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.main-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    height: 48px;
}
.main-menu li {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
}
.main-menu li:not(:last-child):not(:first-child)::after {
    content: '';
    display: block;
    width: 2px;
    height: 24px;
    background: #ff7a00;
    margin: 0 18px;
}
.main-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08em;
    padding: 0 8px;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    height: 48px;
}
.main-menu a:hover {
    color: #ff7a00;
}
.btn-destockage {
    background: #ff7a00;
    color: #fff !important;
    border-radius: 24px;
    padding: 8px 22px;
    margin-left: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(255,122,0,0.08);
    transition: background 0.2s;
}
.btn-destockage:hover {
    background: #e96b00;
    color: #fff;
}
.icon-tag {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/images/tag.svg') no-repeat center/contain;
    margin-right: 8px;
}
.main-content {
    background: #fff;
    margin-top: 30px;
    padding: 30px 30px 40px 30px;
    border-radius: 10px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}
.images img {
    max-width: 320px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.images figcaption {
    text-align: center;
    font-size: 0.95em;
    color: #555;
    margin-top: 6px;
}
.caracs {
    margin-top: 30px;
}
.caracs h2 {
    color: #009ee0;
    margin-bottom: 10px;
}
.caracs dt {
    font-weight: bold;
    color: #005b7f;
    margin-top: 10px;
}
.caracs dd {
    margin: 0 0 10px 0;
    color: #333;
}
.main-footer {
    background: #222;
    color: #fff;
    padding: 40px 0 10px 0;
    margin-top: 40px;
}
.footer-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-bottom {
    text-align: center;
    color: #aaa;
    font-size: 0.95em;
    margin-top: 20px;
}
@media (max-width: 1024px) {
    .header-top-flex {
        flex-wrap: wrap;
        height: auto;
        padding: 0 12px;
    }
    .main-menu ul {
        flex-wrap: wrap;
        gap: 0;
    }
    .main-menu li {
        font-size: 0.98em;
    }
}
@media (max-width: 768px) {
    .header-top-flex {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        gap: 8px;
    }
    .logo img {
        height: 40px;
    }
    .header-icons img {
        width: 24px;
        height: 24px;
    }
    .btn-phone, .btn-cart {
        font-size: 1em;
        padding: 8px 14px;
        margin-left: 12px;
    }
    .search-bar {
        height: 32px;
        padding: 2px 6px 2px 10px;
    }
    .main-menu ul {
        flex-direction: column;
        height: auto;
    }
    .main-menu li {
        height: 40px;
    }
    .btn-destockage {
        padding: 6px 14px;
        margin-left: 0;
        margin-top: 8px;
    }
}