/* =========================================================
   SR3D CONCEPT
   CSS GLOBAL COMPLET
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --primary: #355C1A;
    --primary-light: #4B7628;
    --primary-soft: #6D8E4A;
    --primary-dark: #243F12;

    --background: #101310;
    --background-soft: #151815;
    --background-light: #1B201A;

    --surface: rgba(255, 255, 255, 0.035);
    --surface-hover: rgba(53, 92, 26, 0.08);

    --white: #FFFFFF;

    --text: #F4F5F1;
    --text-soft: #B3B9AF;
    --text-muted: #7F887C;

    --border: rgba(255, 255, 255, 0.08);
    --border-primary: rgba(53, 92, 26, 0.35);

    --shadow:
        0 30px 70px rgba(0, 0, 0, 0.35);

    --shadow-soft:
        0 12px 35px rgba(0, 0, 0, 0.22);

    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;
}


/* =========================================================
   RESET
========================================================= */

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

html {
    width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100vh;

    overflow-x: hidden;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--background);
    color: var(--text);

    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


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

.site-header {
    position: sticky;

    top: 0;

    z-index: 1000;

    width: 100%;

    background:
        rgba(16, 19, 16, 0.94);

    border-bottom:
        1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-container {
    width:
        min(1400px, calc(100% - 50px));

    min-height: 82px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.logo-icon {
    width: 46px;
    height: 46px;

    position: relative;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border-radius: 12px;

    background: #FFFFFF;

    border:
        1px solid rgba(53, 92, 26, 0.30);

    box-shadow:
        0 10px 30px rgba(53, 92, 26, 0.25);
}

.logo-icon img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.12);
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    font-size: 20px;

    letter-spacing: 0.5px;
}

.logo-text span {
    margin-top: 5px;

    color: var(--text-soft);

    font-size: 11px;

    text-transform: uppercase;
    letter-spacing: 2px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;
}

.navigation a {
    position: relative;

    color: var(--text-soft);

    font-size: 14px;
    font-weight: 600;

    transition: color 0.25s ease;
}

.navigation a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    border-radius: 20px;

    background: var(--primary-light);

    transition: width 0.25s ease;
}

.navigation a:hover,
.navigation a.active {
    color: var(--white);
}

.navigation a:hover::after,
.navigation a.active::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}

.language-toggle,
.footer-language,
.construction-language {
    padding: 10px 13px;

    border: 1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.035);

    color: var(--text-soft);

    cursor: pointer;

    transition: 0.25s ease;
}

.language-toggle:hover,
.footer-language:hover,
.construction-language:hover {
    color: var(--white);

    border-color: var(--border-primary);

    background:
        rgba(53, 92, 26, 0.08);
}

.language-active {
    color: var(--primary-light);

    font-weight: 800;
}

.language-separator {
    margin: 0 3px;

    color: var(--text-muted);
}

.header-quote-button {
    padding: 11px 18px;

    border-radius: 10px;

    background: var(--primary);

    color: var(--white);

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}

.header-quote-button:hover {
    background: var(--primary-light);

    transform: translateY(-1px);

    box-shadow:
        0 12px 25px rgba(53, 92, 26, 0.20);
}


/* =========================================================
   MENU MOBILE
========================================================= */

.menu-toggle {
    width: 45px;
    height: 45px;

    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 5px;

    border:
        1px solid var(--border);

    border-radius: 10px;

    background:
        rgba(255, 255, 255, 0.03);

    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;

    background: var(--white);

    border-radius: 20px;

    transition: 0.25s ease;
}


/* =========================================================
   SECTIONS GLOBALES
========================================================= */

.section {
    padding: 110px 0;
}

.section-container {
    width:
        min(1200px, calc(100% - 50px));

    margin: 0 auto;
}

.section-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--primary-light);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2.5px;
}

.section-heading h2,
.section-title-center h2,
.shop-preview-content h2,
.cta-card h2 {
    font-size:
        clamp(34px, 5vw, 55px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.section-title-center {
    max-width: 760px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-title-center p {
    max-width: 650px;

    margin: 20px auto 0;

    color: var(--text-soft);

    font-size: 17px;
}


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

.button {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 23px;

    border-radius: 11px;

    font-size: 14px;
    font-weight: 800;

    transition: 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--primary);

    color: var(--white);
}

.button-primary:hover {
    background: var(--primary-light);

    box-shadow:
        0 15px 35px rgba(53, 92, 26, 0.22);
}

.button-secondary {
    border:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.03);

    color: var(--white);
}

.button-secondary:hover {
    border-color: var(--border-primary);

    background:
        rgba(53, 92, 26, 0.07);
}

.button-light {
    background: var(--white);

    color: var(--primary-dark);
}


/* =========================================================
   HERO ACCUEIL
========================================================= */

.hero {
    position: relative;

    width: 100%;

    min-height:
        calc(100vh - 82px);

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 5%,
            rgba(53, 92, 26, 0.16),
            transparent 32%
        ),

        radial-gradient(
            circle at 92% 80%,
            rgba(53, 92, 26, 0.08),
            transparent 35%
        ),

        var(--background);
}

.hero-container {
    position: relative;

    z-index: 2;

    width:
        min(1400px, calc(100% - 50px));

    margin: 0 auto;

    padding: 90px 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 80px;
}

.hero-content {
    min-width: 0;

    position: relative;

    z-index: 5;
}

.hero-badge {
    display: inline-flex;

    padding: 8px 15px;

    margin-bottom: 24px;

    border:
        1px solid rgba(75, 118, 40, 0.30);

    border-radius: 50px;

    background:
        rgba(53, 92, 26, 0.10);

    color: var(--primary-light);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;

    font-size:
        clamp(52px, 7vw, 92px);

    line-height: 0.97;

    letter-spacing: -4px;

    overflow-wrap: break-word;
}

.hero-highlight {
    display: block;

    color: var(--primary-light);
}

.hero-description {
    max-width: 650px;

    margin-top: 30px;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;

    gap: 22px;

    margin-top: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;

    gap: 9px;

    color: var(--text-muted);

    font-size: 12px;
}

.feature-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--primary-light);

    box-shadow:
        0 0 10px rgba(75, 118, 40, 0.45);
}


/* =========================================================
   HERO VISUEL
========================================================= */

.hero-visual {
    position: relative;

    min-width: 0;

    min-height: 580px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: relative;

    width:
        min(100%, 500px);

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 32px;

    background:
        radial-gradient(
            circle at center,
            rgba(53, 92, 26, 0.15),
            transparent 50%
        ),

        rgba(255, 255, 255, 0.025);

    box-shadow: var(--shadow);
}

.visual-grid {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );

    background-size: 35px 35px;
}

.visual-object {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    perspective: 900px;
}

.cube {
    width: 210px;
    height: 210px;

    padding: 3px;

    border-radius: 44px;

    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        30px 40px 80px rgba(0, 0, 0, 0.45);

    animation:
        cubeFloat 5s ease-in-out infinite;
}

.cube-inner {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 41px;

    background:
        linear-gradient(
            145deg,
            #20271B,
            #10140E
        );

    color: var(--primary-light);

    font-size: 38px;
    font-weight: 900;

    letter-spacing: -2px;
}

@keyframes cubeFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-8deg);
    }

    50% {
        transform:
            translateY(-13px)
            rotate(-4deg);
    }
}


/* =========================================================
   CARTES FLOTTANTES
========================================================= */

.floating-card {
    position: absolute;

    z-index: 6;

    min-width: 120px;

    padding: 15px 18px;

    display: flex;
    flex-direction: column;

    border:
        1px solid var(--border);

    border-radius: 15px;

    background:
        rgba(24, 29, 22, 0.90);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    box-shadow: var(--shadow-soft);

    color: var(--text-muted);

    font-size: 11px;
}

.floating-card strong {
    color: var(--white);

    font-size: 20px;
}

.floating-card-one {
    top: 70px;

    right: -15px;
}

.floating-card-two {
    bottom: 80px;

    left: -20px;
}


/* =========================================================
   DÉCORATIONS HERO
========================================================= */

.hero-background-decoration,
.hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: 0;
}

.hero-decoration-one {
    width: 500px;
    height: 500px;

    top: -250px;
    right: -150px;

    border:
        1px solid rgba(53, 92, 26, 0.13);
}

.hero-decoration-two {
    width: 800px;
    height: 800px;

    bottom: -500px;
    left: -350px;

    border:
        1px solid rgba(53, 92, 26, 0.08);
}


/* =========================================================
   INTRODUCTION
========================================================= */

.introduction-section {
    border-top:
        1px solid var(--border);
}

.introduction-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 100px;

    align-items: start;
}

.introduction-content {
    max-width: 650px;
}

.introduction-content p {
    color: var(--text-soft);

    font-size: 19px;

    line-height: 1.8;
}

.text-link {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 30px;

    color: var(--primary-light);

    font-size: 14px;
    font-weight: 800;
}

.text-link strong {
    transition:
        transform 0.25s ease;
}

.text-link:hover strong {
    transform:
        translateX(5px);
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background:
        rgba(255, 255, 255, 0.013);

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}

.service-card {
    position: relative;

    min-height: 330px;

    padding: 30px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-medium);

    background: var(--surface);

    transition: 0.3s ease;
}

.service-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-primary);

    background:
        var(--surface-hover);
}

.service-number {
    position: absolute;

    top: 22px;
    right: 24px;

    color:
        rgba(255, 255, 255, 0.14);

    font-size: 11px;
    font-weight: 800;
}

.service-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(75, 118, 40, 0.25);

    border-radius: 14px;

    background:
        rgba(53, 92, 26, 0.10);

    color: var(--primary-light);

    font-size: 23px;
}

.service-card h3 {
    margin-bottom: 15px;

    font-size: 20px;
}

.service-card p {
    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PROCESSUS
========================================================= */

.process-grid {
    display: grid;

    grid-template-columns:
        1fr 90px 1fr 90px 1fr;

    align-items: start;
}

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

.process-number {
    width: 56px;
    height: 56px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid rgba(75, 118, 40, 0.35);

    border-radius: 50%;

    color: var(--primary-light);

    font-size: 12px;
    font-weight: 900;
}

.process-item h3 {
    margin-bottom: 10px;

    font-size: 19px;
}

.process-item p {
    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}

.process-line {
    height: 1px;

    margin-top: 28px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(75, 118, 40, 0.38),
            transparent
        );
}


/* =========================================================
   BOUTIQUE PREVIEW ACCUEIL
========================================================= */

.shop-preview-section {
    padding-top: 40px;
}

.shop-preview {
    min-height: 500px;

    padding: 60px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    align-items: center;

    gap: 60px;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-large);

    background:
        linear-gradient(
            135deg,
            rgba(53, 92, 26, 0.12),
            rgba(255, 255, 255, 0.015)
        );
}

.shop-preview-content p {
    max-width: 550px;

    margin: 22px 0 30px;

    color: var(--text-soft);

    font-size: 16px;
}

.shop-preview-visual {
    position: relative;

    min-height: 370px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-preview-visual > span {
    position: relative;

    z-index: 4;

    color: var(--primary-light);

    font-size: 55px;
    font-weight: 900;

    letter-spacing: -3px;
}

.shop-square {
    position: absolute;

    border:
        1px solid rgba(75, 118, 40, 0.20);

    border-radius: 25px;
}

.shop-square-one {
    width: 260px;
    height: 260px;

    background:
        rgba(53, 92, 26, 0.12);

    transform:
        rotate(10deg);
}

.shop-square-two {
    width: 210px;
    height: 210px;

    transform:
        rotate(-8deg);
}

.shop-square-three {
    width: 155px;
    height: 155px;

    border-color:
        rgba(75, 118, 40, 0.35);

    transform:
        rotate(20deg);
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding-top: 30px;
}

.cta-card {
    padding: 60px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-radius:
        var(--radius-large);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );

    box-shadow:
        0 25px 60px rgba(53, 92, 26, 0.18);
}

.cta-card .section-label {
    color:
        rgba(255, 255, 255, 0.68);
}

.cta-card p {
    max-width: 600px;

    margin-top: 15px;

    color:
        rgba(255, 255, 255, 0.78);
}


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

.site-footer {
    margin-top: 50px;

    border-top:
        1px solid var(--border);

    background: #0D0F0C;
}

.footer-container {
    width:
        min(1200px, calc(100% - 50px));

    margin: 0 auto;

    padding: 70px 0;

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1.4fr;

    gap: 50px;
}

.footer-brand p {
    max-width: 310px;

    margin-top: 22px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 10px;
}

.footer-column h4 {
    margin-bottom: 8px;

    color: var(--white);

    font-size: 13px;
}

.footer-column a {
    color: var(--text-muted);

    font-size: 13px;

    transition: 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    width:
        min(1200px, calc(100% - 50px));

    min-height: 70px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    border-top:
        1px solid var(--border);

    color: var(--text-muted);

    font-size: 11px;
}


/* =========================================================
   INDEX.HTML - PAGE EN CONSTRUCTION
========================================================= */

.construction-body {
    min-height: 100vh;

    background:
        radial-gradient(
            circle at top left,
            rgba(53, 92, 26, 0.15),
            transparent 35%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(53, 92, 26, 0.08),
            transparent 40%
        ),

        var(--background);
}

.construction-page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}

.construction-container {
    width: 100%;
    max-width: 900px;

    padding: 60px 45px;

    text-align: center;

    background:
        rgba(255, 255, 255, 0.035);

    border:
        1px solid var(--border);

    border-radius: 22px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.40);
}

.construction-brand {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 45px;
}

.construction-logo {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-bottom: 18px;
}

.construction-logo-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            var(--primary-light),
            var(--primary-dark)
        );

    color: var(--white);

    font-size: 19px;
    font-weight: 900;
}

.construction-logo-text {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    line-height: 1;
}

.construction-logo-text strong {
    font-size: 22px;
}

.construction-logo-text span {
    margin-top: 5px;

    color: var(--text-soft);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.construction-badge {
    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 22px;

    border-radius: 50px;

    background:
        rgba(53, 92, 26, 0.10);

    border:
        1px solid rgba(75, 118, 40, 0.32);

    color: var(--primary-light);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.construction-brand .construction-badge {
    margin-bottom: 0;
}

.construction-title {
    max-width: 800px;

    margin: 0 auto 25px;

    font-size:
        clamp(42px, 8vw, 78px);

    line-height: 1;

    letter-spacing: -3px;
}

.construction-highlight {
    color: var(--primary-light);
}

.construction-divider {
    width: 60px;
    height: 3px;

    margin: 0 auto 35px;

    border-radius: 50px;

    background: var(--primary);
}

.construction-description {
    max-width: 650px;

    margin: 0 auto 40px;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.7;
}

.construction-progress-section {
    max-width: 550px;

    margin: 0 auto 45px;
}

.construction-progress-info {
    display: flex;
    justify-content: space-between;

    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 13px;
}

.construction-progress-bar {
    width: 100%;
    height: 8px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.08);

    border-radius: 50px;
}

.construction-progress {
    width: 70%;
    height: 100%;

    border-radius: 50px;

    background:
        linear-gradient(
            90deg,
            var(--primary-dark),
            var(--primary-light)
        );

    box-shadow:
        0 0 20px rgba(53, 92, 26, 0.40);

    animation:
        constructionProgressAnimation 1.6s ease-out;
}

@keyframes constructionProgressAnimation {
    from {
        width: 0;
    }

    to {
        width: 70%;
    }
}

.construction-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 15px;
}

.construction-contact-text {
    color: var(--text-muted);

    font-size: 14px;
}

.construction-contact a {
    color: var(--white);

    font-weight: 700;
}

.construction-contact a:hover {
    color: var(--primary-light);
}

.construction-language {
    margin-top: 30px;
}

.construction-footer {
    margin-top: 35px;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   BOUTIQUE - HERO
========================================================= */

.shop-hero {
    position: relative;

    overflow: hidden;

    padding: 110px 0 90px;

    border-bottom:
        1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(53, 92, 26, 0.18),
            transparent 45%
        ),

        var(--background);
}

.shop-hero-container {
    position: relative;

    z-index: 2;

    width:
        min(900px, calc(100% - 40px));

    margin: 0 auto;

    text-align: center;
}

.shop-hero h1 {
    font-size:
        clamp(52px, 8vw, 90px);

    line-height: 1;

    letter-spacing: -4px;
}

.shop-hero p {
    max-width: 680px;

    margin: 25px auto 0;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.75;
}

.shop-hero-decoration {
    position: absolute;

    width: 700px;
    height: 700px;

    top: -500px;
    left: 50%;

    transform: translateX(-50%);

    border:
        1px solid rgba(75, 118, 40, 0.15);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   BOUTIQUE - STATS
========================================================= */

.shop-stats {
    display: flex;
    justify-content: center;

    gap: 50px;

    margin-top: 50px;
}

.shop-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop-stat strong {
    color: var(--primary-light);

    font-size: 22px;
}

.shop-stat span {
    color: var(--text-muted);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.4px;
}


/* =========================================================
   BOUTIQUE - RECHERCHE / FILTRES
========================================================= */

.shop-controls-section {
    padding: 30px 0;

    border-bottom:
        1px solid var(--border);

    background:
        var(--background-soft);
}

.shop-controls {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 25px;
}

.shop-search {
    width: 100%;
    max-width: 360px;

    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 0 15px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.025);
}

.shop-search-icon {
    color: var(--text-muted);

    font-size: 22px;
}

.shop-search input {
    width: 100%;

    border: 0;
    outline: 0;

    background: transparent;

    color: var(--white);

    font-size: 14px;
}

.shop-search input::placeholder {
    color: var(--text-muted);
}

.shop-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;

    gap: 8px;
}

.shop-filter {
    padding: 9px 14px;

    border:
        1px solid var(--border);

    border-radius: 50px;

    background: transparent;

    color: var(--text-muted);

    font-size: 12px;

    cursor: pointer;

    transition: 0.25s ease;
}

.shop-filter:hover {
    color: var(--white);

    border-color:
        var(--border-primary);
}

.shop-filter.active {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--white);
}


/* =========================================================
   BOUTIQUE - PRODUITS
========================================================= */

.shop-products-section {
    padding-top: 80px;
    padding-bottom: 100px;
}

.shop-products-heading {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 30px;

    margin-bottom: 45px;
}

.shop-products-heading h2 {
    font-size:
        clamp(34px, 5vw, 55px);

    line-height: 1.1;

    letter-spacing: -1.5px;
}

.product-count {
    color: var(--text-muted);

    font-size: 13px;
}


/* =========================================================
   BOUTIQUE - GRILLE
========================================================= */

.products-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;

    align-items: stretch;
}


/* =========================================================
   BOUTIQUE - CARTE PRODUIT
========================================================= */

.product-card {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background: var(--surface);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-primary);

    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   BOUTIQUE - ZONE PHOTO
========================================================= */

.product-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 3;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 18px;

    background:
        radial-gradient(
            circle at center,
            rgba(53, 92, 26, 0.14),
            transparent 62%
        ),

        var(--background-light);

    border-bottom:
        1px solid var(--border);
}


/* =========================================================
   BOUTIQUE - VRAIES PHOTOS
========================================================= */

.product-photo {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    border-radius: 12px;

    transition:
        transform 0.35s ease;
}

.product-card:hover .product-photo {
    transform:
        scale(1.025);
}


/* =========================================================
   BOUTIQUE - PLACEHOLDER
========================================================= */

.product-placeholder {
    width: 95px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        2px solid var(--primary);

    border-radius: 25px;

    background:
        rgba(53, 92, 26, 0.08);

    color: var(--primary-light);

    font-size: 21px;
    font-weight: 900;

    transform:
        rotate(-5deg);
}


/* =========================================================
   BOUTIQUE - NUMÉRO / BADGE
========================================================= */

.product-number {
    position: absolute;

    z-index: 5;

    top: 14px;
    left: 14px;

    padding: 5px 8px;

    border-radius: 7px;

    background:
        rgba(16, 19, 16, 0.75);

    color: var(--text-soft);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.product-badge {
    position: absolute;

    z-index: 5;

    top: 13px;
    right: 13px;

    padding: 6px 9px;

    border-radius: 50px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1px;
}

.product-badge.free {
    background:
        rgba(53, 92, 26, 0.85);

    border:
        1px solid rgba(75, 118, 40, 0.65);

    color: #FFFFFF;
}


/* =========================================================
   BOUTIQUE - CONTENU PRODUIT
========================================================= */

.product-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 22px;
}

.product-category {
    display: block;

    margin-bottom: 8px;

    color: var(--primary-light);

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 1.6px;
}

.product-content h3 {
    margin-bottom: 10px;

    font-size: 17px;

    line-height: 1.35;
}

.product-content p {
    margin-bottom: 20px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   BOUTIQUE - BAS DE CARTE
========================================================= */

.product-footer {
    margin-top: auto;

    padding-top: 18px;

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 15px;

    border-top:
        1px solid var(--border);
}

.product-price {
    color: var(--white);

    font-size: 13px;
}

.product-button {
    color: var(--primary-light);

    font-size: 12px;
    font-weight: 800;

    transition: 0.25s ease;
}

.product-button:hover {
    color: var(--white);
}


/* =========================================================
   BOUTIQUE - AUCUN RÉSULTAT
========================================================= */

.shop-no-results {
    display: none;

    padding: 80px 20px;

    text-align: center;

    color: var(--text-muted);
}

.shop-no-results strong {
    display: block;

    color: var(--white);

    font-size: 21px;

    margin-bottom: 5px;
}

.shop-custom-section {
    padding-top: 30px;
}


/* =========================================================
   RESPONSIVE - 1200px
========================================================= */

@media (max-width: 1200px) {

    .products-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}


/* =========================================================
   RESPONSIVE - 1100px
========================================================= */

@media (max-width: 1100px) {

    .navigation {
        gap: 18px;
    }

    .header-quote-button {
        display: none;
    }

    .hero-container {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.85fr);

        gap: 35px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .footer-container {
        grid-template-columns:
            2fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column:
            1 / -1;
    }
}


/* =========================================================
   RESPONSIVE - MOBILE / TABLETTE
========================================================= */

@media (max-width: 850px) {

    .header-container {
        width:
            calc(100% - 30px);

        min-height: 72px;
    }

    .menu-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;

        top: 72px;

        left: 15px;
        right: 15px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 20px;

        border:
            1px solid var(--border);

        border-radius: 18px;

        background:
            rgba(17, 20, 16, 0.98);

        box-shadow: var(--shadow);

        opacity: 0;
        visibility: hidden;

        transform:
            translateY(-12px);

        transition: 0.25s ease;
    }

    .navigation.open {
        opacity: 1;
        visibility: visible;

        transform:
            translateY(0);
    }

    .navigation a {
        padding: 14px 12px;

        border-radius: 9px;
    }

    .navigation a:hover,
    .navigation a.active {
        background:
            rgba(53, 92, 26, 0.10);
    }

    .navigation a::after {
        display: none;
    }


    /* HERO ACCUEIL */

    .hero {
        min-height: auto;

        display: block;
    }

    .hero-container {
        width:
            calc(100% - 30px);

        margin: 0 auto;

        padding: 25px 0 75px;

        grid-template-columns: 1fr;

        gap: 55px;
    }

    .hero-content {
        width: 100%;

        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }

    .hero-description {
        max-width: 620px;

        margin: 28px auto 0;

        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;

        max-width: 440px;

        min-height: 440px;

        margin: 0 auto;
    }

    .visual-card {
        width:
            min(90%, 420px);

        margin: 0 auto;
    }

    .floating-card-one {
        right: 0;
    }

    .floating-card-two {
        left: 0;
    }


    /* INTRO / PROCESS */

    .introduction-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .process-line {
        width: 1px;
        height: 50px;

        margin: 0 auto;

        background:
            linear-gradient(
                transparent,
                rgba(75, 118, 40, 0.38),
                transparent
            );
    }


    /* SHOP PREVIEW */

    .shop-preview {
        grid-template-columns: 1fr;

        padding: 45px;
    }

    .shop-preview-content {
        text-align: center;
    }

    .shop-preview-content p {
        margin-left: auto;
        margin-right: auto;
    }


    /* CTA */

    .cta-card {
        flex-direction: column;

        align-items: flex-start;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns:
            1fr 1fr;
    }

    .footer-brand {
        grid-column:
            1 / -1;
    }


    /* BOUTIQUE */

    .shop-hero {
        padding: 65px 0 60px;
    }

    .shop-controls {
        flex-direction: column;

        align-items: stretch;
    }

    .shop-search {
        max-width: 100%;
    }

    .shop-filters {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }
}


/* =========================================================
   RESPONSIVE - PETIT MOBILE
========================================================= */

@media (max-width: 600px) {

    .section {
        padding: 20px 0;
    }

    .section-container {
        width:
            calc(100% - 30px);
    }


    /* LOGO */

    .logo-icon {
        width: 41px;
        height: 41px;

        border-radius: 11px;
    }

    .logo-text strong {
        font-size: 17px;
    }

    .language-toggle {
        padding: 9px;

        font-size: 12px;
    }


    /* HERO ACCUEIL */

    .hero-container {
        width:
            calc(100% - 28px);

        padding: 25px 0 65px;

        gap: 45px;
    }

    .hero-badge {
        max-width: 100%;

        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;

        font-size:
            clamp(44px, 14vw, 62px);

        line-height: 1;

        letter-spacing: -2.5px;
    }

    .hero-description {
        width: 100%;

        max-width: 500px;

        font-size: 16px;

        line-height: 1.7;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 12px;
    }

    .hero-buttons .button {
        width: 100%;

        max-width: 420px;

        margin: 0 auto;
    }

    .hero-features {
        flex-direction: column;

        align-items: center;

        gap: 10px;
    }

    .hero-feature {
        justify-content: center;

        text-align: center;
    }

    .hero-visual {
        width: 100%;

        max-width: 360px;

        min-height: 370px;
    }

    .visual-card {
        width: 88%;

        max-width: 330px;

        border-radius: 24px;
    }

    .cube {
        width: 145px;
        height: 145px;

        border-radius: 32px;
    }

    .cube-inner {
        border-radius: 29px;

        font-size: 28px;
    }

    .floating-card {
        min-width: 100px;
        max-width: 125px;

        padding: 12px;
    }

    .floating-card-one {
        top: 25px;
        right: 0;
    }

    .floating-card-two {
        bottom: 20px;
        left: 0;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }


    /* SHOP PREVIEW */

    .shop-preview {
        padding: 35px 22px;
    }

    .shop-preview-visual {
        min-height: 270px;
    }


    /* CTA */

    .cta-card {
        padding: 40px 25px;
    }


    /* FOOTER */

    .footer-container {
        width:
            calc(100% - 30px);

        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        width:
            calc(100% - 30px);

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;
    }


    /* INDEX */

    .construction-page {
        padding: 18px;
    }

    .construction-container {
        padding: 45px 22px;

        border-radius: 18px;
    }

    .construction-brand {
        margin-bottom: 35px;
    }

    .construction-logo {
        margin-bottom: 15px;
    }

    .construction-title {
        letter-spacing: -2px;
    }

    .construction-description {
        font-size: 16px;
    }


    /* BOUTIQUE */

    .shop-hero {
        padding: 45px 0;
    }

    .shop-hero h1 {
        font-size:
            clamp(43px, 14vw, 64px);

        letter-spacing: -2.5px;
    }

    .shop-hero p {
        font-size: 15px;
    }

    .shop-stats {
        gap: 25px;

        margin-top: 35px;
    }

    .shop-stat strong {
        font-size: 19px;
    }

    .shop-stat span {
        font-size: 9px;
    }

    .shop-controls-section {
        padding: 20px 0;
    }

    .shop-filters {
        justify-content: flex-start;

        overflow-x: auto;

        flex-wrap: nowrap;

        padding-bottom: 4px;
    }

    .shop-filter {
        flex-shrink: 0;
    }

    .shop-products-section {
        padding-top: 45px;
        padding-bottom: 65px;
    }

    .shop-products-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;

        margin-bottom: 30px;
    }

    .products-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .product-image {
        aspect-ratio: 4 / 3;

        padding: 15px;
    }

    .product-content {
        padding: 20px;
    }

    .product-content h3,
    .product-content p {
        min-height: 0;
    }
}
/* =========================================================
   À PROPOS - SR3D CONCEPT
========================================================= */


/* =========================================================
   HERO À PROPOS
========================================================= */

.about-hero {
    position: relative;

    overflow: hidden;

    border-bottom:
        1px solid var(--border);

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(53, 92, 26, 0.18),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 70%,
            rgba(53, 92, 26, 0.08),
            transparent 35%
        ),

        var(--background);
}


.about-hero-container {
    position: relative;

    z-index: 2;

    width:
        min(1400px, calc(100% - 50px));

    min-height:
        calc(100vh - 82px);

    margin:
        0 auto;

    padding:
        90px 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap:
        80px;
}


.about-hero-content {
    position: relative;

    z-index: 3;
}


.about-hero h1 {
    max-width:
        800px;

    font-size:
        clamp(52px, 7vw, 90px);

    line-height:
        0.98;

    letter-spacing:
        -4px;
}


.about-highlight {
    display:
        block;

    color:
        var(--primary-light);
}


.about-hero-content > p {
    max-width:
        680px;

    margin-top:
        30px;

    color:
        var(--text-soft);

    font-size:
        18px;

    line-height:
        1.8;
}


.about-hero-buttons {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        14px;

    margin-top:
        35px;
}


/* =========================================================
   VISUEL HERO
========================================================= */

.about-hero-visual {
    min-height:
        550px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.about-visual-card {
    position:
        relative;

    width:
        min(100%, 500px);

    aspect-ratio:
        1 / 1;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        35px;

    background:
        radial-gradient(
            circle at center,
            rgba(53, 92, 26, 0.18),
            transparent 58%
        ),

        rgba(255, 255, 255, 0.025);

    box-shadow:
        var(--shadow);
}


.about-grid {
    position:
        absolute;

    inset:
        0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.03) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 1px,
            transparent 1px
        );

    background-size:
        35px 35px;
}


.about-logo-mark {
    position:
        relative;

    z-index:
        2;

    width:
        210px;

    height:
        210px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border:
        2px solid var(--primary);

    border-radius:
        45px;

    background:
        linear-gradient(
            145deg,
            #20271B,
            #10140E
        );

    transform:
        rotate(-7deg);

    box-shadow:
        25px 35px 70px rgba(0,0,0,0.40);
}


.about-logo-mark span {
    color:
        var(--text-soft);

    font-size:
        22px;

    font-weight:
        800;

    letter-spacing:
        3px;
}


.about-logo-mark strong {
    color:
        var(--primary-light);

    font-size:
        58px;

    line-height:
        1;

    letter-spacing:
        -3px;
}


.about-visual-caption {
    position:
        absolute;

    z-index:
        5;

    left:
        25px;

    bottom:
        25px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        11px 15px;

    border:
        1px solid var(--border);

    border-radius:
        10px;

    background:
        rgba(16, 19, 16, 0.80);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    color:
        var(--text-soft);

    font-size:
        11px;
}


/* =========================================================
   DÉCORATIONS HERO
========================================================= */

.about-hero-decoration {
    position:
        absolute;

    border-radius:
        50%;

    pointer-events:
        none;
}


.about-decoration-one {
    width:
        500px;

    height:
        500px;

    top:
        -280px;

    right:
        -150px;

    border:
        1px solid rgba(53, 92, 26, 0.14);
}


.about-decoration-two {
    width:
        750px;

    height:
        750px;

    left:
        -400px;

    bottom:
        -500px;

    border:
        1px solid rgba(53, 92, 26, 0.08);
}


/* =========================================================
   INTRO
========================================================= */

.about-intro-section {
    border-bottom:
        1px solid var(--border);
}


.about-intro-grid {
    display:
        grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap:
        100px;

    align-items:
        start;
}


.about-intro-grid h2 {
    font-size:
        clamp(36px, 5vw, 58px);

    line-height:
        1.08;

    letter-spacing:
        -2px;
}


.about-intro-text p {
    color:
        var(--text-soft);

    font-size:
        18px;

    line-height:
        1.85;
}


.about-intro-text p + p {
    margin-top:
        20px;
}


/* =========================================================
   VALEURS
========================================================= */

.about-values-section {
    background:
        rgba(255,255,255,0.012);
}


.about-values-grid {
    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        20px;
}


.about-value-card {
    position:
        relative;

    min-height:
        325px;

    padding:
        30px;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    background:
        var(--surface);

    transition:
        0.3s ease;
}


.about-value-card:hover {
    transform:
        translateY(-6px);

    border-color:
        var(--border-primary);

    background:
        var(--surface-hover);
}


.about-value-number {
    position:
        absolute;

    top:
        22px;

    right:
        24px;

    color:
        rgba(255,255,255,0.13);

    font-size:
        11px;

    font-weight:
        900;
}


.about-value-icon {
    width:
        55px;

    height:
        55px;

    margin-bottom:
        45px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(75,118,40,0.30);

    border-radius:
        15px;

    background:
        rgba(53,92,26,0.10);

    color:
        var(--primary-light);

    font-size:
        24px;
}


.about-value-card h3 {
    margin-bottom:
        14px;

    font-size:
        20px;
}


.about-value-card p {
    color:
        var(--text-soft);

    font-size:
        14px;

    line-height:
        1.75;
}


/* =========================================================
   PROCESSUS
========================================================= */

.about-process-section {
    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}


.about-process-grid {
    display:
        grid;

    grid-template-columns:
        1fr 55px 1fr 55px 1fr 55px 1fr;

    align-items:
        center;

    gap:
        10px;
}


.about-process-item {
    min-height:
        260px;

    padding:
        28px;

    border:
        1px solid var(--border);

    border-radius:
        18px;

    background:
        rgba(255,255,255,0.025);
}


.about-process-number {
    display:
        inline-flex;

    margin-bottom:
        30px;

    color:
        var(--primary-light);

    font-size:
        12px;

    font-weight:
        900;

    letter-spacing:
        1px;
}


.about-process-item h3 {
    margin-bottom:
        12px;

    font-size:
        20px;
}


.about-process-item p {
    color:
        var(--text-soft);

    font-size:
        13px;

    line-height:
        1.75;
}


.about-process-arrow {
    color:
        var(--primary-light);

    text-align:
        center;

    font-size:
        26px;

    opacity:
        0.55;
}


/* =========================================================
   COLLECTION
========================================================= */

.about-collection-card {
    min-height:
        520px;

    padding:
        65px;

    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.9fr);

    align-items:
        center;

    gap:
        60px;

    overflow:
        hidden;

    border:
        1px solid var(--border);

    border-radius:
        30px;

    background:
        linear-gradient(
            135deg,
            rgba(53,92,26,0.12),
            rgba(255,255,255,0.015)
        );
}


.about-collection-content h2 {
    max-width:
        650px;

    font-size:
        clamp(38px, 5vw, 60px);

    line-height:
        1.08;

    letter-spacing:
        -2px;
}


.about-collection-content p {
    max-width:
        600px;

    margin:
        25px 0 30px;

    color:
        var(--text-soft);

    font-size:
        16px;

    line-height:
        1.8;
}


.about-collection-visual {
    position:
        relative;

    min-height:
        360px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.collection-orbit {
    position:
        absolute;

    border:
        1px solid rgba(75,118,40,0.25);

    border-radius:
        50%;
}


.orbit-one {
    width:
        310px;

    height:
        310px;
}


.orbit-two {
    width:
        235px;

    height:
        235px;

    transform:
        rotate(20deg);
}


.orbit-three {
    width:
        160px;

    height:
        160px;

    background:
        rgba(53,92,26,0.07);
}


.collection-center {
    position:
        relative;

    z-index:
        5;

    width:
        120px;

    height:
        120px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid var(--border-primary);

    border-radius:
        28px;

    background:
        var(--background);

    box-shadow:
        var(--shadow-soft);
}


.collection-center strong {
    color:
        var(--primary-light);

    font-size:
        26px;
}


.collection-center span {
    color:
        var(--text-muted);

    font-size:
        10px;

    letter-spacing:
        2px;
}


/* =========================================================
   CUSTOM
========================================================= */

.about-custom-section {
    padding-top:
        30px;
}


/* =========================================================
   RESPONSIVE 1100
========================================================= */

@media (max-width: 1100px) {

    .about-values-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-process-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            20px;
    }


    .about-process-arrow {
        display:
            none;
    }

}


/* =========================================================
   RESPONSIVE 850
========================================================= */

@media (max-width: 850px) {

    .about-hero-container {
        width:
            calc(100% - 30px);

        min-height:
            auto;

        padding:
            45px 0 70px;

        grid-template-columns:
            1fr;

        gap:
            50px;
    }


    .about-hero-content {
        text-align:
            center;
    }


    .about-hero h1 {
        margin:
            0 auto;
    }


    .about-hero-content > p {
        margin:
            28px auto 0;
    }


    .about-hero-buttons {
        justify-content:
            center;
    }


    .about-hero-visual {
        min-height:
            420px;
    }


    .about-visual-card {
        max-width:
            420px;
    }


    .about-intro-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }


    .about-collection-card {
        grid-template-columns:
            1fr;

        padding:
            45px;

        text-align:
            center;
    }


    .about-collection-content p {
        margin-left:
            auto;

        margin-right:
            auto;
    }

}


/* =========================================================
   RESPONSIVE 600
========================================================= */

@media (max-width: 600px) {

    .about-hero-container {
        padding:
            30px 0 55px;

        gap:
            35px;
    }


    .about-hero h1 {
        font-size:
            clamp(43px, 14vw, 62px);

        line-height:
            1;

        letter-spacing:
            -2.5px;
    }


    .about-hero-content > p {
        font-size:
            16px;

        line-height:
            1.7;
    }


    .about-hero-buttons {
        width:
            100%;

        flex-direction:
            column;
    }


    .about-hero-buttons .button {
        width:
            100%;
    }


    .about-hero-visual {
        min-height:
            350px;
    }


    .about-visual-card {
        width:
            90%;

        border-radius:
            25px;
    }


    .about-logo-mark {
        width:
            145px;

        height:
            145px;

        border-radius:
            32px;
    }


    .about-logo-mark strong {
        font-size:
            40px;
    }


    .about-logo-mark span {
        font-size:
            16px;
    }


    .about-visual-caption {
        left:
            15px;

        right:
            15px;

        bottom:
            15px;

        justify-content:
            center;

        text-align:
            center;
    }


    .about-intro-grid h2 {
        font-size:
            38px;
    }


    .about-intro-text p {
        font-size:
            16px;
    }


    .about-values-grid {
        grid-template-columns:
            1fr;
    }


    .about-value-card {
        min-height:
            auto;
    }


    .about-process-grid {
        grid-template-columns:
            1fr;

        gap:
            15px;
    }


    .about-process-item {
        min-height:
            auto;
    }


    .about-collection-card {
        padding:
            35px 22px;

        gap:
            25px;
    }


    .about-collection-content h2 {
        font-size:
            38px;
    }


    .about-collection-visual {
        min-height:
            280px;
    }


    .orbit-one {
        width:
            240px;

        height:
            240px;
    }


    .orbit-two {
        width:
            185px;

        height:
            185px;
    }


    .orbit-three {
        width:
            130px;

        height:
            130px;
    }


    .collection-center {
        width:
            100px;

        height:
            100px;
    }

}
/* =========================================================
   SOUMISSION + MERCI
   SR3D CONCEPT
========================================================= */


/* =========================================================
   HERO SOUMISSION
========================================================= */

.quote-hero {
    position: relative;

    overflow: hidden;

    padding: 100px 0 90px;

    border-bottom:
        1px solid var(--border);

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(53, 92, 26, 0.18),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(53, 92, 26, 0.08),
            transparent 35%
        ),

        var(--background);
}


.quote-hero-container {
    position: relative;

    z-index: 2;

    text-align: center;
}


.quote-hero h1 {
    max-width: 950px;

    margin: 0 auto;

    font-size:
        clamp(52px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -4px;
}


.quote-highlight {
    display: block;

    color:
        var(--primary-light);
}


.quote-hero p {
    max-width: 700px;

    margin: 30px auto 0;

    color:
        var(--text-soft);

    font-size: 18px;

    line-height: 1.8;
}


/* =========================================================
   DÉCORATION HERO
========================================================= */

.quote-hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.quote-decoration-one {
    width: 500px;
    height: 500px;

    top: -300px;
    right: -150px;

    border:
        1px solid rgba(53, 92, 26, 0.14);
}


.quote-decoration-two {
    width: 650px;
    height: 650px;

    bottom: -500px;
    left: -300px;

    border:
        1px solid rgba(53, 92, 26, 0.08);
}


/* =========================================================
   LAYOUT SOUMISSION
========================================================= */

.quote-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    align-items: start;

    gap: 80px;
}


/* =========================================================
   INFORMATION
========================================================= */

.quote-information {
    position: sticky;

    top: 130px;
}


.quote-information h2 {
    max-width: 500px;

    font-size:
        clamp(38px, 5vw, 58px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.quote-information > p {
    max-width: 550px;

    margin-top: 25px;

    color:
        var(--text-soft);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   ÉTAPES
========================================================= */

.quote-steps {
    margin-top: 50px;

    display: flex;

    flex-direction: column;

    gap: 25px;
}


.quote-step {
    display: grid;

    grid-template-columns:
        50px 1fr;

    gap: 18px;

    align-items: start;
}


.quote-step-number {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid var(--border-primary);

    border-radius: 50%;

    color:
        var(--primary-light);

    font-size: 11px;

    font-weight: 900;
}


.quote-step strong {
    display: block;

    margin-bottom: 5px;

    font-size: 15px;
}


.quote-step p {
    color:
        var(--text-muted);

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   CARTE FORMULAIRE
========================================================= */

.quote-form-card {
    padding: 45px;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.028);

    box-shadow:
        var(--shadow-soft);
}


.quote-form-heading {
    margin-bottom: 35px;
}


.quote-form-heading > span {
    color:
        var(--primary-light);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


.quote-form-heading h2 {
    margin-top: 8px;

    font-size: 34px;

    letter-spacing: -1px;
}


.quote-form-heading p {
    margin-top: 8px;

    color:
        var(--text-muted);

    font-size: 14px;
}


/* =========================================================
   FORMULAIRE
========================================================= */

.quote-form {
    display: flex;

    flex-direction: column;

    gap: 24px;
}


.form-group {
    display: flex;

    flex-direction: column;

    gap: 9px;
}


.form-group label {
    color:
        var(--text);

    font-size: 13px;

    font-weight: 700;
}


.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    padding: 15px 16px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    outline: none;

    background:
        #141814;

    color:
        var(--white);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.form-group input {
    min-height: 52px;
}


.form-group textarea {
    min-height: 170px;

    resize: vertical;

    line-height: 1.6;
}


.form-group select {
    min-height: 52px;

    cursor: pointer;
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color:
        #686F66;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color:
        var(--primary-light);

    background:
        #171C16;

    box-shadow:
        0 0 0 3px rgba(53, 92, 26, 0.12);
}


/* =========================================================
   NOTICE
========================================================= */

.quote-form-notice {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 15px;

    border:
        1px solid rgba(53, 92, 26, 0.22);

    border-radius: 11px;

    background:
        rgba(53, 92, 26, 0.06);
}


.quote-notice-icon {
    width: 22px;
    height: 22px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        var(--primary);

    color:
        var(--white);

    font-size: 11px;

    font-weight: 900;
}


.quote-form-notice p {
    color:
        var(--text-muted);

    font-size: 11px;

    line-height: 1.6;
}


/* =========================================================
   ENVOYER
========================================================= */

.quote-submit-button {
    width: 100%;

    border: 0;

    cursor: pointer;
}


.quote-required {
    color:
        var(--text-muted);

    text-align: center;

    font-size: 10px;
}


/* =========================================================
   BAS SOUMISSION
========================================================= */

.quote-bottom-section {
    padding-top: 20px;
}


.quote-bottom-card {
    padding: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    border:
        1px solid var(--border);

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(53, 92, 26, 0.10),
            rgba(255, 255, 255, 0.015)
        );
}


.quote-bottom-card h2 {
    font-size:
        clamp(30px, 4vw, 45px);

    line-height: 1.1;
}


.quote-bottom-card p {
    max-width: 600px;

    margin-top: 15px;

    color:
        var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   PAGE MERCI
========================================================= */

.thank-you-body {
    min-height: 100vh;

    background:
        var(--background);
}


.thank-you-page {
    position: relative;

    width: 100%;

    min-height: 100vh;

    padding: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 10% 10%,
            rgba(53, 92, 26, 0.18),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 90%,
            rgba(53, 92, 26, 0.08),
            transparent 40%
        ),

        var(--background);
}


/* =========================================================
   CARTE MERCI
========================================================= */

.thank-you-card {
    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 780px;

    padding: 55px 50px;

    text-align: center;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background:
        rgba(255, 255, 255, 0.032);

    backdrop-filter:
        blur(15px);

    -webkit-backdrop-filter:
        blur(15px);

    box-shadow:
        var(--shadow);
}


/* =========================================================
   LOGO MERCI
========================================================= */

.thank-you-logo {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 40px;
}


/* =========================================================
   CHECK
========================================================= */

.thank-you-check {
    width: 80px;
    height: 80px;

    margin: 0 auto 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid rgba(75, 118, 40, 0.40);

    border-radius: 50%;

    background:
        rgba(53, 92, 26, 0.10);

    box-shadow:
        0 0 35px rgba(53, 92, 26, 0.16);
}


.thank-you-check span {
    color:
        var(--primary-light);

    font-size: 35px;

    font-weight: 900;
}


/* =========================================================
   TEXTE MERCI
========================================================= */

.thank-you-card h1 {
    max-width: 650px;

    margin: 5px auto 0;

    font-size:
        clamp(45px, 7vw, 70px);

    line-height: 1;

    letter-spacing: -3px;
}


.thank-you-card h1 span {
    display: block;

    color:
        var(--primary-light);
}


.thank-you-description {
    max-width: 590px;

    margin: 28px auto 0;

    color:
        var(--text-soft);

    font-size: 16px;

    line-height: 1.75;
}


.thank-you-divider {
    width: 55px;
    height: 3px;

    margin: 32px auto;

    border-radius: 20px;

    background:
        var(--primary);
}


/* =========================================================
   COMPTEUR
========================================================= */

.thank-you-redirect {
    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 8px;

    color:
        var(--text-muted);

    font-size: 13px;
}


.thank-you-redirect strong {
    color:
        var(--primary-light);

    font-size: 22px;
}


/* =========================================================
   PROGRESSION 8 SEC
========================================================= */

.thank-you-progress {
    width: 100%;

    max-width: 400px;

    height: 5px;

    margin: 20px auto 28px;

    overflow: hidden;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.07);
}


.thank-you-progress-bar {
    width: 100%;
    height: 100%;

    border-radius: 50px;

    background:
        var(--primary-light);

    transform-origin: left;

    animation:
        thankYouCountdown 8s linear forwards;
}


@keyframes thankYouCountdown {

    from {
        transform:
            scaleX(1);
    }

    to {
        transform:
            scaleX(0);
    }

}


.thank-you-button {
    margin-top: 5px;
}


.thank-you-footer {
    margin-top: 40px;

    color:
        var(--text-muted);

    font-size: 10px;
}


/* =========================================================
   DÉCORATION MERCI
========================================================= */

.thank-you-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.thank-decoration-one {
    width: 600px;
    height: 600px;

    top: -350px;
    right: -200px;

    border:
        1px solid rgba(53, 92, 26, 0.12);
}


.thank-decoration-two {
    width: 700px;
    height: 700px;

    bottom: -450px;
    left: -300px;

    border:
        1px solid rgba(53, 92, 26, 0.07);
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 850px) {

    .quote-hero {
        padding:
            65px 0;
    }


    .quote-layout {
        grid-template-columns:
            1fr;

        gap:
            55px;
    }


    .quote-information {
        position:
            static;

        text-align:
            center;
    }


    .quote-information h2,
    .quote-information > p {
        margin-left:
            auto;

        margin-right:
            auto;
    }


    .quote-steps {
        max-width:
            600px;

        margin-left:
            auto;

        margin-right:
            auto;

        text-align:
            left;
    }


    .quote-bottom-card {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .quote-hero {
        padding:
            45px 0 50px;
    }


    .quote-hero h1 {
        font-size:
            clamp(43px, 14vw, 62px);

        line-height:
            1;

        letter-spacing:
            -2.5px;
    }


    .quote-hero p {
        font-size:
            16px;

        line-height:
            1.7;
    }


    .quote-layout {
        gap:
            40px;
    }


    .quote-information h2 {
        font-size:
            38px;
    }


    .quote-form-card {
        padding:
            30px 20px;

        border-radius:
            20px;
    }


    .quote-form-heading h2 {
        font-size:
            30px;
    }


    .quote-bottom-card {
        padding:
            35px 22px;
    }


    /* MERCI */

    .thank-you-page {
        padding:
            18px;
    }


    .thank-you-card {
        padding:
            40px 20px;

        border-radius:
            22px;
    }


    .thank-you-logo {
        margin-bottom:
            30px;
    }


    .thank-you-check {
        width:
            65px;

        height:
            65px;

        margin-bottom:
            25px;
    }


    .thank-you-check span {
        font-size:
            28px;
    }


    .thank-you-card h1 {
        font-size:
            clamp(40px, 13vw, 55px);

        letter-spacing:
            -2px;
    }


    .thank-you-description {
        font-size:
            14px;
    }

}
/* =========================================================
   TURNSTILE
========================================================= */

.turnstile-container {
    width: 100%;

    display: flex;
    justify-content: center;

    margin: 5px 0;
}
/* =========================================================
   PAGE PRODUIT - SR3D CONCEPT
========================================================= */


/* =========================================================
   SECTION PRINCIPALE
========================================================= */

.product-page-section {
    position: relative;

    padding-top: 70px;
    padding-bottom: 90px;

    border-bottom:
        1px solid var(--border);

    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(53, 92, 26, 0.12),
            transparent 35%
        ),

        var(--background);
}


/* =========================================================
   RETOUR BOUTIQUE
========================================================= */

.product-back-link {
    display: inline-flex;
    align-items: center;

    margin-bottom: 40px;

    color: var(--text-muted);

    font-size: 13px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.product-back-link:hover {
    color: var(--primary-light);

    transform:
        translateX(-3px);
}


/* =========================================================
   LAYOUT PRINCIPAL
========================================================= */

.product-page-layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.95fr);

    gap: 75px;

    align-items: start;
}


/* =========================================================
   PHOTO PRODUIT
========================================================= */

.product-page-media {
    position: relative;

    min-width: 0;
}

.product-main-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1 / 1;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 28px;

    background:
        radial-gradient(
            circle at center,
            rgba(53, 92, 26, 0.14),
            transparent 60%
        ),

        var(--background-light);

    box-shadow:
        var(--shadow-soft);
}

.product-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    border-radius: 18px;

    transition:
        transform 0.4s ease;
}

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


/* =========================================================
   BADGE GRATUIT
========================================================= */

.product-page-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 5;

    padding: 8px 14px;

    border:
        1px solid rgba(75, 118, 40, 0.55);

    border-radius: 50px;

    background:
        rgba(53, 92, 26, 0.92);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.25);

    color: var(--white);

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;
}


/* =========================================================
   CONTENU PRODUIT
========================================================= */

.product-page-content {
    min-width: 0;

    padding-top: 10px;
}

.product-page-content h1 {
    max-width: 650px;

    margin-bottom: 25px;

    font-size:
        clamp(42px, 5vw, 65px);

    line-height: 1.02;

    letter-spacing: -2.5px;
}

.product-page-description {
    max-width: 650px;

    color: var(--text-soft);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   PRIX
========================================================= */

.product-price-block {
    margin-top: 30px;
    margin-bottom: 30px;

    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top:
        1px solid var(--border);

    border-bottom:
        1px solid var(--border);
}

.product-price-label {
    color: var(--text-muted);

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.5px;
}

.product-price-free {
    color: var(--primary-light);

    font-size: 25px;
    font-weight: 900;

    letter-spacing: -0.5px;
}


/* =========================================================
   TÉLÉCHARGEMENT
========================================================= */

.product-download-box {
    padding: 27px;

    border:
        1px solid var(--border-primary);

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(53, 92, 26, 0.12),
            rgba(255, 255, 255, 0.02)
        );
}

.product-download-box h2 {
    margin-bottom: 9px;

    font-size: 21px;

    letter-spacing: -0.5px;
}

.product-download-box p {
    margin-bottom: 22px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.7;
}

.product-download-button {
    width: 100%;
}


/* =========================================================
   DÉTAILS RAPIDES
========================================================= */

.product-details-grid {
    margin-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;
}

.product-detail-item {
    min-width: 0;

    padding: 16px;

    display: flex;
    flex-direction: column;

    gap: 4px;

    border:
        1px solid var(--border);

    border-radius: 12px;

    background:
        rgba(255, 255, 255, 0.02);
}

.product-detail-item span {
    color: var(--text-muted);

    font-size: 8px;
    font-weight: 900;

    letter-spacing: 1.2px;
}

.product-detail-item strong {
    color: var(--white);

    font-size: 11px;

    overflow-wrap: break-word;
}


/* =========================================================
   SECTION INFORMATIONS
========================================================= */

.product-info-section {
    padding-top: 90px;
    padding-bottom: 90px;

    background:
        rgba(255, 255, 255, 0.012);

    border-bottom:
        1px solid var(--border);
}

.product-info-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}


/* =========================================================
   CARTES INFORMATIONS
========================================================= */

.product-info-card {
    min-width: 0;

    padding: 35px;

    border:
        1px solid var(--border);

    border-radius: 20px;

    background:
        var(--surface);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.product-info-card:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--border-primary);

    background:
        var(--surface-hover);
}

.product-info-card h2 {
    margin-bottom: 17px;

    font-size: 26px;

    letter-spacing: -0.8px;
}

.product-info-card p {
    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   LISTE IMPRESSION
========================================================= */

.product-info-list {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    list-style: none;
}

.product-info-list li {
    position: relative;

    padding-left: 20px;

    color: var(--text-muted);

    font-size: 13px;
}

.product-info-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 9px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background:
        var(--primary-light);
}


/* =========================================================
   COPYRIGHT / LICENCE
========================================================= */

.product-license-owner {
    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);

    color: var(--text-muted) !important;

    font-size: 11px !important;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 850px) {

    .product-page-section {
        padding-top: 45px;
        padding-bottom: 65px;
    }

    .product-back-link {
        margin-bottom: 30px;
    }

    .product-page-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .product-page-media {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;
    }

    .product-page-content {
        width: 100%;

        max-width: 650px;

        margin: 0 auto;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .product-page-section {
        /*
            Override du .section { padding: 20px 0; }
            déjà présent dans ton CSS mobile.
        */

        padding-top: 30px;
        padding-bottom: 55px;
    }

    .product-back-link {
        margin-bottom: 25px;

        font-size: 12px;
    }

    .product-page-layout {
        gap: 32px;
    }

    .product-main-image {
        padding: 15px;

        border-radius: 20px;
    }

    .product-main-image img {
        border-radius: 13px;
    }

    .product-page-badge {
        top: 12px;
        right: 12px;

        padding: 6px 10px;

        font-size: 8px;
    }

    .product-page-content {
        padding-top: 0;
    }

    .product-page-content h1 {
        margin-bottom: 18px;

        font-size:
            clamp(38px, 12vw, 52px);

        line-height: 1.03;

        letter-spacing: -2px;
    }

    .product-page-description {
        font-size: 14px;

        line-height: 1.75;
    }

    .product-price-block {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .product-price-free {
        font-size: 21px;
    }

    .product-download-box {
        padding: 22px 18px;
    }

    .product-download-box h2 {
        font-size: 19px;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-item {
        flex-direction: row;

        align-items: center;
        justify-content: space-between;

        gap: 15px;
    }

    .product-info-section {
        /*
            Override du .section mobile également.
        */

        padding-top: 55px;
        padding-bottom: 55px;
    }

    .product-info-grid {
        gap: 15px;
    }

    .product-info-card {
        padding: 25px 20px;
    }

    .product-info-card h2 {
        font-size: 23px;
    }

}

/* =========================================================
   PAGE PAIEMENT - SR3D CONCEPT
========================================================= */

.payment-page-section {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(75, 118, 40, 0.16),
            transparent 38%
        ),
        radial-gradient(
            circle at 10% 70%,
            rgba(53, 92, 26, 0.07),
            transparent 30%
        ),
        var(--background);
}

.payment-page-section > .container {
    width: min(980px, calc(100% - 50px));
    margin: 0 auto;
}

.payment-page-wrapper {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    padding: 60px;
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 30px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.028),
            rgba(53, 92, 26, 0.055)
        );
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28);
}

.payment-page-wrapper::before {
    content: "";
    position: absolute;
    z-index: 0;
    width: 440px;
    height: 440px;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(75, 118, 40, 0.10);
    filter: blur(6px);
    pointer-events: none;
}

.payment-page-wrapper::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 250px;
    height: 250px;
    right: -150px;
    bottom: -150px;
    border: 1px solid rgba(75, 118, 40, 0.12);
    border-radius: 50%;
    pointer-events: none;
}


/* =========================================================
   EN-TÊTE DU PAIEMENT
========================================================= */

.payment-success-header,
.payment-processing-box,
.payment-download-box,
.payment-error-box,
.payment-thank-you,
.payment-security-info {
    position: relative;
    z-index: 2;
}

.payment-success-header {
    text-align: center;
}

.payment-security-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    padding: 8px 15px;
    border: 1px solid rgba(75, 118, 40, 0.35);
    border-radius: 50px;
    background: rgba(53, 92, 26, 0.10);
    color: var(--primary-light);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.payment-status-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.payment-status-loading {
    border: 1px solid var(--border-primary);
    background: rgba(53, 92, 26, 0.08);
}

.payment-status-success {
    border: 1px solid rgba(75, 118, 40, 0.60);
    background: rgba(75, 118, 40, 0.15);
    color: var(--primary-light);
    box-shadow:
        0 0 0 12px rgba(75, 118, 40, 0.035),
        0 18px 40px rgba(0, 0, 0, 0.18);
}

.payment-status-error {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.035);
    color: var(--text-soft);
}

.payment-spinner {
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255, 255, 255, 0.10);
    border-top-color: var(--primary-light);
    border-radius: 50%;
    animation: paymentSpin 0.8s linear infinite;
}

@keyframes paymentSpin {
    to {
        transform: rotate(360deg);
    }
}

.payment-page-wrapper h1 {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: clamp(40px, 5vw, 60px);
    line-height: 1.03;
    letter-spacing: -2.4px;
    overflow-wrap: break-word;
}

.payment-status-text {
    max-width: 610px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   VÉRIFICATION EN COURS
========================================================= */

.payment-processing-box {
    margin-top: 38px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
}

.payment-processing-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 700;
}

.payment-processing-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 14px rgba(75, 118, 40, 0.40);
    animation: paymentPulse 1.4s ease-in-out infinite;
}

@keyframes paymentPulse {
    0%,
    100% {
        opacity: 0.35;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}


/* =========================================================
   BLOC DE TÉLÉCHARGEMENT
========================================================= */

.payment-download-box {
    margin-top: 42px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(75, 118, 40, 0.32);
    border-radius: 21px;
    background:
        linear-gradient(
            135deg,
            rgba(75, 118, 40, 0.13),
            rgba(255, 255, 255, 0.018)
        );
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.payment-product-card {
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
}

.payment-product-check {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(75, 118, 40, 0.24);
    border-radius: 16px;
    background: rgba(75, 118, 40, 0.15);
    color: var(--primary-light);
    font-size: 27px;
    font-weight: 900;
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.14);
}

.payment-product-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.payment-product-label {
    margin-bottom: 4px;
    color: var(--primary-light);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.payment-product-info strong {
    color: var(--white);
    font-size: 19px;
    line-height: 1.3;
    overflow-wrap: break-word;
}

.payment-product-ready {
    margin-top: 4px;
    color: var(--text-muted);
    font-size: 11px;
}

.payment-download-button {
    width: 100%;
    min-height: 60px;
    border: 1px solid rgba(75, 118, 40, 0.55);
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-dark)
        );
    color: var(--white);
    font-size: 14px;
    box-shadow:
        0 16px 35px rgba(53, 92, 26, 0.18);
}

.payment-download-button:hover {
    background:
        linear-gradient(
            135deg,
            var(--primary-light),
            var(--primary)
        );
    box-shadow:
        0 18px 40px rgba(53, 92, 26, 0.28);
}

.payment-download-meta {
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--text-muted);
    font-size: 9px;
}

.payment-download-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.payment-meta-separator {
    opacity: 0.45;
}


/* =========================================================
   MESSAGE DE REMERCIEMENT
========================================================= */

.payment-thank-you {
    margin-top: 48px;
    padding-top: 42px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.payment-thank-you .section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.payment-thank-you h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.15;
    letter-spacing: -1.3px;
}

.payment-thank-you p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.75;
}

.payment-shop-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    color: var(--primary-light);
    font-size: 12px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        color 0.25s ease;
}

.payment-shop-link:hover {
    color: var(--white);
    transform: translateX(4px);
}


/* =========================================================
   INFORMATION DE SÉCURITÉ
========================================================= */

.payment-security-info {
    max-width: 610px;
    margin: 38px auto 0;
    padding-top: 28px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid var(--border);
}

.payment-security-lock {
    flex-shrink: 0;
    font-size: 12px;
    line-height: 1.6;
}

.payment-security-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 9px;
    line-height: 1.7;
    text-align: left;
}


/* =========================================================
   ERREUR DE PAIEMENT
========================================================= */

.payment-error-box {
    margin-top: 40px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.025);
}

.payment-error-box strong {
    display: block;
    margin-bottom: 10px;
    color: var(--white);
    font-size: 17px;
}

.payment-error-box p {
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 850px) {

    .payment-page-section {
        padding: 65px 0 80px;
    }

    .payment-page-section > .container {
        width: calc(100% - 30px);
    }

    .payment-page-wrapper {
        max-width: 720px;
        padding: 48px 34px;
        border-radius: 25px;
    }

    .payment-page-wrapper h1 {
        font-size: clamp(38px, 8vw, 52px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .payment-page-section {
        padding: 35px 0 55px;
    }

    .payment-page-section > .container {
        width: calc(100% - 24px);
    }

    .payment-page-wrapper {
        padding: 34px 18px;
        border-radius: 20px;
    }

    .payment-security-badge {
        margin-bottom: 23px;
        padding: 7px 12px;
        font-size: 8px;
        letter-spacing: 1.3px;
    }

    .payment-status-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 22px;
        font-size: 30px;
    }

    .payment-spinner {
        width: 26px;
        height: 26px;
    }

    .payment-page-wrapper h1 {
        font-size: clamp(34px, 11vw, 46px);
        line-height: 1.05;
        letter-spacing: -1.8px;
    }

    .payment-status-text {
        max-width: 100%;
        font-size: 13px;
        line-height: 1.7;
    }

    .payment-processing-box {
        margin-top: 30px;
        padding: 17px 14px;
    }

    .payment-processing-line {
        gap: 9px;
        font-size: 10px;
    }

    .payment-download-box {
        margin-top: 32px;
        padding: 22px 17px;
        border-radius: 17px;
    }

    .payment-product-card {
        margin-bottom: 22px;
        gap: 13px;
    }

    .payment-product-check {
        width: 50px;
        height: 50px;
        border-radius: 14px;
        font-size: 23px;
    }

    .payment-product-info strong {
        font-size: 16px;
    }

    .payment-product-ready {
        font-size: 10px;
    }

    .payment-download-button {
        min-height: 55px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 13px;
    }

    .payment-download-meta {
        gap: 6px;
        font-size: 8px;
    }

    .payment-thank-you {
        margin-top: 38px;
        padding-top: 34px;
    }

    .payment-thank-you h2 {
        font-size: 28px;
    }

    .payment-thank-you p {
        font-size: 12px;
    }

    .payment-security-info {
        margin-top: 32px;
        padding-top: 24px;
    }

    .payment-security-info p {
        font-size: 8px;
    }

    .payment-error-box {
        margin-top: 30px;
        padding: 23px 18px;
    }

}
/* =========================================================
   INTRO / SPLASH SCREEN SR3D CONCEPT
   index2.html
========================================================= */

.intro-page {
    margin: 0;
    min-height: 100vh;
    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(53, 92, 26, 0.13) 0%,
            rgba(16, 19, 16, 0.96) 42%,
            #101310 75%
        );

    color: #ffffff;
}


/* =========================================================
   ÉCRAN
========================================================= */

.intro-screen {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 100vh;

    padding: 30px;

    box-sizing: border-box;
}


/* =========================================================
   CONTENU
========================================================= */

.intro-content {
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    opacity: 0;

    transform: translateY(12px);

    animation:
        introContentAppear
        0.75s
        cubic-bezier(0.22, 1, 0.36, 1)
        forwards;
}


/* =========================================================
   LOGO
========================================================= */

.intro-logo-wrapper {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 118px;
    height: 118px;

    margin-bottom: 22px;

    opacity: 0;

    transform: scale(0.82);

    animation:
        introLogoAppear
        0.8s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.1s
        forwards;
}


/*
   Halo derrière le logo
*/

.intro-logo-wrapper::before {
    content: "";

    position: absolute;

    width: 145px;
    height: 145px;

    border-radius: 50%;

    background:
        rgba(75, 118, 40, 0.18);

    filter: blur(25px);

    opacity: 0;

    animation:
        introGlow
        1.3s
        ease-out
        0.25s
        forwards;
}


.intro-logo {
    position: relative;
    z-index: 2;

    display: block;

    width: 118px;
    height: 118px;

    object-fit: cover;

    border-radius: 22px;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.35);
}


/* =========================================================
   NOM SR3D CONCEPT
========================================================= */

.intro-brand {
    display: flex;
    align-items: baseline;
    justify-content: center;

    gap: 9px;

    font-size: clamp(
        2rem,
        5vw,
        3.1rem
    );

    line-height: 1;

    letter-spacing: -0.04em;

    opacity: 0;

    transform: translateY(8px);

    animation:
        introTextAppear
        0.65s
        ease
        0.35s
        forwards;
}


.intro-brand-sr3d {
    font-weight: 800;
    color: rgba(255, 255, 255, 0.82);
}


.intro-brand-concept {
    font-weight: 400;
    color: #6d8e4a;
}


/* =========================================================
   LIGNE VERTE
========================================================= */

.intro-line {
    position: relative;

    width: 150px;
    height: 2px;

    margin:
        22px
        auto
        17px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.08);
}


.intro-line span {
    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #355c1a,
            #6d8e4a,
            #355c1a
        );

    transform:
        translateX(-50%);

    animation:
        introLineGrow
        0.75s
        cubic-bezier(0.22, 1, 0.36, 1)
        0.55s
        forwards;
}


/* =========================================================
   SLOGAN
========================================================= */

.intro-tagline {
    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.5;

    opacity: 0;
    transform: translateY(5px);

    animation:
        introTaglineAppear
        0.55s
        ease
        0.8s
        forwards;
}


/* =========================================================
   SORTIE AVANT REDIRECTION
========================================================= */

.intro-leaving
.intro-content {
    animation:
        introContentLeave
        0.4s
        ease
        forwards;
}


/* =========================================================
   NOSCRIPT
========================================================= */

.intro-noscript {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);
}


.intro-noscript a {
    color: #8eaa72;

    text-decoration: none;

    font-size: 0.9rem;
}


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

@keyframes introContentAppear {

    from {
        opacity: 0;

        transform:
            translateY(12px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes introLogoAppear {

    from {
        opacity: 0;

        transform:
            scale(0.82);
    }

    to {
        opacity: 1;

        transform:
            scale(1);
    }

}


@keyframes introGlow {

    from {
        opacity: 0;

        transform:
            scale(0.7);
    }

    to {
        opacity: 1;

        transform:
            scale(1);
    }

}


@keyframes introTextAppear {

    from {
        opacity: 0;

        transform:
            translateY(8px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes introLineGrow {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


@keyframes introTaglineAppear {

    from {
        opacity: 0;

        transform:
            translateY(5px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


@keyframes introContentLeave {

    from {
        opacity: 1;

        transform:
            scale(1);
    }

    to {
        opacity: 0;

        transform:
            scale(0.97);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (
    max-width: 600px
) {

    .intro-logo-wrapper {
        width: 100px;
        height: 100px;

        margin-bottom: 20px;
    }


    .intro-logo {
        width: 100px;
        height: 100px;

        border-radius: 19px;
    }


    .intro-logo-wrapper::before {
        width: 125px;
        height: 125px;
    }


    .intro-brand {
        gap: 7px;
    }


    .intro-line {
        width: 125px;

        margin-top: 19px;
    }


.intro-tagline {
    font-size: 1rem;
    letter-spacing: 0.04em;
}

}


/* =========================================================
   ACCESSIBILITÉ
   Réduit les animations si demandé par l'utilisateur
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    .intro-content,
    .intro-logo-wrapper,
    .intro-logo-wrapper::before,
    .intro-brand,
    .intro-line span,
    .intro-tagline {

        animation-duration:
            0.01ms !important;

        animation-delay:
            0ms !important;

    }

}
