.custom-cat-tabs-wrapper {
    margin-top: 40px;
}

.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 18px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    border-radius: 6px 6px;
    font-weight: 500;
}

.tab-btn.active {
    background: #19542e;
    color: #fff;
}

.tab-pane {
    display: none;
    line-height: 1.7;
}

.tab-pane.active {
    display: block;
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.ingredient-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.ingredient-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ingredient-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.ingredient-desc {
    font-size: 14px;
    color: #666;
    margin-bottom:0px;
}
.product-info-table-wrapper {
    overflow-x: auto;
}

.product-info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.product-info-table th {
    background: #19542e;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.product-info-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.product-info-table tr:nth-child(even) {
    background: #f9f9f9;
}

.product-info-table tr:hover {
    background: #f1f1f1;
}
.how-to-use-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 20px;
    border-radius: 12px;
}

.how-step {
    flex: 1;
    min-width: 180px;
    padding: 20px;
    background: #f2f2f2;
    border-radius: 12px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 10px;
    border: 2px solid #c8a96a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f3e8;
}

.step-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.how-step p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}
.cat-custom-list {
    margin-top:25px;
}
@media (max-width:767px) {
   .tabs-nav {
    max-width: 100%;
    overflow-x: scroll;
} 
.tab-btn {
   padding: 12px;
        background: #f5f5f5;
        border: none;
        cursor: pointer;
        border-radius: 6px;
        font-weight: 500;
        min-width: 120px;
        font-size:11px;
}
}
