table {border: none !important;}
input[name="ingredient_search"] {
    border-radius: unset !important;
}
.igd-btn {
    background-color: #dcab4e !important;
    min-height: 45px !important;
    cursor: pointer;
}
.igd-reset-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background-color: #dcab4e !important;
    min-height: 45px !important;
    padding: 0 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
.igd-btn:hover {
    color: #ffffff !important; 
}
.ingredient-table {
    width: 100%;
    color: #514633;
}
.igd-search-form {
    display:flex;
    gap:10px;
    margin-bottom:25px;
    align-items:center;
    justify-content: center;
}
.igd-search-field {
    padding:10px 15px;
    border:1px solid #000;
    border-radius:8px;
    width: 60% !important;
    height: 45px !important;
}
.igd-btn__text {
    margin-right: 25px;
    font-size: 17px;
}
.igd-icon {
    width: 25px;
    height: 25px;
}
/* Wrapper pagination */
.ingredient-listing .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    min-width: 45px;
    padding: 0 14px;
    margin: 4px;
    background-color: #ededed;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

/* Hover */
.ingredient-listing a.page-numbers:hover {
    background-color: #dcab4e;
    color: #fff;
}

/* Page active */
.ingredient-listing .page-numbers.current {
    background-color: #dcab4e;
    color: #fff;
    cursor: default;
}

/* Flèches */
.ingredient-listing .page-numbers.next,
.ingredient-listing .page-numbers.prev {
    font-size: 18px;
    line-height: 1;
}

/* Effet bouton */
.ingredient-listing a.page-numbers:active {
    transform: translateY(1px);
}
.ingredient-table td,
.ingredient-table th {
    font-family: 'MinionPro', serif !important;
    border: none !important;
}
.ingredient-table th {
    font-size: 20px;
    color: #dcab4e;
    font-weight:bold;
}
.ingredient-table td {
    font-size: 17px;
}
span.ingredient-label {
    display: none;
}
.ingredient-table th,
.ingredient-table td {
    text-align: left;
    vertical-align: baseline;
}
.ingredient-table th {
    padding: 0 15px;
}
.ingredient-row .ingredient-cell:nth-child(3) {
    padding: 30px 15px;
}
.ingredient-cell:nth-child(1) {
    width: 20%;
}
.ingredient-cell:nth-child(2) {
    width: 30%;
}
.ingredient-cell:nth-child(3) {
    width: 50%;
}
/* Alternance des couleurs desktop */
.ingredient-row:nth-child(even) { background: #f7f6f2; }
.ingredient-row:nth-child(odd) { background: #FFFFFF; }

/* ======== RESPONSIVE MOBILE ======== */
@media (max-width: 768px) {

    .ingredient-table thead { display: none; }

    .ingredient-row {
        display: block;
        margin-bottom: 20px;
        padding: 15px;
        background: #f7f6f2 !important;
        border-radius: 10px;
    }

    .ingredient-cell:nth-child(1) {
        width: 100%;
    }
    .ingredient-cell:nth-child(2) {
        width: 100%;
    }
    .ingredient-cell:nth-child(3) {
        width: 100%;
    }

    .ingredient-cell {
        display: block;
        padding: 8px 0;
    }

    .ingredient-label {
        font-weight: bold;
        color: #333;
        margin-bottom: 3px;
        display: block !important;
    }
    .igd-reset-btn  {
        width: 40%;
        padding: 0 10px;
    }
    .igd-btn__text {
        display: none;
    }
    .ingredient-row .ingredient-cell:nth-child(3) {
        padding: unset;
    }
}