/* ==========================================================================
   EVOLVE - Custom CSS
   Site: www.rideevolve.eu
   Fichier: custom_evolve.css
   ========================================================================== */

/* ==========================================================================
   SECTION 1: NEWSLETTER
   ========================================================================== */

.block_newsletter .btn-primary,
.block_newsletter button[type="submit"] {
    background-color: #333333 !important;
    border-color: #333333 !important;
    color: #ffffff !important;
}

.block_newsletter .btn-primary:hover,
.block_newsletter button[type="submit"]:hover {
    background-color: #1a1a1a !important;
    border-color: #1a1a1a !important;
}

/* ==========================================================================
   SECTION 2: EVOLVE LABS - Éditions Limitées
   ========================================================================== */

/* --------------------------------------------------------------------------
   VARIABLES
   -------------------------------------------------------------------------- */
:root {
    --evolve-orange: #FB613B;
    --evolve-orange-hover: #C34B2E;
    --evolve-dark: #0a0a0a;
    --evolve-dark-secondary: #141414;
    --evolve-dark-card: #1a1a1a;
    --evolve-text: #ffffff;
    --evolve-text-muted: #a0a0a0;
    --evolve-border: #2a2a2a;
    --evolve-gold: #d4af37;
    --evolve-purple: #8b5cf6;
    --evolve-blue: #3b82f6;
    --font-display: "Protest strike", "Manrope", sans-serif;
    --font-body: "Manrope", "Lexend", sans-serif;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --container-max: 1600px;
    --transition-base: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   HEADER (Badge + Titre + Accroche)
   -------------------------------------------------------------------------- */
.labs-header {
    text-align: center;
    padding: 40px 20px 20px !important;
    background: #0a0a0a !important;
}

.labs-header h1 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: clamp(32px, 6vw, 56px) !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 15px 0 10px !important;
    line-height: 1.1 !important;
}

.labs-header .accroche {
    font-size: 14px !important;
    letter-spacing: 2px !important;
    color: #a0a0a0 !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

.labs-badge {
    display: inline-block !important;
    padding: 8px 20px !important;
    background: linear-gradient(135deg, #FB613B 0%, #C34B2E 100%) !important;
    color: #ffffff !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
    border-radius: 30px !important;
    margin-bottom: 10px !important;
}

/* --------------------------------------------------------------------------
   HERO IMAGE (Fiche produit - image inline)
   -------------------------------------------------------------------------- */
.labs-hero {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    background: #0a0a0a !important;
}

.labs-hero img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
}

/* --------------------------------------------------------------------------
   INTRO
   -------------------------------------------------------------------------- */
.labs-intro {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
    text-align: center !important;
    background: #0a0a0a !important;
}

.labs-intro p {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #a0a0a0 !important;
    margin: 0 0 20px !important;
}

.labs-intro p:last-child {
    margin-bottom: 0 !important;
}

.labs-intro strong {
    color: #ffffff !important;
}

/* --------------------------------------------------------------------------
   SPECS BOX
   -------------------------------------------------------------------------- */
.labs-specs-box {
    background: #141414 !important;
    border: 1px solid #2a2a2a !important;
    border-radius: 12px !important;
    padding: 40px !important;
    margin: 40px auto !important;
    max-width: 800px !important;
}

.labs-specs-box h2 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: 24px !important;
    color: #ffffff !important;
    margin: 0 0 25px !important;
    text-align: center !important;
}

.labs-specs-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

.labs-specs-list li {
    font-size: 14px !important;
    color: #a0a0a0 !important;
    padding-left: 24px !important;
    position: relative !important;
}

.labs-specs-list li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #FB613B !important;
    font-weight: bold !important;
}

/* --------------------------------------------------------------------------
   COMPONENT (Image + Texte alternés)
   -------------------------------------------------------------------------- */
.labs-component {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 40px !important;
    align-items: center !important;
    padding: 60px 20px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    background: #0a0a0a !important;
}

.labs-component:nth-child(even) {
    direction: rtl !important;
}

.labs-component:nth-child(even) > * {
    direction: ltr !important;
}

.labs-component-img img {
    width: 100% !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.labs-component-text h2 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: clamp(24px, 4vw, 32px) !important;
    color: #ffffff !important;
    margin: 0 0 10px !important;
}

.labs-component-text .subtitle {
    font-size: 12px !important;
    letter-spacing: 2px !important;
    color: #FB613B !important;
    text-transform: uppercase !important;
    margin: 0 0 20px !important;
}

.labs-component-text p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #a0a0a0 !important;
    margin: 0 !important;
}

/* --------------------------------------------------------------------------
   TECH SPECS TABLE
   -------------------------------------------------------------------------- */
.labs-tech-specs {
    background: #141414 !important;
    padding: 60px 20px !important;
    margin: 40px 0 !important;
}

.labs-tech-specs h2 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: 28px !important;
    color: #ffffff !important;
    text-align: center !important;
    margin: 0 0 40px !important;
}

.labs-tech-table {
    max-width: 600px !important;
    margin: 0 auto !important;
    width: 100% !important;
    border-collapse: collapse !important;
}

.labs-tech-table tr {
    border-bottom: 1px solid #2a2a2a !important;
}

.labs-tech-table td {
    padding: 15px 10px !important;
    font-size: 14px !important;
}

.labs-tech-table td:first-child {
    color: #a0a0a0 !important;
    width: 40% !important;
}

.labs-tech-table td:last-child {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* --------------------------------------------------------------------------
   STORY
   -------------------------------------------------------------------------- */
.labs-story {
    text-align: center !important;
    padding: 60px 20px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    background: #0a0a0a !important;
}

.labs-story h2 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: 24px !important;
    color: #ffffff !important;
    margin: 0 0 20px !important;
}

.labs-story p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #a0a0a0 !important;
    margin: 0 !important;
}

/* ==========================================================================
   SECTION 3: PAGE COLLECTION EVOLVE LABS
   ========================================================================== */

/* --------------------------------------------------------------------------
   RESET & BASE - Section Evolve Labs
   -------------------------------------------------------------------------- */
.evolve-labs-section {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
    font-family: "Manrope", sans-serif !important;
    line-height: 1.7 !important;
    padding: 0 !important;
    margin: 0 -15px !important;
    width: calc(100% + 30px) !important;
}

.evolve-labs-section * {
    box-sizing: border-box !important;
}

.evolve-labs-section img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 4px !important;
}

/* --------------------------------------------------------------------------
   HERO SECTION (Page collection - background image)
   -------------------------------------------------------------------------- */
.evolve-labs-section .labs-hero {
    position: relative !important;
    min-height: 0 !important;
    height: auto !important;
    aspect-ratio: 1900/633 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #1a1a1a url('/img/cms/evolve-labs-hero.jpg') no-repeat center center !important;
    background-size: 100% auto !important;
    background-position: center !important;
    max-width: none !important;
}

.labs-hero-content {
    display: none !important;
}

.labs-hero h1 span {
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.labs-hero-tagline {
    font-size: clamp(16px, 2.5vw, 22px) !important;
    color: #a0a0a0 !important;
    font-weight: 400 !important;
    margin: 0 auto !important;
    max-width: 600px !important;
}

/* --------------------------------------------------------------------------
   ABOUT SECTION
   -------------------------------------------------------------------------- */
.labs-about {
    padding: 100px 20px !important;
    background: #141414 !important;
    position: relative !important;
}

.labs-about::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, #2a2a2a 50%, transparent 100%) !important;
}

.labs-container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.labs-about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: center !important;
}

.labs-about-content h2 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: clamp(32px, 5vw, 52px) !important;
    font-weight: 500 !important;
    line-height: 1.1 !important;
    margin: 0 0 30px 0 !important;
    color: #ffffff !important;
}

.labs-about-content h2 .highlight {
    color: #FB613B !important;
}

.labs-about-content p {
    font-size: 17px !important;
    line-height: 1.8 !important;
    color: #a0a0a0 !important;
    margin: 0 0 25px 0 !important;
}

.labs-features {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
    margin-top: 40px !important;
}

.labs-feature {
    display: flex !important;
    align-items: flex-start !important;
    gap: 15px !important;
}

.labs-feature-icon {
    width: 64px !important;
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.labs-feature-icon img {
    width: 56px !important;
    height: 56px !important;
}

.labs-feature-text h4 {
    font-family: "Manrope", sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0 0 5px 0 !important;
    color: #ffffff !important;
}

.labs-feature-text p {
    font-size: 13px !important;
    margin: 0 !important;
    color: #a0a0a0 !important;
}

.labs-about-visual {
    position: relative !important;
}

.labs-about-image {
    position: relative !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4) !important;
}

.labs-about-image::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.labs-about-image img {
    width: 100% !important;
    display: block !important;
    border-radius: 12px !important;
}

/* --------------------------------------------------------------------------
   PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.labs-products {
    padding: 100px 20px !important;
    background: #0a0a0a !important;
    position: relative !important;
}

.labs-products::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent 0%, #2a2a2a 50%, transparent 100%) !important;
}

.labs-section-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.labs-section-header h2 {
    font-family: "Protest strike", "Manrope", sans-serif !important;
    font-size: clamp(32px, 5vw, 48px) !important;
    font-weight: 500 !important;
    margin: 0 0 15px 0 !important;
    color: #ffffff !important;
}

.labs-section-header p {
    font-size: 17px !important;
    color: #a0a0a0 !important;
    margin: 0 auto !important;
    max-width: 600px !important;
}

.labs-products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
}

/* --------------------------------------------------------------------------
   PRODUCT CARD
   -------------------------------------------------------------------------- */
.labs-product-card {
    background: #1a1a1a !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #2a2a2a !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

.labs-product-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(251, 97, 59, 0.3) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(251, 97, 59, 0.1) !important;
}

.labs-product-card--blue:hover {
    border-color: rgba(59, 130, 246, 0.4) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.1) !important;
}

.labs-product-card--purple:hover {
    border-color: rgba(139, 92, 246, 0.4) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(139, 92, 246, 0.1) !important;
}

.labs-product-card--gold:hover {
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.1) !important;
}

.labs-product-image {
    position: relative !important;
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
    background: transparent !important;
}

.labs-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.5s ease !important;
    border-radius: 0 !important;
}

.labs-product-card:hover .labs-product-image img {
    transform: scale(1.05) !important;
}

.labs-product-badge {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    padding: 6px 14px !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    border-radius: 4px !important;
    z-index: 2 !important;
}

.labs-product-badge--limited {
    background: linear-gradient(135deg, #FB613B 0%, #C34B2E 100%) !important;
    color: #ffffff !important;
}

.labs-product-badge--blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
}

.labs-product-badge--purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%) !important;
}

.labs-product-badge--gold {
    background: linear-gradient(135deg, #d4af37 0%, #b8960c 100%) !important;
    color: #1a1a1a !important;
}

.labs-product-content {
    padding: 25px !important;
}

.labs-product-title {
    font-family: "Manrope", sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
}

.labs-product-subtitle {
    font-size: 13px !important;
    color: #a0a0a0 !important;
    margin: 0 0 20px 0 !important;
    line-height: 1.6 !important;
}

.labs-product-price {
    display: flex !important;
    align-items: baseline !important;
    gap: 8px !important;
    margin-bottom: 20px !important;
}

.labs-product-price-current {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #FB613B !important;
    font-family: "Manrope", sans-serif !important;
}

.labs-product-card--blue .labs-product-price-current {
    color: #3b82f6 !important;
}

.labs-product-card--purple .labs-product-price-current {
    color: #8b5cf6 !important;
}

.labs-product-card--gold .labs-product-price-current {
    color: #d4af37 !important;
}

.labs-product-price-from {
    font-size: 12px !important;
    color: #a0a0a0 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.labs-product-cta {
    display: block !important;
    width: 100% !important;
    padding: 14px 24px !important;
    background: transparent !important;
    color: #ffffff !important;
    font-family: "Manrope", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: 2px solid #2a2a2a !important;
    border-radius: 4px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.labs-product-cta:hover {
    background: #FB613B !important;
    border-color: #FB613B !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.labs-product-card--blue .labs-product-cta:hover {
    background: #3b82f6 !important;
    border-color: #3b82f6 !important;
}

.labs-product-card--purple .labs-product-cta:hover {
    background: #8b5cf6 !important;
    border-color: #8b5cf6 !important;
}

.labs-product-card--gold .labs-product-cta:hover {
    background: #d4af37 !important;
    border-color: #d4af37 !important;
    color: #1a1a1a !important;
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .labs-about-grid {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    
    .labs-about-visual {
        order: -1 !important;
    }
    
    .labs-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }
    
    .labs-component {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .labs-component:nth-child(even) {
        direction: ltr !important;
    }
    
    .labs-specs-list {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .evolve-labs-section .labs-hero {
        min-height: auto !important;
        height: 400px !important;
        padding: 60px 15px !important;
    }
    
    .labs-about {
        padding: 60px 15px !important;
    }
    
    .labs-products {
        padding: 60px 15px !important;
    }
    
    .labs-features {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .labs-products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .labs-product-content {
        padding: 20px !important;
    }
    
    .labs-product-title {
        font-size: 18px !important;
    }
    
    .labs-product-price-current {
        font-size: 22px !important;
    }
    
    .evolve-labs-section {
        margin: 0 -5px !important;
        width: calc(100% + 10px) !important;
    }
    
    .labs-specs-box {
        padding: 25px !important;
    }
    
    .labs-component {
        padding: 40px 15px !important;
    }
    
    .labs-header {
        padding: 30px 15px 15px !important;
    }
    
    .labs-hero {
        padding: 0 15px !important;
    }
}

@media (max-width: 480px) {
    .labs-badge {
        font-size: 10px !important;
        padding: 6px 16px !important;
        letter-spacing: 2px !important;
    }
    
    .labs-section-header {
        margin-bottom: 40px !important;
    }
    
    .labs-about-grid {
        gap: 30px !important;
    }
}
