@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

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

html {
    scroll-behavior: smooth;
}

:root {
    --pink-color: #E87560;
    --lightpink-color: #ffb4a6;
    --orange-color: #FC854D;
    --green-color: #9ADAB7;
    --blue-color: #4381C3;
    --yellow-color: #EFEF00;
    /*--red-color: #D93B04;*/
    --red-color: #F03000
}



body {
    color: #131313;
    font-family: Helvetica, sans-serif;
    line-height: 120%;
    background-color: #FFFDF8;
}

p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 170%;
}


p b {
    background-color: #FFFC88;
    color: #000;
}


h1, h2, h3, h4, h5 {
    font-family: "Righteous", sans-serif;
    font-weight: 400;
    font-style: normal;
}



h2 {
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 30px;
    line-height: 39px;
}



h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;

}

h5 {
    margin-bottom: 10px;
    font-size: 17px;
}


/*backgrounds */

.bg-paper {
    background: url(../img/paper.jpg) repeat;
}

.bg-lightpink-color {
    background-color: var(--lightpink-color);
}

.bg-vertical-lines {
    background-color: #FFFDF8;
    background-position: top right;
    position: relative;
    background-image:
        linear-gradient(rgba(185, 215, 214, 0.4) 1px, transparent 1px);
    background-size: 30px 30px;
    min-height: 300px;


}

.bg-stone-200 {
    background-color: rgb(211, 211, 211);
}

.small-line {
    position: absolute;
    left: 5%;
    width: 1px;
    height: 100%;
    background-color: var(--red-color);
    display: block;
}

.bg-lines-square {
    background-color: #FFFDF8;
    background-position: top right;
    background-image:
        linear-gradient(rgba(185, 215, 214, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(185, 215, 214, 0.4) 1px, transparent 1px),
        linear-gradient(rgba(185, 215, 214, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, #B9D7D6 1px, transparent 1px);
    background-size:
        30px 30px,
        30px 30px,
        120px 120px,
        120px 120px;
    position: relative;
}


.bg-lines-square .right-bg {
    display: block;
    width: 300px;
    right: 0;
    top: 0;
    height: 100%;
    position: absolute;
    border-left: 1px solid var(--red-color);
    background-color: #FFFDF8;
    background-position: top right;
    background-image:
        linear-gradient(90deg, rgba(185, 215, 214, 0.4) 1px, #FFFDF8 1px),
        linear-gradient(rgba(185, 215, 214, 0.4) 1px, rgba(185, 215, 214, 0.4) 1px),
        linear-gradient(90deg, rgba(185, 215, 214, 0.4) 1px, #fff 1px);
    background-size:
        30px 30px,
        30px 30px,
        120px 120px,
        120px 120px;
}

.bg-fluo {
    background-color: var(--yellow-color);
    align-items: normal;
}



.wrapper {
    max-width: 1200px;
    padding-left: 5%;
    padding-right: 5%;
    margin: 0 auto;
}

.wrapper-narrow {
    max-width: 800px;
}

.wrapper-inside {
    padding-top: 100px;
    padding-bottom: 100px;
}

.wrap-cols {
    display: flex;
}

.wrap-cols .col {
    width: 50%;
}

.wrap-title {
    margin-bottom: 20px;
}



/*------------HEADER ----------*/
/*------------HEADER ----------*/
/*------------HEADER ----------*/

.lang {
    position: relative;
}

/* Container */
.lang-switch {
    position: relative;
    display: inline-block;
    cursor: pointer;

    margin-top: -4px;
    font-size: 13px;
}

/* Langue active */
.active-lang {
    padding: 5px 9px;

    color: #000;
}

/* Dropdown caché */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.25s ease;
}

/* Items */
.dropdown li a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    white-space: nowrap;
}

/* Hover items */
.dropdown li a:hover {
    background: #f5f5f5;
}

/* Affichage au hover */
.lang-switch:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}




.slider-container {
    position: relative;
    display: flex;
    align-items: center;
}





.inside-wrap {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}



.wrap-card-title {
    margin-bottom: 20px;
}

.wrap-card-title h3 {
    font-size: 31px;
    font-weight: bold;
    font-family: "Bayon", sans-serif;
    margin-bottom: 5px;

}

.wrap-card-title h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-blue-color);
}


.detail-page main {
    /*background: url(../img/background.png) no-repeat top center / 120%;*/
    min-height: 100vh;
    padding-bottom: 100px;
}

.detail-page .wrap-title {
    margin-bottom: 30px;
}

.detail-page h1 {
    font-family: "Bayon", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 60px;
    line-height: 60px;
}

.top-page-detail {
    padding: 2%;
}

.logo-projet img {
    display: block;
    width: 250px
}

.intro-recap {
    display: flex;
    padding: 40px 10px;
    align-items: center;
    column-gap: 60px;
}

.intro-recap img {
    display: block;
    width: 100%;
}



.bubble-link {
    cursor: pointer;
}



ul, li {
    list-style-position: inside;
}

ul {
    margin-bottom: 20px;
}


header {
    padding: 20px 2%;
}

header .flex {
    align-items: normal;
}

header .lang span {
    background-color: #fff;
}



.category-list li {
    padding: 5px 0;
}
.category-list h2{ font-size: 20px;}

.category-list li a {
    font-size: 13px;
    display: block;
}

.category-list a.active span {
    background-color: #fff;
    padding: 5px 10px;
}

.article-card {
    background-color: #fff;
    border-radius: 1px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e6e4e4;

}

.article-card:hover {
    transition: all 0.2s ease;
    transform: translateY(-10px);
    box-shadow: -5px 5px yellow;
    cursor: pointer
}

.cart-image {
    width: 50px;
}

.blog-card {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    position: relative;
    cursor: pointer;
    border: 1px solid #e6e4e4;
}

.article-card .article-card-infos,
.blog-card .blog-card-infos {
    padding: 10px;
    position: relative;

}

.article-card-infos p {
    font-size: 13px;
}

.wrap-ctas button, .wrap-ctas a {
    flex: 1
}

.wrap-ctas {
    gap: 20px;
    margin-top: 20px;
}

.blog-card .view-more {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.blog-card .blog-card-infos {
    padding: 20px;
    width: 50%;
}

.article-card .price {
    font-size: 15px;
}

.article-card h3, .blog-card h3 {
    color: #ef5130;
    font-size: 17px;
    margin-bottom: 20px;
}

.page-title {
    margin-bottom: 40px;
}



a.cta, button.cta {
    background-color: var(--red-color);
    color: #fff;
    display: inline-block;
    cursor: pointer;
    padding: 16px 16px;
    line-height: 16px;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}


.top-title {
    margin-bottom: 20px;
    align-items: flex-start;
}

.top-title h2 {
    font-size: 25px;
}


.product-detail {
    padding-bottom: 50px;
    position: relative;
}

.product-card-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 2 / 2;
    background: #f5f5f4;
}

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

.product-card-img-main {
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.product-card-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.article-card.has-hover:hover .product-card-img-hover {
    opacity: 1;
    transform: scale(1.07);
}

.article-card:hover .product-card-img-main {

    transform: scale(1.07);
}

.article-card.has-hover:hover .product-card-img-main {
    opacity: 0;
    transform: scale(1.07);
}

.tags-hover {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 2;
}

.tag-stock {
    background-color: #fff;
    color: var(--orange-color);
    border-radius: 3px;
    padding: 2px 10px;
    font-size: 12px;
    display: inline-block;
    border: 1px solid var(--orange-color);
    z-index: 2;
}

.tag {
    background-color: var(--green-color);
    color: black;
    border-radius: 3px;
    padding: 2px 10px;
    font-size: 12px;
    display: inline-block;
   
}
.big-tag{ font-size: 15px;
    padding: 15px;
    background-color: antiquewhite;
    text-transform: uppercase; }
.big-tag.active{  background-color: var(--green-color);}
    .wrapper-tags{display: flex;flex-wrap: wrap;padding: 70px 0;width: 100%;gap:10px;background: url(../img/bg_scrab.png) no-repeat center center / cover;}
.wrapper-intro-tags { display: flex; gap: 40px}
.product-detail h1 {
    color: var(--red-color);
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 40px;
}

.tags-wrapper {
    margin-bottom: 20px;
}

.info-box {
    padding: 20px;
    border: 1px solid #000
}

.info-box p {
    font-size: 13px;
}

.cart-resume {
    padding: 50px 0px;
}

.cart-resume button {}

.cart-resume {}

.big-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border: 1px solid #000;

}



.items-center {
    align-items: center;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.col-70 {
    width: 70%;
}

.col-60 {
    width: 60%;
}

.col-50 {
    width: 50%;
}

.col-40 {
    width: 40%;
}

.col-30 {
    width: 30%;
}

.col-20 {
    width: 20%;
}

.h-56 {
    height: calc(0.25rem * 56);
}

.gap-6 {
    gap: calc(0.25rem * 6);
}

.gap-10 {
    gap: calc(0.25rem * 10);
}

.gap-8 {
    gap: calc(0.25rem * 8);
}

.grid {
    display: grid;
}

.font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
}

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

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


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

.aside-grid {
    grid-template-columns: 190px 1fr;
}

.h-\[500px\] {
    height: 500px;
}

#sect_graphic {
    display: none;
}

.detail-prev-next {
    display: flex;
    max-width: 950px;
    margin: 40px auto;
    justify-content: space-between;
}

.detail-prev-next a {
    text-decoration: none;
    color: #000;
}

.detail-other-articles {
    padding: 0 5%;
}



.triangle {
    width: 100px;
    height: 100px;
    background: url(../img/paper.jpg) repeat;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    position: absolute;
    right: 0;
    bottom: 0;
}

.triangle-bot-left {
    right: auto;
    left: 0;
    bottom: 0;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

footer {
    background-color: #fdff00;
    padding: 50px 5%;
    text-align: center;
}

.footer-nav {
    padding: 0 10px 20px;
    border-bottom: 1px solid #585858;
    margin-bottom: 20px;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
    display: flex;
}

.main-form {
    width: 70%;
}

.resume-form {
    position: sticky;
    top: 30px;
    align-self: start;
}

.badge-qty {
    position: absolute;
    left: -4px;
    top: -4px;
    font-size: 12px;
    display: flex;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    justify-content: space-around;
}

.resume-total {
    padding-top: 10px;
    border-top: 1px solid #000;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px
}

.resume-box {
    border: 1px solid #000;
    padding: 15px;
}

form label {
    margin-bottom: 10px;
    display: block;
}

.resume-cart-items {
    margin-bottom: 20px;
}

.resume-cart-items .item {
    margin-bottom: 10px;
}

input[type="number"] {
    padding: 16px 5px 16px 16px;
    border: 1px solid #000;
    font-size: 13px;
    width: 60px;
}

input[type="number"]:focus {
    border-color: blue;
    outline: none;
}

input[type="text"], input[type="email"] {

    padding: 12px 16px 14px;
    border: 1px solid #ccc;
    background-color: transparent;
    z-index: 1;
    display: block;
    width: 100%;

}

textarea {
    padding: 12px 16px 14px;
    border: 1px solid #ccc;
    width: 100%;
}

.simple-btn {
    padding: 16px 16px;
    font-size: 13px;
    border: 1px solid #000;
    background-color: rgba(211, 211, 211, 0.5);
}

.riso-button {
    position: relative;
    padding: 16px 16px;
    background-color: var(--red-color);
    /* Couleur 1 (fond initial) */
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-align: center;
    transition: all 0.3s ease;
    z-index: 1;
    display: inline-block;
    text-transform: uppercase;
}

.riso-button3 span {
    display: block;
    rotate: 2deg;
    transform-origin: center;
    transform: translateX(-3px);
}

.riso-button:hover,
a.cta:hover, button.cta:hover {
    transform: rotate(5deg);
}

.riso-btn-icon {
    padding: 0;
    width: 53px;
    height: 53px;
    text-align: center;
}

.riso-btn-icon img {
    display: inline-block;
    width: 15px;
    margin-left: -6px;
}

/* Pseudo-élément pour la deuxième couleur */
.riso-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fdff00;
    /* Couleur 2 (survol) */
    z-index: -1;
    mix-blend-mode: multiply;
    transition: all 0.3s ease;
    transform: translate(-4px, 2px);
    /* Position initiale cachée + décalage riso */
    rotate: 2deg;
}


.riso-button2 {
    background-color: black;
}

.riso-button4 {
    background-color: var(--red-color);
}


.riso-button3::before {
    background-color: #fff;
    color: #000;
    mix-blend-mode: normal;
    border: 1px solid #000;
}

.riso-button3 {
    color: #000;
}

.riso-button2::before {
    background-color: #fdff00;
}

/* Animation au survol */
.riso-button:hover::before {
    transform: translate(0, 0);
    opacity: 0.3;
    /* La deuxième couleur recouvre la première */
}

.riso-button:hover {
    color: #ffffff;
    /* Changement couleur texte */
    /*transform: translate(2px, -2px); /* Léger décalage du bouton */
}

.btn-view-more {
    display: none;
}

.blog-card .visu {
    width: 50%;
}

.blog-card .visu img {
    width: 100%;
}

#homepage .logo {
    transform: scale(1.2);
    transform-origin: top left;
}

.logo img {
    width: 300px
}

.top-page-section h2 {
    font-size: 45px;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 40px;
}

.top-page-section h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin-left: 40px;
}

.top-page-section .title-wrapper {
    margin-bottom: 40px;
}

.top-page-section .wrapper {
    padding: 50px 5%;
    position: relative;
}




.ticket {
    display: inline-block;
    background-color: var(--blue-color);
    padding: 5px 10px;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 10%;
    font-size: 12px;
    rotate: 10deg;
    transform-origin: right;
}

.mobile-nav {
    display: none;
}

.mobile-nav .nav-panier span {
    display: block;
}


mobile-nav .wrap-nav {
    display: flex;
}

nav a {
    display: inline-block;
    padding: 0 10px;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 14px;
}

nav a:hover {
    color: var(--red-color);
}

nav div {
    display: inline-block;
    padding: 0 10px;
}

.nav-sect {
    /*border-bottom: 1px solid #ccc;*/
    border-right: 1px dashed #000;
    flex: 1;
    text-align: center;
    align-content: center;
}

.nav-sect a {
    display: block;
    width: 100%;
    padding: 10px;
}

.burger-menu {
    max-width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.burger-btn {
    width: 30px;
    height: 40px;
    border: none;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
}

.burger-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: 0.3s;
}

/* Overlay menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 9999;

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

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.mobile-menu-content a {
    font-size: 23px;
    font-family: "Righteous", sans-serif;
    text-transform: uppercase;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    background: transparent;
    font-size: 2rem;
    cursor: pointer;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.wrap-nav {
    display: flex;
}


.cart-item {
    padding: 20px;
    border-bottom: 1px solid #ccc
}

.cart-item-line {
    justify-content: space-between;
    display: flex;
    gap: calc(var(--spacing) * 4);
}

.pagination {
    margin: 40px 0 0 0;
}

.btn-prev-next-disabled {
    opacity: 0.4;
    padding: 10px;
    color: #fff;
    background-color: var(--blue-color);
}

.btn-prev-next {
    color: #fff;
    padding: 10px;
    background-color: var(--blue-color);
    border: 1px solid var(--blue-color);
}

.pages-list a, .pages-list span.current-page, .prev-next-disabled {
    padding: 10px;
    color: #fff;
}

.prev-next-disabled {
    background-color: var(--lightpink-color);
}

.pages-list a {
    background-color: #E87560;
    border: none;
}

.current-page {
    background-color: var(--red-color);
}


.tag-total {
        background-color: var(--orange-color);
    border-radius: 1px;
    padding: 5px 10px;
    color: #fff;
    font-size: 11px;
    transform: rotate(4deg);
    display: inline-block;
}


@media (max-width: 1000px) {

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

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

@media (max-width: 900px) {


    .col-40 {
        width: 100%;
    }

    .col-60 {
        width: 100%;
    }

    #sect_hp-new .col-40 {
        margin-bottom: 40px
    }

    #homepage .logo {
        transform: none;
        display: inline-block;
    }

    .mobile-nav {
        display: block;
        background-color: var(--yellow-color);
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 2;
    }

    header nav {
        display: none !important;
    }

    header .flex {
        display: block;
        text-align: center;
    }


}

@media (max-width: 800px) {

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

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

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

    .logo img {
        width: 230px;
        display: inline;
        margin-bottom: 40px;
    }

    .cart-item-line {
        display: block;
        margin-bottom: 20px;
    }

    .about-page .wrapper {
        padding-top: 0;
    }

    .about-page .about-section {
        display: block;
    }

    .about-page .about-section>div {
        width: 100% !important;
    }

    .about-location-content-text {
        display: block !important;
    }

    .blog-index-featured {
        display: block !important;
    }

    .product-detail form {
        display: block;
    }

    .product-detail {
        padding-top: 0;
    }

    .product-detail .main-form {
        width: 100%;
    }

    .clip-grid {
        grid-template-columns: repeat(3, 1fr) !important
    }
}


@media (max-width: 700px) {
    .aside-grid {
        display: block;
    }

    .category-list ul li {
        display: inline-block;
        margin: 0 10px 0 0;
    }

    .footer-nav { display: block;}


}


/* CONTACT */

#sect_contact {

    padding: 90px 0;

}

.contact-inner {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.contact-title h2 {
    margin: 0;
    font-size: 45px;
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.contact-title p {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-content p {
    max-width: 460px;
    font-size: 17px;
    line-height: 1.45;
    margin: 0 0 30px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-button {
    background: #ff3b1f;
    color: #fff;
}

.contact-mail {
    color: #111;
    font-size: 22px;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.contact-mail:hover {
    border-bottom-color: transparent;
}

@media (max-width: 720px) {
    #sect_contact {

        padding: 60px 0;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-title h2 {
        font-size: 42px;
    }
}


/* blog */


.article-gallery {
    position: relative;
    overflow: hidden;
    background: #f3f0ea;

}

.article-gallery--square {
    aspect-ratio: 1 / 1;
}

.article-gallery--portrait {
    aspect-ratio: 4 / 5;
}

.article-gallery--landscape {
    aspect-ratio: 16 / 10;
}

.article-gallery__track {
    display: flex;
    height: 100%;
    transition: transform 0.45s ease;
}

.article-gallery__slide {
    flex: 0 0 100%;
    height: 100%;
    margin: 0;
}

.article-gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buttons */

.article-gallery__button {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 1px solid #222;
    border-radius: 50%;
    background: #fff;
    color: #222;
    cursor: pointer;
}

.article-gallery__button--prev {
    left: 12px;
}

.article-gallery__button--next {
    right: 12px;
}

.article-gallery__button:hover {
    background: #222;
    color: #fff;
}

/* Dots */

.article-gallery__dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    z-index: 2;
    display: flex;
    gap: 6px;
    transform: translateX(-50%);
}

.article-gallery__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid #222;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.article-gallery__dot.is-active {
    background: #222;
}






/* detail product */
.product-gallery-main {
    width: 100%;
}

.product-gallery-main img {
    width: 100%;
}

.product-gallery-thumbs {
    margin: 0 20px;
}

.product-thumb {
    width: 80px;
    aspect-ratio: 1 / 1;
    border: 1px solid transparent;
    padding: 0;
    background: transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-thumb:hover,
.product-thumb.is-active {
    opacity: 1;
    border-color: #222;
}

#product-show {


    max-width: 1500px;
    margin: 0 auto;
}

.product-gallery {
    display: flex;
}



/* Blog */


.blog-index-featured {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}


.blog-card-infos {
    display: flex;
    align-items: center;
    padding: 40px;
}

.blog-card-infos h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.95;
    font-size: 20px;
}

.blog-card-infos p {
    max-width: 480px;
}

.blog-card-date {
    margin-top: 24px;
    font-size: 0.85rem;
    opacity: 0.65;
}

.view-more {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 5;
}


/* Grille façon Instagram */
.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.blog-grid-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #d0d0d0;
    background: #fff;
}

.blog-grid-card a {
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.blog-grid-card .article-gallery {
    aspect-ratio: 1 / 1;
    border: 0;
}

.blog-grid-card .article-gallery__button,
.blog-grid-card .article-gallery__dots {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.blog-grid-card:hover .article-gallery__button,
.blog-grid-card:hover .article-gallery__dots {
    opacity: 1;
}

.blog-grid-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    pointer-events: none;
}

.blog-grid-card:hover .blog-grid-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.blog-grid-card-overlay h2 {
    margin: 0;
    font-size: clamp(1.2rem, 2vw, 2rem);
    line-height: 1;
}

.blog-grid-card-date {
    margin-bottom: 8px;
    font-size: 0.8rem;
    opacity: 0.8;
}

@media (max-width: 900px) {

    .blog-index-featured .blog-card,
    .blog-index-featured .blog-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .blog-index-featured .blog-card:nth-child(even) .visu,
    .blog-index-featured .blog-card:nth-child(even) .blog-card-infos {
        grid-column: auto;
        grid-row: auto;
    }

    .blog-index-featured .visu {
        min-height: auto;
    }

    .blog-index-featured .article-gallery {
        aspect-ratio: 1 / 1;
    }

    .blog-card-infos {
        padding: 28px;
    }

    .blog-index-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
}

@media (max-width: 520px) {
    .blog-index {
        padding: 40px 0;
    }

    .blog-index-featured {
        margin-bottom: 48px;
    }

    .blog-index-grid {
        grid-template-columns: 1fr;
    }
}

.variant-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.color-dot {
    align-items: center;
    display: flex;
    gap: 10px;
}

.color-dot .dot {
    width: 25px;
    height: 25px;
    border-radius: 999px;
    border: 1px solid #222;
    cursor: pointer;
    position: relative;
}

.color-dot.is-active .dot {
    outline: 1px solid #222;
    outline-offset: 4px;
}

.color-dot.is-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.variant-info {
    margin-top: 14px;
    font-size: 0.95rem;
}


.prose {}

.prose p {
    margin-bottom: 10px;
}

.prose ul, .prose ol {
    list-style-type: disc;
}

.prose ul li, .prose ol li {
    margin-bottom: 10px;
}

.prose ul p, .prose ol p {
    display: inline;
}

.prose a {
    color: var(--blue-color);
    text-decoration: underline;
}

.product-features {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #d9d9d9;
}

.product-feature {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #ececec;
}

.product-feature dt {
    font-weight: 600;
}

.product-feature dd {
    margin: 0;
}