:root {
    --green: #193d25;
    --green2: #2e6f40;
    --gold: #c79b42;
    --cream: #fff8e8;
    --dark: #161d13;
    --white: #fff;
    --glass: rgba(255, 248, 232, .90)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--dark);
    background: #e8d59a url("../images/brand/background.png") center top/cover fixed no-repeat;
    line-height: 1.58
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 248, 225, .10), rgba(255, 248, 225, .22));
    pointer-events: none;
    z-index: -1
}

a {
    color: inherit
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 22px;
    background: rgba(22, 35, 20, .92);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .25)
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-weight: 800;
    letter-spacing: .5px
}

.logo img {
    width: 62px;
    height: 62px;
    object-fit: contain
}

.logo span {
    font-size: 1.18rem
}

.nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-left: auto;
    align-items: center
}

.nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem
}

.nav a:hover {
    color: var(--gold)
}

.lang {
    border: 1px solid var(--gold);
    border-radius: 999px;
    background: #fff8e8;
    padding: 8px 10px
}

.main {
    max-width: 1220px;
    margin: auto;
    padding: 26px 18px
}

.panel {
    background: var(--glass);
    border: 1px solid rgba(199, 155, 66, .5);
    border-radius: 26px;
    padding: 28px;
    margin: 22px 0;
    box-shadow: 0 16px 45px rgba(0, 0, 0, .15)
}

.hero {
    min-height: 430px;
    display: flex;
    align-items: center
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4.9rem);
    line-height: 1.03;
    margin: .2em 0
}

.hero p {
    font-size: 1.18rem;
    max-width: 760px
}

.eyebrow {
    text-transform: uppercase;
    color: var(--green);
    font-weight: 900;
    letter-spacing: 1.5px
}

.btn,
.buy {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--green2));
    color: white;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 9px 20px rgba(0, 0, 0, .22)
}

.btn.alt {
    background: transparent;
    color: var(--green);
    border: 2px solid var(--green)
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px
}

.trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px
}

.trust div {
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(199, 155, 66, .35);
    border-radius: 18px;
    padding: 15px;
    text-align: center;
    font-weight: 800
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0
}

.filters button {
    border: 1px solid var(--gold);
    background: #fff7e1;
    border-radius: 999px;
    padding: 9px 14px;
    cursor: pointer;
    font-weight: 700
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
    gap: 20px
}

.card {
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(199, 155, 66, .45);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
    display: flex;
    flex-direction: column
}

.card img {
    width: 70%;
    height: 400px;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.card .body {
    padding: 18px
}

.ref {
    color: var(--gold);
    font-weight: 900;
    margin: 0
}

.card h3 {
    margin: 4px 0 8px;
    font-size: 1.25rem
}

.dims {
    font-weight: 800
}

.badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin: 10px 0
}

.badges span {
    background: #eef5e8;
    border-radius: 999px;
    padding: 5px 8px;
    font-size: .78rem;
    font-weight: 700
}

.price {
    font-size: 1.32rem;
    color: var(--green);
    font-weight: 900;
    margin: 12px 0
}

.price small {
    display: block;
    font-size: .78rem;
    color: #555
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    margin: 0 0 10px
}

.breadcrumb {
    font-weight: 900;
    color: var(--green)
}

.category-grid,
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px
}

.tile,
.content-card {
    background: rgba(255, 255, 255, .93);
    border: 1px solid rgba(199, 155, 66, .45);
    border-radius: 20px;
    padding: 20px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .12)
}

.tile h3,
.content-card h3 {
    margin-top: 0;
    color: var(--green)
}

form {
    display: grid;
    gap: 12px
}

label {
    font-weight: 800
}

input,
textarea,
select {
    width: 100%;
    margin-top: 5px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #bba667;
    background: #fffdf5;
    font: inherit
}

.footer {
    text-align: center;
    padding: 28px;
    background: rgba(22, 35, 20, .93);
    color: white
}

.admin-box {
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #ddd;
    margin: 12px 0
}

pre {
    white-space: pre-wrap;
    background: #152018;
    color: #e9ffe8;
    padding: 16px;
    border-radius: 16px;
    overflow: auto
}

@media(max-width:760px) {
    .header {
        align-items: flex-start;
        flex-direction: column
    }

    .nav {
        margin-left: 0
    }

    .logo img {
        width: 52px;
        height: 52px
    }

    .card img {
        height: 220px
    }
}
    /* ===========================
   PAGE NOS ARTISANS
=========================== */

.artisans-page{
    max-width:1100px;
    margin:60px auto;
    padding:30px;
}

.artisans-page h1{
    color:#000 !important;
    font-size:2.4rem;
    font-weight:700;
}

.artisans-page h2{
    color:#000 !important;
    font-size:1.8rem;
    font-weight:700;
    margin-top:35px;
}

.artisans-page p{
    color:#000 !important;
    font-size:1.1rem;
    line-height:1.9;
    text-align:justify;
}
body {
    color: red !important;
}
