header {
    display: flex;
    justify-content: center;  /* يوسّط العنصر أفقيًا */
    align-items: center;      /* يوسّط العنصر عموديًا */
    padding: 20px ;
}

header img {
    max-width: 400px; /* يمكنك تغيير الحجم حسب الشعار */
}


/* Style de la modale */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
}

/* Contenu de la modale */
.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 450px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Style des onglets */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    border-bottom: 2px solid #ddd;
}

.tab-link {
    background: none;
    border: none;
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    flex: 1;
    color: #666;
}

.tab-link.active {
    font-weight: bold;
    border-bottom: 3px solid black;
    color: black;
}

/* Champs de formulaire */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: #f9f9f9;
}

input:focus {
    border-color: black;
    outline: none;
}

/* Boutons */
button {
    background-color: black;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #333;
}

/* Case à cocher */
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.checkbox input {
    width: auto;
}

/* Cacher une section non active */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
}
.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    border-top: 1px solid #ccc;
    font-family: "Arial", sans-serif;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    margin: 0 20px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-column p {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    border-bottom: 1px solid black;
    display: inline-block;
}

.search-box, .newsletter-box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    padding: 5px 0;
}

.search-box input, .newsletter-box input {
    flex: 1;
    border: none;
    background: none;
    font-size: 13px;
    padding: 5px;
    outline: none;
}

.search-icon, .location-icon, .submit-btn {
    background: none;
    border: none;
    font-size: 14px;
    cursor: pointer;
    font-weight: bold;
}

.submit-btn {
    font-size: 12px;
}
.search-icon img {
    width: 16px;  /* Taille de l'icône */
    height: 16px;
    cursor: pointer;
}

.search-icon {
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
}
.search-box {
    display: flex;
    align-items: center;
    border-bottom: 1px solid black;
    padding: 5px 0;
}

.search-box input {
    flex: 1;
    border: none;
    background: none;
    font-size: 13px;
    padding: 5px;
    outline: none;
}

.search-icon, .location-icon {
    background: none;
    border: none;
    padding: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.search-icon img, .location-icon img {
    width: 16px;  /* Taille des icônes */
    height: 16px;
}
