/**
 * PERSONNALY - Design System
 * Ultra-moderne • Girly • Rose + Vert Menthe + Noir
 */

/* ========================================
   VARIABLES & RESET
   ======================================== */

:root {
    /* Couleurs principales */
    --pink-light: #FFB6C1;
    --pink-main: #FF69B4;
    --pink-dark: #FF1493;
    --pink-glow: rgba(255, 105, 180, 0.3);

    --mint-light: #98FFD6;
    --mint-main: #3DFFC0;
    --mint-dark: #00D9A0;
    --mint-glow: rgba(61, 255, 192, 0.3);

    --black: #0D0D0D;
    --black-soft: #1A1A2E;
    --black-card: #16213E;

    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray: #6C757D;

    /* Gradients */
    --gradient-pink: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
    --gradient-mint: linear-gradient(135deg, #3DFFC0 0%, #00D9A0 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    --gradient-hero: linear-gradient(135deg, #FF69B4 0%, #3DFFC0 50%, #FF1493 100%);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', var(--font-main);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 40px;
    --spacing-xxl: 64px;

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-pink: 0 4px 20px rgba(255, 105, 180, 0.4);
    --shadow-mint: 0 4px 20px rgba(61, 255, 192, 0.4);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--gray-light);
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* ========================================
   NAVBAR / HEADER
   ======================================== */

/* Site header wrapper: topbar + navbar */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    background: var(--black-soft);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

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

.navbar-nav a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    transition: opacity var(--transition-fast);
}

.navbar-nav a:hover {
    opacity: 0.8;
}

.cart-nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--pink-main);
    color: white;
    font-size: 11px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navbar Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown-toggle .dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 180px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark) !important;
    font-size: 14px;
    white-space: nowrap;
    transition: background 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background: var(--bg-light);
    opacity: 1 !important;
}

/* ========================================
   SOCIAL LINKS IN NAVBAR (hidden on desktop, shown in mobile menu)
   ======================================== */
.nav-social-links {
    display: none;
}

/* ========================================
   SOCIAL LINKS IN FOOTER
   ======================================== */
.footer-social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.footer-social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social-links .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    opacity: 1 !important;
}

.footer-social-links .social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ========================================
   HAMBURGER BUTTON
   ======================================== */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--header-text-color, #fff);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger → X animation */
.navbar-toggle.active .hamburger-line {
    background: #1a1a2e;
}
.navbar-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.navbar-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay */
.mobile-menu-overlay {
    display: none;
}

/* ========================================
   MOBILE MENU (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-nav {
        display: none !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 80px 20px 30px;
        background: #ffffff !important;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        z-index: 1001;
    }

    .navbar-nav.mobile-open {
        display: flex !important;
    }

    .navbar-nav a {
        display: block;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        color: #1a1a2e !important;
        -webkit-text-fill-color: #1a1a2e !important;
        transition: background 0.2s ease;
    }

    .navbar-nav a:hover {
        background: #f3f4f6;
        opacity: 1;
    }

    /* Dropdown in mobile */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: #f3f4f6;
        border-radius: 8px;
        margin-top: 4px;
        margin-bottom: 4px;
        padding: 4px 0;
        opacity: 1;
        visibility: visible;
    }

    .nav-dropdown-menu a {
        color: #1a1a2e !important;
        -webkit-text-fill-color: #1a1a2e !important;
        padding: 10px 24px;
        font-size: 14px;
    }

    .nav-dropdown-menu a:hover {
        background: #e5e7eb;
    }

    /* Social links in mobile menu */
    .nav-social-links {
        display: flex !important;
        gap: 12px;
        padding: 16px;
        border-top: 1px solid #e5e7eb;
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .nav-social-links .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f3f4f6;
        color: #1a1a2e !important;
        -webkit-text-fill-color: initial !important;
        padding: 0 !important;
        transition: background 0.2s ease;
    }

    .nav-social-links .social-icon:hover {
        background: #e5e7eb;
    }

    .nav-social-links .social-icon svg {
        width: 18px;
        height: 18px;
        fill: #1a1a2e;
    }

    /* Cart link in mobile */
    .navbar-nav .cart-nav-link {
        margin-top: 12px;
        justify-content: center;
    }

    /* Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .mobile-menu-overlay.active {
        display: block;
    }
}

.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 14px 28px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: var(--gradient-pink);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 105, 180, 0.5);
}

.btn-secondary {
    background: var(--gradient-mint);
    color: var(--black);
    box-shadow: var(--shadow-mint);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(61, 255, 192, 0.5);
}

.btn-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pink-main);
    color: var(--pink-main);
}

.btn-outline:hover {
    background: var(--pink-main);
    color: var(--white);
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--black-soft);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-main);
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.form-input:focus {
    outline: none;
    border-color: var(--pink-main);
    box-shadow: 0 0 0 4px var(--pink-glow);
}

.form-input::placeholder {
    color: var(--gray);
}

/* ========================================
   CARDS
   ======================================== */

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-lg);
    transition: all var(--transition-normal);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

/* ========================================
   BADGES & TAGS
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pink {
    background: rgba(255, 105, 180, 0.15);
    color: var(--pink-dark);
}

.badge-mint {
    background: rgba(61, 255, 192, 0.2);
    color: var(--mint-dark);
}

.badge-dark {
    background: var(--black-soft);
    color: var(--white);
}

.badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #856404;
}

.badge-success {
    background: rgba(61, 255, 192, 0.2);
    color: var(--mint-dark);
}

/* ========================================
   UTILITIES
   ======================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.text-center { text-align: center; }
.text-pink { color: var(--pink-main); }
.text-mint { color: var(--mint-main); }
.text-muted { color: var(--gray); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* ========================================
   PAGES PERSONNALISÉES (PAGE BUILDER)
   ======================================== */

.custom-page {
    min-height: 60vh;
}

/* Section de base */
.custom-page .section {
    position: relative;
    padding: 4rem 0;
}

.custom-page .section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.custom-page .section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Section Hero */
.section-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
    color: white;
}

.section-hero .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.section-hero .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.section-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.section-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.section-hero .hero-badge {
    display: inline-block;
    background: var(--gradient-pink);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-hero .hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: white;
}

.section-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-hero .hero-cta {
    margin-top: 2rem;
}

.section-hero .hero-cta .btn {
    margin: 0.5rem;
}

/* Section Contenu */
.section-content {
    padding: 5rem 0;
}

.section-content .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-content .content-media img,
.section-content .content-media video {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.section-content .content-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray);
}

/* Section Produits */
.section-products {
    padding: 5rem 0;
    background: var(--gray-light);
}

.section-products .section-title,
.section-packs .section-title,
.section-newsletter .section-title {
    text-align: center;
}

.section-products .section-subtitle,
.section-packs .section-subtitle,
.section-newsletter .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Section Packs */
.section-packs {
    padding: 5rem 0;
    background: var(--black-soft);
    color: white;
}

.section-packs .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Section Newsletter */
.section-newsletter {
    padding: 5rem 0;
    background: var(--gradient-pink);
    color: white;
    text-align: center;
}

.section-newsletter .newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
}

.section-newsletter .newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
}

.section-newsletter .newsletter-form .btn {
    white-space: nowrap;
}

/* Section CTA commun */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-hero {
        min-height: 60vh;
    }

    .section-hero .hero-title {
        font-size: 2.5rem;
    }

    .section-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-content .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .custom-page .section-title {
        font-size: 2rem;
    }

    .section-newsletter .newsletter-form {
        flex-direction: column;
    }
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #fafafa 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    box-sizing: border-box;
}

.product-image-placeholder {
    color: #ccc;
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
}

.product-info {
    padding: var(--spacing-lg);
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    color: var(--black-soft);
}

.product-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-dark);
}

.product-btn {
    background: var(--gradient-mint);
    color: var(--black);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-normal);
}

.product-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-mint);
}

/* Product Footer avec deux boutons */
.product-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-buttons {
    display: flex;
    gap: 8px;
    width: 100%;
}

.product-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.product-btn svg {
    width: 16px;
    height: 16px;
}

.product-btn-primary {
    background: var(--gradient-pink);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

.product-btn-primary:hover {
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
}

.product-btn-primary.added {
    background: var(--mint-main);
    color: var(--black);
}

.product-btn-secondary {
    background: transparent;
    color: var(--pink-main);
    border: 2px solid var(--pink-main);
    box-shadow: none;
}

.product-btn-secondary:hover {
    background: var(--pink-main);
    color: var(--white);
    box-shadow: var(--shadow-pink);
}

/* Sale Price & Badges */
.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.product-price-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.product-price-old {
    font-size: 0.9rem;
    color: var(--gray);
    text-decoration: line-through;
    font-weight: 500;
}

.product-price-sale {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-dark);
}

/* ========================================
   CARTES PACKS / INSPIRATIONS
   ======================================== */

.packs-grid,
.inspirations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.pack-card,
.inspiration-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.pack-card:hover,
.inspiration-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink-main);
    box-shadow: 0 20px 40px rgba(255, 105, 180, 0.15);
}

.pack-image,
.inspiration-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, rgba(255,105,180,0.2) 0%, rgba(61,255,192,0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pack-image img,
.inspiration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pack-image-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.pack-type,
.inspiration-type {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    backdrop-filter: blur(4px);
}

.pack-type.type-technique,
.inspiration-type.type-technique {
    background: var(--pink-main);
}

.pack-type.type-contextuel,
.inspiration-type.type-contextuel {
    background: var(--mint-dark);
    color: var(--black);
}

.pack-type.type-thematique,
.inspiration-type.type-thematique {
    background: #9b59b6;
}

.pack-type.type-inspiration,
.inspiration-type.type-inspiration {
    background: #3498db;
}

.pack-info,
.inspiration-info {
    padding: 20px;
}

.pack-info h3,
.inspiration-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pack-info p,
.inspiration-info p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.pack-cta,
.inspiration-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-pink);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.pack-cta:hover,
.inspiration-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-pink);
}

.pack-cta svg,
.inspiration-cta svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   BADGES
   ======================================== */

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pink {
    background: var(--gradient-pink);
    color: white;
}

.badge-mint {
    background: var(--gradient-mint);
    color: var(--black);
}

/* ========================================
   SECTION VIDEO
   ======================================== */

.section-video {
    padding: 5rem 0;
    background: var(--gray-light);
}

.section-video .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 2rem auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-video .video-wrapper iframe,
.section-video .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.section-video .video-description {
    max-width: 700px;
    margin: 2rem auto 0;
    text-align: center;
    color: var(--gray);
    line-height: 1.7;
}

/* ========================================
   SECTION GALERIE
   ======================================== */

.section-gallery {
    padding: 5rem 0;
}

.gallery-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-grid.gallery-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.gallery-grid.gallery-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item a {
    display: block;
    aspect-ratio: 1;
    background: var(--gray-light);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery-grid.gallery-cols-3,
    .gallery-grid.gallery-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-grid.gallery-cols-2,
    .gallery-grid.gallery-cols-3,
    .gallery-grid.gallery-cols-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION FAQ / ACCORDEON
   ======================================== */

.section-faq {
    padding: 5rem 0;
}

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

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:first-child {
    border-top: 1px solid #eee;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--black);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--pink-main);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
    color: var(--gray);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-normal);
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    overflow: hidden;
    padding-bottom: 0;
    color: var(--gray);
    line-height: 1.7;
    transition: padding var(--transition-normal);
}

.faq-item.open .faq-answer-content {
    padding-bottom: 1.25rem;
}

/* ========================================
   SECTION TEMOIGNAGES
   ======================================== */

.section-testimonials {
    padding: 5rem 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.testimonials-carousel .testimonial-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial-rating .star {
    color: #FFD700;
}

.testimonial-rating .star:not(.filled) {
    color: #ddd;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--black-soft);
    margin: 0 0 1.5rem 0;
    padding: 0;
    border: none;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-photo-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--black);
}

.author-title {
    font-size: 0.85rem;
    color: var(--gray);
}

/* ========================================
   SECTION FORMULAIRE DE CONTACT
   ======================================== */

.section-contact-form {
    padding: 5rem 0;
}

.contact-form {
    max-width: 700px;
    margin: 2rem auto 0;
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--black);
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink-main);
    box-shadow: 0 0 0 3px var(--pink-glow);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-actions {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-form .form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.contact-form .form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.contact-form .form-message.error {
    background: #ffebee;
    color: #c62828;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SECTION BLOG
   ======================================== */

.section-blog {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-date {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--black);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--pink-main);
}

.blog-card-excerpt {
    margin: 0.75rem 0 0;
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   SECTION CATEGORIE
   ======================================== */

.section-category {
    padding: 5rem 0;
}

/* ========================================
   SECTION COMPTEURS ANIMÉS
   ======================================== */

.section-counter {
    padding: 5rem 0;
    background: var(--gradient-dark);
    color: white;
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.counter-item {
    text-align: center;
    padding: 2rem;
    --counter-color: var(--pink-main);
}

.counter-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--counter-color);
}

.counter-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: var(--counter-color);
}

.counter-prefix,
.counter-suffix {
    font-size: 2rem;
    font-weight: 600;
}

.counter-number {
    display: inline-block;
}

.counter-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .counter-value {
        font-size: 2.5rem;
    }

    .counter-prefix,
    .counter-suffix {
        font-size: 1.5rem;
    }
}

/* ========================================
   SECTION TIMELINE / ÉTAPES
   ======================================== */

.section-timeline {
    padding: 5rem 0;
}

.timeline {
    position: relative;
    margin-top: 3rem;
}

/* Timeline verticale */
.timeline-vertical {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-vertical::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--pink-main), var(--mint-main));
}

.timeline-vertical .timeline-item {
    position: relative;
    padding-bottom: 3rem;
    width: 50%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

.timeline-vertical .timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-vertical .timeline-item:nth-child(odd) {
    padding-right: 3rem;
    text-align: right;
}

.timeline-vertical .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
    text-align: left;
}

.timeline-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-pink);
    z-index: 1;
}

.timeline-vertical .timeline-item:nth-child(odd) .timeline-marker {
    right: -25px;
}

.timeline-vertical .timeline-item:nth-child(even) .timeline-marker {
    left: -25px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.timeline-image {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--pink-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.timeline-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Timeline horizontale */
.timeline-horizontal {
    display: flex;
    overflow-x: auto;
    gap: 2rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
}

.timeline-horizontal::before {
    display: none;
}

.timeline-horizontal .timeline-item {
    flex: 0 0 300px;
    scroll-snap-align: start;
    padding-bottom: 0;
    width: auto;
    text-align: center;
    opacity: 1;
    transform: none;
}

.timeline-horizontal .timeline-marker {
    position: relative;
    margin: 0 auto 1rem;
    left: auto;
    right: auto;
}

@media (max-width: 768px) {
    .timeline-vertical::before {
        left: 25px;
    }

    .timeline-vertical .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }

    .timeline-vertical .timeline-item:nth-child(even) {
        margin-left: 0;
    }

    .timeline-vertical .timeline-item .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }
}

/* ========================================
   SECTION LOGOS PARTENAIRES
   ======================================== */

.section-logos {
    padding: 4rem 0;
    background: var(--gray-light);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    align-items: center;
}

.logos-carousel {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 1rem 0;
    scrollbar-width: none;
}

.logos-carousel::-webkit-scrollbar {
    display: none;
}

.logo-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.logo-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter var(--transition-normal), opacity var(--transition-normal);
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-item a {
    display: block;
}

/* ========================================
   SECTION GOOGLE MAP
   ======================================== */

.section-map {
    padding-top: 3rem;
}

.section-map .container {
    padding-bottom: 2rem;
}

.map-info {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--gray);
    line-height: 1.7;
}

.map-container {
    width: 100%;
    min-height: 400px;
}

.google-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    color: var(--gray);
}

/* ========================================
   SECTION AVIS GOOGLE
   ======================================== */

.section-google-reviews {
    padding: 5rem 0;
}

.google-rating-summary {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-score {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.score-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star.filled {
    color: #FBBC04;
}

.rating-stars .star:not(.filled) {
    color: #ddd;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray);
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.google-reviews-carousel {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
}

.google-reviews-carousel .google-review-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

.google-review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.reviewer-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-photo-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    display: block;
    font-weight: 600;
    color: var(--black);
    font-size: 0.95rem;
}

.review-rating {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.review-rating .star.filled {
    color: #FBBC04;
}

.review-rating .star:not(.filled) {
    color: #ddd;
}

.google-logo {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-text {
    color: var(--black-soft);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-date {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ========================================
   SECTION SÉPARATEUR
   ======================================== */

.section-separator {
    padding: 0;
}

.section-separator hr {
    border: none;
    margin: 0 auto;
}

/* ========================================
   SECTION HTML PERSONNALISÉ
   ======================================== */

.section-custom-html {
    padding: 2rem 0;
}

.section-custom-html img {
    max-width: 100%;
    height: auto;
}

.section-custom-html iframe {
    max-width: 100%;
}

/* ========================================
   PROMO BANNER (TOP BAR)
   ======================================== */

.promo-banner {
    background: var(--gradient-pink);
    color: white;
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
}

.promo-banner a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.promo-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.promo-banner-close:hover {
    opacity: 1;
}

/* ========================================
   POPUP MODAL
   ======================================== */

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition-normal);
}

.popup-overlay.active .popup-content {
    transform: scale(1) translateY(0);
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    z-index: 1;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.popup-image {
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.popup-body {
    padding: 2rem;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.popup-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.popup-cta {
    display: inline-block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    margin-top: 60px;
    padding: 40px 0 30px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.9rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 1 !important;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer {
        margin-top: 40px;
        padding: 30px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-brand {
        max-width: 100%;
    }
}
