/*
Theme Name: Fonk Shop
Theme URI: https://shop.fonk.fr
Author: Fonk
Description: Boutique e-commerce ultra-minimaliste pour œuvres d'art
Version: 3.5
*/

/* =====================================================
   RESET & BASE
   ===================================================== */

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300; /* Light */
    font-size: 0.875rem; /* 14px - texte petit */
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

a {
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300; /* Light */
    line-height: 1.3;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.fonk-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background: #fff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    z-index: 99999 !important;
    padding: 1rem 0 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.fonk-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}

/* Logo texte stylisé */
.fonk-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.fonk-logo-main {
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #000;
}

.fonk-logo-subtitle {
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #666;
}

.fonk-logo-link {
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.fonk-logo-link:hover {
    opacity: 0.6;
}

/* Hero Header (optionnel, avec image personnalisée) */
.fonk-hero-header {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px; /* Hauteur du header fixe */
}

.fonk-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3); /* Overlay léger pour la lisibilité */
}

.fonk-hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.fonk-hero-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.fonk-hero-description {
    font-size: 1.125rem;
    font-weight: 300;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .fonk-hero-header {
        height: 300px;
    }
    
    .fonk-hero-title {
        font-size: 2rem;
    }
    
    .fonk-hero-description {
        font-size: 1rem;
    }
}

.fonk-logo {
    display: flex;
    align-items: center;
}

.fonk-logo-link {
    display: block;
    text-decoration: none;
}

/* Style pour logo image (si custom logo activé) */
.fonk-logo .custom-logo {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Style pour logo texte stylisé */
.fonk-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.fonk-logo-main {
    font-size: 1.5rem; /* 24px */
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #000;
}

.fonk-logo-subtitle {
    font-size: 0.625rem; /* 10px */
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-top: 0.125rem;
}

.fonk-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.fonk-nav a {
    font-size: 0.75rem; /* 12px - petit */
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.fonk-nav a:hover {
    opacity: 0.6;
}

.fonk-cart-count {
    font-size: 0.625rem; /* 10px */
    opacity: 0.7;
}

/* =====================================================
   WRAPPER & SPACING
   ===================================================== */

.fonk-wrapper {
    margin-top: 60px; /* Compenser le header fixe réduit */
    min-height: calc(100vh - 180px);
}

/* =====================================================
   HOME PAGE - SECTIONS SÉRIES
   ===================================================== */

.fonk-shop-home {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.fonk-serie-section {
    margin-bottom: 6rem;
}

.fonk-serie-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.fonk-serie-title {
    font-size: 1.5rem; /* 24px */
    font-weight: 300;
    letter-spacing: 0.05em;
}

.fonk-view-all {
    font-size: 0.75rem; /* 12px */
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.fonk-view-all:hover {
    opacity: 1;
}

/* =====================================================
   GRILLE PRODUITS
   ===================================================== */

.fonk-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 1024px) {
    .fonk-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .fonk-products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* =====================================================
   CARTES PRODUITS
   ===================================================== */

.fonk-product-card {
    position: relative;
}

.fonk-product-link {
    display: block;
}

.fonk-product-image {
    position: relative;
    width: 100%;
    padding-bottom: 133%; /* Ratio 3:4 pour les œuvres */
    background: #f8f8f8;
    overflow: hidden;
    margin-bottom: 1rem;
}

.fonk-product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fonk-product-link:hover .fonk-product-image img {
    transform: scale(1.02);
}

.fonk-no-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    color: #999;
}

/* =====================================================
   INFOS PRODUITS (sous les vignettes)
   ===================================================== */

.fonk-product-info {
    text-align: left;
}

.fonk-product-title {
    font-size: 0.875rem; /* 14px - petit */
    font-weight: 300;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.fonk-product-meta {
    font-size: 0.75rem; /* 12px - très petit */
    font-weight: 300;
    color: #666;
    display: flex;
    justify-content: space-between; /* Prix à gauche, format à droite */
    align-items: center;
}

.fonk-separator {
    opacity: 0.3;
}

.fonk-price {
    color: #000;
}

.fonk-dimensions {
    opacity: 0.8;
    text-align: right;
}

/* =====================================================
   ARCHIVE PAGES (Pages séries complètes)
   ===================================================== */

.fonk-archive-products {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.fonk-archive-header {
    margin-bottom: 3rem;
    text-align: center;
}

.fonk-archive-title {
    font-size: 2rem; /* 32px */
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.fonk-archive-description {
    font-size: 0.875rem;
    font-weight: 300;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.fonk-archive-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* =====================================================
   SINGLE PRODUCT PAGE
   ===================================================== */

.fonk-single-product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.fonk-product-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .fonk-product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Image grande */
.fonk-product-image-column {
    position: sticky;
    top: 100px;
}

.fonk-single-image {
    width: 100%;
    height: auto;
}

.fonk-no-image-single {
    width: 100%;
    padding-bottom: 133%;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

/* Colonne infos */
.fonk-product-info-column {
    padding-top: 1rem;
}

.fonk-single-title {
    font-size: 2rem; /* 32px */
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 1.5rem;
}

.fonk-single-price {
    font-size: 1.25rem; /* 20px */
    font-weight: 300;
    margin-bottom: 2rem;
}

.fonk-single-meta {
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.fonk-meta-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.fonk-meta-label {
    font-size: 0.75rem; /* 12px */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.fonk-meta-value {
    font-size: 0.875rem; /* 14px */
    font-weight: 300;
}

.fonk-single-description {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2.5rem;
}

/* Bouton Ajouter au panier */
.fonk-single-cart {
    margin-bottom: 1.5rem;
}

.fonk-single-cart button,
.fonk-single-cart .button,
.fonk-single-cart .single_add_to_cart_button {
    width: 100%;
    padding: 1rem 2rem;
    background: #000;
    color: #fff;
    border: none;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
}

.fonk-single-cart button:hover {
    background: #333;
}

/* Stock status */
.fonk-stock-status {
    font-size: 0.75rem;
    font-weight: 300;
    padding: 0.5rem 0;
}

.fonk-stock-status.in-stock {
    color: #000;
}

.fonk-stock-status.out-of-stock {
    color: #999;
}

/* =====================================================
   CART & CHECKOUT PAGES
   ===================================================== */

.woocommerce-cart,
.woocommerce-checkout {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* Tables panier */
.woocommerce table.shop_table {
    border: none;
    background: transparent;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 300;
}

.woocommerce table.shop_table thead {
    background: transparent;
}

.woocommerce table.shop_table thead th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
    opacity: 0.6;
}

/* Boutons */
.woocommerce .button,
.woocommerce button.button {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.woocommerce .button:hover {
    background: #333;
    border-color: #333;
}

/* Bouton "Valider la commande" avec encadrement blanc */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout .checkout-button,
.woocommerce .checkout-button,
.woocommerce-checkout .button.alt,
.woocommerce-cart table.cart td.actions .button,
body .woocommerce .checkout-button,
body .woocommerce-checkout .button.alt {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #000 !important;
    padding: 1rem 2rem !important;
    font-size: 0.875rem !important;
    font-weight: 300 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    transition: all 0.2s ease !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-checkout .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce .checkout-button:hover,
.woocommerce-checkout .button.alt:hover,
body .woocommerce .checkout-button:hover,
body .woocommerce-checkout .button.alt:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

/* Champs formulaires */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: 1px solid #e5e5e5;
    padding: 0.875rem;
    font-size: 0.875rem;
    font-weight: 300;
    background: #fff;
}

.woocommerce form .form-row label {
    font-size: 0.75rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   FOOTER
   ===================================================== */

.fonk-footer {
    background: #fff;
    border-top: 1px solid #e5e5e5;
    padding: 2rem 0;
    margin-top: 6rem;
}

.fonk-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.fonk-copyright {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.5;
}

/* =====================================================
   PAGINATION
   ===================================================== */

.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin-top: 3rem;
}

.woocommerce nav.woocommerce-pagination ul {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
    font-weight: 300;
    color: #000;
    background: transparent;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
    background: #f8f8f8;
}

/* =====================================================
   NO PRODUCTS MESSAGE
   ===================================================== */

.fonk-no-products {
    text-align: center;
    padding: 4rem 2rem;
    font-size: 0.875rem;
    font-weight: 300;
    color: #999;
}

/* =====================================================
   MESSAGES WOOCOMMERCE (Popup minimaliste)
   ===================================================== */

/* Cacher tous les messages par défaut WooCommerce */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    display: none !important;
}

/* Popup minimaliste noir et blanc */
.fonk-cart-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border: 2px solid #000;
    padding: 2rem 3rem;
    z-index: 10001;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    animation: fonkFadeIn 0.3s ease;
    max-width: 500px;
    width: 90%;
}

@keyframes fonkFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.fonk-cart-popup-text {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #000;
}

.fonk-cart-popup-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fonk-cart-popup-btn {
    padding: 0.75rem 2rem;
    font-size: 0.875rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    border: 2px solid #000;
}

/* Bouton primaire (noir) */
.fonk-cart-popup-btn.primary {
    background: #000;
    color: #fff;
}

.fonk-cart-popup-btn.primary:hover {
    background: #333;
}

/* Bouton secondaire (blanc avec bordure noire) */
.fonk-cart-popup-btn.secondary {
    background: transparent;
    color: #000;
}

.fonk-cart-popup-btn.secondary:hover {
    background: #000;
    color: #fff;
}

/* Overlay derrière la popup */
.fonk-cart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 10000;
    animation: fonkOverlayFadeIn 0.3s ease;
}

/* Popup elle-même */
.fonk-cart-popup {
    z-index: 10001;
}

@keyframes fonkOverlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 600px) {
    .fonk-cart-popup {
        padding: 1.5rem 2rem;
        width: 95%;
    }
    
    .fonk-cart-popup-buttons {
        flex-direction: column;
    }
    
    .fonk-cart-popup-btn {
        width: 100%;
    }
}

/* =====================================================
   PAGES STANDARDS (À propos, Contact, etc.)
   ===================================================== */

.fonk-page-content {
    padding-top: 90px; /* Compenser le header fixe + petite marge */
    min-height: 80vh;
    background: #fff;
}

.fonk-page-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.fonk-page-header {
    margin-bottom: 4rem;
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e5e5;
}

.fonk-page-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    color: #000;
}

.fonk-page-text {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 2;
    color: #444;
}

.fonk-page-text > * {
    margin-bottom: 2rem;
}

.fonk-page-text p {
    margin-bottom: 2rem;
}

.fonk-page-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-top: 4rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: #000;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.fonk-page-text h3 {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.fonk-page-text ul,
.fonk-page-text ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.fonk-page-text li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.fonk-page-text a {
    color: #000;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.fonk-page-text a:hover {
    opacity: 0.5;
}

.fonk-page-text img {
    max-width: 100%;
    height: auto;
    margin: 3rem 0;
    display: block;
}

.fonk-page-text blockquote {
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 2px solid #000;
    font-style: italic;
    color: #666;
}

/* Support Elementor */
.elementor-page .fonk-page-content {
    padding-top: 80px;
}

.elementor-page .fonk-page-container {
    max-width: 100%;
    padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .fonk-page-content {
        padding-top: 100px;
    }
    
    .fonk-page-container {
        padding: 2rem 1.5rem 4rem;
    }
    
    .fonk-page-title {
        font-size: 1.5rem;
        letter-spacing: 0.15em;
    }
    
    .fonk-page-header {
        margin-bottom: 2.5rem;
    }
    
    .fonk-page-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .fonk-page-text h2 {
        font-size: 1.25rem;
        margin-top: 3rem;
    }
}

/* =====================================================
   FORMULAIRES DE CONTACT (Contact Form 7)
   ===================================================== */

.wpcf7 {
    margin: 2rem 0;
}

.wpcf7 label {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: #000;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #000;
    background: #fff;
    font-size: 1rem;
    font-weight: 300;
    font-family: inherit;
    margin-bottom: 1.5rem;
    transition: border 0.2s ease;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-width: 2px;
}

.wpcf7 textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7 input[type="submit"] {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.875rem 2rem;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wpcf7 input[type="submit"]:hover {
    background: #333;
    border-color: #333;
}

.wpcf7-response-output {
    border: 2px solid #000 !important;
    padding: 1rem !important;
    margin: 2rem 0 1rem !important;
    font-size: 0.875rem !important;
    font-weight: 300 !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.75rem;
    color: #000;
    font-weight: 300;
    margin-top: -1rem;
    margin-bottom: 1rem;
}

.wpcf7-spinner {
    margin-left: 1rem;
}

/* =====================================================
   FAQ (Questions fréquentes)
   ===================================================== */

.fonk-faq {
    padding: 4rem 0;
    background: #f9f9f9;
}

.fonk-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.fonk-faq-title {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.fonk-faq-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fonk-faq-item {
    background: #fff;
    border: 1px solid #e5e5e5;
    transition: border-color 0.2s ease;
}

.fonk-faq-item:hover {
    border-color: #000;
}

.fonk-faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #000;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s ease;
}

.fonk-faq-question:hover {
    background: #fafafa;
}

.fonk-faq-question[aria-expanded="true"] {
    background: #f5f5f5;
}

.fonk-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.fonk-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.fonk-faq-answer-content {
    padding: 0 2rem 1.5rem;
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.8;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .fonk-faq {
        padding: 3rem 0;
    }
    
    .fonk-faq-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .fonk-faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .fonk-faq-answer-content {
        padding: 0 1.5rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* =====================================================
   UTILITY CLASSES
   ===================================================== */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}
