/*
Theme Name: Kadence Child
Theme URI: http://example.com/kadence-child
Description: Thème enfant pour Kadence
Author: TonNom
Author URI: http://example.com
Template: kadence
Version: 1.0.0
*/

/* Ici tu peux mettre ton CSS personnalisé */
/* BODY */
body {
    font-family: 'Garamond', serif;
    background:
        radial-gradient(circle at 30% 20%, rgba(218,165,32,0.10), transparent 35%),
        radial-gradient(circle at 70% 80%, rgba(255,255,255,0.05), transparent 40%),
        linear-gradient(160deg, #000000 0%, #050505 40%, #000000 100%);
		color:#c0c0c0;
}
	

/* HEADER */
#custom-header {
    position: sticky;
    top: 0;
    z-index: 9999;

    /* IMAGE */
    background-image: url("https://www.astresaames.com/wp-content/uploads/2026/03/fdheader.png");
    background-size: cover;
    background-position: center;

    /* OVERLAY FONCÉ */
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: darken;

    /* STYLE */
    padding: 10px 0;
    border-bottom: 2px solid #ad956b;
    border-top: 2px solid #ad956b;

    backdrop-filter: blur(6px);

    transition: all 0.1s ease;
}


/* NAV */
.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
	margin-top: 15px;
}

/* MENU */
.nav-menu {
    list-style: none;
    display: flex;
    gap: 80px; /* espace entre les blocs du menu */
}

/* =========================
   PANIER + COMPTEUR
========================= */

.cart-wrapper {
    position: relative;
    display: inline-block;
}

/* compteur */
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;

    background: linear-gradient(145deg, #C79F4B, #DAA520);
    color: #000;

    font-size: 11px;
    font-weight: bold;

    min-width: 18px;
    height: 18px;
    padding: 0 5px;

    border-radius: 50px;

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

    box-shadow: 0 0 8px rgba(218,165,32,0.5);
}

/* effet hover */
.menu-icon:hover .cart-count {
    transform: scale(1.1);
    box-shadow: 0 0 12px rgba(218,165,32,0.8);
}

/* LIENS */
.nav-menu li a {
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    color: #C79F4B;
    position: relative;
    transition: all 0.3s ease;
	font-family:'Garamond', serif, Cursive;
}

/* UNDERLINE ANIMÉ */
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #DAA520;
    transition: width 0.3s ease;
}

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

/* HOVER */
.nav-menu li a:hover {
    text-shadow: 0 0 8px rgba(192, 192, 192, 0.8);
}

/* PAGE ACTIVE */
.nav-menu li a.active {
    color: #c0c0c0;
    text-shadow: 0 0 6px rgba(192,192,192,0.6);
}

.hamburger {
    display: none;
    width: 30px;
    height: 22px;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #C79F4B;
    border-radius: 2px;
    transition: all 0.3s ease;
}




/* =========================
   MOBILE MENU
========================= */
@media screen and (max-width: 1024px) {
    
           #custom-header {
        padding: 25px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;

        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(6px);

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        transform: translateY(-100%);
        opacity: 0;
                padding-top : 80px;
        transition: all 0.4s ease;
                gap: 0;

    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    /* ITEMS */
    .nav-menu li {
        width: 80%;
        text-align: center;
        border-top: 1px solid rgba(218, 165, 32, 0.2);
    }

    .nav-menu li:last-child {
        border-bottom: 1px solid rgba(218, 165, 32, 0.2);
    }

    .nav-menu li a {
        display: block;
        padding: 20px 0;
        font-size: 20px;
        letter-spacing: 3px;
    }

    /* HAMBURGER */
    .hamburger {
        display: flex;
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}


/* =========================
   HAMBURGER GLOBAL
========================= */

.hamburger {
    width: 35px;
    height: 30px;

    flex-direction: column;
    justify-content: space-between;

    cursor: pointer;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;

    background: #C79F4B;
    border-radius: 2px;

    transition: all 0.3s ease;
}

/* ANIMATION CROIX */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HOVER */
.hamburger:hover span {
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.8);
}


/* =========================
   DESKTOP → CACHÉ
========================= */
@media screen and (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

body.menu-open {
    overflow: hidden;
}

/* =========================
   BANNER HERO
========================= */

.hero-banner {
    position: relative;
    width: 100%;
    height: 50vh; /* hauteur écran */
    background-image: url("https://www.astresaames.com/wp-content/uploads/2026/03/banner-e1774150953961.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
		border-bottom: 2px solid #ad956b;
}

/* OVERLAY (effet sombre mystique) */
.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.1)
    );

    z-index: 1;
}

/* CONTENU TEXTE */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* TITRE */
.hero-content h1 {
    font-size: 80px;
    color: #c0c0c0;
    letter-spacing: 1px;
    font-family:'Garamond', serif, Cursive;
	font-style:border;	
    text-shadow: 0 0 15px rgba(218,165,32,0.5);
}

/* SOUS-TITRE */
.hero-content p {
    margin-top: 10px;
    font-size: 25px;
    color: #000;
		font-weight:700;
    letter-spacing: 1px;
		font-family:'Garamond', serif, Cursive;
		font-style:italic;
    text-shadow: 0 0 10px rgba(192,192,192,0.5);
}

/* =========================
   DIV GENERALE
========================= */

div#accueil {
    width: 100%;
		margin: auto;
		border-left: 1px solid #C79F4B;
		border-right: 1px solid #C79F4B;
		border-bottom: 1px solid #C79F4B;
}

/* =========================
   ACCUEIL
========================= */

/* SECTIONS */


section ul {
   list-style-type: none;
}


section {
    width: 95%;
    margin: 0 auto; /* 🔥 CENTRAGE */
    padding: 50px 0;
    text-align: center;
}

/* TITRES */
section h1 {
    font-size: 62px;
    color: #C79F4B;
    margin-bottom: 20px;
		font-family:'Garamond', serif, Cursive;
}

section h2 {
    font-size: 35px;
    color: #C79F4B;
    margin-bottom: 20px;
}

section h3 {
    font-size: 25px;
    color: #C79F4B;
    margin-bottom: 20px;
}

/* TEXTE */
section p {
	font-size: 16px;
    max-width: 800px;
    margin: auto;
    color: #c0c0c0;
    line-height: 1.6;
}

/* INTRO */
.home-intro h2 {
    font-size: 40px;
}

/* BOUTONS */
.btn-primary {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: #DAA520;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #c0c0c0;
    color: #000;
}

.btn-secondary {
    display: inline-block;
    margin: 10px;
    padding: 12px 30px;
    border: 1px solid #DAA520;
    color: #DAA520;
    text-decoration: none;
    border-radius: 30px;
}

.btn-secondary:hover {
    background: #DAA520;
    color: #000;
}

/* SERVICES */
.services {
		max-width:70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service {
    background: linear-gradient(
        160deg,
        #0a0a0a 0%,
        #1a1a1a 60%,
        #2a1f0a 100%
    );

    border: 1px solid rgba(218,165,32,0.3);

    padding: 25px;
    border-radius: 12px;

    box-shadow:
        0 0 15px rgba(218,165,32,0.15);

    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(218,165,32,0.3);
}

/* WHY */
.why {
    list-style: none;
    padding-top: 35px;
		margin:auto;

}

.why ul {
    list-style: none;
    padding: 0;
		margin:auto;
}

.why li {
    margin: 10px 0;
}

/* TESTIMONIALS */
.testimonials p {
    font-style: italic;
    margin: 10px 0;
	  margin:auto;
}

/* CTA FINAL */
.cta-final {
		margin-bottom:40px;
    background: linear-gradient(
        145deg,
        rgba(20,20,20,0.95),
        rgba(0,0,0,0.9)
    );

    border: 1px solid rgba(218,165,32,0.25);

    padding: 25px;
    border-radius: 12px;

    box-shadow:
        0 0 10px rgba(0,0,0,0.8),
        inset 0 0 10px rgba(218,165,32,0.08);

    transition: all 0.3s ease;
}

/* RESPONSIVE */
@media screen and (max-width: 1024px) {

    .services {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 24px;
    }

    .home-intro h2 {
        font-size: 28px;
    }
}

/* =========================
   PRESTATION GLOBAL PAGE
========================= */

.presta {
    width: 95%;
    margin: auto;
    padding: 60px 0;
    text-align: center;
}

/* TITRES */
.presta h1 {
    font-size: 62px;
    color: #C79F4B;
    margin-bottom: 10px;
    font-family: 'Garamond', serif, cursive;
}

.presta h2 {
    font-size: 28px;
    color: #c0c0c0;
    margin-bottom: 40px;
    text-decoration: underline;
}

/* =========================
   PRESTATION GLOBAL
========================= */

.presta {
    width: 95%;
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
}

/* =========================
   GRID
========================= */

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

.card-grid-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================
   CARD CLIQUABLE
========================= */

.card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* =========================
   CARD DESIGN LUXE
========================= */

.card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 1px solid rgba(199, 159, 75, 0.3);
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 
        0 5px 15px rgba(0,0,0,0.6),
        inset 0 0 10px rgba(199,159,75,0.1);

    transition: all 0.4s ease;
    position: relative;
}

/* EFFET LUMIÈRE */
.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(218,165,32,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.card-link:hover .card {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 15px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(218,165,32,0.3);
}

.card-link:hover .card::before {
    opacity: 1;
}

/* =========================
   IMAGE
========================= */

.card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    filter: brightness(0.85);
}

/* =========================
   CONTENU
========================= */

.card-content {
    padding: 15px;
    flex: 1;
}

/* TITRE */
.card h2 {
    color: #C79F4B;
    font-size: 22px;
    margin-bottom: 5px;
}

/* SOUS TITRE */
.card h3 {
    font-size: 15px;
    color: #c0c0c0;
    margin-bottom: 15px;
    font-style: italic;
}

/* TEXTE */
.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
}

/* PRIX */
.card .price {
    margin-top: auto;
    font-weight: bold;
    color: #DAA520;
    font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1024px) {

    .card-grid {
        grid-template-columns: 1fr;
    }

    .presta h1 {
        font-size: 36px;
    }

    .presta h2 {
        font-size: 22px;
    }

    .card img {
        height: 150px;
    }
}
/* =========================
   BLOG PAGE GLOBAL
========================= */

.blog .content-area,
.archive .content-area {
    width: 95%;
    margin: auto;
		padding-top:50px;
		text-align: center;
}

/* =========================
   GRID BLOG
========================= */

.blog .site-main,
.archive .site-main {
     .wp-block-post-template {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100% !important;
}

/* CHAQUE ARTICLE PREND TOUTE LA COLONNE */
.wp-block-post {
    width: 100%;
}
}
/* LIEN CLIQUABLE SUR TOUTE LA CARD */
.wp-block-post a {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* SÉCURITÉ OVERLAY */
.loop-entry::before {
    pointer-events: none;
}
/* =========================
   CARD ARTICLE (Kadence)
========================= */

.loop-entry {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    border: 1px solid rgba(199, 159, 75, 0.3);
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 
        0 5px 15px rgba(0,0,0,0.6),
        inset 0 0 10px rgba(199,159,75,0.1);

    transition: all 0.4s ease;
    position: relative;
}

/* EFFET LUMIÈRE */
.loop-entry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(218,165,32,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

/* HOVER */
.loop-entry:hover {
    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 15px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(218,165,32,0.3);
}

.loop-entry:hover::before {
    opacity: 1;
}

/* =========================
   IMAGE ARTICLE
========================= */

.loop-entry .post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.85);
}

/* =========================
   CONTENU
========================= */

.loop-entry .entry-content-wrap {
    padding: 20px !important;
}

/* TITRE */
.loop-entry h2.entry-title {
    color: #C79F4B !important;
    font-size: 20px;
    margin-bottom: 10px;
}

/* TEXTE */
.loop-entry .entry-content p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.6;
}

/* META (date, auteur) */
.loop-entry .entry-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

/* LIEN */
.loop-entry a {
    text-decoration: none;
}

/* =========================
   BOUTON LIRE PLUS
========================= */

.loop-entry .more-link {
    display: inline-block;
    margin-top: 10px;
    color: #DAA520;
    font-weight: bold;
}

/* =========================
   SUPPRIMER STYLE KADENCE MOCHE
========================= */

.loop-entry {
    box-shadow: none !important;
}

.entry.loop-entry {
    box-shadow: none !important;
    background: none;
}

/* =========================
   RESPONSIVE
========================= */

@media screen and (max-width: 1024px) {
    .wp-block-post-template {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .wp-block-post-template {
        grid-template-columns: 1fr;
    }

    body.blog h1 {
        font-size: 32px;
    }
}

/* =========================
   PAGE ARTICLE PAGE
========================= */

.single-post {
    background:
        radial-gradient(circle at 30% 20%, rgba(218,165,32,0.08), transparent 40%),
        linear-gradient(160deg, #000000, #050505, #000000);
		text-align:center;
}

/* CONTAINER */
.content-bg, body.content-style-unboxed .site {
   background: linear-gradient(145deg, #0a0a0a, #111);
    border: 1px solid rgba(218,165,32,0.2);
    border-radius: 14px;
}

.single-post .wp-block-post-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px;

    background: linear-gradient(145deg, #0a0a0a, #111);

    border: 1px solid rgba(218,165,32,0.2);
    border-radius: 14px;

    box-shadow:
        0 0 25px rgba(0,0,0,0.8),
        inset 0 0 15px rgba(218,165,32,0.05);
}


/* =========================
   TITRE
========================= */

.single-post h1 {
    font-size: 42px;
    color: #C79F4B;
    text-align: center;
    margin-bottom: 20px;

    text-shadow: 0 0 10px rgba(218,165,32,0.3);
}

/* META */
.single-post .wp-block-post-date,
.single-post .wp-block-post-author {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* IMAGE */
.single-post .wp-block-post-featured-image img {
    width: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

/* =========================
   TEXTE
========================= */

.single-post p {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
}

/* TITRES INTERNES */
.single-post h2 {
    color: #DAA520;
    margin-top: 40px;
}

.single-post h3 {
    color: #c0c0c0;
    margin-top: 25px;
}

/* =========================
   LIENS
========================= */

.single-post a {
    color: #DAA520;
}

.single-post a:hover {
    text-shadow: 0 0 6px rgba(218,165,32,0.6);
}

/* =========================
   COMMENTAIRES
========================= */

.comments-area {
    max-width: 100%;
    margin: 40px auto;
    padding: 30px;

    background: linear-gradient(145deg, #0a0a0a, #111);
    border: 1px solid rgba(218,165,32,0.2);
    border-radius: 14px;
}

/* TITRE COMMENTAIRES */
.comments-area h2 {
    color: #C79F4B;
    margin-bottom: 20px;
}

/* COMMENTAIRE */
.comment {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* =========================
   PAGE WOOCOMMERCE
========================= */

/* PAGE PRODUIT GLOBAL */
.single-product div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 95%;
    margin: auto;
    padding-top: 40px;
    align-items: center;
}

/* IMAGE */
.single-product .woocommerce-product-gallery {
    width: 100% !important;
}

/* CONTENU DROITE */
.single-product .summary {
    width: 100% !important;
    text-align: left;
}

/* TITRE */
.single-product .product_title {
    color: #C79F4B;
    font-size: 32px;
}

/* PRIX */
.single-product .price {
    font-size: 24px;
    color: #DAA520;
}

/* SUPPRIMER QUANTITÉ */
.single-product .quantity {
    display: none !important;
}

/* FORM */
.single-product .cart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* BOUTON */
.single-product .single_add_to_cart_button {
    background: linear-gradient(145deg, #C79F4B, #DAA520);
    color: #000;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* HOVER ÉLÉGANT (INVERSION) */
.single-product .single_add_to_cart_button:hover {
    background: #000;
    color: #C79F4B;
    border: 1px solid #C79F4B;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(199,159,75,0.4);
}

/* DESCRIPTION FULL WIDTH */
.single-product .woocommerce-tabs {
    grid-column: 1 / -1;
    width: 100%;
}

/* MOBILE */
@media (max-width: 1024px) {
    .single-product div.product {
        grid-template-columns: 1fr;
    }
}

.quantity {
	display:none;
}

/* =========================
   CONTAINER GLOBAL
========================= */

.wp-block-woocommerce-cart {
    width: 95%;
    margin: auto;
    border: none;
}
/* RESET TOTAL */
.kb-btn8_46bf01-9b {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
}

/* STYLE PERSONNALISÉ */
.kb-btn8_46bf01-9b .kt-btn-inner-text {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #C79F4B;
    color: #C79F4B;
    border-radius: 30px;
    background: #0a0a0a;
    font-family: 'Garamond', serif;
    transition: 0.3s;
}

/* HOVER */
.kb-btn8_46bf01-9b:hover .kt-btn-inner-text {
    background: #C79F4B;
    color: #000;
    box-shadow: 0 0 15px rgba(218,165,32,0.5);
}

/* =========================
   GRID PANIER (FIX BLOCKS)
========================= */

.wc-block-components-sidebar-layout {
    display: grid !important;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    padding: 0 10px;
}

.wc-block-cart__main,
.wc-block-cart__sidebar {
    width: 100% !important;
}

.wc-block-cart__sidebar {
    align-self: start;
}

/* =========================
   SUPPRIMER QUANTITÉ
========================= */

.wc-block-components-quantity-selector {
    display: none !important;
}

/* =========================
   STRUCTURE PRODUIT
========================= */

.wc-block-cart-item__image {
    width: 80px !important;
}

.wc-block-cart-item__product {
    width: auto;
}

.wc-block-cart-item__quantity {
   display: flex !important;
    align-items: center !important;
    gap: 10px;
}

.wc-block-cart-item__total {
    text-align: center;
}

/* =========================
   TITRE PRODUIT (FIX BLOCKS)
========================= */

.wc-block-components-product-name {
    color: #C79F4B;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

/* =========================
   PRIX
========================= */

.wc-block-components-product-price__value,
.wc-block-formatted-money-amount {
    color: #DAA520;
    font-weight: bold;
    text-align: center;
}

/* =========================
   BOUTON SUPPRIMER - LUXE
========================= */

.wc-block-cart-item__remove-link {
    width: 34px;
    height: 34px;
    display: flex !important;
    align-items: center;
    justify-content: center;

    background: transparent !important;
    border: 1px solid rgba(199,159,75,0.4) !important;
    border-radius: 50% !important;

    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0 !important;
}

/* SVG CORRECTEMENT CENTRÉ */
.wc-block-cart-item__remove-link svg {
    width: 16px;
    height: 16px;
    fill: #C79F4B !important;
    display: block;
}

/* HOVER PROPRE */
.wc-block-cart-item__remove-link:hover {
    background: #C79F4B !important;
    transform: scale(1.1);
}

/* SVG AU HOVER */
.wc-block-cart-item__remove-link:hover svg {
    fill: #000 !important;
}

.wc-block-cart-item__remove-link {
    transform: scale(1.3);
}

/* =========================
   LISTE PRODUITS
========================= */

.wp-block-woocommerce-cart-items-block {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(199,159,75,0.3);
}

/* =========================
   COLONNE TOTAL
========================= */

.wp-block-woocommerce-cart-totals-block {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(199,159,75,0.3);
    text-align: center;
    min-height: 350px;
}

/* TITRES */
.wp-block-woocommerce-cart-totals-block h2 {
    color: #C79F4B;
}

/* =========================
   BOUTON CHECKOUT (FIX FINAL)
========================= */

.wc-block-cart__submit-button.wp-element-button {
    background: linear-gradient(145deg, #C79F4B, #DAA520) !important;
    color: #000 !important;
    padding: 15px !important;
    border-radius: 10px !important;
    font-weight: bold !important;
    text-align: center;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: none !important;
}

/* HOVER */
.wc-block-cart__submit-button.wp-element-button:hover {
    background: #000 !important;
    color: #C79F4B !important;
    border: 1px solid #C79F4B !important;
    transform: scale(1.05);
}

/* =========================
   PANIER VIDE
========================= */

.wp-block-woocommerce-empty-cart-block {
    text-align: center;
    color: #ddd;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .wc-block-components-sidebar-layout {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   CHECKOUT - STRUCTURE GLOBALE
===================================================== */

.woocommerce {
    padding-top: 30px;
    border-top: 1px solid #C79F4B;
}


/* =====================================================
   LABELS
===================================================== */

.woocommerce-checkout .form-row label {
    color: #c0c0c0 !important;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

/* astérisque */
.woocommerce-checkout .form-row .required {
    color: #DAA520 !important;
}

/* focus label */
.woocommerce-checkout .form-row:focus-within label {
    color: #DAA520 !important;
}


/* =====================================================
   INPUTS / TEXTAREA / SELECT
===================================================== */

.woocommerce-checkout .form-row input,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(199,159,75,0.4);
    color: #fff;
    padding: 10px;
    border-radius: 15px;
    transition: all 0.25s ease;
}

/* hover */
.woocommerce-checkout .form-row input:hover,
.woocommerce-checkout .form-row textarea:hover,
.woocommerce-checkout .form-row select:hover {
    border-color: rgba(218,165,32,0.6);
}

/* focus */
.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
    border-color: #DAA520;
    outline: none;
    box-shadow: 
        0 0 0 1px rgba(218,165,32,0.4),
        0 0 10px rgba(218,165,32,0.2);
}

/* select */
.woocommerce-checkout .form-row select {
    appearance: none;
    cursor: pointer;
}

/* fallback options */
.woocommerce-checkout .form-row select option {
    background: #0f0f0f;
    color: #fff;
}

/* textarea spécifique checkout */
.woocommerce-checkout textarea {
    min-height: 60px;
    resize: vertical;
}

/* supprime champ inutile */
.woocommerce-checkout .woocommerce-additional-fields {
    display: none;
}


/* =====================================================
   CHECKBOX
===================================================== */

.woocommerce-checkout .form-row .input-checkbox {
    accent-color: #DAA520;
    transform: scale(1.2);
    cursor: pointer;
}


/* =====================================================
   ORDER REVIEW
===================================================== */

#order_review {
    background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(199,159,75,0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
}

#order_review h3 {
    color: #C79F4B;
}

#order_review table {
    background: transparent;
    color: #ddd;
}

#order_review th,
#order_review td {
    border-color: rgba(199,159,75,0.2);
}

#order_review .amount {
    color: #DAA520;
    font-weight: bold;
}


/* =====================================================
   BOUTON COMMANDER
===================================================== */

#place_order {
    width: 100%;
    background: linear-gradient(145deg, #C79F4B, #DAA520);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

#place_order:hover {
    background: #000;
    color: #DAA520;
    border: 1px solid #DAA520;
    transform: scale(1.03);
}

/* effet lumière */
#place_order::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

#place_order:hover::before {
    opacity: 1;
}


/* =====================================================
   MESSAGES
===================================================== */

.woocommerce-info {
    display: none;
}

.woocommerce-message {
    background: rgba(199,159,75,0.08);
    border: 1px solid rgba(199,159,75,0.3);
    color: #C79F4B;
    padding: 10px;
    border-radius: 8px;
}

.woocommerce-error {
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.3);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
}


/* =====================================================
   CHECKBOX CGV ALIGNEMENT
===================================================== */

.woocommerce-checkout .form-row label.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.woocommerce-checkout .form-row label.checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: #DAA520;
    flex-shrink: 0;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text {
    color: #c0c0c0;
    line-height: 1.4;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a {
    color: #C79F4B;
    text-decoration: none;
}

.woocommerce-checkout .woocommerce-terms-and-conditions-checkbox-text a:hover {
    text-shadow: 0 0 6px rgba(218,165,32,0.6);
}

.woocommerce-checkout .woocommerce-invalid-required-field {
    background: rgba(255,0,0,0.05);
    border-radius: 8px;
}


/* =====================================================
   ORDER CGV / RGPD
===================================================== */

.woocommerce-terms-and-conditions-wrapper {
    display: flex;
    flex-direction: column;
}

.woocommerce-terms-and-conditions-wrapper .form-row {
    order: 1;
}

.woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
    order: 2;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 13px;
    opacity: 0.8;
    border-top: 1px solid rgba(199,159,75,0.2);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1024px) {

    .woocommerce-checkout form.checkout {
        padding: 0 10px;
    }

    #order_review {
        padding: 20px;
    }

    #place_order {
        font-size: 14px;
        padding: 14px;
    }
}

/* =========================
   FORMULAIRE CONTACT GLOBAL
========================= */

#wpforms-872 {
    max-width: 95%;
    margin: auto;
}

/* =========================
   CHAMPS
========================= */

#wpforms-872 .wpforms-field input,
#wpforms-872 .wpforms-field textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid rgba(199,159,75,0.4);
    color: #fff;
    padding: 12px 14px;
    border-radius: 12px;
    transition: all 0.25s ease;
		align-content: center;
}

/* FOCUS */
#wpforms-872 .wpforms-field input:focus,
#wpforms-872 .wpforms-field textarea:focus {
    border-color: #DAA520;
    outline: none;
    box-shadow: 
        0 0 0 1px rgba(218,165,32,0.4),
        0 0 10px rgba(218,165,32,0.2);
}

/* =========================
   LABELS
========================= */

#wpforms-872 .wpforms-field-label {
    color: #c0c0c0;
    margin-bottom: 6px;
    font-size: 14px;
}

/* ASTÉRISQUE */
#wpforms-872 .wpforms-required-label {
    color: #DAA520;
}

/* =========================
   TEXTAREA
========================= */

#wpforms-872 textarea {
    min-height: 120px;
    resize: vertical;
}

/* =========================
   RGPD FIX CIBLÉ FIELDSET
========================= */

/* =========================
   FIX CHECKBOX (RGPD)
========================= */

#wpforms-872 .wpforms-field-checkbox input[type="checkbox"] {
    width: auto !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: none !important;
    box-shadow: none !important;
}

/* =========================
   CAPTCHA (centrage propre)
========================= */

#wpforms-872 .wpforms-recaptcha-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#wpforms-872-field_5 li {
    display: flex;
    align-items: center;
    gap: 10px;
}

#wpforms-872-field_5 label {
    display: inline;
    line-height: 1.4;
}

/* =========================
   COULEUR TEXTE RGPD
========================= */

#wpforms-872-field_5 label {
    color: #c0c0c0 !important;
}

#wpforms-872-field_5 label a {
    color: #C79F4B !important;
}

/* =========================
   BOUTON ENVOYER
========================= */

#wpforms-submit-872 {
    width: 100%;
    background: linear-gradient(145deg, #C79F4B, #DAA520) !important;
    color: #000 !important;
    border: none !important;
    border-radius: 10px !important;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* HOVER */
#wpforms-submit-872:hover {
    background: #000 !important;
    color: #C79F4B !important;
    border: 1px solid #C79F4B !important;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(199,159,75,0.3);
}

/* =========================
   ESPACEMENT GLOBAL
========================= */

#wpforms-872 .wpforms-field {
    margin-bottom: 10px;
}

/* labels */
#wpforms-872 .wpforms-field-label {
    text-align: center;
}

/* inputs / textarea */
#wpforms-872 input:not([type="checkbox"]):not([type="radio"]),
#wpforms-872 textarea {
    text-align: center;
    max-width: 100%;
}

/* textarea spécifique */
#wpforms-872 textarea {
    text-align: left; /* mieux pour écrire */
}

#wpforms-872-field_5 li {
    justify-content: center;
}

.woocommerce {
	color: #c0c0c0;
}

.woocommerce a {
	color: #C79F4B;
}

.woocommerce a:hover {
	color: #DAA520;
	text-shadow: 0 0 6px rgba(218,165,32,0.5);
}

.woocommerce a:active {
	color: #C79F4B;
}

/* MENU ACTIF */
.woocommerce-MyAccount-navigation .is-active a {
	color: #DAA520;
	font-weight: bold;
}

/* BARRE GAUCHE */
.woocommerce-account .account-navigation-wrap li.is-active a {
    border-left: 4px solid #C79F4B;
    padding-left: 10px;
}

