/* SporeLife.ch — Fiche Technique Champignon */
/* ========================================= */

.fiche-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 40px 60px;
}

/* Header fiche */
.fiche-header {
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
}
.fiche-back {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 16px;
    transition: color 0.3s;
    text-decoration: none;
}
.fiche-back:hover { color: #0b1120; }
.fiche-header h1 {
    font-size: clamp(40px, 6vw, 52px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin: 0 0 8px;
    line-height: 1;
}
.fiche-latin {
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    color: #6b7280;
}
.fiche-header-right { text-align: right; }
.fiche-badge {
    display: inline-block;
    background: #0b1120;
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 8px;
}
.fiche-family {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
}

/* Grid 2 cols */
.fiche-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Card beige (pharmacodynamie) */
.fiche-card-beige {
    background: #f2f2ef;
    padding: 40px;
    border-radius: 2px;
}
.fiche-section-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #d4af37;
    margin-bottom: 24px;
}
.fiche-pharma-blocks { display: flex; flex-direction: column; gap: 32px; }
.fiche-pharma-blocks h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fiche-pharma-blocks p {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
}
.fiche-pharma-blocks strong { color: #0b1120; }

/* Card border (étude) */
.fiche-card-border {
    border: 1px solid #e5e7eb;
    padding: 40px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.fiche-etude-icon { margin-bottom: 16px; color: #0b1120; }
.fiche-etude-title {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.fiche-etude-ref {
    font-size: 12px;
    color: #9ca3af;
    font-style: italic;
    margin-bottom: 24px;
}
.fiche-etude-quote {
    font-size: 14px;
    color: #4b5563;
    font-style: italic;
    border-left: 2px solid #d4af37;
    padding-left: 16px;
    margin: 0 0 24px;
    line-height: 1.7;
}
.fiche-etude-link {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: #0b1120;
    transition: color 0.3s;
}
.fiche-etude-link:hover { color: #d4af37; }

/* Section conseil comptoir */
.fiche-conseil-section {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 64px 40px;
    margin-left: -40px;
    margin-right: -40px;
}
.fiche-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}
.fiche-conseil-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot-black { width: 8px; height: 8px; background: #0b1120; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot-red { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.fiche-conseil-section ul { list-style: none; padding: 0; margin: 0; }
.fiche-conseil-section li {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 8px;
}
.fiche-conseil-section strong { color: #0b1120; }

/* Section produit */
.fiche-product {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #0b1120;
    color: #fff;
    padding: 40px;
    border-radius: 2px;
}
.fiche-product-img {
    width: 128px;
    height: 128px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255,255,255,0.2);
}
.fiche-product-img img { width: 100%; height: 100%; object-fit: cover; }
.fiche-product-info { flex-grow: 1; }
.fiche-product-info h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.fiche-product-desc {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 16px;
}
.fiche-product-cta { display: flex; gap: 16px; }
.btn-fiche-outline {
    display: inline-block;
    border: 1px solid #fff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-fiche-outline:hover { background: #fff; color: #0b1120; }

/* Mobile */
@media (max-width: 768px) {
    .fiche-main { padding: 0 16px 40px; gap: 32px; }
    .fiche-header { flex-direction: column; align-items: flex-start; }
    .fiche-header-right { text-align: left; }
    .fiche-grid-2 { grid-template-columns: 1fr; }
    .fiche-grid-3 { grid-template-columns: 1fr; gap: 32px; }
    .fiche-conseil-section { padding: 40px 16px; margin-left: -16px; margin-right: -16px; }
    .fiche-product { flex-direction: column; text-align: center; }
    .fiche-product-cta { flex-direction: column; align-items: center; }
    .fiche-card-beige, .fiche-card-border { padding: 24px; }
}
