:root {
    --green: #062E1D;
    --green-dark: #031F14;
    --beige: #DFD6C9;
    --cream: #F5F2EA;
    --paper: #FFFFFF;

    --ink: #141E22;
    --muted: rgba(20, 30, 34, 0.62);
    --muted-green: rgba(6, 46, 29, 0.62);
    --line: rgba(6, 46, 29, 0.18);

    --shadow: 0 30px 70px rgba(3, 31, 20, 0.16);
}

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

body {
    background: var(--cream);
    color: var(--ink);
    font-family: Arial, sans-serif;
}

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

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

/* HEADER */

.site-header {
    height: 88px;
    padding: 0 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--green);
    border-bottom: 1px solid rgba(245, 242, 234, 0.16);
    position: sticky;
    top: 0;
    z-index: 50;
}

.brand-logo img {
    height: 46px;
    width: auto;
    filter: brightness(0) invert(1);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 12px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(245, 242, 234, 0.78);
}

.main-nav a {
    position: relative;
    padding-bottom: 6px;
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: var(--cream);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--cream);
    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* HERO */

.hero-editorial {
    min-height: calc(100vh - 88px);
    padding: 42px 52px 96px;
    position: relative;
    text-align: center;
    background:
        linear-gradient(180deg, var(--beige) 0%, var(--cream) 76%);
}

.hero-editorial::before {
    content: "";
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(6, 46, 29, 0.14);
    pointer-events: none;
}

.hero-place {
    position: absolute;
    top: 38px;
    left: 58px;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(6, 46, 29, 0.52);
    z-index: 1;
}

/* Logo central demandé : MAISON au-dessus + logo noir, sans rond */

.hero-brand-mark {
    position: relative;
    z-index: 1;
    margin: 8px auto 74px;
    text-align: center;
    color: #111111;
}

.hero-brand-mark span {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    letter-spacing: 11px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #111111;
}

.hero-brand-mark img {
    width: 82px;
    height: auto;
    margin: 0 auto;
    filter: brightness(0);
}

.hero-content {
    max-width: 930px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.small-title {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(6, 46, 29, 0.72);
    margin-bottom: 28px;
}

.hero-editorial h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 7vw, 94px);
    line-height: 1.02;
    font-weight: 400;
    letter-spacing: -1.8px;
    color: var(--green-dark);
    margin-bottom: 30px;
}

.hero-editorial h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--green);
}

.hero-subtitle {
    max-width: 740px;
    margin: 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2.2vw, 27px);
    font-style: italic;
    line-height: 1.55;
    color: rgba(20, 30, 34, 0.64);
}

.hero-line {
    margin: 56px auto 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
}

.hero-line span {
    width: 110px;
    height: 1px;
    background: rgba(6, 46, 29, 0.26);
}

.hero-line p {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(6, 46, 29, 0.54);
}

.hero-text {
    max-width: 690px;
    margin: 0 auto;
    color: rgba(20, 30, 34, 0.65);
    line-height: 2;
    font-size: 16px;
}

.hero-actions {
    margin-top: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.primary-btn {
    display: inline-block;
    background: var(--green);
    color: var(--cream);
    padding: 19px 54px;
    border: 1px solid var(--green);
    font-size: 11px;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    transition: 0.25s ease;
}

.primary-btn:hover {
    background: transparent;
    color: var(--green);
}

.text-btn {
    font-size: 13px;
    letter-spacing: 2.6px;
    color: var(--green);
    border-bottom: 1px solid rgba(6, 46, 29, 0.35);
    padding-bottom: 8px;
    transition: color 0.25s ease;
}

.text-btn:hover {
    color: var(--green-dark);
}

.text-btn.dark {
    color: var(--cream);
    border-color: rgba(245, 242, 234, 0.45);
}

/* ========================= */
/* SECTION PRODUIT ACCUEIL */
/* ========================= */

.product-section {
    min-height: 720px;
    padding: 0;
    border-top: 1px solid rgba(245, 242, 234, 0.14);
    display: grid;
    grid-template-columns: 43% 57%;
    gap: 0;
    align-items: stretch;
    background: var(--green);
    color: var(--cream);
    overflow: hidden;
}

.product-text {
    width: 100%;
    max-width: none;
    justify-self: auto;
    padding: 110px 8vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-text .small-title {
    color: rgba(245, 242, 234, 0.68);
    margin-bottom: 34px;
}

.product-text h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 5vw, 86px);
    line-height: 0.96;
    font-weight: 400;
    color: var(--cream);
    max-width: 560px;
    margin-bottom: 28px;
}

.product-text p {
    max-width: 520px;
    color: rgba(245, 242, 234, 0.76);
    line-height: 1.9;
    font-size: 16px;
    margin-bottom: 34px;
}

.product-list {
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
    max-width: 520px;
    border-top: 1px solid rgba(245, 242, 234, 0.22);
}

.product-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(245, 242, 234, 0.22);
    color: rgba(245, 242, 234, 0.92);
    font-size: 14px;
}

.product-visual {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige) 0%, var(--cream) 100%);
    border-left: 1px solid rgba(245, 242, 234, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px;
}

.product-image-card {
    position: relative;
    z-index: 2;
    width: min(78%, 540px);
    padding: 6px;
    background: rgba(245, 242, 234, 0.56);
    border: 1px solid rgba(6, 46, 29, 0.08);
    box-shadow: 0 24px 55px rgba(3, 31, 20, 0.12);
}

.product-image-card img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    display: block;
}

.product-label {
    position: absolute;
    left: 42px;
    bottom: 42px;
    z-index: 3;
    background: rgba(6, 46, 29, 0.94);
    border: 1px solid rgba(245, 242, 234, 0.22);
    padding: 15px 18px;
    box-shadow: 0 18px 42px rgba(20, 30, 34, 0.16);
    max-width: 280px;
}

.product-label span {
    display: block;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(245, 242, 234, 0.58);
    margin-bottom: 5px;
}

.product-label strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    color: var(--cream);
    font-weight: 400;
    line-height: 1.2;
}
/* VALEURS */

.values-section {
    padding: 95px 52px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px;
    background: var(--beige);
}

.value-card {
    border-top: 1px solid rgba(6, 46, 29, 0.24);
    padding-top: 30px;
}

.value-card span {
    display: block;
    color: rgba(6, 46, 29, 0.48);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 32px;
}

.value-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--green);
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 14px;
}

.value-card p {
    color: rgba(20, 30, 34, 0.65);
    line-height: 1.8;
}

/* COLLECTION */

.collection-section {
    padding: 110px 52px;
    text-align: center;
    background: var(--cream);
    border-top: 1px solid var(--line);
}

.collection-section .small-title {
    margin-bottom: 24px;
    color: var(--muted-green);
}

.collection-section h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 24px;
}

.collection-section p {
    max-width: 680px;
    margin: 0 auto 42px;
    color: rgba(20, 30, 34, 0.62);
    line-height: 1.9;
    font-size: 16px;
}

/* FOOTER */

.site-footer {
    padding: 44px 52px;
    background: var(--green-dark);
    color: var(--cream);
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-brand img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.footer-brand p,
.footer-copy {
    color: rgba(245, 242, 234, 0.66);
    font-size: 13px;
    line-height: 1.7;
}

.footer-copy {
    margin-top: 0;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .site-header {
        height: auto;
        padding: 24px;
        flex-direction: column;
        gap: 20px;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        font-size: 11px;
    }

    .hero-editorial {
        padding: 34px 24px 74px;
        min-height: auto;
    }

    .hero-editorial::before {
        inset: 14px;
    }

    .hero-place {
        position: static;
        margin-bottom: 34px;
    }

    .hero-brand-mark {
        margin-bottom: 48px;
    }

    .hero-brand-mark span {
        font-size: 21px;
        letter-spacing: 9px;
    }

    .hero-brand-mark img {
        width: 72px;
    }

    .hero-editorial h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-line {
        gap: 14px;
    }

    .hero-line span {
        width: 52px;
    }

    .product-section,
    .values-section {
        grid-template-columns: 1fr;
        padding: 72px 24px;
    }

    .product-text {
        justify-self: start;
    }

    .product-visual {
        min-height: 480px;
    }

    .product-image-card {
        width: 84%;
        padding: 5px;
    }

    .product-label {
        left: 24px;
        bottom: 24px;
    }

    .collection-section {
        padding: 80px 24px;
    }

    .site-footer {
        padding: 40px 24px;
        flex-direction: column;
    }
}

/* ========================= */
/* CATALOGUE PREMIUM */
/* ========================= */

.catalogue-page {
    background: var(--cream);
    padding: 96px 52px 120px;
}

.catalogue-header {
    max-width: 760px;
    margin: 0 auto 76px;
    text-align: center;
}

.catalogue-header h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 84px);
    line-height: 1.02;
    font-weight: 400;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.catalogue-header p:last-child {
    max-width: 590px;
    margin: 0 auto;
    color: var(--muted);
    line-height: 1.9;
    font-size: 16px;
}

.catalogue-list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    gap: 34px;
}

.catalogue-item {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: var(--beige);
    border: 1px solid rgba(6, 46, 29, 0.16);
    min-height: 500px;
}

.catalogue-item-image {
    background: var(--cream);
    padding: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(6, 46, 29, 0.14);
}

.catalogue-item-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    box-shadow: 0 22px 48px rgba(3, 31, 20, 0.12);
}

.catalogue-item-content {
    padding: 64px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-status {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 22px;
}

.catalogue-item-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 22px;
}

.catalogue-item-content p {
    color: var(--muted);
    line-height: 1.9;
    font-size: 16px;
    max-width: 460px;
    margin-bottom: 34px;
}

.catalogue-item-content .primary-btn {
    width: fit-content;
}

/* ========================= */
/* FICHE PRODUIT PREMIUM */
/* ========================= */

.mh-product-page {
    background: var(--cream);
    padding: 96px 52px 120px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 76px;
    align-items: start;
}

.mh-product-image-wrap {
    background: var(--beige);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 42px;
    position: sticky;
    top: 118px;
}

.mh-product-image-card {
    background: var(--cream);
    padding: 8px;
    border: 1px solid rgba(6, 46, 29, 0.10);
}

.mh-product-image-card img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
    box-shadow: 0 24px 55px rgba(3, 31, 20, 0.12);
}

.mh-product-content {
    max-width: 620px;
    padding-top: 20px;
}

.mh-product-content h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6vw, 82px);
    line-height: 1.02;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 28px;
}

.mh-product-intro {
    font-size: 17px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 30px;
}

.mh-product-status {
    display: inline-block;
    background: var(--beige);
    color: var(--green);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 12px 18px;
    font-size: 10px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    margin-bottom: 38px;
}

.mh-product-block {
    border-top: 1px solid rgba(6, 46, 29, 0.18);
    padding: 28px 0;
}

.mh-product-block h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 12px;
}

.mh-product-block p {
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
}

.mh-product-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 34px;
    flex-wrap: wrap;
}

.mh-coming-soon {
    display: inline-block;
    background: var(--green);
    color: var(--cream);
    padding: 18px 42px;
    border: 1px solid var(--green);
    font-size: 11px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.mh-back-link {
    font-size: 13px;
    letter-spacing: 2.4px;
    color: var(--green);
    border-bottom: 1px solid rgba(6, 46, 29, 0.35);
    padding-bottom: 8px;
}

/* RESPONSIVE CATALOGUE + PRODUIT */

@media (max-width: 1000px) {
    .catalogue-page,
    .mh-product-page {
        padding: 70px 24px;
    }

    .catalogue-item,
    .mh-product-page {
        grid-template-columns: 1fr;
    }

    .catalogue-item-image {
        border-right: none;
        border-bottom: 1px solid rgba(6, 46, 29, 0.14);
        padding: 32px;
    }

    .catalogue-item-image img {
        max-width: 300px;
    }

    .catalogue-item-content {
        padding: 38px 30px;
    }

    .mh-product-image-wrap {
        position: static;
        padding: 24px;
    }

    .mh-product-image-card img {
        max-height: 460px;
    }

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

     .mh-product-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ========================= */
/* ADMIN PREMIUM */
/* ========================= */

.admin-dashboard-page {
    min-height: calc(100vh - 88px);
    background: var(--cream);
    padding: 96px 52px 120px;
}

.admin-dashboard-header {
    max-width: 1080px;
    margin: 0 auto 44px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.admin-dashboard-header h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 18px;
}

.admin-dashboard-header p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

.admin-logout-btn {
    background: transparent;
    border: 1px solid rgba(6, 46, 29, 0.28);
    color: var(--green);
    padding: 15px 26px;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-dashboard-card {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--beige);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 46px;
}

.admin-dashboard-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 14px;
}

.admin-dashboard-card p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 1000px) {
    .admin-dashboard-page {
        padding: 70px 24px;
    }

    .admin-dashboard-header {
        flex-direction: column;
    }

    .admin-dashboard-card {
        padding: 32px;
    }
}
/* ========================= */
/* ADMIN LOGIN PREMIUM */
/* ========================= */

.admin-login-page {
    min-height: calc(100vh - 88px);
    background: var(--cream);
    padding: 96px 24px 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-login-card {
    width: 100%;
    max-width: 480px;
    background: var(--beige);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 50px;
    box-shadow: 0 26px 60px rgba(3, 31, 20, 0.10);
}

.admin-login-card h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 34px;
}

.admin-login-card form {
    display: flex;
    flex-direction: column;
}

.admin-field {
    margin-bottom: 22px;
}

.admin-field label {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 10px;
}

.admin-field input {
    width: 100%;
    height: 52px;
    border: 1px solid rgba(6, 46, 29, 0.22);
    background: var(--cream);
    padding: 0 16px;
    font-size: 15px;
    color: var(--ink);
    outline: none;
}

.admin-field input:focus {
    border-color: var(--green);
}

.admin-error {
    color: #8b1e1e;
    font-size: 14px;
    margin-bottom: 20px;
}

.admin-login-card .primary-btn {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
}


/* ========================= */
/* ADMIN PRODUITS */
/* ========================= */

.admin-products-page,
.admin-form-page {
    min-height: calc(100vh - 88px);
    background: var(--cream);
    padding: 96px 52px 120px;
}

.admin-products-header,
.admin-form-header {
    max-width: 1080px;
    margin: 0 auto 46px;
}

.admin-products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.admin-products-header h1,
.admin-form-header h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.04;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 18px;
}

.admin-products-header p,
.admin-form-header p {
    color: var(--muted);
    line-height: 1.8;
}

.admin-success {
    max-width: 1080px;
    margin: 0 auto 28px;
    background: rgba(6, 46, 29, 0.08);
    border: 1px solid rgba(6, 46, 29, 0.18);
    color: var(--green);
    padding: 16px 20px;
}

.admin-products-list {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.admin-product-row {
    background: var(--beige);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 22px;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 24px;
    align-items: center;
}

.admin-product-miniature {
    width: 110px;
    height: 110px;
    background: var(--cream);
    border: 1px solid rgba(6, 46, 29, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.admin-product-miniature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-product-row h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 8px;
}

.admin-product-row p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.admin-product-row span {
    font-size: 10px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--green);
}

.admin-product-form {
    max-width: 780px;
    margin: 0 auto;
    background: var(--beige);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 46px;
}

.admin-field textarea,
.admin-field select {
    width: 100%;
    border: 1px solid rgba(6, 46, 29, 0.22);
    background: var(--cream);
    padding: 16px;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    font-family: Arial, sans-serif;
}

.admin-field textarea {
    min-height: 110px;
    resize: vertical;
}

.admin-field select {
    height: 52px;
}

.admin-field textarea:focus,
.admin-field select:focus {
    border-color: var(--green);
}

.admin-form-actions {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 1000px) {
    .admin-products-page,
    .admin-form-page {
        padding: 70px 24px;
    }

    .admin-products-header {
        flex-direction: column;
    }

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

    .admin-product-form {
        padding: 32px;
    }
}

/* ========================= */
/* ADMIN EDIT / DELETE */
/* ========================= */

.admin-product-row {
    grid-template-columns: 110px 1fr auto;
}

.admin-product-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-edit-btn,
.admin-delete-btn {
    display: inline-block;
    border: 1px solid rgba(6, 46, 29, 0.26);
    background: transparent;
    color: var(--green);
    padding: 12px 18px;
    font-size: 10px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-delete-btn {
    color: #8b1e1e;
    border-color: rgba(139, 30, 30, 0.35);
}

.admin-current-image {
    margin-bottom: 24px;
}

.admin-current-image p {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

.admin-current-image img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    background: var(--cream);
    border: 1px solid rgba(6, 46, 29, 0.16);
}

@media (max-width: 1000px) {
    .admin-product-row {
        grid-template-columns: 1fr;
    }

    .admin-product-actions {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ========================= */
/* GALERIE PRODUIT MULTI */
/* ========================= */

.mh-product-gallery {
    display: grid;
    gap: 22px;
}

.mh-product-gallery .mh-product-image-card {
    background: var(--cream);
    padding: 8px;
    border: 1px solid rgba(6, 46, 29, 0.10);
}

.mh-product-gallery .mh-product-image-card img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    box-shadow: 0 24px 55px rgba(3, 31, 20, 0.12);
}

.admin-current-gallery {
    margin-bottom: 24px;
}

.admin-current-gallery > p {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
}

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

.admin-current-gallery-grid img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    background: var(--cream);
    border: 1px solid rgba(6, 46, 29, 0.16);
}

@media (max-width: 1000px) {
    .mh-product-gallery .mh-product-image-card img {
        max-height: 420px;
    }

    .admin-current-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================= */
/* ADMIN GALERIE DELETE */
/* ========================= */

.admin-gallery-item {
    background: var(--cream);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 10px;
}

.admin-gallery-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    margin-bottom: 10px;
}

.admin-gallery-item .admin-delete-btn {
    width: 100%;
    padding: 10px;
}

/* ========================= */
/* NEWSLETTER POPUP */
/* ========================= */

.newsletter-popup {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
}

.newsletter-popup.active {
    display: block;
}

.newsletter-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 31, 20, 0.58);
    backdrop-filter: blur(3px);
}

.newsletter-popup-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(92%, 520px);
    transform: translate(-50%, -50%);
    background: var(--cream);
    border: 1px solid rgba(245, 242, 234, 0.35);
    padding: 52px 46px;
    box-shadow: 0 35px 90px rgba(3, 31, 20, 0.32);
    text-align: center;
}

.newsletter-popup-close {
    position: absolute;
    top: 18px;
    right: 20px;
    border: none;
    background: transparent;
    color: var(--green);
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.newsletter-popup-card h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 22px;
}

.newsletter-popup-card > p {
    color: var(--muted);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter-popup-form {
    display: grid;
    gap: 14px;
}

.newsletter-popup-form input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(6, 46, 29, 0.22);
    background: #fff;
    padding: 0 18px;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    text-align: center;
}

.newsletter-popup-form button {
    height: 56px;
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

.newsletter-popup-note {
    display: block;
    margin-top: 20px;
    color: rgba(20, 30, 34, 0.52);
    font-size: 12px;
    line-height: 1.6;
}

/* ========================= */
/* NEWSLETTER BAS DE PAGE */
/* ========================= */

.newsletter-bottom-section {
    background: var(--beige);
    border-top: 1px solid rgba(6, 46, 29, 0.16);
    border-bottom: 1px solid rgba(6, 46, 29, 0.16);
    padding: 72px 52px;
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.newsletter-bottom-content {
    max-width: 620px;
}

.newsletter-bottom-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 400;
    color: var(--green);
    margin-bottom: 22px;
}

.newsletter-bottom-content p:last-child {
    color: var(--muted);
    line-height: 1.85;
    font-size: 16px;
}

.newsletter-bottom-form {
    background: var(--cream);
    border: 1px solid rgba(6, 46, 29, 0.16);
    padding: 32px;
    display: grid;
    gap: 16px;
}

.newsletter-bottom-form input {
    width: 100%;
    height: 54px;
    border: 1px solid rgba(6, 46, 29, 0.22);
    background: #fff;
    padding: 0 18px;
    font-size: 15px;
    color: var(--ink);
    outline: none;
}

.newsletter-bottom-form button {
    height: 56px;
    border: 1px solid var(--green);
    background: var(--green);
    color: var(--cream);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
}

.newsletter-success-message {
    background: var(--green);
    color: var(--cream);
    padding: 18px 52px;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
}

@media (max-width: 900px) {
    .newsletter-bottom-section {
        grid-template-columns: 1fr;
        padding: 62px 24px;
    }

    .newsletter-bottom-form {
        padding: 26px;
    }

    .newsletter-popup-card {
        padding: 42px 26px;
    }
}

/* ========================= */
/* FIX PRODUIT MIS EN AVANT ACCUEIL */
/* ========================= */

.product-section {
    overflow: hidden;
}

.product-text {
    min-width: 0;
}

.product-text h2 {
    max-width: 100%;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.98;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.product-text > p {
    max-width: 560px;
}

.product-visual {
    min-width: 0;
}

.product-image-card {
    max-width: 100%;
    overflow: hidden;
}

.product-image-card img {
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: contain;
    display: block;
}

.product-label {
    max-width: 320px;
}

.product-label strong {
    display: block;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.2;
}

@media (max-width: 1000px) {
    .product-section {
        grid-template-columns: 1fr;
    }

    .product-text h2 {
        font-size: clamp(38px, 12vw, 64px);
    }

    .product-image-card img {
        max-height: 480px;
    }
}

/* ========================= */
/* FIX ACCUEIL PRODUIT PREMIUM */
/* ========================= */

.product-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
    padding: 110px 8vw;
    background: var(--green);
    overflow: hidden;
}

.product-text {
    max-width: 560px;
    min-width: 0;
}

.product-text h2 {
    font-size: clamp(58px, 5vw, 92px);
    line-height: 0.95;
    font-weight: 400;
    max-width: 560px;
    overflow-wrap: normal;
    word-break: normal;
}

.product-text > p {
    max-width: 520px;
    font-size: 16px;
    line-height: 1.9;
}

.product-visual {
    position: relative;
    background: var(--beige);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px;
}

.product-image-card {
    width: 100%;
    max-width: 520px;
    height: 520px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: none;
}

.product-label {
    position: absolute;
    left: 70px;
    bottom: 48px;
    background: var(--green);
    color: var(--cream);
    padding: 22px 28px;
    max-width: 310px;
}

.product-label span {
    display: block;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.75;
}

.product-label strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1.15;
    font-weight: 400;
    word-break: normal;
    overflow-wrap: normal;
}

@media (max-width: 1000px) {
    .product-section {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 46px;
    }

    .product-text h2 {
        font-size: clamp(46px, 12vw, 68px);
    }

    .product-visual {
        padding: 28px;
        min-height: auto;
    }

    .product-image-card {
        max-width: 100%;
        height: 420px;
    }

    .product-label {
        left: 42px;
        bottom: 28px;
    }
}
