/*
Theme Name: Aqua Lowtech
Theme URI: https://aqua-lowtech.fr
Author: SOZINHO
Author URI: https://aqua-lowtech.fr
Description: Thème sur-mesure pour l'aquariophilie naturelle et la méthode Low-tech (Walstad). Léger, rapide et optimisé SEO.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aqua-lowtech
Tags: nature, aquarium, blog, clean, minimalist, mobile-first
*/

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #f8faf9;
}

/* === TYPOGRAPHIE === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: #1a4d2e;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* === CONTENEUR PRINCIPAL === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER === */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* === NAVIGATION === */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #27ae60;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    body { font-size: 16px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ====================================
   BOUTONS NAVIGATION MOBILE (Haut/Bas)
   ==================================== */

.mobile-nav-buttons {
    display: none;
}

@media (max-width: 768px) {
    
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        position: fixed;
        bottom: 2rem;
        right: 1rem;
        z-index: 9000;
    }
    
    .nav-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .nav-btn-top {
        background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
        color: white;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }
    
    .nav-btn-top.visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-btn-bottom {
        background: white;
        color: var(--color-primary);
        border: 2px solid var(--color-primary);
    }
    
    .nav-btn:active {
        transform: scale(0.92);
    }
    
    .nav-btn-top:active {
        background: linear-gradient(135deg, var(--color-dark), var(--color-primary));
    }
    
    .nav-btn-bottom:active {
        background: var(--color-primary);
        color: white;
    }
    
    /* Cacher le bouton "bas" quand on est en bas de page */
    .nav-btn-bottom.hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MODULE FAQ - STYLES CSS
   Adapté au thème Aqua Lowtech
   ══════════════════════════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────────────────────────────
   CONTENEUR PRINCIPAL
   ────────────────────────────────────────────────────────────────────────────── */
.faq-section-container {
    margin-top: 3rem;
    padding: 2rem 1.5rem;
    background-color: #f8faf9;
    border-radius: 8px;
    border: 1px solid rgba(26, 77, 46, 0.1);
}

/* ──────────────────────────────────────────────────────────────────────────────
   TITRE PRINCIPAL
   ────────────────────────────────────────────────────────────────────────────── */
.faq-main-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a4d2e;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #27ae60;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.3;
}

.faq-icon {
    font-size: 1.2rem;
}

/* ──────────────────────────────────────────────────────────────────────────────
   GRILLE DES FAQ
   ────────────────────────────────────────────────────────────────────────────── */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ──────────────────────────────────────────────────────────────────────────────
   ITEM FAQ INDIVIDUEL
   ────────────────────────────────────────────────────────────────────────────── */
.faq-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* ──────────────────────────────────────────────────────────────────────────────
   QUESTION (H3)
   ────────────────────────────────────────────────────────────────────────────── */
.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a4d2e;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.faq-question::before {
    content: "🌿";
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* ──────────────────────────────────────────────────────────────────────────────
   RÉPONSE
   ────────────────────────────────────────────────────────────────────────────── */
.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.faq-answer p {
    margin: 0 0 0.75rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #27ae60;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #1a4d2e;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE FIRST
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .faq-section-container {
        padding: 1.5rem 1rem;
        margin-top: 2rem;
    }

    .faq-main-title {
        font-size: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
    }

    .faq-item {
        padding: 1rem 1.25rem;
    }
    
    .faq-item:hover {
        transform: none;
    }
}

@media (min-width: 769px) {
    .faq-section-container {
        padding: 2.5rem 2rem;
        margin-top: 3rem;
    }

    .faq-main-title {
        font-size: 1.75rem;
    }

    .faq-grid {
        gap: 1.25rem;
    }

    .faq-item {
        padding: 1.5rem 2rem;
    }
}

/* === MENTION AFFILIATION AMAZON === */
.amazon-affiliate-notice {
    background-color: transparent;
    border-top: 1px solid rgba(26, 77, 46, 0.1);
    padding: 1rem 1.5rem;
    text-align: center;
}

.amazon-affiliate-notice p {
    font-size: 0.75rem;
    color: #faf4f4;
    margin: 0 auto;
    line-height: 1.5;
    max-width: 800px;
}

@media (max-width: 768px) {
    .amazon-affiliate-notice {
        padding: 0.875rem 1rem;
    }
    
    .amazon-affiliate-notice p {
        font-size: 0.7rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════════
   MODULE AFFILIATION AMAZON
   À ajouter dans ton fichier style.css
   ══════════════════════════════════════════════════════════════════════════════ */

.affiliation-box {
    background: linear-gradient(135deg, #f0f9f0 0%, #e8f5e8 100%);
    border: 2px solid var(--vert-principal, #2d5a3d);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.1);
}

.affiliation-header {
    margin-bottom: 1rem;
}

.affiliation-badge {
    display: inline-block;
    background: var(--vert-principal, #2d5a3d);
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.affiliation-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.affiliation-image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.affiliation-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.affiliation-details {
    flex: 1;
}

.affiliation-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.15rem;
    line-height: 1.4;
}

.affiliation-title a {
    color: var(--vert-fonce, #1a3d2a);
    text-decoration: none;
    transition: color 0.2s ease;
}

.affiliation-title a:hover {
    color: var(--vert-principal, #2d5a3d);
}

.affiliation-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.affiliation-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--jaune-cta, #f4a020);
    color: #1a1a1a;
    padding: 0.65rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(244, 160, 32, 0.3);
}

.affiliation-cta:hover {
    background: #e5940e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 160, 32, 0.4);
}

.affiliation-cta svg {
    flex-shrink: 0;
}

.affiliation-disclaimer {
    margin: 1rem 0 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 90, 61, 0.15);
    font-size: 0.75rem;
    color: #777;
    font-style: italic;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE - Mobile First
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 600px) {
    .affiliation-box {
        padding: 1.25rem;
    }
    
    .affiliation-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .affiliation-image {
        width: 120px;
        height: 120px;
    }
    
    .affiliation-details {
        width: 100%;
    }
    
    .affiliation-cta {
        width: 100%;
        justify-content: center;
    }
}

/* tableau articles  */

.single-post .aqua-table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  font-family: 'Inter', sans-serif;
  color: #1a4d2e;
  box-shadow: 0 2px 3px rgba(0,0,0,0.1);
}

.single-post .aqua-table thead {
  background-color: #27ae60;
  color: white;
}

.single-post .aqua-table th, 
.single-post .aqua-table td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: left;
  line-height: 1.6;
}

.single-post .aqua-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* Responsive Design */
@media screen and (max-width: 600px) {
  .single-post .aqua-table {
    font-size: 14px;
  }
  
  .single-post .aqua-table thead {
    display: none;
  }
  
  .single-post .aqua-table tr {
    display: block;
    margin-bottom: 10px;
    border: 2px solid #27ae60;
  }
  
  .single-post .aqua-table td {
    display: block;
    text-align: right;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .single-post .aqua-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    color: #1a4d2e;
  }
}



/* ──────────────────────────────────────────────────────────────────────────────
   CTA FINAL (Commentaires + Engagement)
   ────────────────────────────────────────────────────────────────────────────── */

.cta-final {
    background: linear-gradient(135deg, #1a4d2e 0%, #27ae60 100%);
    color: #ffffff;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    margin: 3rem 0 2rem 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(26, 77, 46, 0.3);
}

.cta-final h2 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-final p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.cta-photo {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.cta-social {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE FIRST
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .btn-lowtech {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .cta-internal {
        padding: 1.25rem;
        margin: 2rem 0;
    }
    
    .cta-internal h4 {
        font-size: 1.1rem;
    }
    
    .cta-final {
        padding: 1.5rem 1.25rem;
    }
    
    .cta-final h2 {
        font-size: 1.3rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════════
   BOUTONS CTA INTERNES (Maillage) - VERSION COMPATIBLE
   ══════════════════════════════════════════════════════════════════════════════ */

.cta-internal {
    background: linear-gradient(135deg, #f0f9f4 0%, #e8f5e9 100%);
    border-left: 5px solid #27ae60;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 3px 12px rgba(39, 174, 96, 0.12);
    overflow: hidden;
}

.cta-internal h4 {
    color: #1a4d2e;
    font-size: 1.2rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
    font-weight: 600;
}

.cta-internal p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

/* Bouton CTA - Style principal */
a.btn-lowtech,
.btn-lowtech {
    display: inline-block;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.25);
    margin: 5px 0;
    text-align: center;
    border: none;
    cursor: pointer;
}

/* Spécificité renforcée pour les liens WordPress */
.single-post .cta-internal a.btn-lowtech,
.article-body .cta-internal a.btn-lowtech {
    color: #ffffff;
    text-decoration: none;
}

/* Hover du bouton */
a.btn-lowtech:hover,
.btn-lowtech:hover {
    background: linear-gradient(135deg, #229954 0%, #1e8449 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.35);
    color: #ffffff;
    text-decoration: none;
}

/* Active state */
a.btn-lowtech:active,
.btn-lowtech:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.2);
}

/* Visited state (important pour WordPress) */
a.btn-lowtech:visited {
    color: #ffffff;
}

/* Focus state (accessibilité) */
a.btn-lowtech:focus,
.btn-lowtech:focus {
    outline: 2px solid #27ae60;
    outline-offset: 2px;
}

/* Texte bonus */
.cta-bonus {
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE - MOBILE FIRST
   ══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .cta-internal {
        padding: 1.25rem;
        margin: 2rem 0;
    }
    
    .cta-internal h4 {
        font-size: 1.1rem;
    }
    
    /* Bouton pleine largeur sur mobile */
    a.btn-lowtech,
    .btn-lowtech {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* ══════════════════════════════════════════════════════════════════════════════
   SNIPPET BOX - VERSION MODERNE MOBILE-FIRST
   ══════════════════════════════════════════════════════════════════════════════ */

.snippet-box {
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  border-left: 5px solid #27ae60;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.15);
  position: relative;
  overflow: hidden;
}

/* Effet décoratif en fond (optionnel) */
.snippet-box::before {
  content: "⚡";
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 120px;
  opacity: 0.05;
  pointer-events: none;
}

.snippet-box h3 {
  color: #1a4d2e;
  font-size: 1.25rem;
  margin: 0 0 1.25rem 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.3;
}

/* Liste des points */
.snippet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.snippet-list li {
  background: rgba(255, 255, 255, 0.7);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  font-size: 1rem;
  line-height: 1.7;
  color: #2c3e50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

/* Effet hover sur desktop */
@media (min-width: 769px) {
  .snippet-list li:hover {
    transform: translateX(5px);
    border-left-color: #27ae60;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.15);
  }
}

/* Style des highlights (texte vert) */
.snippet-highlight {
  color: #27ae60;
  font-weight: 700;
  font-size: 1.1em;
  display: inline-block;
  padding: 0 0.25rem;
  background: rgba(39, 174, 96, 0.1);
  border-radius: 4px;
}

/* Emojis plus gros et alignés */
.snippet-list li::first-line {
  font-size: 1.05rem;
}

/* Version Desktop (amélioration progressive) */
@media (min-width: 769px) {
  .snippet-box {
    padding: 2rem 2.5rem;
    margin: 2.5rem 0;
  }
  
  .snippet-box h3 {
    font-size: 1.4rem;
  }
  
  .snippet-list {
    gap: 1.25rem;
  }
  
  .snippet-list li {
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
  }
}

/* Version Tablet */
@media (min-width: 481px) and (max-width: 768px) {
  .snippet-box {
    padding: 1.75rem 1.5rem;
  }
  
  .snippet-list li {
    padding: 1.125rem 1.25rem;
  }
}

/* Très petits écrans (< 400px) */
@media (max-width: 400px) {
  .snippet-box {
    padding: 1.25rem 1rem;
    border-radius: 10px;
  }
  
  .snippet-box h3 {
    font-size: 1.1rem;
  }
  
  .snippet-list {
    gap: 0.875rem;
  }
  
  .snippet-list li {
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════
   VIDÉO YOUTUBE RESPONSIVE
   ══════════════════════════════════════════════════════════════════════════════ */

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Ratio 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Légende sous la vidéo */
.video-caption {
  text-align: center;
  font-style: italic;
  color: #555;
  font-size: 0.9em;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

/* Mobile - Ajustements */
@media (max-width: 768px) {
  .video-container {
    margin: 1.5rem 0;
    border-radius: 8px;
  }
  
  .video-caption {
    font-size: 0.85em;
    padding: 0 1rem;
  }
}

/* Très petits écrans */
@media (max-width: 400px) {
  .video-container {
    margin: 1rem 0;
  }
}

/* ===============================
   TABLEAU RESPONSIVE MOBILE-FIRST
   Par le Lead Dev Aqua Lowtech
   =============================== */

/* Reset et base */
.aqua-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 1.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(76, 153, 108, 0.1);
}

/* Desktop par défaut (garde ton style actuel) */
@media (min-width: 769px) {
  .aqua-table thead {
    background: linear-gradient(135deg, #4c996c, #5db57d);
    color: white;
  }
  
  .aqua-table th {
    padding: 16px 20px;
    font-weight: 600;
    text-align: left;
    font-size: 16px;
  }
  
  .aqua-table td {
    padding: 14px 20px;
    border-bottom: 1px solid #e8f5e8;
  }
  
  .aqua-table tbody tr:hover {
    background-color: #f8fdf8;
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }
}

/* ================================
   MAGIC MOBILE (moins de 768px)
   ================================ */

@media (max-width: 768px) {
  
  /* Cache le header desktop */
  .aqua-table thead {
    display: none;
  }
  
  /* Transforme le tableau en stack de cartes */
  .aqua-table,
  .aqua-table tbody,
  .aqua-table tr,
  .aqua-table td {
    display: block;
    width: 100%;
  }
  
  .aqua-table {
    margin: 1rem 0;
    box-shadow: none; /* On va mettre l'ombre sur chaque carte */
  }
  
  /* Chaque ligne = Une carte */
  .aqua-table tr {
    background: white;
    border: 2px solid #e8f5e8;
    border-radius: 12px;
    margin-bottom: 16px;
    padding: 20px 16px;
    box-shadow: 0 2px 12px rgba(76, 153, 108, 0.08);
    position: relative;
  }
  
  /* Header de carte (première cellule) */
  .aqua-table tr td:first-child {
    background: linear-gradient(135deg, #4c996c, #5db57d);
    color: white;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin: -20px -16px 16px -16px;
    padding: 16px;
    border-radius: 10px 10px 0 0;
  }
  
  /* Autres cellules */
  .aqua-table tr td:not(:first-child) {
    border: none;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    line-height: 1.4;
    border-bottom: 1px solid #f0f8f0;
  }
  
  /* Dernier élément sans bordure */
  .aqua-table tr td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  /* Labels dynamiques via data-label */
  .aqua-table tr td:not(:first-child):before {
    content: attr(data-label) ":";
    font-weight: 600;
    color: #4c996c;
    min-width: 120px;
    text-align: left;
  }
  
  /* Valeurs à droite */
  .aqua-table tr td:not(:first-child) {
    text-align: right;
  }
  
  /* Emojis et icônes plus gros sur mobile */
  .aqua-table tr td strong {
    font-size: 16px;
  }
  
  /* Animation au tap (touch friendly) */
  .aqua-table tr {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .aqua-table tr:active {
    transform: scale(0.98);
    box-shadow: 0 1px 6px rgba(76, 153, 108, 0.15);
  }
}

/* ================================
   PETIT MOBILE (moins de 480px)
   ================================ */

@media (max-width: 480px) {
  .aqua-table tr {
    margin-bottom: 12px;
    padding: 16px 12px;
  }
  
  .aqua-table tr td:first-child {
    margin: -16px -12px 12px -12px;
    font-size: 16px;
  }
  
  .aqua-table tr td:not(:first-child):before {
    min-width: 100px;
    font-size: 14px;
  }
  
  .aqua-table tr td:not(:first-child) {
    font-size: 14px;
  }
}