/* Deco Elemente — template layout (PIP Mobilier) */

:root {
    --deco-cream: #F4F3F0;
    --deco-dark: #141414;
    --deco-darker: #1F1F1F;
    --deco-card-btn: #333333;
    --deco-gold: #C2A878;
    --deco-max: 1600px;
    --deco-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.deco-body {
    font-family: var(--deco-font);
    color: #111;
    background: var(--deco-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.deco-container {
    max-width: var(--deco-max);
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

@media (min-width: 1024px) {
    .deco-container { padding-left: 64px; padding-right: 64px; }
}

/* Header */
.deco-header-bar {
    background: var(--deco-cream);
    position: relative;
    z-index: 30;
}

.deco-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
}

.deco-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.deco-logo-img {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.deco-nav { flex: 1; display: flex; justify-content: center; }

.deco-nav > ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 500;
}

.deco-nav a {
    color: #000;
    text-decoration: none;
    transition: color 0.2s;
}

.deco-nav a:hover { color: #666; }

.deco-nav a.active {
    border-bottom: 2px solid #000;
    padding-bottom: 4px;
}

.deco-nav-dropdown { position: relative; }

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

.deco-nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    padding: 8px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    list-style: none;
    z-index: 50;
}

.deco-nav-dropdown:hover .deco-nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.deco-nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
}

.deco-nav-dropdown-menu a:hover { background: var(--deco-cream); }

.deco-header-phone {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    color: #000;
    text-decoration: none;
}

.deco-phone-icon {
    width: 42px;
    height: 42px;
    background: #2A2A2A;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deco-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.deco-phone-text small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.deco-phone-text strong { font-size: 15px; font-weight: 700; }

.deco-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.deco-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

.deco-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

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

/* Hero */
.deco-hero-wrap {
    background: var(--deco-cream);
    position: relative;
    z-index: 0;
}

.deco-hero {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 750px;
}

.deco-hero-text {
    width: 100%;
    padding: 64px 0 192px;
    z-index: 10;
    position: relative;
}

@media (min-width: 1024px) {
    .deco-hero { flex-direction: row; min-height: 750px; }
    .deco-hero-text {
        width: 52%;
        padding: 96px 48px 96px 0;
    }
}

.deco-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 20px;
}

.deco-hero-title {
    font-size: clamp(2rem, 5vw, 3.875rem);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 24px;
}

.deco-hero-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #333;
    max-width: 32rem;
    margin-bottom: 40px;
}

.deco-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
    margin-bottom: 64px;
}

.deco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    font-family: inherit;
}

.deco-btn-dark {
    background: #2D2D2D;
    color: #fff;
}
.deco-btn-dark:hover { background: #000; }

.deco-btn-text {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
.deco-btn-text:hover { opacity: 0.7; }

.deco-btn-sm { padding: 10px 24px; font-size: 13px; }
.deco-btn-outline-sm {
    padding: 10px 20px;
    font-size: 13px;
    background: transparent;
    border: 2px solid #333;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
}

.deco-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.deco-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deco-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.deco-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.deco-stat span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #333;
}

.deco-hero-visual {
    position: relative;
    width: 100%;
    min-height: 420px;
    background: var(--deco-dark);
}

@media (min-width: 1024px) {
    .deco-hero-visual {
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 48%;
    }
}

.deco-hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center top;
}

.deco-trust-badge {
    position: absolute;
    top: 45%;
    left: 24px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    min-width: 240px;
    z-index: 20;
}

@media (min-width: 1024px) {
    .deco-trust-badge { left: -140px; }
}

.deco-trust-badge p {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.deco-trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.deco-trust-avatars { display: flex; }

.deco-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -12px;
}
.deco-avatar:first-child { margin-left: 0; }

.deco-trust-count { font-size: 20px; font-weight: 500; }

/* Features angled section */
.angled-section {
    clip-path: polygon(0 0, 52% 0, 100% 7vw, 100% 100%, 0 100%);
}

@media (max-width: 1023px) {
    .angled-section {
        clip-path: polygon(0 0, 100% 3vw, 100% 100%, 0 100%);
    }
}

.deco-features {
    background: var(--deco-dark);
    position: relative;
    z-index: 20;
    margin-top: -180px;
    padding-bottom: 96px;
}

.deco-features-inner {
    position: relative;
    padding-top: 80px;
}

@media (min-width: 1024px) {
    .deco-features-inner { padding-top: 120px; }
}

.deco-slider-nav {
    display: none;
    gap: 16px;
    position: absolute;
    top: 60px;
    left: 64px;
}

@media (min-width: 1024px) {
    .deco-slider-nav { display: flex; }
}

.deco-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    border: none;
    background: none;
}

.deco-arrow-outline {
    border: 1px solid #666;
    color: #fff;
}
.deco-arrow-outline:hover { background: #fff; color: #000; }

.deco-arrow-fill {
    background: #fff;
    color: #000;
}
.deco-arrow-fill:hover { background: #ddd; }

.deco-features-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 64px 0 64px;
}

@media (min-width: 1024px) {
    .deco-features-title { margin-top: 0; }
}

.deco-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .deco-features-grid { grid-template-columns: repeat(3, 1fr); }
}

.deco-feature-card {
    background: var(--deco-darker);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.deco-feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #2C2C2C;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #D1D1D1;
}

.deco-feature-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
}

.deco-feature-card p {
    color: #999;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 32px;
}

.deco-feature-btn {
    margin-top: auto;
    background: var(--deco-card-btn);
    color: #ddd;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}
.deco-feature-btn:hover { background: #555; }

.deco-feature-highlight {
    background: #fff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .deco-feature-highlight { transform: translateY(-12px); }
}

.deco-feature-highlight .deco-feature-icon {
    background: #000;
    color: #fff;
}

.deco-feature-highlight h3 { color: #000; }
.deco-feature-highlight p { color: #666; font-weight: 500; }

.deco-feature-highlight .deco-feature-btn {
    background: #222;
    color: #fff;
}
.deco-feature-highlight .deco-feature-btn:hover { background: #000; }

/* Products section */
.deco-products {
    background: var(--deco-cream);
    padding: 80px 0 96px;
}

.deco-products-head {
    text-align: center;
    margin-bottom: 48px;
}

.deco-products-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    color: #000;
}

.deco-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.deco-cat {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: 0.2s;
}

.deco-cat:hover,
.deco-cat.active {
    background: #2D2D2D;
    color: #fff;
    border-color: #2D2D2D;
}

.deco-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 48px;
}

.deco-product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.deco-product-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 16px;
    background: #eee;
}

.deco-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.deco-product-card:hover .deco-product-image img {
    transform: scale(1.04);
}

.deco-product-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.deco-product-card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 6px;
}

.deco-product-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.deco-product-link {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.deco-products-cta { text-align: center; }

/* Footer template */
.deco-footer {
    background: var(--deco-dark);
    border-top: 1px solid #333;
    padding-top: 64px;
}

.deco-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    .deco-footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.deco-footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.deco-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.deco-footer-links a {
    color: #999;
    text-decoration: none;
}
.deco-footer-links a:hover { color: #fff; }

.deco-footer-copy {
    border-top: 1px solid #333;
    padding: 32px 0;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* Mobile nav */
@media (max-width: 1023px) {
    .deco-header-phone { display: none; }

    .deco-mobile-toggle { display: flex; }

    .deco-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(320px, 85vw);
        background: var(--deco-cream);
        flex-direction: column;
        justify-content: flex-start;
        padding: 88px 32px 32px;
        transform: translateX(100%);
        transition: transform 0.3s;
        z-index: 999;
        overflow-y: auto;
    }

    .deco-nav.open { transform: translateX(0); }

    .deco-nav > ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .deco-nav > ul > li { width: 100%; }

    .deco-nav a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

    .deco-nav a.active { border-bottom-color: #ddd; border-left: none; }

    .deco-nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: transparent;
        padding-left: 16px;
        display: none;
    }

    .deco-nav-dropdown.open .deco-nav-dropdown-menu { display: block; }

    .deco-mobile-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .deco-mobile-toggle.active span:nth-child(2) { opacity: 0; }
    .deco-mobile-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* Inner pages keep legacy styles — reset main padding */
.page-collections .deco-hero-wrap,
.page-contact .deco-hero-wrap { display: none; }

#main-content .page-hero {
    background: var(--deco-cream);
    padding: 48px 0 32px;
}

#main-content .page-content {
    background: #fff;
    padding: 48px 0 80px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
    padding: 20px;
}

.cookie-banner-inner {
    max-width: var(--deco-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text p { font-size: 14px; color: #666; max-width: 600px; }
.cookie-text a { color: #000; text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }
