/* ===================================
   PieceMotive - Styles Principaux
   =================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@700;800&family=Inter:wght@400;500&family=Quicksand:wght@500;600&display=swap');

/* ===================================
   CSS Variables
   =================================== */
:root {
    --primary: #A8D8C8;
    --primary-dark: #8FC4B2;
    --secondary: #F5C6AA;
    --tertiary: #C3B1E1;
    --tertiary-dark: #B09BD4;
    --quaternary: #B8D4E3;

    --bg-primary: #FAFAF8;
    --bg-secondary: #F0F4F2;
    --bg-tertiary: #FFF8F5;

    --text-primary: #2D3436;
    --text-secondary: #636E72;
    --text-light: #FFFFFF;

    --border: #E0E6E3;
    --success: #A8D8C8;
    --warning: #F5C6AA;
    --card-shadow: rgba(168, 216, 200, 0.15);

    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Quicksand', sans-serif;

    --radius-card: 16px;
    --radius-btn: 8px;
    --radius-icon: 50%;
    --transition: 0.3s ease;

    --section-padding: 80px;
    --container-max: 1200px;
    --card-padding: 32px;
    --grid-gap: 30px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 700; }
h4 { font-size: 1.25rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===================================
   Layout
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 216, 200, 0.4);
    color: var(--text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary);
    padding: 12px 28px;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--tertiary);
    color: var(--text-light);
    border-color: var(--tertiary);
}

.btn-accent:hover {
    background: var(--tertiary-dark);
    border-color: var(--tertiary-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border-color: transparent;
    padding: 12px 20px;
}

.btn-ghost:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Cards
   =================================== */
.card {
    background: var(--bg-primary);
    border-radius: var(--radius-card);
    padding: var(--card-padding);
    box-shadow: 0 4px 20px var(--card-shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(168, 216, 200, 0.25);
}

/* ===================================
   Icon Circles
   =================================== */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-sm {
    width: 40px;
    height: 40px;
}

.icon-circle-lg {
    width: 64px;
    height: 64px;
}

.icon-circle-xl {
    width: 80px;
    height: 80px;
}

.icon-mint { background: rgba(168, 216, 200, 0.2); color: #5BA898; }
.icon-peach { background: rgba(245, 198, 170, 0.2); color: #C88A62; }
.icon-lavande { background: rgba(195, 177, 225, 0.2); color: #9B84CC; }
.icon-blue { background: rgba(184, 212, 227, 0.2); color: #6A9BB5; }

/* ===================================
   Badges & Labels
   =================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-peach {
    background: rgba(245, 198, 170, 0.3);
    color: var(--text-primary);
}

.badge-mint {
    background: rgba(168, 216, 200, 0.3);
    color: var(--text-primary);
}

.section-label {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.label-mint { color: var(--primary-dark); }
.label-peach { color: #C88A62; }
.label-lavande { color: var(--tertiary-dark); }
.label-blue { color: #6A9BB5; }

/* ===================================
   Breadcrumb
   =================================== */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb svg {
    width: 14px;
    height: 14px;
    color: var(--text-secondary);
}

/* ===================================
   Stars
   =================================== */
.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: var(--secondary);
    color: var(--secondary);
}

/* ===================================
   Fade In Animation
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   HEADER
   =================================== */
.top-bar {
    background: var(--bg-secondary);
    height: 40px;
    display: flex;
    align-items: center;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    color: var(--primary-dark);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--text-light);
    box-shadow: 0 2px 15px rgba(168, 216, 200, 0.1);
    transition: height var(--transition), box-shadow var(--transition);
}

.nav-inner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    transition: height var(--transition);
}

.site-header.scrolled .nav-inner {
    height: 65px;
}

.site-header.scrolled {
    box-shadow: 0 4px 25px rgba(168, 216, 200, 0.2);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
}

.logo-piece { color: var(--text-primary); }
.logo-motive { color: var(--primary-dark); }

.logo-tagline {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 4px;
    letter-spacing: 0.02em;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-dark);
}

/* Mobile Toggle */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu .nav-link {
    font-size: 1.5rem;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-close svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

/* ===================================
   FOOTER
   =================================== */
.pre-footer {
    background: var(--bg-secondary);
    padding: 50px 0;
}

.pre-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.pre-footer-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.pre-footer-item h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 6px;
}

.pre-footer-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.site-footer {
    background: var(--text-primary);
    color: var(--text-light);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-logo .logo-piece { color: var(--text-light); }
.footer-logo .logo-tagline { color: rgba(255,255,255,0.6); }

.footer-description {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--quaternary);
    font-size: 0.9rem;
    transition: color var(--transition);
}

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

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(99, 110, 114, 0.3);
    margin: 0;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* ===================================
   HERO SECTION (Homepage)
   =================================== */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(168, 216, 200, 0.1);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 200px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(195, 177, 225, 0.08);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 60% 40%;
    align-items: center;
    gap: 60px;
    min-height: 85vh;
    padding: 80px 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-dark);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(168, 216, 200, 0.3);
    object-fit: cover;
    max-height: 550px;
}

/* ===================================
   CATEGORIES SECTION
   =================================== */
.categories-section {
    background: var(--text-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.category-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-left var(--transition);
    border-left: 3px solid transparent;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--card-shadow);
    border-left-color: var(--primary);
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(168, 216, 200, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

.category-info h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
}

.category-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===================================
   BRANDS SECTION
   =================================== */
.brands-section {
    background: var(--bg-tertiary);
}

.brands-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brands-content .section-label {
    margin-bottom: 16px;
}

.brands-content h2 {
    margin-bottom: 24px;
}

.brands-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.brand-card {
    background: var(--text-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px var(--card-shadow);
    cursor: pointer;
}

.brand-card:hover {
    background: rgba(168, 216, 200, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px var(--card-shadow);
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section {
    background: var(--text-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.why-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--card-shadow);
}

.why-card .icon-circle-lg {
    margin: 0 auto 24px;
}

.why-card h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===================================
   SEARCH SECTION
   =================================== */
.search-section {
    background: var(--bg-secondary);
}

.search-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 0;
    margin: 32px 0 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.search-input {
    flex: 1;
    border: 2px solid var(--border);
    border-right: none;
    padding: 18px 24px;
    font-size: 1.2rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--text-light);
    border-radius: 12px 0 0 12px;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(168, 216, 200, 0.2);
}

.search-btn {
    background: var(--primary);
    color: var(--text-primary);
    border: 2px solid var(--primary);
    padding: 18px 32px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0 12px 12px 0;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-btn svg {
    width: 20px;
    height: 20px;
}

.search-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.step-card {
    background: var(--text-light);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(168, 216, 200, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--primary-dark);
    margin: 12px auto 12px;
    font-size: 0.9rem;
}

.step-card svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
    margin: 0 auto;
}

.step-card h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    background: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.testimonial-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    border-top: 3px solid var(--primary);
}

.testimonial-card:nth-child(2) { border-top-color: var(--secondary); }
.testimonial-card:nth-child(3) { border-top-color: var(--tertiary); }

.testimonial-text {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 16px;
}

.testimonial-author strong {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ===================================
   COUNTERS SECTION
   =================================== */
.counters-section {
    background: rgba(168, 216, 200, 0.15);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
    text-align: center;
}

.counter-item .counter-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3rem;
    color: var(--text-primary);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.counter-item .counter-label {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-wrapper {
    padding: 0 20px;
    margin: 80px auto;
    max-width: 1200px;
}

.cta-section {
    background: var(--text-primary);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-section p {
    color: var(--quaternary);
    max-width: 600px;
    margin: 0 auto 36px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: var(--radius-btn);
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: var(--primary);
    color: var(--text-primary);
}

/* ===================================
   HERO COMPACT (inner pages)
   =================================== */
.hero-compact {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.hero-compact h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.hero-compact p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
}

/* ===================================
   CATALOGUE PAGE
   =================================== */
.search-bar-section {
    background: var(--text-light);
    padding: 0 0 60px;
}

.search-bar-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 30px var(--card-shadow);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.search-bar-inner {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.search-bar-input {
    flex: 2;
    min-width: 200px;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    position: relative;
}

.search-bar-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 216, 200, 0.2);
}

.search-bar-wrapper {
    position: relative;
    flex: 2;
    min-width: 200px;
}

.search-bar-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    pointer-events: none;
}

.search-bar-wrapper input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.search-bar-wrapper input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 216, 200, 0.2);
}

.select-filter {
    flex: 1;
    min-width: 160px;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    outline: none;
    cursor: pointer;
    transition: var(--transition);
}

.select-filter:focus {
    border-color: var(--primary);
}

/* Catalogue Categories */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

.cat-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.cat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(168, 216, 200, 0.2);
    transform: translateY(-3px);
}

.cat-card .icon-circle-lg {
    margin: 0 auto 20px;
}

.cat-card h3 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cat-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.cat-badge {
    display: inline-block;
    background: var(--bg-secondary);
    border-radius: 50px;
    padding: 4px 12px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.cat-link {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Brands Grid (Catalogue) */
.brands-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-logo-card {
    background: var(--text-light);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
    border: 1.5px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.brand-logo-card:hover {
    background: rgba(168, 216, 200, 0.1);
    border-color: var(--primary);
}

/* Guide Section */
.guide-inner {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 60px;
    align-items: center;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.guide-step h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.guide-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.guide-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 450px;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-history {
    background: var(--text-light);
}

.about-inner {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.about-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}

.about-content .section-label {
    margin-bottom: 16px;
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Values */
.values-section {
    background: var(--bg-tertiary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

.value-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.value-card .icon-circle-lg {
    margin-bottom: 24px;
}

.value-card h3 {
    font-family: var(--font-accent);
    font-weight: 600;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Team */
.team-section {
    background: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap);
}

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

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(168, 216, 200, 0.3);
    margin: 0 auto 16px;
}

.team-card h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 0.875rem;
    color: var(--primary-dark);
    font-family: var(--font-accent);
    font-weight: 500;
    margin-bottom: 8px;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Timeline */
.timeline-section {
    background: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: start;
    margin-bottom: 48px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-date {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-align: right;
    padding-top: 4px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--text-light);
    box-shadow: 0 0 0 2px var(--primary);
    flex-shrink: 0;
    margin-top: 8px;
}

.timeline-content {
    background: var(--text-light);
    border-radius: 12px;
    padding: 24px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    box-shadow: 0 2px 12px var(--card-shadow);
}

.timeline-item:nth-child(even) .timeline-date {
    order: 3;
    text-align: left;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 1;
}

/* ===================================
   ENGAGEMENTS PAGE
   =================================== */
.engagements-section {
    background: var(--text-light);
}

.engagement-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.engagement-block:last-child {
    border-bottom: none;
}

/* Reverse blocks: image is already first in DOM for "image left" layout */
/* No direction reversal needed — DOM order handles visual order correctly */

.engagement-content .section-label {
    margin-bottom: 16px;
}

.engagement-content h2 {
    margin-bottom: 20px;
}

.engagement-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.engagement-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.engagement-list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.engagement-list-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.engagement-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 400px;
}

/* Delivery Table */
.delivery-table {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 20px;
}

.delivery-table table {
    width: 100%;
    border-collapse: collapse;
}

.delivery-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border);
}

.delivery-table tr:last-child td {
    border-bottom: none;
}

.delivery-table td:first-child {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-primary);
}

.delivery-table td:last-child {
    color: var(--text-secondary);
    text-align: right;
}

/* Price Cards */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}

.price-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.price-card .value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.price-card .desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Contact Cards */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.contact-card-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.contact-card-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
}

.contact-card-item span {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.95rem;
}

/* Return Policy */
.return-section {
    background: var(--bg-tertiary);
}

.return-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.return-card .icon-circle-xl {
    margin: 0 auto 24px;
}

.return-card h2 {
    margin-bottom: 16px;
}

.return-card > p {
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.return-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.return-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.return-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Trust Bandeau */
.trust-bandeau {
    background: var(--bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-element svg {
    width: 32px;
    height: 32px;
    color: var(--primary-dark);
    margin: 0 auto 12px;
}

.trust-element h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.trust-element span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-main {
    background: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 48px;
    align-items: start;
}

/* Form */
.form-card {
    background: var(--bg-primary);
    border-radius: 16px;
    padding: 40px;
}

.form-card h3 {
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-field-wrapper {
    position: relative;
}

.form-field-wrapper svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    pointer-events: none;
}

.form-field-wrapper textarea + svg,
.form-field-wrapper.textarea svg {
    top: 18px;
    transform: none;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--text-light);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(168, 216, 200, 0.2);
}

.form-textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-success {
    display: none;
    background: rgba(168, 216, 200, 0.2);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 20px;
    align-items: center;
    gap: 12px;
}

.form-success.show {
    display: flex;
}

.form-success svg {
    width: 24px;
    height: 24px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.form-success p {
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Coordinates */
.coords-card {
    background: var(--text-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}

.coords-card h3 {
    margin-bottom: 28px;
}

.coord-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.coord-item:last-child { margin-bottom: 0; }

.coord-item h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.coord-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Map */
.map-section {
    background: var(--bg-secondary);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* FAQ */
.faq-section {
    background: var(--text-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
    color: var(--primary-dark);
}

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

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===================================
   LEGAL PAGES
   =================================== */
.legal-content {
    background: var(--text-light);
    padding: 60px 0 80px;
}

.legal-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.legal-card h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-card ul {
    list-style: disc;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.legal-card ul li {
    margin-bottom: 6px;
    line-height: 1.7;
}

.legal-card strong {
    color: var(--text-primary);
}

/* ===================================
   About CTA Card
   =================================== */
.about-cta-card {
    background: rgba(168, 216, 200, 0.1);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-card h3 {
    margin-bottom: 16px;
}

.about-cta-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* Catalogue CTA */
.catalogue-cta-card {
    background: var(--text-light);
    border-radius: 16px;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 4px 20px var(--card-shadow);
}

.catalogue-cta-card h3 { margin-bottom: 16px; }
.catalogue-cta-card p {
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* ===================================
   Utility Classes
   =================================== */
.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.d-flex { display: flex; }
.gap-4 { gap: 16px; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.bg-white { background: var(--text-light); }
.bg-secondary { background: var(--bg-secondary); }
.bg-tertiary { background: var(--bg-tertiary); }

/* ===================================
   Accessibility
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   Stars — Filled SVG icons
   =================================== */
.stars svg {
    fill: var(--secondary);
    color: var(--secondary);
    width: 18px;
    height: 18px;
    display: inline-block;
}

/* ===================================
   Form Select — remove icon overlap
   =================================== */
.form-field-wrapper select.form-select {
    padding-left: 44px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23636E72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    cursor: pointer;
}

/* Search bar catalogue select */
.select-filter {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23636E72' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    padding-right: 36px;
    cursor: pointer;
}

/* ===================================
   Timeline — alternating layout
   =================================== */

/* Default (odd) items: date | dot | content */
.timeline-item:nth-child(odd) .timeline-date {
    text-align: right;
}

/* Even items: content | dot | date
   Must set explicit order on ALL 3 children to avoid dot mis-placement */
@media (min-width: 992px) {
    .timeline-item:nth-child(even) .timeline-content {
        order: 1;  /* → column 1 (left 1fr) */
        text-align: left;
    }
    .timeline-item:nth-child(even) .timeline-dot {
        order: 2;  /* → column 2 (middle auto) */
    }
    .timeline-item:nth-child(even) .timeline-date {
        order: 3;  /* → column 3 (right 1fr) */
        text-align: left;
    }
}

/* ===================================
   Engagement block image overflow fix
   =================================== */
.engagement-image img {
    border-radius: 16px;
    width: 100%;
    object-fit: cover;
    max-height: 400px;
    display: block;
}

/* ===================================
   Button link — btn-cta-outline as anchor
   =================================== */
a.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
