.congelateurs-container{
    display: flex;
    list-style: none;
    flex-wrap:  wrap;
    align-items: center;
    gap: 1rem;
    flex-direction:row;
    justify-content:flex-start;
    padding-top: 20px;
}

/* Carte produit */
.produit {
    background: #161a20;
    height: 220px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    text-align: center;
}

/* Style Liebherr sombre */
.liebherr {
    background: linear-gradient(#2a2f36, #1b1f26);
    border: 2px solid #2f353d;
    position: relative;
}

/* ========== CONGÉLATEUR ARMOIRE ========== */
.armoire {
    width: 60px;      /* 60 cm */
    height: 185px;    /* 185 cm */
    margin: 0 auto 15px;
    border-radius: 4px;
}

/* Poignée intégrée */
.armoire::after {
    content: "";
    position: absolute;
    right: 4px;
    top: 40px;
    width: 3px;
    height: 80px;
    background: #7f8792;
    border-radius: 2px;
}

.etatArmoire{
  color: var(--label-color-Armoire);
} 

/* Tiroirs */
.tiroir {
    position: absolute;
    left: 5px;
    width: calc(100% - 10px);
    height: 1px;
    background: #3a404a;
}

.t1 { top: 55px; }
.t2 { top: 95px; }
.t3 { top: 135px; }

/* ========== CONGÉLATEUR COFFRE ========== */
.coffre {
    width: 120px;   /* 120 cm */
    height: 85px;   /* 85 cm */
    margin: 40px auto 15px;
    border-radius: 4px;
}

/* Couvercle */
.coffre::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -2px;
    width: calc(100% + 4px);
    height: 22px;
    background: linear-gradient(#2f353d, #1f242b);
    border: 2px solid #2f353d;
    border-radius: 4px 4px 0 0;
}

/* Poignée */
.coffre::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 40px;
    width: 40px;
    height: 4px;
    background: #7f8792;
    border-radius: 2px;
}

.etatCoffre{
  color: var(--label-color-Coffre);
}

/* Logo */
.logo {
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    font-size: 8px;
    letter-spacing: 1px;
    color: #5fa8ff;
    font-weight: bold;
}