.product-link {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 1rem 0;
	margin-left: 10px;
	
}

.carte-lien {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    min-width: 200px;
    transition: border-color 0.2s;
	box-shadow:3px 5px 5px lightslategrey;
	background-color: #0073aa;
    color: white;
	&:hover{background-color: #005a87;}
}

.carte-lien:hover {
    border-color: #aaa;
}

.carte-lien-icone {
    width: 136px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carte-lien-icone--myludo {
    background: transparent;
	width:70px;
}

.carte-lien-icone--youtube {
    background: #fde8e8;
}

.carte-lien-icone img {
    width: 124px;
    height: 40px;
    object-fit: contain;
}

.carte-lien-texte {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.carte-lien-titre {
    font-size: 13px;
    font-weight: 500;
    /*color: #111;*/
}

.carte-lien-sous-titre {
    font-size: 12px;
    /*color: #888;*/
}

.bloc-membre {
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 12px;
}

.bloc-header-membre {
    background: #1e3a5f;
    color: #fff;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bloc-membre-body {
    background: #fff;
    padding: 12px 16px;
}

.membre-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

#btn-liste:hover {
    border-color: #D4537E ;
    background: #ED93B1;
}

.icon-btn.heart-on {
    background: #D4537E;
    border-color: #D4537E ;
}

.product-image-wrap {
    position: relative;
    float: left;
    clear: left;
    width: 42%;
    box-sizing: border-box;
    line-height: 0;
    margin-left: 0;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.boxed.al_product #product_details_container div.entry-thumbnail.product-image {
    float: none;
    width: 100%;
}

.boxed #product_details_container{	
	align-items: flex-start;
}

.cover-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform 0.15s;
}

.cover-heart:hover {
    transform: scale(1.1);
}

.icons-col {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
	z-index: 999;
}

.ic-btn {
    height: 36px;
    width: 36px;
    min-width: 36px; /* changement clé */
    width: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: default;
    overflow: hidden;
    white-space: nowrap;
    transition: min-width 0.25s ease, border-radius 0.25s ease, padding 0.25s ease;
}

.ic-btn .ic-label {
    font-size: 12px;
    font-weight: 500;
    max-width: 0;
    overflow: hidden;
    transition: max-width 0.25s ease, padding 0.25s ease;
    padding: 0;
}

.ic-btn:hover {
    min-width: auto;
    width: auto;
    border-radius: 18px;
    padding: 0 12px 0 8px;
}

.ic-btn:hover .ic-label {
    max-width: 140px;
    padding-left: 6px;
	overflow: unset;
}

/* Cœur — cliquable */
.ic-heart {
    cursor: pointer;
}

.active-heart {
    background: #FBEAF0;
}

.active-heart:hover {
    background: #F4C0D1;
}

.active-heart .ic-label {
    color: #993556;
}

/* Déjà emprunté */
.active-horloge {
    background: #EAF3DE;
}

.active-horloge:hover {
    background: #C0DD97;
}

.active-horloge .ic-label {
    color: #27500A;
}

/* Chez moi */
.active-maison {
    background: #E6F1FB;
}

.active-maison:hover {
    background: #B5D4F4;
}

.active-maison .ic-label {
    color: #0C447C;
}

/* Réservé */
.active-calendrier {
    background: #EEEDFE;
}

.active-calendrier:hover {
    background: #CECBF6;
}

.active-calendrier .ic-label {
    color: #3C3489;
}

/* TITRE */
.product-entry h2.entry-title.product-name {
    font-size: 28px;
    font-weight: 500;
    color: #2d3748;
    border-bottom: 3px solid #D4537E ;
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
}