* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a6b3c;
    --accent: #f0c000;
    --dark: #1a1a1a;
    --light: #f5f5f5;
    --white: #ffffff;
    --border: #ddd;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--dark);
    color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--accent);
}

.cart-count {
    background: var(--accent);
    color: var(--dark);
    border-radius: 50%;
    padding: 2px 7px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Slider Hero */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 560px;
}

.slider-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    width: calc(100% / 3);
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.slide-1 { background: linear-gradient(135deg, #0d3d22, #1a6b3c); }
.slide-2 { background: linear-gradient(135deg, #1a2a6b, #2d4a9b); }
.slide-3 { background: linear-gradient(135deg, #3d1a0d, #7a3520); }

/* Quand image dispo : décommentez et ajustez */
/* .slide-1 { background: linear-gradient(rgba(13,61,34,.7), rgba(13,61,34,.7)), url('/assets/images/slide1.jpg') center/cover; } */

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    color: white;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 18px;
    font-weight: 800;
}

.slide-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-outline {
    padding: 14px 30px;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn-hero-outline:hover { background: white; color: var(--dark); }

/* Boutons navigation */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover { background: rgba(255,255,255,0.4); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* Points */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active { background: white; }

/* Buttons */
.btn-primary {
    background: var(--accent);
    color: var(--dark);
    padding: 14px 35px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #d4a800;
}

.btn-secondary {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
}

.btn-secondary:hover {
    background: #145530;
}

/* Product Grid */
.featured-products {
    padding: 20px 0 50px;
}

.featured-products h2,
.catalogue h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
    padding-bottom: 15px;
}

.product-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8e8e8;
}

.product-card img[src=""],
.product-card img:not([src]) {
    visibility: hidden;
}

.product-card h3 {
    padding: 12px 15px 5px;
    font-size: 1rem;
}

.product-card .price {
    padding: 0 15px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);
}

.product-card form {
    padding: 0 15px;
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: #aaa;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

/* Sections communes */
.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header .section-title { margin-bottom: 0; text-align: left; }

.voir-tout {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.voir-tout:hover { text-decoration: underline; }

/* Catégories */
.categories-section {
    padding: 60px 0 40px;
    background: var(--light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--dark);
    transition: all 0.2s;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.category-icon { font-size: 2.5rem; margin-bottom: 12px; }
.category-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.category-card span { font-size: 0.85rem; color: var(--primary); font-weight: 600; }

/* Produits vedettes */
.featured-section { padding: 60px 0; }

/* Avantages */
.avantages-section {
    padding: 60px 0;
    background: var(--light);
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.avantage-card {
    background: white;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
}

.avantage-icon { font-size: 2rem; margin-bottom: 12px; }
.avantage-card h3 { font-size: 1rem; margin-bottom: 10px; }
.avantage-card p { font-size: 0.9rem; color: #666; line-height: 1.6; }

/* Bannière promo */
.promo-banner {
    background: linear-gradient(135deg, var(--accent), #d4a800);
    padding: 50px 0;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.promo-content h2 { font-size: 1.6rem; margin-bottom: 8px; }
.promo-content p { opacity: 0.8; }
.promo-banner .btn-primary {
    background: var(--dark);
    color: white;
    white-space: nowrap;
}
.promo-banner .btn-primary:hover { background: #333; }

/* Showcase produits */
.showcase-section {
    padding: 60px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.showcase-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.showcase-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e03030;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 2;
}

.showcase-img {
    width: 100%;
    height: 260px;
    background: #f0f0f0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.04);
}

.showcase-card a {
    text-decoration: none;
    color: inherit;
}

.showcase-info {
    padding: 18px 18px 10px;
    flex: 1;
}

.showcase-cat {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 6px;
}

.showcase-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.showcase-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.showcase-prix {
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px 18px;
    border-top: 1px solid #f0f0f0;
}

.showcase-footer .btn-secondary {
    flex: 1;
    margin-top: 0;
}

.btn-detail {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-detail:hover { text-decoration: underline; }

@media (max-width: 900px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .showcase-img { height: 160px; }
    .showcase-info { padding: 12px 12px 8px; }
    .showcase-info h3 { font-size: 0.9rem; }
    .showcase-desc { display: none; }
    .showcase-footer { padding: 8px 12px 12px; gap: 6px; }
    .btn-detail { display: none; }
}

/* Catalogue */
.catalogue-header {
    text-align: center;
    padding: 40px 0 20px;
}

.catalogue-header h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.catalogue-header p {
    color: #666;
}

.catalogue-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.cat-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border: 2px solid var(--border);
    border-radius: 25px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tri-select select {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
}

.product-img-wrap {
    width: 100%;
    height: 220px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-info {
    padding: 12px 15px;
}

.product-categorie {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-prix {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.prix-barre {
    color: #999;
    text-decoration: line-through;
    font-size: 0.9rem;
}

.prix-actuel {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary);
}

.badge-promo {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e03030;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 1;
}

.product-card {
    position: relative;
}

.btn-disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.empty-state p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #888;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover { color: var(--primary); }

/* Fiche produit */
.produit-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 20px 0 50px;
}

.produit-image {
    position: relative;
}

.produit-image .img-wrap {
    width: 100%;
    height: 420px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.produit-infos {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.produit-categorie {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.produit-infos h1 {
    font-size: 1.8rem;
    line-height: 1.3;
}

.produit-prix {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.produit-prix .prix-actuel {
    font-size: 2rem;
}

.badge-promo-inline {
    background: #fff0f0;
    color: #e03030;
    border: 1px solid #e03030;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: bold;
}

.stock-ok   { color: var(--primary); font-weight: bold; }
.stock-low  { color: #e07000; font-weight: bold; }
.stock-out  { color: #e03030; font-weight: bold; }

.produit-description {
    color: #444;
    line-height: 1.8;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.form-ajout {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quantite-select {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantite-select select {
    padding: 8px 15px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 1rem;
}

.btn-full { width: 100%; text-align: center; padding: 16px; font-size: 1.1rem; }

.produit-avantages {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 15px;
    background: var(--light);
    border-radius: 8px;
}

.avantage {
    font-size: 0.9rem;
    color: #444;
}

.produit-tva { color: #999; font-size: 0.85rem; }

.produits-similaires {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    margin-top: 20px;
}

.produits-similaires h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Panier */
.panier-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px 0 20px;
}

.panier-header h1 { font-size: 2rem; }
.panier-header span { color: #888; font-size: 1rem; }

.panier-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    padding-bottom: 60px;
}

.panier-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.panier-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
}

.item-image {
    width: 100px;
    height: 80px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h3 { font-size: 1rem; margin-bottom: 5px; }
.item-prix { color: var(--primary); font-weight: bold; }

.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.qty-form select {
    padding: 6px 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: 0.9rem;
}

.item-sous-total {
    font-size: 1.1rem;
    font-weight: bold;
}

.btn-supprimer {
    color: #e03030;
    font-size: 0.85rem;
    text-decoration: none;
    cursor: pointer;
}

.btn-supprimer:hover { text-decoration: underline; }

/* Résumé panier */
.panier-resume {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.panier-resume h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.resume-ligne {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
}

.livraison-gratuite span:last-child { color: var(--primary); font-weight: bold; }

.resume-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 0;
    border-top: 2px solid var(--border);
    margin: 10px 0 20px;
}

.btn-continuer {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-continuer:hover { color: var(--primary); }

/* Checkout */
.checkout-header { padding: 30px 0 20px; }
.checkout-header h1 { font-size: 2rem; }

.alert-errors {
    background: #fff0f0;
    border: 1px solid #e03030;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
    color: #e03030;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding-bottom: 60px;
}

.form-section {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

.form-group input {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input[readonly] {
    background: var(--light);
    color: #888;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    background: #f0fff6;
}

.payment-icon { font-size: 1.8rem; }

.payment-option strong { display: block; margin-bottom: 4px; }
.payment-option p { font-size: 0.85rem; color: #666; margin: 0; }

.agb-check { padding: 15px 25px; }

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-label input { margin-top: 3px; flex-shrink: 0; }
.checkbox-label a { color: var(--primary); }

.btn-order { font-size: 1.2rem; padding: 18px; margin-top: 10px; }

.checkout-hinweis {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
}

/* Résumé checkout */
.checkout-resume {
    background: var(--light);
    border-radius: 10px;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.checkout-resume h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.checkout-divider {
    border-top: 1px solid var(--border);
    margin: 15px 0;
}

.checkout-ligne {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #555;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    padding-top: 12px;
    border-top: 2px solid var(--border);
    margin-top: 10px;
}

/* Confirmation */
.confirmation-page {
    max-width: 750px;
    margin: 40px auto 60px;
    text-align: center;
}

.confirmation-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.confirmation-page h1 { font-size: 1.8rem; margin-bottom: 10px; }
.confirmation-sub { font-size: 1rem; color: #555; margin-bottom: 8px; }
.confirmation-page > p { color: #555; margin-bottom: 30px; }

.bank-details {
    background: #f0fff6;
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    text-align: left;
}

.bank-details h2 { font-size: 1.2rem; margin-bottom: 10px; }
.bank-details > p { color: #555; margin-bottom: 15px; font-size: 0.95rem; }

.bank-info { display: flex; flex-direction: column; gap: 10px; margin-bottom: 15px; }

.bank-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--white);
    border-radius: 6px;
    font-size: 0.95rem;
}

.bank-row.highlight { background: #fff9e0; border: 1px solid var(--accent); }
.bank-row span { color: #666; }

.bank-hinweis { color: #e07000; font-size: 0.85rem; font-weight: 600; }

.commande-recap {
    text-align: left;
    margin: 30px 0;
}

.commande-recap h2 { font-size: 1.2rem; margin-bottom: 15px; }

.recap-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.recap-table th, .recap-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    text-align: left;
}

.recap-table th { background: var(--light); font-weight: 600; }
.recap-table tfoot td { font-size: 1rem; background: var(--light); }

.livraison-info {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.livraison-info h3 { margin-bottom: 10px; font-size: 1rem; }
.livraison-info p { font-size: 0.9rem; color: #555; margin-bottom: 4px; }

/* Responsive */
@media (max-width: 768px) {
    .hero-slider { height: 320px; }
    .slide-content h1 { font-size: 1.6rem; }
    .slide-content p { font-size: 0.9rem; margin-bottom: 20px; }
    .slide { padding: 0 20px; }
    .hero-tag { font-size: 0.75rem; margin-bottom: 12px; }
    nav { gap: 15px; }
    .product-grid { grid-template-columns: 1fr 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .panier-layout { grid-template-columns: 1fr; }
    .produit-detail { grid-template-columns: 1fr; }
    .promo-content { flex-direction: column; text-align: center; }
    .slider-btn { width: 36px; height: 36px; font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .hero-slider { height: 280px; }
    .slide-content h1 { font-size: 1.3rem; }
    .btn-hero-outline { display: none; }
    .product-grid { grid-template-columns: 1fr; }
    .site-header .container { flex-direction: column; gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .slider-btn { display: none; }
}
