* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background: #f5f5f5;
    min-height: 100vh;
}

/* HEADER */
.header, .main-header {
    background: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    color: #ff6a00;
    font-weight: bold;
    font-size: 20px;
    text-decoration: none;
}

.back-link, .back-link-header {
    color: #ff6a00;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.back-link:hover, .back-link-header:hover {
    text-decoration: underline;
}

.search {
    flex: 1;
    min-width: 150px;
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    font-size: 14px;
}

.header-right {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #666;
}

/* TOP BAR */
.topbar-boulanger {
    font-size: 13px;
    background: rgb(26,26,38);
    color: white;
    padding: 10px 15px;
    text-align: center;
    font-weight: 500;
}

/* FOOTER */
.footer, footer {
    background: #1a1a2e;
    color: white;
    padding: 25px 20px 20px;
    margin-top: 40px;
}

.footer-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.f-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.f-title {
    font-weight: 600;
    margin: 0 0 4px;
    font-size: 13px;
}

.f-sub {
    font-size: 11px;
    color: #aaa;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
    .header, .main-header { padding: 10px 15px; }
    .logo { font-size: 18px; }
    .search { order: 3; width: 100%; max-width: 100%; margin-top: 8px; }
    .header-right { font-size: 12px; gap: 10px; }
    .footer-items { flex-direction: column; align-items: center; gap: 15px; }
    .f-item { min-width: auto; }
}