/* shared.css — Styles communs Header / Footer Procleaner */

:root {
    --blue: #1a6fff;
    --blue-dark: #0a192f;
    --white: #ffffff;
    --gray: #f8f9fa;
    --border: #eee;
}

/* ── TICKER BANNER ── */
.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--blue);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 40s linear infinite;
}
.ticker-item {
    padding-right: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── HEADER ── */
header {
    background: var(--blue-dark);
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-logo-text {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}
.header-nav a:hover { color: var(--blue); }
.lang-select {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 5px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

/* ── LOGO CONTAINER ── */
.logo-container {
    text-align: center;
    padding: 30px 20px;
}
.main-logo {
    max-width: 280px;
    height: auto;
}

/* ── FOOTER ── */
footer {
    background: var(--gray);
    padding: 60px 5% 30px;
    text-align: center;
    border-top: 1px solid var(--border);
}
.payment-icons {
    display: flex;
    justify-content: center;
    gap: 35px;
    margin: 25px 0;
    align-items: center;
}
.payment-icons img { height: 40px; }
.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    margin: 0 12px;
    font-weight: 600;
}
.footer-links a:hover { color: var(--blue-dark); }
