<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Frais de port & Remise pour achat groupé</title>
<style>
/* Reset */
* {
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f9fafb;
color: #333;
margin: 0;
padding: 20px;
line-height: 1.6;
}
main {
max-width: 720px;
margin: 0 auto;
background: #fff;
padding: 30px 40px;
border-radius: 12px;
box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
h1 {
font-weight: 700;
color: #2c3e50;
font-size: 2rem;
margin-bottom: 1rem;
border-bottom: 3px solid #4a90e2;
padding-bottom: 0.3rem;
}
h2 {
margin-top: 2.5rem;
font-weight: 600;
color: #34495e;
font-size: 1.4rem;
border-bottom: 2px solid #e1e8f7;
padding-bottom: 0.25rem;
}
h3 {
margin-top: 1.5rem;
font-weight: 600;
color: #3a3a3a;
}
p {
margin-top: 0.8rem;
margin-bottom: 1.2rem;
font-size: 1rem;
color: #555;
}
/* Scrollable tables on small screens */
.table-wrapper {
overflow-x: auto;
margin: 1rem 0 2rem 0;
box-shadow: 0 2px 6px rgba(0,0,0,0.08);
border-radius: 6px;
}
table {
width: 100%;
border-collapse: collapse;
min-width: 320px;
}
th, td {
padding: 12px 15px;
text-align: left;
}
th {
background-color: #4a90e2;
color: #fff;
font-weight: 600;
border-bottom: 3px solid #3a78c2;
}
tr:nth-child(even) {
background-color: #f4f7fc;
}
tr:hover {
background-color: #e9f0fe;
}
ul {
margin-top: 0.5rem;
padding-left: 1.2em;
color: #2c3e50;
font-weight: 600;
}
ul li {
margin-bottom: 0.4rem;
}
.note {
background-color: #eef5fc;
border-left: 4px solid #4a90e2;
color: #34495e;
padding: 12px 18px;
border-radius: 6px;
font-style: italic;
margin: 1.5rem 0 2rem 0;
}
/* Responsive */
@media (max-width: 768px) {
main {
padding: 25px 30px;
margin: 15px;
}
h1 {
font-size: 1.75rem;
}
h2 {
font-size: 1.25rem;
margin-top: 2rem;
}
p {
font-size: 0.95rem;
}
}
@media (max-width: 480px) {
body {
padding: 10px;
}
main {
padding: 20px 20px;
margin: 10px;
border-radius: 8px;
box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
h1 {
font-size: 1.5rem;
}
h2 {
font-size: 1.1rem;
margin-top: 1.5rem;
}
h3 {
font-size: 1rem;
margin-top: 1rem;
}
p {
font-size: 0.9rem;
}
th, td {
padding: 8px 10px;
}
ul li {
font-size: 0.95rem;
}
}
</style>
<main>
<h1>Frais de port & remise pour achat groupé</h1>
<section>
<h2>Frais de port</h2>
<p>Pour les achats en lot, vous pouvez nous communiquer la liste des livres que vous souhaitez acquérir, nous créerons un lot avec les frais de port suivants :</p>
<h3>Frais de port Mondial Relay pour achat en lot :</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Poids</th>
<th>Tarif</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jusqu'à 500 grammes</td>
<td>3,99 euros</td>
</tr>
<tr>
<td>de 501 à 1000 grammes</td>
<td>5,95 euros</td>
</tr>
<tr>
<td>de 1 à 2 kg</td>
<td>7,95 euros</td>
</tr>
<tr>
<td>de 2 à 3 kg</td>
<td>9,95 euros</td>
</tr>
</tbody>
</table>
</div>
<h3>Frais de port La Poste pour achat en lot :</h3>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Poids</th>
<th>Tarif</th>
</tr>
</thead>
<tbody>
<tr>
<td>Jusqu'à 250 grammes</td>
<td>7,35 euros</td>
</tr>
<tr>
<td>Jusqu'à 500 grammes</td>
<td>9,99 euros</td>
</tr>
<tr>
<td>de 501 à 1000 grammes</td>
<td>13,99 euros</td>
</tr>
<tr>
<td>de 1 à 2 kg</td>
<td>15,95 euros</td>
</tr>
<tr>
<td>de 2 à 3 kg</td>
<td>24,45 euros</td>
</tr>
</tbody>
</table>
</div>
<div class="note">
Nous vendons uniquement vers la France métropolitaine. Pour la Belgique, nous pouvons sur demande livrer en Mondial Relay.
</div>
</section>
<section>
<h2>Remise pour achat groupé</h2>
<ul>
<li>Achat de 2 objets : -7%</li>
<li>Achat de 3 objets : -12%</li>
<li>Achat de 4 objets ou plus : -15%</li>
</ul>
</section>
</main>